repo_name
stringclasses
5 values
pr_number
int64
1.52k
15.5k
pr_title
stringlengths
8
143
pr_description
stringlengths
0
10.2k
author
stringlengths
3
18
date_created
unknown
date_merged
unknown
previous_commit
stringlengths
40
40
pr_commit
stringlengths
40
40
query
stringlengths
11
10.2k
filepath
stringlengths
6
220
before_content
stringlengths
0
597M
after_content
stringlengths
0
597M
label
int64
-1
1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-configservice/src/main/resources/bootstrap.yml
eureka: instance: hostname: ${hostname:localhost} preferIpAddress: true status-page-url-path: /info health-check-url-path: /health server: peerEurekaNodesUpdateIntervalMs: 60000 enableSelfPreservation: false client: serviceUrl: # This setting will be overridden by eureka.service.url setting from ApolloConfigDB.ServerConfig or System Property # see com.ctrip.framework.apollo.biz.eureka.ApolloEurekaClientConfig defaultZone: http://${eureka.instance.hostname}:8080/eureka/ healthcheck: enabled: true eurekaServiceUrlPollIntervalSeconds: 60 management: health: status: order: DOWN, OUT_OF_SERVICE, UNKNOWN, UP
eureka: instance: hostname: ${hostname:localhost} preferIpAddress: true status-page-url-path: /info health-check-url-path: /health server: peerEurekaNodesUpdateIntervalMs: 60000 enableSelfPreservation: false client: serviceUrl: # This setting will be overridden by eureka.service.url setting from ApolloConfigDB.ServerConfig or System Property # see com.ctrip.framework.apollo.biz.eureka.ApolloEurekaClientConfig defaultZone: http://${eureka.instance.hostname}:8080/eureka/ healthcheck: enabled: true eurekaServiceUrlPollIntervalSeconds: 60 management: health: status: order: DOWN, OUT_OF_SERVICE, UNKNOWN, UP
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-client/src/test/resources/spring/XmlConfigPlaceholderTest5.xml
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:apollo="http://www.ctrip.com/schema/apollo" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.ctrip.com/schema/apollo http://www.ctrip.com/schema/apollo.xsd"> <apollo:config namespaces="application" order="abc"/> <bean class="com.ctrip.framework.apollo.spring.XmlConfigPlaceholderTest.TestXmlBean"> <property name="timeout" value="${timeout:100}"/> <property name="batch" value="${batch:200}"/> </bean> </beans>
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:apollo="http://www.ctrip.com/schema/apollo" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.ctrip.com/schema/apollo http://www.ctrip.com/schema/apollo.xsd"> <apollo:config namespaces="application" order="abc"/> <bean class="com.ctrip.framework.apollo.spring.XmlConfigPlaceholderTest.TestXmlBean"> <property name="timeout" value="${timeout:100}"/> <property name="batch" value="${batch:200}"/> </bean> </beans>
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-configservice/src/assembly/assembly-descriptor.xml
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3 http://maven.apache.org/xsd/assembly-1.1.3.xsd"> <id>apollo-assembly</id> <formats> <format>zip</format> </formats> <includeBaseDirectory>false</includeBaseDirectory> <fileSets> <!--scripts --> <fileSet> <directory>src/main/scripts</directory> <outputDirectory>scripts</outputDirectory> <includes> <include>*.sh</include> </includes> <fileMode>0755</fileMode> <lineEnding>unix</lineEnding> </fileSet> <fileSet> <directory>src/main/config</directory> <outputDirectory>config</outputDirectory> <excludes> <exclude>apollo-configservice.conf</exclude> <exclude>application-github.properties</exclude> </excludes> <lineEnding>unix</lineEnding> </fileSet> <fileSet> <directory>src/main/config</directory> <outputDirectory>/</outputDirectory> <includes> <include>apollo-configservice.conf</include> </includes> <lineEnding>unix</lineEnding> </fileSet> <fileSet> <directory>target/classes</directory> <outputDirectory>/config</outputDirectory> <includes> <include>application-github.properties</include> </includes> </fileSet> <!--artifact --> <fileSet> <directory>target</directory> <outputDirectory>/</outputDirectory> <includes> <include>${project.artifactId}-*.jar</include> </includes> <fileMode>0755</fileMode> </fileSet> </fileSets> </assembly>
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3 http://maven.apache.org/xsd/assembly-1.1.3.xsd"> <id>apollo-assembly</id> <formats> <format>zip</format> </formats> <includeBaseDirectory>false</includeBaseDirectory> <fileSets> <!--scripts --> <fileSet> <directory>src/main/scripts</directory> <outputDirectory>scripts</outputDirectory> <includes> <include>*.sh</include> </includes> <fileMode>0755</fileMode> <lineEnding>unix</lineEnding> </fileSet> <fileSet> <directory>src/main/config</directory> <outputDirectory>config</outputDirectory> <excludes> <exclude>apollo-configservice.conf</exclude> <exclude>application-github.properties</exclude> </excludes> <lineEnding>unix</lineEnding> </fileSet> <fileSet> <directory>src/main/config</directory> <outputDirectory>/</outputDirectory> <includes> <include>apollo-configservice.conf</include> </includes> <lineEnding>unix</lineEnding> </fileSet> <fileSet> <directory>target/classes</directory> <outputDirectory>/config</outputDirectory> <includes> <include>application-github.properties</include> </includes> </fileSet> <!--artifact --> <fileSet> <directory>target</directory> <outputDirectory>/</outputDirectory> <includes> <include>${project.artifactId}-*.jar</include> </includes> <fileMode>0755</fileMode> </fileSet> </fileSets> </assembly>
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-client/src/test/resources/spring/XmlConfigPlaceholderTest2.xml
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:apollo="http://www.ctrip.com/schema/apollo" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.ctrip.com/schema/apollo http://www.ctrip.com/schema/apollo.xsd"> <apollo:config namespaces="application"/> <bean class="com.ctrip.framework.apollo.spring.XmlConfigPlaceholderTest.TestXmlBean"> <property name="timeout" value="${timeout:100}"/> <property name="batch" value="${batch:200}"/> </bean> </beans>
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:apollo="http://www.ctrip.com/schema/apollo" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.ctrip.com/schema/apollo http://www.ctrip.com/schema/apollo.xsd"> <apollo:config namespaces="application"/> <bean class="com.ctrip.framework.apollo.spring.XmlConfigPlaceholderTest.TestXmlBean"> <property name="timeout" value="${timeout:100}"/> <property name="batch" value="${batch:200}"/> </bean> </beans>
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-client/src/test/resources/spring/XmlConfigAnnotationTest6.xml
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:apollo="http://www.ctrip.com/schema/apollo" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.ctrip.com/schema/apollo http://www.ctrip.com/schema/apollo.xsd"> <apollo:config/> <bean class="com.ctrip.framework.apollo.spring.XMLConfigAnnotationTest.TestApolloConfigChangeListenerWithInterestedKeysBean"/> </beans>
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:apollo="http://www.ctrip.com/schema/apollo" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.ctrip.com/schema/apollo http://www.ctrip.com/schema/apollo.xsd"> <apollo:config/> <bean class="com.ctrip.framework.apollo.spring.XMLConfigAnnotationTest.TestApolloConfigChangeListenerWithInterestedKeysBean"/> </beans>
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-configservice/src/test/resources/logback-test.xml
<?xml version="1.0" encoding="UTF-8"?> <configuration scan="true"> <appender name="CONSOLE" class="ch.qos.logback.core.ConsoleAppender"> <encoder> <charset>utf-8</charset> <Pattern>[%p] %c - %m%n</Pattern> </encoder> </appender> <logger name="org.springframework.test" level="OFF" /> <root level="WARN"> <appender-ref ref="CONSOLE" /> </root> </configuration>
<?xml version="1.0" encoding="UTF-8"?> <configuration scan="true"> <appender name="CONSOLE" class="ch.qos.logback.core.ConsoleAppender"> <encoder> <charset>utf-8</charset> <Pattern>[%p] %c - %m%n</Pattern> </encoder> </appender> <logger name="org.springframework.test" level="OFF" /> <root level="WARN"> <appender-ref ref="CONSOLE" /> </root> </configuration>
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-buildtools/style/intellij-java-google-style.xml
<?xml version="1.0" encoding="UTF-8"?> <code_scheme name="GoogleStyle"> <option name="OTHER_INDENT_OPTIONS"> <value> <option name="INDENT_SIZE" value="2" /> <option name="CONTINUATION_INDENT_SIZE" value="4" /> <option name="TAB_SIZE" value="2" /> <option name="USE_TAB_CHARACTER" value="false" /> <option name="SMART_TABS" value="false" /> <option name="LABEL_INDENT_SIZE" value="0" /> <option name="LABEL_INDENT_ABSOLUTE" value="false" /> <option name="USE_RELATIVE_INDENTS" value="false" /> </value> </option> <option name="INSERT_INNER_CLASS_IMPORTS" value="true" /> <option name="CLASS_COUNT_TO_USE_IMPORT_ON_DEMAND" value="999" /> <option name="NAMES_COUNT_TO_USE_IMPORT_ON_DEMAND" value="999" /> <option name="PACKAGES_TO_USE_IMPORT_ON_DEMAND"> <value /> </option> <option name="IMPORT_LAYOUT_TABLE"> <value> <package name="" withSubpackages="true" static="true" /> <emptyLine /> <package name="" withSubpackages="true" static="false" /> </value> </option> <option name="RIGHT_MARGIN" value="100" /> <option name="JD_ALIGN_PARAM_COMMENTS" value="false" /> <option name="JD_ALIGN_EXCEPTION_COMMENTS" value="false" /> <option name="JD_P_AT_EMPTY_LINES" value="false" /> <option name="JD_KEEP_EMPTY_PARAMETER" value="false" /> <option name="JD_KEEP_EMPTY_EXCEPTION" value="false" /> <option name="JD_KEEP_EMPTY_RETURN" value="false" /> <option name="KEEP_CONTROL_STATEMENT_IN_ONE_LINE" value="false" /> <option name="KEEP_BLANK_LINES_BEFORE_RBRACE" value="0" /> <option name="KEEP_BLANK_LINES_IN_CODE" value="1" /> <option name="BLANK_LINES_AFTER_CLASS_HEADER" value="0" /> <option name="ALIGN_MULTILINE_PARAMETERS" value="false" /> <option name="ALIGN_MULTILINE_FOR" value="false" /> <option name="CALL_PARAMETERS_WRAP" value="1" /> <option name="METHOD_PARAMETERS_WRAP" value="1" /> <option name="EXTENDS_LIST_WRAP" value="1" /> <option name="THROWS_KEYWORD_WRAP" value="1" /> <option name="METHOD_CALL_CHAIN_WRAP" value="1" /> <option name="BINARY_OPERATION_WRAP" value="1" /> <option name="BINARY_OPERATION_SIGN_ON_NEXT_LINE" value="true" /> <option name="TERNARY_OPERATION_WRAP" value="1" /> <option name="TERNARY_OPERATION_SIGNS_ON_NEXT_LINE" value="true" /> <option name="FOR_STATEMENT_WRAP" value="1" /> <option name="ARRAY_INITIALIZER_WRAP" value="1" /> <option name="WRAP_COMMENTS" value="true" /> <option name="IF_BRACE_FORCE" value="3" /> <option name="DOWHILE_BRACE_FORCE" value="3" /> <option name="WHILE_BRACE_FORCE" value="3" /> <option name="FOR_BRACE_FORCE" value="3" /> <option name="SPACE_BEFORE_ARRAY_INITIALIZER_LBRACE" value="true" /> <AndroidXmlCodeStyleSettings> <option name="USE_CUSTOM_SETTINGS" value="true" /> <option name="LAYOUT_SETTINGS"> <value> <option name="INSERT_BLANK_LINE_BEFORE_TAG" value="false" /> </value> </option> </AndroidXmlCodeStyleSettings> <JSCodeStyleSettings> <option name="INDENT_CHAINED_CALLS" value="false" /> </JSCodeStyleSettings> <Python> <option name="USE_CONTINUATION_INDENT_FOR_ARGUMENTS" value="true" /> </Python> <TypeScriptCodeStyleSettings> <option name="INDENT_CHAINED_CALLS" value="false" /> </TypeScriptCodeStyleSettings> <XML> <option name="XML_ALIGN_ATTRIBUTES" value="false" /> <option name="XML_LEGACY_SETTINGS_IMPORTED" value="true" /> </XML> <codeStyleSettings language="CSS"> <indentOptions> <option name="INDENT_SIZE" value="2" /> <option name="CONTINUATION_INDENT_SIZE" value="4" /> <option name="TAB_SIZE" value="2" /> </indentOptions> </codeStyleSettings> <codeStyleSettings language="ECMA Script Level 4"> <option name="KEEP_BLANK_LINES_IN_CODE" value="1" /> <option name="ALIGN_MULTILINE_PARAMETERS" value="false" /> <option name="ALIGN_MULTILINE_FOR" value="false" /> <option name="CALL_PARAMETERS_WRAP" value="1" /> <option name="METHOD_PARAMETERS_WRAP" value="1" /> <option name="EXTENDS_LIST_WRAP" value="1" /> <option name="BINARY_OPERATION_WRAP" value="1" /> <option name="BINARY_OPERATION_SIGN_ON_NEXT_LINE" value="true" /> <option name="TERNARY_OPERATION_WRAP" value="1" /> <option name="TERNARY_OPERATION_SIGNS_ON_NEXT_LINE" value="true" /> <option name="FOR_STATEMENT_WRAP" value="1" /> <option name="ARRAY_INITIALIZER_WRAP" value="1" /> <option name="IF_BRACE_FORCE" value="3" /> <option name="DOWHILE_BRACE_FORCE" value="3" /> <option name="WHILE_BRACE_FORCE" value="3" /> <option name="FOR_BRACE_FORCE" value="3" /> <option name="PARENT_SETTINGS_INSTALLED" value="true" /> </codeStyleSettings> <codeStyleSettings language="HTML"> <indentOptions> <option name="INDENT_SIZE" value="2" /> <option name="CONTINUATION_INDENT_SIZE" value="4" /> <option name="TAB_SIZE" value="2" /> </indentOptions> </codeStyleSettings> <codeStyleSettings language="JAVA"> <option name="KEEP_CONTROL_STATEMENT_IN_ONE_LINE" value="false" /> <option name="KEEP_BLANK_LINES_IN_CODE" value="1" /> <option name="BLANK_LINES_AFTER_CLASS_HEADER" value="1" /> <option name="ALIGN_MULTILINE_PARAMETERS" value="false" /> <option name="ALIGN_MULTILINE_RESOURCES" value="false" /> <option name="ALIGN_MULTILINE_FOR" value="false" /> <option name="CALL_PARAMETERS_WRAP" value="1" /> <option name="METHOD_PARAMETERS_WRAP" value="1" /> <option name="EXTENDS_LIST_WRAP" value="1" /> <option name="THROWS_KEYWORD_WRAP" value="1" /> <option name="METHOD_CALL_CHAIN_WRAP" value="1" /> <option name="BINARY_OPERATION_WRAP" value="1" /> <option name="BINARY_OPERATION_SIGN_ON_NEXT_LINE" value="true" /> <option name="TERNARY_OPERATION_WRAP" value="1" /> <option name="TERNARY_OPERATION_SIGNS_ON_NEXT_LINE" value="true" /> <option name="FOR_STATEMENT_WRAP" value="1" /> <option name="ARRAY_INITIALIZER_WRAP" value="1" /> <option name="WRAP_COMMENTS" value="true" /> <option name="IF_BRACE_FORCE" value="3" /> <option name="DOWHILE_BRACE_FORCE" value="3" /> <option name="WHILE_BRACE_FORCE" value="3" /> <option name="FOR_BRACE_FORCE" value="3" /> <option name="PARENT_SETTINGS_INSTALLED" value="true" /> <indentOptions> <option name="INDENT_SIZE" value="2" /> <option name="CONTINUATION_INDENT_SIZE" value="4" /> <option name="TAB_SIZE" value="2" /> </indentOptions> </codeStyleSettings> <codeStyleSettings language="JSON"> <indentOptions> <option name="CONTINUATION_INDENT_SIZE" value="4" /> <option name="TAB_SIZE" value="2" /> </indentOptions> </codeStyleSettings> <codeStyleSettings language="JavaScript"> <option name="RIGHT_MARGIN" value="80" /> <option name="KEEP_BLANK_LINES_IN_CODE" value="1" /> <option name="ALIGN_MULTILINE_PARAMETERS" value="false" /> <option name="ALIGN_MULTILINE_FOR" value="false" /> <option name="CALL_PARAMETERS_WRAP" value="1" /> <option name="METHOD_PARAMETERS_WRAP" value="1" /> <option name="BINARY_OPERATION_WRAP" value="1" /> <option name="BINARY_OPERATION_SIGN_ON_NEXT_LINE" value="true" /> <option name="TERNARY_OPERATION_WRAP" value="1" /> <option name="TERNARY_OPERATION_SIGNS_ON_NEXT_LINE" value="true" /> <option name="FOR_STATEMENT_WRAP" value="1" /> <option name="ARRAY_INITIALIZER_WRAP" value="1" /> <option name="IF_BRACE_FORCE" value="3" /> <option name="DOWHILE_BRACE_FORCE" value="3" /> <option name="WHILE_BRACE_FORCE" value="3" /> <option name="FOR_BRACE_FORCE" value="3" /> <option name="PARENT_SETTINGS_INSTALLED" value="true" /> <indentOptions> <option name="INDENT_SIZE" value="2" /> <option name="TAB_SIZE" value="2" /> </indentOptions> </codeStyleSettings> <codeStyleSettings language="PROTO"> <option name="RIGHT_MARGIN" value="80" /> <indentOptions> <option name="INDENT_SIZE" value="2" /> <option name="CONTINUATION_INDENT_SIZE" value="2" /> <option name="TAB_SIZE" value="2" /> </indentOptions> </codeStyleSettings> <codeStyleSettings language="protobuf"> <option name="RIGHT_MARGIN" value="80" /> <indentOptions> <option name="INDENT_SIZE" value="2" /> <option name="CONTINUATION_INDENT_SIZE" value="2" /> <option name="TAB_SIZE" value="2" /> </indentOptions> </codeStyleSettings> <codeStyleSettings language="Python"> <option name="KEEP_BLANK_LINES_IN_CODE" value="1" /> <option name="RIGHT_MARGIN" value="80" /> <option name="ALIGN_MULTILINE_PARAMETERS" value="false" /> <option name="PARENT_SETTINGS_INSTALLED" value="true" /> <indentOptions> <option name="INDENT_SIZE" value="2" /> <option name="CONTINUATION_INDENT_SIZE" value="4" /> <option name="TAB_SIZE" value="2" /> </indentOptions> </codeStyleSettings> <codeStyleSettings language="SASS"> <indentOptions> <option name="CONTINUATION_INDENT_SIZE" value="4" /> <option name="TAB_SIZE" value="2" /> </indentOptions> </codeStyleSettings> <codeStyleSettings language="SCSS"> <indentOptions> <option name="CONTINUATION_INDENT_SIZE" value="4" /> <option name="TAB_SIZE" value="2" /> </indentOptions> </codeStyleSettings> <codeStyleSettings language="TypeScript"> <indentOptions> <option name="INDENT_SIZE" value="2" /> <option name="TAB_SIZE" value="2" /> </indentOptions> </codeStyleSettings> <codeStyleSettings language="XML"> <indentOptions> <option name="INDENT_SIZE" value="2" /> <option name="CONTINUATION_INDENT_SIZE" value="2" /> <option name="TAB_SIZE" value="2" /> </indentOptions> <arrangement> <rules> <section> <rule> <match> <AND> <NAME>xmlns:android</NAME> <XML_ATTRIBUTE /> <XML_NAMESPACE>^$</XML_NAMESPACE> </AND> </match> </rule> </section> <section> <rule> <match> <AND> <NAME>xmlns:.*</NAME> <XML_ATTRIBUTE /> <XML_NAMESPACE>^$</XML_NAMESPACE> </AND> </match> <order>BY_NAME</order> </rule> </section> <section> <rule> <match> <AND> <NAME>.*:id</NAME> <XML_ATTRIBUTE /> <XML_NAMESPACE>http://schemas.android.com/apk/res/android</XML_NAMESPACE> </AND> </match> </rule> </section> <section> <rule> <match> <AND> <NAME>style</NAME> <XML_ATTRIBUTE /> <XML_NAMESPACE>^$</XML_NAMESPACE> </AND> </match> </rule> </section> <section> <rule> <match> <AND> <NAME>.*</NAME> <XML_ATTRIBUTE /> <XML_NAMESPACE>^$</XML_NAMESPACE> </AND> </match> <order>BY_NAME</order> </rule> </section> <section> <rule> <match> <AND> <NAME>.*:.*Style</NAME> <XML_ATTRIBUTE /> <XML_NAMESPACE>http://schemas.android.com/apk/res/android</XML_NAMESPACE> </AND> </match> <order>BY_NAME</order> </rule> </section> <section> <rule> <match> <AND> <NAME>.*:layout_width</NAME> <XML_ATTRIBUTE /> <XML_NAMESPACE>http://schemas.android.com/apk/res/android</XML_NAMESPACE> </AND> </match> </rule> </section> <section> <rule> <match> <AND> <NAME>.*:layout_height</NAME> <XML_ATTRIBUTE /> <XML_NAMESPACE>http://schemas.android.com/apk/res/android</XML_NAMESPACE> </AND> </match> </rule> </section> <section> <rule> <match> <AND> <NAME>.*:layout_weight</NAME> <XML_ATTRIBUTE /> <XML_NAMESPACE>http://schemas.android.com/apk/res/android</XML_NAMESPACE> </AND> </match> </rule> </section> <section> <rule> <match> <AND> <NAME>.*:layout_margin</NAME> <XML_ATTRIBUTE /> <XML_NAMESPACE>http://schemas.android.com/apk/res/android</XML_NAMESPACE> </AND> </match> </rule> </section> <section> <rule> <match> <AND> <NAME>.*:layout_marginTop</NAME> <XML_ATTRIBUTE /> <XML_NAMESPACE>http://schemas.android.com/apk/res/android</XML_NAMESPACE> </AND> </match> </rule> </section> <section> <rule> <match> <AND> <NAME>.*:layout_marginBottom</NAME> <XML_ATTRIBUTE /> <XML_NAMESPACE>http://schemas.android.com/apk/res/android</XML_NAMESPACE> </AND> </match> </rule> </section> <section> <rule> <match> <AND> <NAME>.*:layout_marginStart</NAME> <XML_ATTRIBUTE /> <XML_NAMESPACE>http://schemas.android.com/apk/res/android</XML_NAMESPACE> </AND> </match> </rule> </section> <section> <rule> <match> <AND> <NAME>.*:layout_marginEnd</NAME> <XML_ATTRIBUTE /> <XML_NAMESPACE>http://schemas.android.com/apk/res/android</XML_NAMESPACE> </AND> </match> </rule> </section> <section> <rule> <match> <AND> <NAME>.*:layout_marginLeft</NAME> <XML_ATTRIBUTE /> <XML_NAMESPACE>http://schemas.android.com/apk/res/android</XML_NAMESPACE> </AND> </match> </rule> </section> <section> <rule> <match> <AND> <NAME>.*:layout_marginRight</NAME> <XML_ATTRIBUTE /> <XML_NAMESPACE>http://schemas.android.com/apk/res/android</XML_NAMESPACE> </AND> </match> </rule> </section> <section> <rule> <match> <AND> <NAME>.*:layout_.*</NAME> <XML_ATTRIBUTE /> <XML_NAMESPACE>http://schemas.android.com/apk/res/android</XML_NAMESPACE> </AND> </match> <order>BY_NAME</order> </rule> </section> <section> <rule> <match> <AND> <NAME>.*:padding</NAME> <XML_ATTRIBUTE /> <XML_NAMESPACE>http://schemas.android.com/apk/res/android</XML_NAMESPACE> </AND> </match> </rule> </section> <section> <rule> <match> <AND> <NAME>.*:paddingTop</NAME> <XML_ATTRIBUTE /> <XML_NAMESPACE>http://schemas.android.com/apk/res/android</XML_NAMESPACE> </AND> </match> </rule> </section> <section> <rule> <match> <AND> <NAME>.*:paddingBottom</NAME> <XML_ATTRIBUTE /> <XML_NAMESPACE>http://schemas.android.com/apk/res/android</XML_NAMESPACE> </AND> </match> </rule> </section> <section> <rule> <match> <AND> <NAME>.*:paddingStart</NAME> <XML_ATTRIBUTE /> <XML_NAMESPACE>http://schemas.android.com/apk/res/android</XML_NAMESPACE> </AND> </match> </rule> </section> <section> <rule> <match> <AND> <NAME>.*:paddingEnd</NAME> <XML_ATTRIBUTE /> <XML_NAMESPACE>http://schemas.android.com/apk/res/android</XML_NAMESPACE> </AND> </match> </rule> </section> <section> <rule> <match> <AND> <NAME>.*:paddingLeft</NAME> <XML_ATTRIBUTE /> <XML_NAMESPACE>http://schemas.android.com/apk/res/android</XML_NAMESPACE> </AND> </match> </rule> </section> <section> <rule> <match> <AND> <NAME>.*:paddingRight</NAME> <XML_ATTRIBUTE /> <XML_NAMESPACE>http://schemas.android.com/apk/res/android</XML_NAMESPACE> </AND> </match> </rule> </section> <section> <rule> <match> <AND> <NAME>.*</NAME> <XML_NAMESPACE>http://schemas.android.com/apk/res/android</XML_NAMESPACE> </AND> </match> <order>BY_NAME</order> </rule> </section> <section> <rule> <match> <AND> <NAME>.*</NAME> <XML_NAMESPACE>http://schemas.android.com/apk/res-auto</XML_NAMESPACE> </AND> </match> <order>BY_NAME</order> </rule> </section> <section> <rule> <match> <AND> <NAME>.*</NAME> <XML_NAMESPACE>http://schemas.android.com/tools</XML_NAMESPACE> </AND> </match> <order>BY_NAME</order> </rule> </section> <section> <rule> <match> <AND> <NAME>.*</NAME> <XML_NAMESPACE>.*</XML_NAMESPACE> </AND> </match> <order>BY_NAME</order> </rule> </section> </rules> </arrangement> </codeStyleSettings> <Objective-C> <option name="INDENT_NAMESPACE_MEMBERS" value="0" /> <option name="INDENT_C_STRUCT_MEMBERS" value="2" /> <option name="INDENT_CLASS_MEMBERS" value="2" /> <option name="INDENT_VISIBILITY_KEYWORDS" value="1" /> <option name="INDENT_INSIDE_CODE_BLOCK" value="2" /> <option name="KEEP_STRUCTURES_IN_ONE_LINE" value="true" /> <option name="FUNCTION_PARAMETERS_WRAP" value="5" /> <option name="FUNCTION_CALL_ARGUMENTS_WRAP" value="5" /> <option name="TEMPLATE_CALL_ARGUMENTS_WRAP" value="5" /> <option name="TEMPLATE_CALL_ARGUMENTS_ALIGN_MULTILINE" value="true" /> <option name="ALIGN_INIT_LIST_IN_COLUMNS" value="false" /> <option name="SPACE_BEFORE_SUPERCLASS_COLON" value="false" /> </Objective-C> <Objective-C-extensions> <option name="GENERATE_INSTANCE_VARIABLES_FOR_PROPERTIES" value="ASK" /> <option name="RELEASE_STYLE" value="IVAR" /> <option name="TYPE_QUALIFIERS_PLACEMENT" value="BEFORE" /> <file> <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Import" /> <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Macro" /> <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Typedef" /> <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Enum" /> <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Constant" /> <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Global" /> <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Struct" /> <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="FunctionPredecl" /> <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Function" /> </file> <class> <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Property" /> <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Synthesize" /> <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="InitMethod" /> <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="StaticMethod" /> <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="InstanceMethod" /> <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="DeallocMethod" /> </class> <extensions> <pair source="cc" header="h" /> <pair source="c" header="h" /> </extensions> </Objective-C-extensions> <codeStyleSettings language="ObjectiveC"> <option name="RIGHT_MARGIN" value="80" /> <option name="KEEP_BLANK_LINES_BEFORE_RBRACE" value="1" /> <option name="BLANK_LINES_BEFORE_IMPORTS" value="0" /> <option name="BLANK_LINES_AFTER_IMPORTS" value="0" /> <option name="BLANK_LINES_AROUND_CLASS" value="0" /> <option name="BLANK_LINES_AROUND_METHOD" value="0" /> <option name="BLANK_LINES_AROUND_METHOD_IN_INTERFACE" value="0" /> <option name="ALIGN_MULTILINE_BINARY_OPERATION" value="false" /> <option name="BINARY_OPERATION_SIGN_ON_NEXT_LINE" value="true" /> <option name="FOR_STATEMENT_WRAP" value="1" /> <option name="ASSIGNMENT_WRAP" value="1" /> <indentOptions> <option name="INDENT_SIZE" value="2" /> <option name="CONTINUATION_INDENT_SIZE" value="4" /> </indentOptions> </codeStyleSettings> </code_scheme>
<?xml version="1.0" encoding="UTF-8"?> <code_scheme name="GoogleStyle"> <option name="OTHER_INDENT_OPTIONS"> <value> <option name="INDENT_SIZE" value="2" /> <option name="CONTINUATION_INDENT_SIZE" value="4" /> <option name="TAB_SIZE" value="2" /> <option name="USE_TAB_CHARACTER" value="false" /> <option name="SMART_TABS" value="false" /> <option name="LABEL_INDENT_SIZE" value="0" /> <option name="LABEL_INDENT_ABSOLUTE" value="false" /> <option name="USE_RELATIVE_INDENTS" value="false" /> </value> </option> <option name="INSERT_INNER_CLASS_IMPORTS" value="true" /> <option name="CLASS_COUNT_TO_USE_IMPORT_ON_DEMAND" value="999" /> <option name="NAMES_COUNT_TO_USE_IMPORT_ON_DEMAND" value="999" /> <option name="PACKAGES_TO_USE_IMPORT_ON_DEMAND"> <value /> </option> <option name="IMPORT_LAYOUT_TABLE"> <value> <package name="" withSubpackages="true" static="true" /> <emptyLine /> <package name="" withSubpackages="true" static="false" /> </value> </option> <option name="RIGHT_MARGIN" value="100" /> <option name="JD_ALIGN_PARAM_COMMENTS" value="false" /> <option name="JD_ALIGN_EXCEPTION_COMMENTS" value="false" /> <option name="JD_P_AT_EMPTY_LINES" value="false" /> <option name="JD_KEEP_EMPTY_PARAMETER" value="false" /> <option name="JD_KEEP_EMPTY_EXCEPTION" value="false" /> <option name="JD_KEEP_EMPTY_RETURN" value="false" /> <option name="KEEP_CONTROL_STATEMENT_IN_ONE_LINE" value="false" /> <option name="KEEP_BLANK_LINES_BEFORE_RBRACE" value="0" /> <option name="KEEP_BLANK_LINES_IN_CODE" value="1" /> <option name="BLANK_LINES_AFTER_CLASS_HEADER" value="0" /> <option name="ALIGN_MULTILINE_PARAMETERS" value="false" /> <option name="ALIGN_MULTILINE_FOR" value="false" /> <option name="CALL_PARAMETERS_WRAP" value="1" /> <option name="METHOD_PARAMETERS_WRAP" value="1" /> <option name="EXTENDS_LIST_WRAP" value="1" /> <option name="THROWS_KEYWORD_WRAP" value="1" /> <option name="METHOD_CALL_CHAIN_WRAP" value="1" /> <option name="BINARY_OPERATION_WRAP" value="1" /> <option name="BINARY_OPERATION_SIGN_ON_NEXT_LINE" value="true" /> <option name="TERNARY_OPERATION_WRAP" value="1" /> <option name="TERNARY_OPERATION_SIGNS_ON_NEXT_LINE" value="true" /> <option name="FOR_STATEMENT_WRAP" value="1" /> <option name="ARRAY_INITIALIZER_WRAP" value="1" /> <option name="WRAP_COMMENTS" value="true" /> <option name="IF_BRACE_FORCE" value="3" /> <option name="DOWHILE_BRACE_FORCE" value="3" /> <option name="WHILE_BRACE_FORCE" value="3" /> <option name="FOR_BRACE_FORCE" value="3" /> <option name="SPACE_BEFORE_ARRAY_INITIALIZER_LBRACE" value="true" /> <AndroidXmlCodeStyleSettings> <option name="USE_CUSTOM_SETTINGS" value="true" /> <option name="LAYOUT_SETTINGS"> <value> <option name="INSERT_BLANK_LINE_BEFORE_TAG" value="false" /> </value> </option> </AndroidXmlCodeStyleSettings> <JSCodeStyleSettings> <option name="INDENT_CHAINED_CALLS" value="false" /> </JSCodeStyleSettings> <Python> <option name="USE_CONTINUATION_INDENT_FOR_ARGUMENTS" value="true" /> </Python> <TypeScriptCodeStyleSettings> <option name="INDENT_CHAINED_CALLS" value="false" /> </TypeScriptCodeStyleSettings> <XML> <option name="XML_ALIGN_ATTRIBUTES" value="false" /> <option name="XML_LEGACY_SETTINGS_IMPORTED" value="true" /> </XML> <codeStyleSettings language="CSS"> <indentOptions> <option name="INDENT_SIZE" value="2" /> <option name="CONTINUATION_INDENT_SIZE" value="4" /> <option name="TAB_SIZE" value="2" /> </indentOptions> </codeStyleSettings> <codeStyleSettings language="ECMA Script Level 4"> <option name="KEEP_BLANK_LINES_IN_CODE" value="1" /> <option name="ALIGN_MULTILINE_PARAMETERS" value="false" /> <option name="ALIGN_MULTILINE_FOR" value="false" /> <option name="CALL_PARAMETERS_WRAP" value="1" /> <option name="METHOD_PARAMETERS_WRAP" value="1" /> <option name="EXTENDS_LIST_WRAP" value="1" /> <option name="BINARY_OPERATION_WRAP" value="1" /> <option name="BINARY_OPERATION_SIGN_ON_NEXT_LINE" value="true" /> <option name="TERNARY_OPERATION_WRAP" value="1" /> <option name="TERNARY_OPERATION_SIGNS_ON_NEXT_LINE" value="true" /> <option name="FOR_STATEMENT_WRAP" value="1" /> <option name="ARRAY_INITIALIZER_WRAP" value="1" /> <option name="IF_BRACE_FORCE" value="3" /> <option name="DOWHILE_BRACE_FORCE" value="3" /> <option name="WHILE_BRACE_FORCE" value="3" /> <option name="FOR_BRACE_FORCE" value="3" /> <option name="PARENT_SETTINGS_INSTALLED" value="true" /> </codeStyleSettings> <codeStyleSettings language="HTML"> <indentOptions> <option name="INDENT_SIZE" value="2" /> <option name="CONTINUATION_INDENT_SIZE" value="4" /> <option name="TAB_SIZE" value="2" /> </indentOptions> </codeStyleSettings> <codeStyleSettings language="JAVA"> <option name="KEEP_CONTROL_STATEMENT_IN_ONE_LINE" value="false" /> <option name="KEEP_BLANK_LINES_IN_CODE" value="1" /> <option name="BLANK_LINES_AFTER_CLASS_HEADER" value="1" /> <option name="ALIGN_MULTILINE_PARAMETERS" value="false" /> <option name="ALIGN_MULTILINE_RESOURCES" value="false" /> <option name="ALIGN_MULTILINE_FOR" value="false" /> <option name="CALL_PARAMETERS_WRAP" value="1" /> <option name="METHOD_PARAMETERS_WRAP" value="1" /> <option name="EXTENDS_LIST_WRAP" value="1" /> <option name="THROWS_KEYWORD_WRAP" value="1" /> <option name="METHOD_CALL_CHAIN_WRAP" value="1" /> <option name="BINARY_OPERATION_WRAP" value="1" /> <option name="BINARY_OPERATION_SIGN_ON_NEXT_LINE" value="true" /> <option name="TERNARY_OPERATION_WRAP" value="1" /> <option name="TERNARY_OPERATION_SIGNS_ON_NEXT_LINE" value="true" /> <option name="FOR_STATEMENT_WRAP" value="1" /> <option name="ARRAY_INITIALIZER_WRAP" value="1" /> <option name="WRAP_COMMENTS" value="true" /> <option name="IF_BRACE_FORCE" value="3" /> <option name="DOWHILE_BRACE_FORCE" value="3" /> <option name="WHILE_BRACE_FORCE" value="3" /> <option name="FOR_BRACE_FORCE" value="3" /> <option name="PARENT_SETTINGS_INSTALLED" value="true" /> <indentOptions> <option name="INDENT_SIZE" value="2" /> <option name="CONTINUATION_INDENT_SIZE" value="4" /> <option name="TAB_SIZE" value="2" /> </indentOptions> </codeStyleSettings> <codeStyleSettings language="JSON"> <indentOptions> <option name="CONTINUATION_INDENT_SIZE" value="4" /> <option name="TAB_SIZE" value="2" /> </indentOptions> </codeStyleSettings> <codeStyleSettings language="JavaScript"> <option name="RIGHT_MARGIN" value="80" /> <option name="KEEP_BLANK_LINES_IN_CODE" value="1" /> <option name="ALIGN_MULTILINE_PARAMETERS" value="false" /> <option name="ALIGN_MULTILINE_FOR" value="false" /> <option name="CALL_PARAMETERS_WRAP" value="1" /> <option name="METHOD_PARAMETERS_WRAP" value="1" /> <option name="BINARY_OPERATION_WRAP" value="1" /> <option name="BINARY_OPERATION_SIGN_ON_NEXT_LINE" value="true" /> <option name="TERNARY_OPERATION_WRAP" value="1" /> <option name="TERNARY_OPERATION_SIGNS_ON_NEXT_LINE" value="true" /> <option name="FOR_STATEMENT_WRAP" value="1" /> <option name="ARRAY_INITIALIZER_WRAP" value="1" /> <option name="IF_BRACE_FORCE" value="3" /> <option name="DOWHILE_BRACE_FORCE" value="3" /> <option name="WHILE_BRACE_FORCE" value="3" /> <option name="FOR_BRACE_FORCE" value="3" /> <option name="PARENT_SETTINGS_INSTALLED" value="true" /> <indentOptions> <option name="INDENT_SIZE" value="2" /> <option name="TAB_SIZE" value="2" /> </indentOptions> </codeStyleSettings> <codeStyleSettings language="PROTO"> <option name="RIGHT_MARGIN" value="80" /> <indentOptions> <option name="INDENT_SIZE" value="2" /> <option name="CONTINUATION_INDENT_SIZE" value="2" /> <option name="TAB_SIZE" value="2" /> </indentOptions> </codeStyleSettings> <codeStyleSettings language="protobuf"> <option name="RIGHT_MARGIN" value="80" /> <indentOptions> <option name="INDENT_SIZE" value="2" /> <option name="CONTINUATION_INDENT_SIZE" value="2" /> <option name="TAB_SIZE" value="2" /> </indentOptions> </codeStyleSettings> <codeStyleSettings language="Python"> <option name="KEEP_BLANK_LINES_IN_CODE" value="1" /> <option name="RIGHT_MARGIN" value="80" /> <option name="ALIGN_MULTILINE_PARAMETERS" value="false" /> <option name="PARENT_SETTINGS_INSTALLED" value="true" /> <indentOptions> <option name="INDENT_SIZE" value="2" /> <option name="CONTINUATION_INDENT_SIZE" value="4" /> <option name="TAB_SIZE" value="2" /> </indentOptions> </codeStyleSettings> <codeStyleSettings language="SASS"> <indentOptions> <option name="CONTINUATION_INDENT_SIZE" value="4" /> <option name="TAB_SIZE" value="2" /> </indentOptions> </codeStyleSettings> <codeStyleSettings language="SCSS"> <indentOptions> <option name="CONTINUATION_INDENT_SIZE" value="4" /> <option name="TAB_SIZE" value="2" /> </indentOptions> </codeStyleSettings> <codeStyleSettings language="TypeScript"> <indentOptions> <option name="INDENT_SIZE" value="2" /> <option name="TAB_SIZE" value="2" /> </indentOptions> </codeStyleSettings> <codeStyleSettings language="XML"> <indentOptions> <option name="INDENT_SIZE" value="2" /> <option name="CONTINUATION_INDENT_SIZE" value="2" /> <option name="TAB_SIZE" value="2" /> </indentOptions> <arrangement> <rules> <section> <rule> <match> <AND> <NAME>xmlns:android</NAME> <XML_ATTRIBUTE /> <XML_NAMESPACE>^$</XML_NAMESPACE> </AND> </match> </rule> </section> <section> <rule> <match> <AND> <NAME>xmlns:.*</NAME> <XML_ATTRIBUTE /> <XML_NAMESPACE>^$</XML_NAMESPACE> </AND> </match> <order>BY_NAME</order> </rule> </section> <section> <rule> <match> <AND> <NAME>.*:id</NAME> <XML_ATTRIBUTE /> <XML_NAMESPACE>http://schemas.android.com/apk/res/android</XML_NAMESPACE> </AND> </match> </rule> </section> <section> <rule> <match> <AND> <NAME>style</NAME> <XML_ATTRIBUTE /> <XML_NAMESPACE>^$</XML_NAMESPACE> </AND> </match> </rule> </section> <section> <rule> <match> <AND> <NAME>.*</NAME> <XML_ATTRIBUTE /> <XML_NAMESPACE>^$</XML_NAMESPACE> </AND> </match> <order>BY_NAME</order> </rule> </section> <section> <rule> <match> <AND> <NAME>.*:.*Style</NAME> <XML_ATTRIBUTE /> <XML_NAMESPACE>http://schemas.android.com/apk/res/android</XML_NAMESPACE> </AND> </match> <order>BY_NAME</order> </rule> </section> <section> <rule> <match> <AND> <NAME>.*:layout_width</NAME> <XML_ATTRIBUTE /> <XML_NAMESPACE>http://schemas.android.com/apk/res/android</XML_NAMESPACE> </AND> </match> </rule> </section> <section> <rule> <match> <AND> <NAME>.*:layout_height</NAME> <XML_ATTRIBUTE /> <XML_NAMESPACE>http://schemas.android.com/apk/res/android</XML_NAMESPACE> </AND> </match> </rule> </section> <section> <rule> <match> <AND> <NAME>.*:layout_weight</NAME> <XML_ATTRIBUTE /> <XML_NAMESPACE>http://schemas.android.com/apk/res/android</XML_NAMESPACE> </AND> </match> </rule> </section> <section> <rule> <match> <AND> <NAME>.*:layout_margin</NAME> <XML_ATTRIBUTE /> <XML_NAMESPACE>http://schemas.android.com/apk/res/android</XML_NAMESPACE> </AND> </match> </rule> </section> <section> <rule> <match> <AND> <NAME>.*:layout_marginTop</NAME> <XML_ATTRIBUTE /> <XML_NAMESPACE>http://schemas.android.com/apk/res/android</XML_NAMESPACE> </AND> </match> </rule> </section> <section> <rule> <match> <AND> <NAME>.*:layout_marginBottom</NAME> <XML_ATTRIBUTE /> <XML_NAMESPACE>http://schemas.android.com/apk/res/android</XML_NAMESPACE> </AND> </match> </rule> </section> <section> <rule> <match> <AND> <NAME>.*:layout_marginStart</NAME> <XML_ATTRIBUTE /> <XML_NAMESPACE>http://schemas.android.com/apk/res/android</XML_NAMESPACE> </AND> </match> </rule> </section> <section> <rule> <match> <AND> <NAME>.*:layout_marginEnd</NAME> <XML_ATTRIBUTE /> <XML_NAMESPACE>http://schemas.android.com/apk/res/android</XML_NAMESPACE> </AND> </match> </rule> </section> <section> <rule> <match> <AND> <NAME>.*:layout_marginLeft</NAME> <XML_ATTRIBUTE /> <XML_NAMESPACE>http://schemas.android.com/apk/res/android</XML_NAMESPACE> </AND> </match> </rule> </section> <section> <rule> <match> <AND> <NAME>.*:layout_marginRight</NAME> <XML_ATTRIBUTE /> <XML_NAMESPACE>http://schemas.android.com/apk/res/android</XML_NAMESPACE> </AND> </match> </rule> </section> <section> <rule> <match> <AND> <NAME>.*:layout_.*</NAME> <XML_ATTRIBUTE /> <XML_NAMESPACE>http://schemas.android.com/apk/res/android</XML_NAMESPACE> </AND> </match> <order>BY_NAME</order> </rule> </section> <section> <rule> <match> <AND> <NAME>.*:padding</NAME> <XML_ATTRIBUTE /> <XML_NAMESPACE>http://schemas.android.com/apk/res/android</XML_NAMESPACE> </AND> </match> </rule> </section> <section> <rule> <match> <AND> <NAME>.*:paddingTop</NAME> <XML_ATTRIBUTE /> <XML_NAMESPACE>http://schemas.android.com/apk/res/android</XML_NAMESPACE> </AND> </match> </rule> </section> <section> <rule> <match> <AND> <NAME>.*:paddingBottom</NAME> <XML_ATTRIBUTE /> <XML_NAMESPACE>http://schemas.android.com/apk/res/android</XML_NAMESPACE> </AND> </match> </rule> </section> <section> <rule> <match> <AND> <NAME>.*:paddingStart</NAME> <XML_ATTRIBUTE /> <XML_NAMESPACE>http://schemas.android.com/apk/res/android</XML_NAMESPACE> </AND> </match> </rule> </section> <section> <rule> <match> <AND> <NAME>.*:paddingEnd</NAME> <XML_ATTRIBUTE /> <XML_NAMESPACE>http://schemas.android.com/apk/res/android</XML_NAMESPACE> </AND> </match> </rule> </section> <section> <rule> <match> <AND> <NAME>.*:paddingLeft</NAME> <XML_ATTRIBUTE /> <XML_NAMESPACE>http://schemas.android.com/apk/res/android</XML_NAMESPACE> </AND> </match> </rule> </section> <section> <rule> <match> <AND> <NAME>.*:paddingRight</NAME> <XML_ATTRIBUTE /> <XML_NAMESPACE>http://schemas.android.com/apk/res/android</XML_NAMESPACE> </AND> </match> </rule> </section> <section> <rule> <match> <AND> <NAME>.*</NAME> <XML_NAMESPACE>http://schemas.android.com/apk/res/android</XML_NAMESPACE> </AND> </match> <order>BY_NAME</order> </rule> </section> <section> <rule> <match> <AND> <NAME>.*</NAME> <XML_NAMESPACE>http://schemas.android.com/apk/res-auto</XML_NAMESPACE> </AND> </match> <order>BY_NAME</order> </rule> </section> <section> <rule> <match> <AND> <NAME>.*</NAME> <XML_NAMESPACE>http://schemas.android.com/tools</XML_NAMESPACE> </AND> </match> <order>BY_NAME</order> </rule> </section> <section> <rule> <match> <AND> <NAME>.*</NAME> <XML_NAMESPACE>.*</XML_NAMESPACE> </AND> </match> <order>BY_NAME</order> </rule> </section> </rules> </arrangement> </codeStyleSettings> <Objective-C> <option name="INDENT_NAMESPACE_MEMBERS" value="0" /> <option name="INDENT_C_STRUCT_MEMBERS" value="2" /> <option name="INDENT_CLASS_MEMBERS" value="2" /> <option name="INDENT_VISIBILITY_KEYWORDS" value="1" /> <option name="INDENT_INSIDE_CODE_BLOCK" value="2" /> <option name="KEEP_STRUCTURES_IN_ONE_LINE" value="true" /> <option name="FUNCTION_PARAMETERS_WRAP" value="5" /> <option name="FUNCTION_CALL_ARGUMENTS_WRAP" value="5" /> <option name="TEMPLATE_CALL_ARGUMENTS_WRAP" value="5" /> <option name="TEMPLATE_CALL_ARGUMENTS_ALIGN_MULTILINE" value="true" /> <option name="ALIGN_INIT_LIST_IN_COLUMNS" value="false" /> <option name="SPACE_BEFORE_SUPERCLASS_COLON" value="false" /> </Objective-C> <Objective-C-extensions> <option name="GENERATE_INSTANCE_VARIABLES_FOR_PROPERTIES" value="ASK" /> <option name="RELEASE_STYLE" value="IVAR" /> <option name="TYPE_QUALIFIERS_PLACEMENT" value="BEFORE" /> <file> <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Import" /> <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Macro" /> <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Typedef" /> <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Enum" /> <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Constant" /> <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Global" /> <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Struct" /> <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="FunctionPredecl" /> <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Function" /> </file> <class> <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Property" /> <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Synthesize" /> <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="InitMethod" /> <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="StaticMethod" /> <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="InstanceMethod" /> <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="DeallocMethod" /> </class> <extensions> <pair source="cc" header="h" /> <pair source="c" header="h" /> </extensions> </Objective-C-extensions> <codeStyleSettings language="ObjectiveC"> <option name="RIGHT_MARGIN" value="80" /> <option name="KEEP_BLANK_LINES_BEFORE_RBRACE" value="1" /> <option name="BLANK_LINES_BEFORE_IMPORTS" value="0" /> <option name="BLANK_LINES_AFTER_IMPORTS" value="0" /> <option name="BLANK_LINES_AROUND_CLASS" value="0" /> <option name="BLANK_LINES_AROUND_METHOD" value="0" /> <option name="BLANK_LINES_AROUND_METHOD_IN_INTERFACE" value="0" /> <option name="ALIGN_MULTILINE_BINARY_OPERATION" value="false" /> <option name="BINARY_OPERATION_SIGN_ON_NEXT_LINE" value="true" /> <option name="FOR_STATEMENT_WRAP" value="1" /> <option name="ASSIGNMENT_WRAP" value="1" /> <indentOptions> <option name="INDENT_SIZE" value="2" /> <option name="CONTINUATION_INDENT_SIZE" value="4" /> </indentOptions> </codeStyleSettings> </code_scheme>
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-biz/src/test/resources/logback-test.xml
<?xml version="1.0" encoding="UTF-8"?> <configuration scan="true"> <appender name="CONSOLE" class="ch.qos.logback.core.ConsoleAppender"> <encoder> <charset>utf-8</charset> <Pattern>[%p] %c - %m%n</Pattern> </encoder> </appender> <logger name="org.springframework.test" level="OFF" /> <root level="WARN"> <appender-ref ref="CONSOLE" /> </root> </configuration>
<?xml version="1.0" encoding="UTF-8"?> <configuration scan="true"> <appender name="CONSOLE" class="ch.qos.logback.core.ConsoleAppender"> <encoder> <charset>utf-8</charset> <Pattern>[%p] %c - %m%n</Pattern> </encoder> </appender> <logger name="org.springframework.test" level="OFF" /> <root level="WARN"> <appender-ref ref="CONSOLE" /> </root> </configuration>
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-client/src/test/resources/spring/XmlConfigAnnotationTest2.xml
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:apollo="http://www.ctrip.com/schema/apollo" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.ctrip.com/schema/apollo http://www.ctrip.com/schema/apollo.xsd"> <apollo:config/> <bean class="com.ctrip.framework.apollo.spring.XMLConfigAnnotationTest.TestApolloConfigBean2"/> </beans>
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:apollo="http://www.ctrip.com/schema/apollo" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.ctrip.com/schema/apollo http://www.ctrip.com/schema/apollo.xsd"> <apollo:config/> <bean class="com.ctrip.framework.apollo.spring.XMLConfigAnnotationTest.TestApolloConfigBean2"/> </beans>
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-portal/src/test/resources/logback-test.xml
<?xml version="1.0" encoding="UTF-8"?> <configuration scan="true"> <appender name="CONSOLE" class="ch.qos.logback.core.ConsoleAppender"> <encoder> <charset>utf-8</charset> <Pattern>[%p] %c - %m%n</Pattern> </encoder> </appender> <logger name="org.springframework.test" level="OFF" /> <root level="WARN"> <appender-ref ref="CONSOLE" /> </root> </configuration>
<?xml version="1.0" encoding="UTF-8"?> <configuration scan="true"> <appender name="CONSOLE" class="ch.qos.logback.core.ConsoleAppender"> <encoder> <charset>utf-8</charset> <Pattern>[%p] %c - %m%n</Pattern> </encoder> </appender> <logger name="org.springframework.test" level="OFF" /> <root level="WARN"> <appender-ref ref="CONSOLE" /> </root> </configuration>
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-client/src/test/resources/spring/config.namespace.placeholder.xml
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:apollo="http://www.ctrip.com/schema/apollo" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.ctrip.com/schema/apollo http://www.ctrip.com/schema/apollo.xsd"> <apollo:config namespaces="${xxx.from.system.property}"/> <apollo:config namespaces="${yyy.from.system.property}" order="10"/> <bean class="com.ctrip.framework.apollo.spring.XmlConfigPlaceholderTest.TestXmlBean"> <property name="timeout" value="${timeout:100}"/> <property name="batch" value="${batch:200}"/> </bean> </beans>
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:apollo="http://www.ctrip.com/schema/apollo" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.ctrip.com/schema/apollo http://www.ctrip.com/schema/apollo.xsd"> <apollo:config namespaces="${xxx.from.system.property}"/> <apollo:config namespaces="${yyy.from.system.property}" order="10"/> <bean class="com.ctrip.framework.apollo.spring.XmlConfigPlaceholderTest.TestXmlBean"> <property name="timeout" value="${timeout:100}"/> <property name="batch" value="${batch:200}"/> </bean> </beans>
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-client/src/test/resources/spring/XmlConfigPlaceholderTest7.xml
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:apollo="http://www.ctrip.com/schema/apollo" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.ctrip.com/schema/apollo http://www.ctrip.com/schema/apollo.xsd"> <apollo:config /> <bean class="com.ctrip.framework.apollo.spring.XmlConfigPlaceholderTest.TestXmlBean"> <property name="timeout" value="${timeout}"/> <property name="batch" value="${batch}"/> </bean> </beans>
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:apollo="http://www.ctrip.com/schema/apollo" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.ctrip.com/schema/apollo http://www.ctrip.com/schema/apollo.xsd"> <apollo:config /> <bean class="com.ctrip.framework.apollo.spring.XmlConfigPlaceholderTest.TestXmlBean"> <property name="timeout" value="${timeout}"/> <property name="batch" value="${batch}"/> </bean> </beans>
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-adminservice/src/assembly/assembly-descriptor.xml
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3 http://maven.apache.org/xsd/assembly-1.1.3.xsd"> <id>apollo-assembly</id> <formats> <format>zip</format> </formats> <includeBaseDirectory>false</includeBaseDirectory> <fileSets> <!--scripts --> <fileSet> <directory>src/main/scripts</directory> <outputDirectory>scripts</outputDirectory> <includes> <include>*.sh</include> </includes> <fileMode>0755</fileMode> <lineEnding>unix</lineEnding> </fileSet> <fileSet> <directory>src/main/config</directory> <outputDirectory>config</outputDirectory> <excludes> <exclude>apollo-adminservice.conf</exclude> <exclude>application-github.properties</exclude> </excludes> <lineEnding>unix</lineEnding> </fileSet> <fileSet> <directory>src/main/config</directory> <outputDirectory>/</outputDirectory> <includes> <include>apollo-adminservice.conf</include> </includes> <lineEnding>unix</lineEnding> </fileSet> <fileSet> <directory>target/classes</directory> <outputDirectory>/config</outputDirectory> <includes> <include>application-github.properties</include> </includes> </fileSet> <!--artifact --> <fileSet> <directory>target</directory> <outputDirectory>/</outputDirectory> <includes> <include>${project.artifactId}-*.jar</include> </includes> <fileMode>0755</fileMode> </fileSet> </fileSets> </assembly>
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3 http://maven.apache.org/xsd/assembly-1.1.3.xsd"> <id>apollo-assembly</id> <formats> <format>zip</format> </formats> <includeBaseDirectory>false</includeBaseDirectory> <fileSets> <!--scripts --> <fileSet> <directory>src/main/scripts</directory> <outputDirectory>scripts</outputDirectory> <includes> <include>*.sh</include> </includes> <fileMode>0755</fileMode> <lineEnding>unix</lineEnding> </fileSet> <fileSet> <directory>src/main/config</directory> <outputDirectory>config</outputDirectory> <excludes> <exclude>apollo-adminservice.conf</exclude> <exclude>application-github.properties</exclude> </excludes> <lineEnding>unix</lineEnding> </fileSet> <fileSet> <directory>src/main/config</directory> <outputDirectory>/</outputDirectory> <includes> <include>apollo-adminservice.conf</include> </includes> <lineEnding>unix</lineEnding> </fileSet> <fileSet> <directory>target/classes</directory> <outputDirectory>/config</outputDirectory> <includes> <include>application-github.properties</include> </includes> </fileSet> <!--artifact --> <fileSet> <directory>target</directory> <outputDirectory>/</outputDirectory> <includes> <include>${project.artifactId}-*.jar</include> </includes> <fileMode>0755</fileMode> </fileSet> </fileSets> </assembly>
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-client/src/test/resources/spring/yaml/case7.yml
apollo.test.testBean:false
apollo.test.testBean:false
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./scripts/apollo-on-kubernetes/apollo-portal-server/scripts/startup-kubernetes.sh
#!/bin/bash SERVICE_NAME=apollo-portal ## Adjust log dir if necessary LOG_DIR=/opt/logs/apollo-portal-server ## Adjust server port if necessary SERVER_PORT=8070 # SERVER_URL="http://localhost:$SERVER_PORT" SERVER_URL="http://${APOLLO_PORTAL_SERVICE_NAME}:${SERVER_PORT}" ## Adjust memory settings if necessary #export JAVA_OPTS="-Xms2560m -Xmx2560m -Xss256k -XX:MetaspaceSize=128m -XX:MaxMetaspaceSize=384m -XX:NewSize=1536m -XX:MaxNewSize=1536m -XX:SurvivorRatio=8" ## Only uncomment the following when you are using server jvm #export JAVA_OPTS="$JAVA_OPTS -server -XX:-ReduceInitialCardMarks" ########### The following is the same for configservice, adminservice, portal ########### export JAVA_OPTS="$JAVA_OPTS -XX:ParallelGCThreads=4 -XX:MaxTenuringThreshold=9 -XX:+DisableExplicitGC -XX:+ScavengeBeforeFullGC -XX:SoftRefLRUPolicyMSPerMB=0 -XX:+ExplicitGCInvokesConcurrent -XX:+HeapDumpOnOutOfMemoryError -XX:-OmitStackTraceInFastThrow -Duser.timezone=Asia/Shanghai -Dclient.encoding.override=UTF-8 -Dfile.encoding=UTF-8 -Djava.security.egd=file:/dev/./urandom" export JAVA_OPTS="$JAVA_OPTS -Dserver.port=$SERVER_PORT -Dlogging.file=$LOG_DIR/$SERVICE_NAME.log -XX:HeapDumpPath=$LOG_DIR/HeapDumpOnOutOfMemoryError/" # Find Java if [[ -n "$JAVA_HOME" ]] && [[ -x "$JAVA_HOME/bin/java" ]]; then javaexe="$JAVA_HOME/bin/java" elif type -p java > /dev/null 2>&1; then javaexe=$(type -p java) elif [[ -x "/usr/bin/java" ]]; then javaexe="/usr/bin/java" else echo "Unable to find Java" exit 1 fi if [[ "$javaexe" ]]; then version=$("$javaexe" -version 2>&1 | awk -F '"' '/version/ {print $2}') version=$(echo "$version" | awk -F. '{printf("%03d%03d",$1,$2);}') # now version is of format 009003 (9.3.x) if [ $version -ge 011000 ]; then JAVA_OPTS="$JAVA_OPTS -Xlog:gc*:$LOG_DIR/gc.log:time,level,tags -Xlog:safepoint -Xlog:gc+heap=trace" elif [ $version -ge 010000 ]; then JAVA_OPTS="$JAVA_OPTS -Xlog:gc*:$LOG_DIR/gc.log:time,level,tags -Xlog:safepoint -Xlog:gc+heap=trace" elif [ $version -ge 009000 ]; then JAVA_OPTS="$JAVA_OPTS -Xlog:gc*:$LOG_DIR/gc.log:time,level,tags -Xlog:safepoint -Xlog:gc+heap=trace" else JAVA_OPTS="$JAVA_OPTS -XX:+UseParNewGC" JAVA_OPTS="$JAVA_OPTS -Xloggc:$LOG_DIR/gc.log -XX:+PrintGCDetails" JAVA_OPTS="$JAVA_OPTS -XX:+UseConcMarkSweepGC -XX:+UseCMSCompactAtFullCollection -XX:+UseCMSInitiatingOccupancyOnly -XX:CMSInitiatingOccupancyFraction=60 -XX:+CMSClassUnloadingEnabled -XX:+CMSParallelRemarkEnabled -XX:CMSFullGCsBeforeCompaction=9 -XX:+CMSClassUnloadingEnabled -XX:+PrintGCDateStamps -XX:+PrintGCApplicationConcurrentTime -XX:+PrintHeapAtGC -XX:+UseGCLogFileRotation -XX:NumberOfGCLogFiles=5 -XX:GCLogFileSize=5M" fi fi printf "$(date) ==== Starting ==== \n" cd `dirname $0`/.. chmod 755 $SERVICE_NAME".jar" ./$SERVICE_NAME".jar" start rc=$?; if [[ $rc != 0 ]]; then echo "$(date) Failed to start $SERVICE_NAME.jar, return code: $rc" exit $rc; fi tail -f /dev/null
#!/bin/bash SERVICE_NAME=apollo-portal ## Adjust log dir if necessary LOG_DIR=/opt/logs/apollo-portal-server ## Adjust server port if necessary SERVER_PORT=8070 # SERVER_URL="http://localhost:$SERVER_PORT" SERVER_URL="http://${APOLLO_PORTAL_SERVICE_NAME}:${SERVER_PORT}" ## Adjust memory settings if necessary #export JAVA_OPTS="-Xms2560m -Xmx2560m -Xss256k -XX:MetaspaceSize=128m -XX:MaxMetaspaceSize=384m -XX:NewSize=1536m -XX:MaxNewSize=1536m -XX:SurvivorRatio=8" ## Only uncomment the following when you are using server jvm #export JAVA_OPTS="$JAVA_OPTS -server -XX:-ReduceInitialCardMarks" ########### The following is the same for configservice, adminservice, portal ########### export JAVA_OPTS="$JAVA_OPTS -XX:ParallelGCThreads=4 -XX:MaxTenuringThreshold=9 -XX:+DisableExplicitGC -XX:+ScavengeBeforeFullGC -XX:SoftRefLRUPolicyMSPerMB=0 -XX:+ExplicitGCInvokesConcurrent -XX:+HeapDumpOnOutOfMemoryError -XX:-OmitStackTraceInFastThrow -Duser.timezone=Asia/Shanghai -Dclient.encoding.override=UTF-8 -Dfile.encoding=UTF-8 -Djava.security.egd=file:/dev/./urandom" export JAVA_OPTS="$JAVA_OPTS -Dserver.port=$SERVER_PORT -Dlogging.file=$LOG_DIR/$SERVICE_NAME.log -XX:HeapDumpPath=$LOG_DIR/HeapDumpOnOutOfMemoryError/" # Find Java if [[ -n "$JAVA_HOME" ]] && [[ -x "$JAVA_HOME/bin/java" ]]; then javaexe="$JAVA_HOME/bin/java" elif type -p java > /dev/null 2>&1; then javaexe=$(type -p java) elif [[ -x "/usr/bin/java" ]]; then javaexe="/usr/bin/java" else echo "Unable to find Java" exit 1 fi if [[ "$javaexe" ]]; then version=$("$javaexe" -version 2>&1 | awk -F '"' '/version/ {print $2}') version=$(echo "$version" | awk -F. '{printf("%03d%03d",$1,$2);}') # now version is of format 009003 (9.3.x) if [ $version -ge 011000 ]; then JAVA_OPTS="$JAVA_OPTS -Xlog:gc*:$LOG_DIR/gc.log:time,level,tags -Xlog:safepoint -Xlog:gc+heap=trace" elif [ $version -ge 010000 ]; then JAVA_OPTS="$JAVA_OPTS -Xlog:gc*:$LOG_DIR/gc.log:time,level,tags -Xlog:safepoint -Xlog:gc+heap=trace" elif [ $version -ge 009000 ]; then JAVA_OPTS="$JAVA_OPTS -Xlog:gc*:$LOG_DIR/gc.log:time,level,tags -Xlog:safepoint -Xlog:gc+heap=trace" else JAVA_OPTS="$JAVA_OPTS -XX:+UseParNewGC" JAVA_OPTS="$JAVA_OPTS -Xloggc:$LOG_DIR/gc.log -XX:+PrintGCDetails" JAVA_OPTS="$JAVA_OPTS -XX:+UseConcMarkSweepGC -XX:+UseCMSCompactAtFullCollection -XX:+UseCMSInitiatingOccupancyOnly -XX:CMSInitiatingOccupancyFraction=60 -XX:+CMSClassUnloadingEnabled -XX:+CMSParallelRemarkEnabled -XX:CMSFullGCsBeforeCompaction=9 -XX:+CMSClassUnloadingEnabled -XX:+PrintGCDateStamps -XX:+PrintGCApplicationConcurrentTime -XX:+PrintHeapAtGC -XX:+UseGCLogFileRotation -XX:NumberOfGCLogFiles=5 -XX:GCLogFileSize=5M" fi fi printf "$(date) ==== Starting ==== \n" cd `dirname $0`/.. chmod 755 $SERVICE_NAME".jar" ./$SERVICE_NAME".jar" start rc=$?; if [[ $rc != 0 ]]; then echo "$(date) Failed to start $SERVICE_NAME.jar, return code: $rc" exit $rc; fi tail -f /dev/null
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-adminservice/src/test/resources/bootstrap.yml
eureka: instance: hostname: ${hostname:localhost} preferIpAddress: true status-page-url-path: /info health-check-url-path: /health client: serviceUrl: defaultZone: http://${eureka.instance.hostname}:8090/eureka/ healthcheck: enabled: true management: health: status: order: DOWN, OUT_OF_SERVICE, UNKNOWN, UP
eureka: instance: hostname: ${hostname:localhost} preferIpAddress: true status-page-url-path: /info health-check-url-path: /health client: serviceUrl: defaultZone: http://${eureka.instance.hostname}:8090/eureka/ healthcheck: enabled: true management: health: status: order: DOWN, OUT_OF_SERVICE, UNKNOWN, UP
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./scripts/apollo-on-kubernetes/apollo-portal-server/apollo-portal.conf
MODE=service PID_FOLDER=. LOG_FOLDER=/opt/logs/apollo-portal-server
MODE=service PID_FOLDER=. LOG_FOLDER=/opt/logs/apollo-portal-server
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-client/pom.xml
<?xml version="1.0" encoding="UTF-8"?> <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>com.ctrip.framework.apollo</groupId> <artifactId>apollo</artifactId> <version>${revision}</version> <relativePath>../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>apollo-client</artifactId> <name>Apollo Client</name> <properties> <java.version>1.7</java.version> <github.path>${project.artifactId}</github.path> </properties> <dependencyManagement> <dependencies> <!-- Spring Boot 2 requires Java 8, so we need to manually stick to 1.5.x version in order to compile apollo-client against Java 7 --> <!-- This is only for apollo-client compilation use, because optional Spring dependencies are not transitive --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>1.5.16.RELEASE</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <!-- apollo --> <dependency> <groupId>com.ctrip.framework.apollo</groupId> <artifactId>apollo-core</artifactId> </dependency> <!-- end of apollo --> <!-- guice --> <dependency> <groupId>com.google.inject</groupId> <artifactId>guice</artifactId> </dependency> <!-- end of guice --> <!-- log --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <!-- yml processing --> <dependency> <groupId>org.yaml</groupId> <artifactId>snakeyaml</artifactId> </dependency> <!-- end of yml processing --> <!-- optional spring dependency --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <optional>true</optional> </dependency> <!-- optional spring boot dependency --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-autoconfigure</artifactId> <optional>true</optional> </dependency> <!-- test --> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-server</artifactId> <scope>test</scope> </dependency> <!-- take over jcl --> <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j-impl</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> <scope>test</scope> </dependency> <!-- end of test --> </dependencies> </project>
<?xml version="1.0" encoding="UTF-8"?> <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>com.ctrip.framework.apollo</groupId> <artifactId>apollo</artifactId> <version>${revision}</version> <relativePath>../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>apollo-client</artifactId> <name>Apollo Client</name> <properties> <java.version>1.7</java.version> <github.path>${project.artifactId}</github.path> </properties> <dependencyManagement> <dependencies> <!-- Spring Boot 2 requires Java 8, so we need to manually stick to 1.5.x version in order to compile apollo-client against Java 7 --> <!-- This is only for apollo-client compilation use, because optional Spring dependencies are not transitive --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>1.5.16.RELEASE</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <!-- apollo --> <dependency> <groupId>com.ctrip.framework.apollo</groupId> <artifactId>apollo-core</artifactId> </dependency> <!-- end of apollo --> <!-- guice --> <dependency> <groupId>com.google.inject</groupId> <artifactId>guice</artifactId> </dependency> <!-- end of guice --> <!-- log --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <!-- yml processing --> <dependency> <groupId>org.yaml</groupId> <artifactId>snakeyaml</artifactId> </dependency> <!-- end of yml processing --> <!-- optional spring dependency --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <optional>true</optional> </dependency> <!-- optional spring boot dependency --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-autoconfigure</artifactId> <optional>true</optional> </dependency> <!-- test --> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-server</artifactId> <scope>test</scope> </dependency> <!-- take over jcl --> <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j-impl</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> <scope>test</scope> </dependency> <!-- end of test --> </dependencies> </project>
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./scripts/apollo-on-kubernetes/apollo-admin-server/scripts/startup-kubernetes.sh
#!/bin/bash SERVICE_NAME=apollo-adminservice ## Adjust log dir if necessary LOG_DIR=/opt/logs/apollo-admin-server ## Adjust server port if necessary SERVER_PORT=8090 # SERVER_URL="http://localhost:${SERVER_PORT}" SERVER_URL="http://${APOLLO_ADMIN_SERVICE_NAME}:${SERVER_PORT}" ## Adjust memory settings if necessary #export JAVA_OPTS="-Xms2560m -Xmx2560m -Xss256k -XX:MetaspaceSize=128m -XX:MaxMetaspaceSize=384m -XX:NewSize=1536m -XX:MaxNewSize=1536m -XX:SurvivorRatio=8" ## Only uncomment the following when you are using server jvm #export JAVA_OPTS="$JAVA_OPTS -server -XX:-ReduceInitialCardMarks" ########### The following is the same for configservice, adminservice, portal ########### export JAVA_OPTS="$JAVA_OPTS -XX:ParallelGCThreads=4 -XX:MaxTenuringThreshold=9 -XX:+DisableExplicitGC -XX:+ScavengeBeforeFullGC -XX:SoftRefLRUPolicyMSPerMB=0 -XX:+ExplicitGCInvokesConcurrent -XX:+HeapDumpOnOutOfMemoryError -XX:-OmitStackTraceInFastThrow -Duser.timezone=Asia/Shanghai -Dclient.encoding.override=UTF-8 -Dfile.encoding=UTF-8 -Djava.security.egd=file:/dev/./urandom" export JAVA_OPTS="$JAVA_OPTS -Dserver.port=$SERVER_PORT -Dlogging.file=$LOG_DIR/$SERVICE_NAME.log -XX:HeapDumpPath=$LOG_DIR/HeapDumpOnOutOfMemoryError/" # Find Java if [[ -n "$JAVA_HOME" ]] && [[ -x "$JAVA_HOME/bin/java" ]]; then javaexe="$JAVA_HOME/bin/java" elif type -p java > /dev/null 2>&1; then javaexe=$(type -p java) elif [[ -x "/usr/bin/java" ]]; then javaexe="/usr/bin/java" else echo "Unable to find Java" exit 1 fi if [[ "$javaexe" ]]; then version=$("$javaexe" -version 2>&1 | awk -F '"' '/version/ {print $2}') version=$(echo "$version" | awk -F. '{printf("%03d%03d",$1,$2);}') # now version is of format 009003 (9.3.x) if [ $version -ge 011000 ]; then JAVA_OPTS="$JAVA_OPTS -Xlog:gc*:$LOG_DIR/gc.log:time,level,tags -Xlog:safepoint -Xlog:gc+heap=trace" elif [ $version -ge 010000 ]; then JAVA_OPTS="$JAVA_OPTS -Xlog:gc*:$LOG_DIR/gc.log:time,level,tags -Xlog:safepoint -Xlog:gc+heap=trace" elif [ $version -ge 009000 ]; then JAVA_OPTS="$JAVA_OPTS -Xlog:gc*:$LOG_DIR/gc.log:time,level,tags -Xlog:safepoint -Xlog:gc+heap=trace" else JAVA_OPTS="$JAVA_OPTS -XX:+UseParNewGC" JAVA_OPTS="$JAVA_OPTS -Xloggc:$LOG_DIR/gc.log -XX:+PrintGCDetails" JAVA_OPTS="$JAVA_OPTS -XX:+UseConcMarkSweepGC -XX:+UseCMSCompactAtFullCollection -XX:+UseCMSInitiatingOccupancyOnly -XX:CMSInitiatingOccupancyFraction=60 -XX:+CMSClassUnloadingEnabled -XX:+CMSParallelRemarkEnabled -XX:CMSFullGCsBeforeCompaction=9 -XX:+CMSClassUnloadingEnabled -XX:+PrintGCDateStamps -XX:+PrintGCApplicationConcurrentTime -XX:+PrintHeapAtGC -XX:+UseGCLogFileRotation -XX:NumberOfGCLogFiles=5 -XX:GCLogFileSize=5M" fi fi printf "$(date) ==== Starting ==== \n" cd `dirname $0`/.. chmod 755 $SERVICE_NAME".jar" ./$SERVICE_NAME".jar" start rc=$?; if [[ $rc != 0 ]]; then echo "$(date) Failed to start $SERVICE_NAME.jar, return code: $rc" exit $rc; fi tail -f /dev/null
#!/bin/bash SERVICE_NAME=apollo-adminservice ## Adjust log dir if necessary LOG_DIR=/opt/logs/apollo-admin-server ## Adjust server port if necessary SERVER_PORT=8090 # SERVER_URL="http://localhost:${SERVER_PORT}" SERVER_URL="http://${APOLLO_ADMIN_SERVICE_NAME}:${SERVER_PORT}" ## Adjust memory settings if necessary #export JAVA_OPTS="-Xms2560m -Xmx2560m -Xss256k -XX:MetaspaceSize=128m -XX:MaxMetaspaceSize=384m -XX:NewSize=1536m -XX:MaxNewSize=1536m -XX:SurvivorRatio=8" ## Only uncomment the following when you are using server jvm #export JAVA_OPTS="$JAVA_OPTS -server -XX:-ReduceInitialCardMarks" ########### The following is the same for configservice, adminservice, portal ########### export JAVA_OPTS="$JAVA_OPTS -XX:ParallelGCThreads=4 -XX:MaxTenuringThreshold=9 -XX:+DisableExplicitGC -XX:+ScavengeBeforeFullGC -XX:SoftRefLRUPolicyMSPerMB=0 -XX:+ExplicitGCInvokesConcurrent -XX:+HeapDumpOnOutOfMemoryError -XX:-OmitStackTraceInFastThrow -Duser.timezone=Asia/Shanghai -Dclient.encoding.override=UTF-8 -Dfile.encoding=UTF-8 -Djava.security.egd=file:/dev/./urandom" export JAVA_OPTS="$JAVA_OPTS -Dserver.port=$SERVER_PORT -Dlogging.file=$LOG_DIR/$SERVICE_NAME.log -XX:HeapDumpPath=$LOG_DIR/HeapDumpOnOutOfMemoryError/" # Find Java if [[ -n "$JAVA_HOME" ]] && [[ -x "$JAVA_HOME/bin/java" ]]; then javaexe="$JAVA_HOME/bin/java" elif type -p java > /dev/null 2>&1; then javaexe=$(type -p java) elif [[ -x "/usr/bin/java" ]]; then javaexe="/usr/bin/java" else echo "Unable to find Java" exit 1 fi if [[ "$javaexe" ]]; then version=$("$javaexe" -version 2>&1 | awk -F '"' '/version/ {print $2}') version=$(echo "$version" | awk -F. '{printf("%03d%03d",$1,$2);}') # now version is of format 009003 (9.3.x) if [ $version -ge 011000 ]; then JAVA_OPTS="$JAVA_OPTS -Xlog:gc*:$LOG_DIR/gc.log:time,level,tags -Xlog:safepoint -Xlog:gc+heap=trace" elif [ $version -ge 010000 ]; then JAVA_OPTS="$JAVA_OPTS -Xlog:gc*:$LOG_DIR/gc.log:time,level,tags -Xlog:safepoint -Xlog:gc+heap=trace" elif [ $version -ge 009000 ]; then JAVA_OPTS="$JAVA_OPTS -Xlog:gc*:$LOG_DIR/gc.log:time,level,tags -Xlog:safepoint -Xlog:gc+heap=trace" else JAVA_OPTS="$JAVA_OPTS -XX:+UseParNewGC" JAVA_OPTS="$JAVA_OPTS -Xloggc:$LOG_DIR/gc.log -XX:+PrintGCDetails" JAVA_OPTS="$JAVA_OPTS -XX:+UseConcMarkSweepGC -XX:+UseCMSCompactAtFullCollection -XX:+UseCMSInitiatingOccupancyOnly -XX:CMSInitiatingOccupancyFraction=60 -XX:+CMSClassUnloadingEnabled -XX:+CMSParallelRemarkEnabled -XX:CMSFullGCsBeforeCompaction=9 -XX:+CMSClassUnloadingEnabled -XX:+PrintGCDateStamps -XX:+PrintGCApplicationConcurrentTime -XX:+PrintHeapAtGC -XX:+UseGCLogFileRotation -XX:NumberOfGCLogFiles=5 -XX:GCLogFileSize=5M" fi fi printf "$(date) ==== Starting ==== \n" cd `dirname $0`/.. chmod 755 $SERVICE_NAME".jar" ./$SERVICE_NAME".jar" start rc=$?; if [[ $rc != 0 ]]; then echo "$(date) Failed to start $SERVICE_NAME.jar, return code: $rc" exit $rc; fi tail -f /dev/null
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-client/src/test/resources/spring/XmlConfigAnnotationTest3.xml
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:apollo="http://www.ctrip.com/schema/apollo" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.ctrip.com/schema/apollo http://www.ctrip.com/schema/apollo.xsd"> <apollo:config/> <bean class="com.ctrip.framework.apollo.spring.XMLConfigAnnotationTest.TestApolloConfigChangeListenerBean1"/> </beans>
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:apollo="http://www.ctrip.com/schema/apollo" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.ctrip.com/schema/apollo http://www.ctrip.com/schema/apollo.xsd"> <apollo:config/> <bean class="com.ctrip.framework.apollo.spring.XMLConfigAnnotationTest.TestApolloConfigChangeListenerBean1"/> </beans>
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-common/src/main/resources/datasource.xml
<!-- for ctrip datasource --> <Datasources> <Datasource name="${pro_titan_dbname}" testWhileIdle="true" testOnBorrow="true" testOnReturn="false" validationQuery="SELECT 1" initSql="set names utf8mb4" validationInterval="30000" timeBetweenEvictionRunsMillis="5000" maxActive="100" minIdle="10" maxWait="10000" initialSize="10" removeAbandonedTimeout="60" removeAbandoned="true" logAbandoned="false" minEvictableIdleTimeMillis="30000" option="sendStringParametersAsUnicode=false" /> </Datasources>
<!-- for ctrip datasource --> <Datasources> <Datasource name="${pro_titan_dbname}" testWhileIdle="true" testOnBorrow="true" testOnReturn="false" validationQuery="SELECT 1" initSql="set names utf8mb4" validationInterval="30000" timeBetweenEvictionRunsMillis="5000" maxActive="100" minIdle="10" maxWait="10000" initialSize="10" removeAbandonedTimeout="60" removeAbandoned="true" logAbandoned="false" minEvictableIdleTimeMillis="30000" option="sendStringParametersAsUnicode=false" /> </Datasources>
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-configservice/src/test/resources/application.yml
spring: application: name: apollo-configservice server: port: ${port:8080} logging: level: org.springframework.cloud: 'DEBUG' file: /opt/logs/${ctrip.appid}/apollo-configservice.log ctrip: appid: 100003171
spring: application: name: apollo-configservice server: port: ${port:8080} logging: level: org.springframework.cloud: 'DEBUG' file: /opt/logs/${ctrip.appid}/apollo-configservice.log ctrip: appid: 100003171
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-openapi/pom.xml
<?xml version="1.0" encoding="UTF-8"?> <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> <artifactId>apollo</artifactId> <groupId>com.ctrip.framework.apollo</groupId> <version>${revision}</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>apollo-openapi</artifactId> <name>Apollo Open Api</name> <properties> <java.version>1.7</java.version> <github.path>${project.artifactId}</github.path> </properties> <dependencies> <dependency> <groupId>com.ctrip.framework.apollo</groupId> <artifactId>apollo-core</artifactId> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <exclusions> <exclusion> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j-impl</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> <scope>test</scope> </dependency> </dependencies> </project>
<?xml version="1.0" encoding="UTF-8"?> <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> <artifactId>apollo</artifactId> <groupId>com.ctrip.framework.apollo</groupId> <version>${revision}</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>apollo-openapi</artifactId> <name>Apollo Open Api</name> <properties> <java.version>1.7</java.version> <github.path>${project.artifactId}</github.path> </properties> <dependencies> <dependency> <groupId>com.ctrip.framework.apollo</groupId> <artifactId>apollo-core</artifactId> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <exclusions> <exclusion> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j-impl</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> <scope>test</scope> </dependency> </dependencies> </project>
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./.github/stale.yml
# Configuration for probot-stale - https://github.com/probot/stale # General configuration # Number of days of inactivity before an issue becomes stale daysUntilStale: 60 # Issues with these labels will never be considered stale exemptLabels: - bug - discussion - enhancement - feature - feature request - help wanted - info - need investigation - tips # Set to true to ignore issues in a project (defaults to false) exemptProjects: true # Set to true to ignore issues in a milestone (defaults to false) exemptMilestones: true # Set to true to ignore issues with an assignee (defaults to false) exemptAssignees: true # Label to use when marking an issue as stale staleLabel: stale # Pull request specific configuration pulls: # Number of days of inactivity before a stale Issue or Pull Request is closed. # Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale. daysUntilClose: 30 # Comment to post when marking as stale. Set to `false` to disable markComment: > This pull request has been automatically marked as stale because it has not had activity in the last 90 days. It will be closed in 30 days if no further activity occurs. Please feel free to give a status update now, ping for review, or re-open when it's ready. Thank you for your contributions! # Comment to post when closing a stale Issue or Pull Request. closeComment: > This pull request has been automatically closed because it has not had activity in the last 30 days. Please feel free to give a status update now, ping for review, or re-open when it's ready. Thank you for your contributions! # Limit the number of actions per hour, from 1-30. Default is 30 limitPerRun: 1 # Issue specific configuration issues: # Number of days of inactivity before a stale Issue or Pull Request is closed. daysUntilClose: 14 # Comment to post when marking as stale. Set to `false` to disable markComment: > This issue has been automatically marked as stale because it has not had activity in the last 90 days. It will be closed in 14 days unless it is tagged "help wanted" or other activity occurs. Thank you for your contributions. # Comment to post when closing a stale Issue or Pull Request. closeComment: > This issue has been automatically closed because it has not had activity in the last 14 days. If this issue is still valid, please ping a maintainer and ask them to label it as "help wanted". Thank you for your contributions. # Limit the number of actions per hour, from 1-30. Default is 30 limitPerRun: 1
# Configuration for probot-stale - https://github.com/probot/stale # General configuration # Number of days of inactivity before an issue becomes stale daysUntilStale: 60 # Issues with these labels will never be considered stale exemptLabels: - bug - discussion - enhancement - feature - feature request - help wanted - info - need investigation - tips # Set to true to ignore issues in a project (defaults to false) exemptProjects: true # Set to true to ignore issues in a milestone (defaults to false) exemptMilestones: true # Set to true to ignore issues with an assignee (defaults to false) exemptAssignees: true # Label to use when marking an issue as stale staleLabel: stale # Pull request specific configuration pulls: # Number of days of inactivity before a stale Issue or Pull Request is closed. # Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale. daysUntilClose: 30 # Comment to post when marking as stale. Set to `false` to disable markComment: > This pull request has been automatically marked as stale because it has not had activity in the last 90 days. It will be closed in 30 days if no further activity occurs. Please feel free to give a status update now, ping for review, or re-open when it's ready. Thank you for your contributions! # Comment to post when closing a stale Issue or Pull Request. closeComment: > This pull request has been automatically closed because it has not had activity in the last 30 days. Please feel free to give a status update now, ping for review, or re-open when it's ready. Thank you for your contributions! # Limit the number of actions per hour, from 1-30. Default is 30 limitPerRun: 1 # Issue specific configuration issues: # Number of days of inactivity before a stale Issue or Pull Request is closed. daysUntilClose: 14 # Comment to post when marking as stale. Set to `false` to disable markComment: > This issue has been automatically marked as stale because it has not had activity in the last 90 days. It will be closed in 14 days unless it is tagged "help wanted" or other activity occurs. Thank you for your contributions. # Comment to post when closing a stale Issue or Pull Request. closeComment: > This issue has been automatically closed because it has not had activity in the last 14 days. If this issue is still valid, please ping a maintainer and ask them to label it as "help wanted". Thank you for your contributions. # Limit the number of actions per hour, from 1-30. Default is 30 limitPerRun: 1
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-biz/pom.xml
<?xml version="1.0" encoding="UTF-8"?> <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>com.ctrip.framework.apollo</groupId> <artifactId>apollo</artifactId> <version>${revision}</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>apollo-biz</artifactId> <name>Apollo Biz</name> <packaging>jar</packaging> <properties> <github.path>${project.artifactId}</github.path> </properties> <dependencies> <dependency> <groupId>com.ctrip.framework.apollo</groupId> <artifactId>apollo-common</artifactId> </dependency> <!-- eureka --> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId> </dependency> <!-- end of eureka --> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <scope>test</scope> </dependency> </dependencies> </project>
<?xml version="1.0" encoding="UTF-8"?> <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>com.ctrip.framework.apollo</groupId> <artifactId>apollo</artifactId> <version>${revision}</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>apollo-biz</artifactId> <name>Apollo Biz</name> <packaging>jar</packaging> <properties> <github.path>${project.artifactId}</github.path> </properties> <dependencies> <dependency> <groupId>com.ctrip.framework.apollo</groupId> <artifactId>apollo-common</artifactId> </dependency> <!-- eureka --> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId> </dependency> <!-- end of eureka --> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <scope>test</scope> </dependency> </dependencies> </project>
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-assembly/src/main/resources/application.yml
spring: profiles: active: ${apollo_profile} logging: file: /opt/logs/100003171/apollo-assembly.log
spring: profiles: active: ${apollo_profile} logging: file: /opt/logs/100003171/apollo-assembly.log
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-demo/pom.xml
<?xml version="1.0" encoding="UTF-8"?> <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> <artifactId>apollo</artifactId> <groupId>com.ctrip.framework.apollo</groupId> <version>${revision}</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>apollo-demo</artifactId> <name>Apollo Demo</name> <packaging>jar</packaging> <properties> <java.version>1.7</java.version> <github.path>${project.artifactId}</github.path> </properties> <dependencies> <dependency> <groupId>com.ctrip.framework.apollo</groupId> <artifactId>apollo-client</artifactId> <version>${project.version}</version> </dependency> <!-- for spring demo --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> </dependency> <!-- for spring boot demo --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> <exclusions> <exclusion> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-logging</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-log4j2</artifactId> </dependency> <!-- for refresh scope demo --> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-context</artifactId> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-api</artifactId> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j-impl</artifactId> </dependency> <!-- take over jcl --> <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> </dependency> </dependencies> </project>
<?xml version="1.0" encoding="UTF-8"?> <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> <artifactId>apollo</artifactId> <groupId>com.ctrip.framework.apollo</groupId> <version>${revision}</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>apollo-demo</artifactId> <name>Apollo Demo</name> <packaging>jar</packaging> <properties> <java.version>1.7</java.version> <github.path>${project.artifactId}</github.path> </properties> <dependencies> <dependency> <groupId>com.ctrip.framework.apollo</groupId> <artifactId>apollo-client</artifactId> <version>${project.version}</version> </dependency> <!-- for spring demo --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> </dependency> <!-- for spring boot demo --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> <exclusions> <exclusion> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-logging</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-log4j2</artifactId> </dependency> <!-- for refresh scope demo --> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-context</artifactId> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-api</artifactId> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j-impl</artifactId> </dependency> <!-- take over jcl --> <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> </dependency> </dependencies> </project>
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-buildtools/pom.xml
<?xml version="1.0" encoding="UTF-8"?> <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>com.ctrip.framework.apollo</groupId> <artifactId>apollo</artifactId> <version>${revision}</version> <relativePath>../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>apollo-buildtools</artifactId> <name>Apollo BuildTools</name> <build> <plugins> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>2.6</version> <executions> <execution> <id>copy-resources</id> <phase>validate</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>${basedir}/target</outputDirectory> <resources> <resource> <directory>src/main/scripts</directory> </resource> </resources> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>
<?xml version="1.0" encoding="UTF-8"?> <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>com.ctrip.framework.apollo</groupId> <artifactId>apollo</artifactId> <version>${revision}</version> <relativePath>../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>apollo-buildtools</artifactId> <name>Apollo BuildTools</name> <build> <plugins> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>2.6</version> <executions> <execution> <id>copy-resources</id> <phase>validate</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>${basedir}/target</outputDirectory> <resources> <resource> <directory>src/main/scripts</directory> </resource> </resources> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-portal/src/main/java/com/ctrip/framework/apollo/portal/controller/SignInController.java
package com.ctrip.framework.apollo.portal.controller; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestParam; /** * @author lepdou 2017-08-30 */ @Controller public class SignInController { @GetMapping("/signin") public String login(@RequestParam(value = "error", required = false) String error, @RequestParam(value = "logout", required = false) String logout) { return "login.html"; } }
package com.ctrip.framework.apollo.portal.controller; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestParam; /** * @author lepdou 2017-08-30 */ @Controller public class SignInController { @GetMapping("/signin") public String login(@RequestParam(value = "error", required = false) String error, @RequestParam(value = "logout", required = false) String logout) { return "login.html"; } }
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-adminservice/src/main/java/com/ctrip/framework/apollo/adminservice/controller/ReleaseController.java
package com.ctrip.framework.apollo.adminservice.controller; import com.ctrip.framework.apollo.biz.entity.Namespace; import com.ctrip.framework.apollo.biz.entity.Release; import com.ctrip.framework.apollo.biz.message.MessageSender; import com.ctrip.framework.apollo.biz.message.Topics; import com.ctrip.framework.apollo.biz.service.NamespaceBranchService; import com.ctrip.framework.apollo.biz.service.NamespaceService; import com.ctrip.framework.apollo.biz.service.ReleaseService; import com.ctrip.framework.apollo.biz.utils.ReleaseMessageKeyGenerator; import com.ctrip.framework.apollo.common.constants.NamespaceBranchStatus; import com.ctrip.framework.apollo.common.dto.ItemChangeSets; import com.ctrip.framework.apollo.common.dto.ReleaseDTO; import com.ctrip.framework.apollo.common.exception.NotFoundException; import com.ctrip.framework.apollo.common.utils.BeanUtils; import com.google.common.base.Splitter; import org.springframework.data.domain.Pageable; import org.springframework.transaction.annotation.Transactional; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.PutMapping; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RestController; import java.util.List; import java.util.Set; import java.util.stream.Collectors; @RestController public class ReleaseController { private static final Splitter RELEASES_SPLITTER = Splitter.on(",").omitEmptyStrings() .trimResults(); private final ReleaseService releaseService; private final NamespaceService namespaceService; private final MessageSender messageSender; private final NamespaceBranchService namespaceBranchService; public ReleaseController( final ReleaseService releaseService, final NamespaceService namespaceService, final MessageSender messageSender, final NamespaceBranchService namespaceBranchService) { this.releaseService = releaseService; this.namespaceService = namespaceService; this.messageSender = messageSender; this.namespaceBranchService = namespaceBranchService; } @GetMapping("/releases/{releaseId}") public ReleaseDTO get(@PathVariable("releaseId") long releaseId) { Release release = releaseService.findOne(releaseId); if (release == null) { throw new NotFoundException(String.format("release not found for %s", releaseId)); } return BeanUtils.transform(ReleaseDTO.class, release); } @GetMapping("/releases") public List<ReleaseDTO> findReleaseByIds(@RequestParam("releaseIds") String releaseIds) { Set<Long> releaseIdSet = RELEASES_SPLITTER.splitToList(releaseIds).stream().map(Long::parseLong) .collect(Collectors.toSet()); List<Release> releases = releaseService.findByReleaseIds(releaseIdSet); return BeanUtils.batchTransform(ReleaseDTO.class, releases); } @GetMapping("/apps/{appId}/clusters/{clusterName}/namespaces/{namespaceName}/releases/all") public List<ReleaseDTO> findAllReleases(@PathVariable("appId") String appId, @PathVariable("clusterName") String clusterName, @PathVariable("namespaceName") String namespaceName, Pageable page) { List<Release> releases = releaseService.findAllReleases(appId, clusterName, namespaceName, page); return BeanUtils.batchTransform(ReleaseDTO.class, releases); } @GetMapping("/apps/{appId}/clusters/{clusterName}/namespaces/{namespaceName}/releases/active") public List<ReleaseDTO> findActiveReleases(@PathVariable("appId") String appId, @PathVariable("clusterName") String clusterName, @PathVariable("namespaceName") String namespaceName, Pageable page) { List<Release> releases = releaseService.findActiveReleases(appId, clusterName, namespaceName, page); return BeanUtils.batchTransform(ReleaseDTO.class, releases); } @GetMapping("/apps/{appId}/clusters/{clusterName}/namespaces/{namespaceName}/releases/latest") public ReleaseDTO getLatest(@PathVariable("appId") String appId, @PathVariable("clusterName") String clusterName, @PathVariable("namespaceName") String namespaceName) { Release release = releaseService.findLatestActiveRelease(appId, clusterName, namespaceName); return BeanUtils.transform(ReleaseDTO.class, release); } @Transactional @PostMapping("/apps/{appId}/clusters/{clusterName}/namespaces/{namespaceName}/releases") public ReleaseDTO publish(@PathVariable("appId") String appId, @PathVariable("clusterName") String clusterName, @PathVariable("namespaceName") String namespaceName, @RequestParam("name") String releaseName, @RequestParam(name = "comment", required = false) String releaseComment, @RequestParam("operator") String operator, @RequestParam(name = "isEmergencyPublish", defaultValue = "false") boolean isEmergencyPublish) { Namespace namespace = namespaceService.findOne(appId, clusterName, namespaceName); if (namespace == null) { throw new NotFoundException(String.format("Could not find namespace for %s %s %s", appId, clusterName, namespaceName)); } Release release = releaseService.publish(namespace, releaseName, releaseComment, operator, isEmergencyPublish); //send release message Namespace parentNamespace = namespaceService.findParentNamespace(namespace); String messageCluster; if (parentNamespace != null) { messageCluster = parentNamespace.getClusterName(); } else { messageCluster = clusterName; } messageSender.sendMessage(ReleaseMessageKeyGenerator.generate(appId, messageCluster, namespaceName), Topics.APOLLO_RELEASE_TOPIC); return BeanUtils.transform(ReleaseDTO.class, release); } /** * merge branch items to master and publish master * * @return published result */ @Transactional @PostMapping("/apps/{appId}/clusters/{clusterName}/namespaces/{namespaceName}/updateAndPublish") public ReleaseDTO updateAndPublish(@PathVariable("appId") String appId, @PathVariable("clusterName") String clusterName, @PathVariable("namespaceName") String namespaceName, @RequestParam("releaseName") String releaseName, @RequestParam("branchName") String branchName, @RequestParam(value = "deleteBranch", defaultValue = "true") boolean deleteBranch, @RequestParam(name = "releaseComment", required = false) String releaseComment, @RequestParam(name = "isEmergencyPublish", defaultValue = "false") boolean isEmergencyPublish, @RequestBody ItemChangeSets changeSets) { Namespace namespace = namespaceService.findOne(appId, clusterName, namespaceName); if (namespace == null) { throw new NotFoundException(String.format("Could not find namespace for %s %s %s", appId, clusterName, namespaceName)); } Release release = releaseService.mergeBranchChangeSetsAndRelease(namespace, branchName, releaseName, releaseComment, isEmergencyPublish, changeSets); if (deleteBranch) { namespaceBranchService.deleteBranch(appId, clusterName, namespaceName, branchName, NamespaceBranchStatus.MERGED, changeSets.getDataChangeLastModifiedBy()); } messageSender.sendMessage(ReleaseMessageKeyGenerator.generate(appId, clusterName, namespaceName), Topics.APOLLO_RELEASE_TOPIC); return BeanUtils.transform(ReleaseDTO.class, release); } @Transactional @PutMapping("/releases/{releaseId}/rollback") public void rollback(@PathVariable("releaseId") long releaseId, @RequestParam(name="toReleaseId", defaultValue = "-1") long toReleaseId, @RequestParam("operator") String operator) { Release release; if (toReleaseId > -1) { release = releaseService.rollbackTo(releaseId, toReleaseId, operator); } else { release = releaseService.rollback(releaseId, operator); } String appId = release.getAppId(); String clusterName = release.getClusterName(); String namespaceName = release.getNamespaceName(); //send release message messageSender.sendMessage(ReleaseMessageKeyGenerator.generate(appId, clusterName, namespaceName), Topics.APOLLO_RELEASE_TOPIC); } @Transactional @PostMapping("/apps/{appId}/clusters/{clusterName}/namespaces/{namespaceName}/gray-del-releases") public ReleaseDTO publish(@PathVariable("appId") String appId, @PathVariable("clusterName") String clusterName, @PathVariable("namespaceName") String namespaceName, @RequestParam("operator") String operator, @RequestParam("releaseName") String releaseName, @RequestParam(name = "comment", required = false) String releaseComment, @RequestParam(name = "isEmergencyPublish", defaultValue = "false") boolean isEmergencyPublish, @RequestParam(name = "grayDelKeys") Set<String> grayDelKeys){ Namespace namespace = namespaceService.findOne(appId, clusterName, namespaceName); if (namespace == null) { throw new NotFoundException(String.format("Could not find namespace for %s %s %s", appId, clusterName, namespaceName)); } Release release = releaseService.grayDeletionPublish(namespace, releaseName, releaseComment, operator, isEmergencyPublish, grayDelKeys); //send release message Namespace parentNamespace = namespaceService.findParentNamespace(namespace); String messageCluster; if (parentNamespace != null) { messageCluster = parentNamespace.getClusterName(); } else { messageCluster = clusterName; } messageSender.sendMessage(ReleaseMessageKeyGenerator.generate(appId, messageCluster, namespaceName), Topics.APOLLO_RELEASE_TOPIC); return BeanUtils.transform(ReleaseDTO.class, release); } }
package com.ctrip.framework.apollo.adminservice.controller; import com.ctrip.framework.apollo.biz.entity.Namespace; import com.ctrip.framework.apollo.biz.entity.Release; import com.ctrip.framework.apollo.biz.message.MessageSender; import com.ctrip.framework.apollo.biz.message.Topics; import com.ctrip.framework.apollo.biz.service.NamespaceBranchService; import com.ctrip.framework.apollo.biz.service.NamespaceService; import com.ctrip.framework.apollo.biz.service.ReleaseService; import com.ctrip.framework.apollo.biz.utils.ReleaseMessageKeyGenerator; import com.ctrip.framework.apollo.common.constants.NamespaceBranchStatus; import com.ctrip.framework.apollo.common.dto.ItemChangeSets; import com.ctrip.framework.apollo.common.dto.ReleaseDTO; import com.ctrip.framework.apollo.common.exception.NotFoundException; import com.ctrip.framework.apollo.common.utils.BeanUtils; import com.google.common.base.Splitter; import org.springframework.data.domain.Pageable; import org.springframework.transaction.annotation.Transactional; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.PutMapping; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RestController; import java.util.List; import java.util.Set; import java.util.stream.Collectors; @RestController public class ReleaseController { private static final Splitter RELEASES_SPLITTER = Splitter.on(",").omitEmptyStrings() .trimResults(); private final ReleaseService releaseService; private final NamespaceService namespaceService; private final MessageSender messageSender; private final NamespaceBranchService namespaceBranchService; public ReleaseController( final ReleaseService releaseService, final NamespaceService namespaceService, final MessageSender messageSender, final NamespaceBranchService namespaceBranchService) { this.releaseService = releaseService; this.namespaceService = namespaceService; this.messageSender = messageSender; this.namespaceBranchService = namespaceBranchService; } @GetMapping("/releases/{releaseId}") public ReleaseDTO get(@PathVariable("releaseId") long releaseId) { Release release = releaseService.findOne(releaseId); if (release == null) { throw new NotFoundException(String.format("release not found for %s", releaseId)); } return BeanUtils.transform(ReleaseDTO.class, release); } @GetMapping("/releases") public List<ReleaseDTO> findReleaseByIds(@RequestParam("releaseIds") String releaseIds) { Set<Long> releaseIdSet = RELEASES_SPLITTER.splitToList(releaseIds).stream().map(Long::parseLong) .collect(Collectors.toSet()); List<Release> releases = releaseService.findByReleaseIds(releaseIdSet); return BeanUtils.batchTransform(ReleaseDTO.class, releases); } @GetMapping("/apps/{appId}/clusters/{clusterName}/namespaces/{namespaceName}/releases/all") public List<ReleaseDTO> findAllReleases(@PathVariable("appId") String appId, @PathVariable("clusterName") String clusterName, @PathVariable("namespaceName") String namespaceName, Pageable page) { List<Release> releases = releaseService.findAllReleases(appId, clusterName, namespaceName, page); return BeanUtils.batchTransform(ReleaseDTO.class, releases); } @GetMapping("/apps/{appId}/clusters/{clusterName}/namespaces/{namespaceName}/releases/active") public List<ReleaseDTO> findActiveReleases(@PathVariable("appId") String appId, @PathVariable("clusterName") String clusterName, @PathVariable("namespaceName") String namespaceName, Pageable page) { List<Release> releases = releaseService.findActiveReleases(appId, clusterName, namespaceName, page); return BeanUtils.batchTransform(ReleaseDTO.class, releases); } @GetMapping("/apps/{appId}/clusters/{clusterName}/namespaces/{namespaceName}/releases/latest") public ReleaseDTO getLatest(@PathVariable("appId") String appId, @PathVariable("clusterName") String clusterName, @PathVariable("namespaceName") String namespaceName) { Release release = releaseService.findLatestActiveRelease(appId, clusterName, namespaceName); return BeanUtils.transform(ReleaseDTO.class, release); } @Transactional @PostMapping("/apps/{appId}/clusters/{clusterName}/namespaces/{namespaceName}/releases") public ReleaseDTO publish(@PathVariable("appId") String appId, @PathVariable("clusterName") String clusterName, @PathVariable("namespaceName") String namespaceName, @RequestParam("name") String releaseName, @RequestParam(name = "comment", required = false) String releaseComment, @RequestParam("operator") String operator, @RequestParam(name = "isEmergencyPublish", defaultValue = "false") boolean isEmergencyPublish) { Namespace namespace = namespaceService.findOne(appId, clusterName, namespaceName); if (namespace == null) { throw new NotFoundException(String.format("Could not find namespace for %s %s %s", appId, clusterName, namespaceName)); } Release release = releaseService.publish(namespace, releaseName, releaseComment, operator, isEmergencyPublish); //send release message Namespace parentNamespace = namespaceService.findParentNamespace(namespace); String messageCluster; if (parentNamespace != null) { messageCluster = parentNamespace.getClusterName(); } else { messageCluster = clusterName; } messageSender.sendMessage(ReleaseMessageKeyGenerator.generate(appId, messageCluster, namespaceName), Topics.APOLLO_RELEASE_TOPIC); return BeanUtils.transform(ReleaseDTO.class, release); } /** * merge branch items to master and publish master * * @return published result */ @Transactional @PostMapping("/apps/{appId}/clusters/{clusterName}/namespaces/{namespaceName}/updateAndPublish") public ReleaseDTO updateAndPublish(@PathVariable("appId") String appId, @PathVariable("clusterName") String clusterName, @PathVariable("namespaceName") String namespaceName, @RequestParam("releaseName") String releaseName, @RequestParam("branchName") String branchName, @RequestParam(value = "deleteBranch", defaultValue = "true") boolean deleteBranch, @RequestParam(name = "releaseComment", required = false) String releaseComment, @RequestParam(name = "isEmergencyPublish", defaultValue = "false") boolean isEmergencyPublish, @RequestBody ItemChangeSets changeSets) { Namespace namespace = namespaceService.findOne(appId, clusterName, namespaceName); if (namespace == null) { throw new NotFoundException(String.format("Could not find namespace for %s %s %s", appId, clusterName, namespaceName)); } Release release = releaseService.mergeBranchChangeSetsAndRelease(namespace, branchName, releaseName, releaseComment, isEmergencyPublish, changeSets); if (deleteBranch) { namespaceBranchService.deleteBranch(appId, clusterName, namespaceName, branchName, NamespaceBranchStatus.MERGED, changeSets.getDataChangeLastModifiedBy()); } messageSender.sendMessage(ReleaseMessageKeyGenerator.generate(appId, clusterName, namespaceName), Topics.APOLLO_RELEASE_TOPIC); return BeanUtils.transform(ReleaseDTO.class, release); } @Transactional @PutMapping("/releases/{releaseId}/rollback") public void rollback(@PathVariable("releaseId") long releaseId, @RequestParam(name="toReleaseId", defaultValue = "-1") long toReleaseId, @RequestParam("operator") String operator) { Release release; if (toReleaseId > -1) { release = releaseService.rollbackTo(releaseId, toReleaseId, operator); } else { release = releaseService.rollback(releaseId, operator); } String appId = release.getAppId(); String clusterName = release.getClusterName(); String namespaceName = release.getNamespaceName(); //send release message messageSender.sendMessage(ReleaseMessageKeyGenerator.generate(appId, clusterName, namespaceName), Topics.APOLLO_RELEASE_TOPIC); } @Transactional @PostMapping("/apps/{appId}/clusters/{clusterName}/namespaces/{namespaceName}/gray-del-releases") public ReleaseDTO publish(@PathVariable("appId") String appId, @PathVariable("clusterName") String clusterName, @PathVariable("namespaceName") String namespaceName, @RequestParam("operator") String operator, @RequestParam("releaseName") String releaseName, @RequestParam(name = "comment", required = false) String releaseComment, @RequestParam(name = "isEmergencyPublish", defaultValue = "false") boolean isEmergencyPublish, @RequestParam(name = "grayDelKeys") Set<String> grayDelKeys){ Namespace namespace = namespaceService.findOne(appId, clusterName, namespaceName); if (namespace == null) { throw new NotFoundException(String.format("Could not find namespace for %s %s %s", appId, clusterName, namespaceName)); } Release release = releaseService.grayDeletionPublish(namespace, releaseName, releaseComment, operator, isEmergencyPublish, grayDelKeys); //send release message Namespace parentNamespace = namespaceService.findParentNamespace(namespace); String messageCluster; if (parentNamespace != null) { messageCluster = parentNamespace.getClusterName(); } else { messageCluster = clusterName; } messageSender.sendMessage(ReleaseMessageKeyGenerator.generate(appId, messageCluster, namespaceName), Topics.APOLLO_RELEASE_TOPIC); return BeanUtils.transform(ReleaseDTO.class, release); } }
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-portal/src/main/resources/static/views/component/namespace-panel-branch-tab.html
<section class="branch-panel-body" ng-if="namespace.initialized && (namespace.hasBranch && namespace.displayControl.currentOperateBranch != 'master')"> <!--main header--> <header class="panel-heading"> <div class="row"> <div class="col-md-6 col-sm-6 header-namespace"> <b class="namespace-name" ng-bind="namespace.viewName" data-tooltip="tooltip" data-placement="bottom" title="{{namespace.comment}}"></b> <span class="label label-warning no-radius namespace-label" ng-show="namespace.branch.itemModifiedCnt > 0">{{'Component.Namespace.Branch.IsChanged' | translate }} <span class="badge label badge-white namespace-label" ng-bind="namespace.branch.itemModifiedCnt"></span> </span> <span class="label label-primary no-radius namespace-label" ng-show="namespace.branch.lockOwner">{{'Component.Namespace.Branch.ChangeUser' | translate }}: <span ng-bind="namespace.branch.lockOwner"></span> </span> </div> <div class="col-md-6 col-sm-6 text-right header-buttons"> <a type="button" class="btn btn-success btn-sm" data-tooltip="tooltip" data-placement="bottom" title="{{'Component.Namespace.Branch.ContinueGrayscalePublish' | translate }}" ng-show="(namespace.hasReleasePermission || namespace.hasModifyPermission)" ng-click="publish(namespace.branch)"> {{'Component.Namespace.Branch.GrayscalePublish' | translate }} </a> <a type="button" class="btn btn-primary btn-sm" data-tooltip="tooltip" data-placement="bottom" title="{{'Component.Namespace.Branch.MergeToMasterAndPublish' | translate }}" ng-show="(namespace.hasReleasePermission || namespace.hasModifyPermission)" ng-click="mergeAndPublish(namespace.branch)"> {{'Component.Namespace.Branch.AllPublish' | translate }} </a> <a type="button" class="btn btn-warning btn-sm" data-tooltip="tooltip" data-placement="bottom" title="{{'Component.Namespace.Branch.DiscardGrayscaleVersion' | translate }}" ng-show="(namespace.hasReleasePermission || (!namespace.branch.latestRelease && namespace.hasModifyPermission))" ng-click="preDeleteBranch(namespace.branch)"> {{'Component.Namespace.Branch.DiscardGrayscale' | translate }} </a> </div> </div> </header> <div id="BODY{{namespace.branch.id}}" ng-class="{'collapse in': showNamespaceBody, 'collapse' : !showNamespaceBody}"> <div class="J_namespace-release-tip well well-sm no-radius text-center" ng-show="namespace.isConfigHidden"> <span style="color: red">{{'Component.Namespace.Branch.NoPermissionTips' | translate }}</span> </div> <!--second header--> <header class="panel-heading second-panel-heading" ng-show="!namespace.isConfigHidden"> <div class="row"> <div class="col-md-12 pull-left"> <ul class="nav nav-tabs"> <li role="presentation" ng-click="switchView(namespace.branch, 'table')" ng-show="namespace.isPropertiesFormat"> <a ng-class="{node_active:namespace.branch.viewType == 'table'}"> <img src="img/table.png"> {{'Component.Namespace.Branch.Tab.Configuration' | translate }} </a> </li> <li role="presentation" ng-click="switchView(namespace.branch, 'rule')"> <a ng-class="{node_active:namespace.branch.viewType == 'rule'}"> <img src="img/rule.png"> {{'Component.Namespace.Branch.Tab.GrayscaleRule' | translate }} <span class="badge badge-grey" ng-bind="namespace.branch.grayIps.length + namespace.branch.grayApps.length"></span> </a> </li> <li role="presentation" ng-click="switchView(namespace.branch, 'instance')"> <a ng-class="{node_active:namespace.branch.viewType == 'instance'}"> <img src="img/machine.png"> {{'Component.Namespace.Branch.Tab.GrayscaleInstance' | translate }} <span class="badge badge-grey" ng-bind="namespace.branch.latestReleaseInstances.total"></span> </a> </li> <li role="presentation" ng-click="switchView(namespace.branch, 'history')"> <a ng-class="{node_active:namespace.branch.viewType == 'history'}"> <img src="img/change.png"> {{'Component.Namespace.Branch.Tab.ChangeHistory' | translate }} </a> </li> </ul> </div> </div> </header> <!--namespace body--> <section ng-show="!namespace.isConfigHidden"> <!--items--> <div class="namespace-view-table" ng-show="namespace.branch.viewType == 'table'"> <div class="panel panel-default" ng-if="namespace.hasBranch"> <div class="panel-heading"> {{'Component.Namespace.Branch.Body.Item' | translate }} <button type="button" class="btn btn-primary btn-sm pull-right" style="margin-top: -4px;" ng-show="namespace.hasModifyPermission" ng-click="createItem(namespace.branch)"> <img src="img/plus.png"> {{'Component.Namespace.Branch.Body.AddedItem' | translate }} </button> </div> <table class="table table-bordered table-striped table-hover"> <thead> <tr> <th class="hover" title="{{'Component.Namespace.Branch.Body.ItemSort' | translate }}" ng-click="col='item.dataChangeLastModifiedTime';desc=!desc;"> {{'Component.Namespace.Branch.Body.PublishState' | translate }} <span class="glyphicon glyphicon-sort"></span> </th> <th class="hover" title="{{'Component.Namespace.Branch.Body.ItemSort' | translate }}" ng-click="col='item.key';desc=!desc;"> {{'Component.Namespace.Branch.Body.ItemKey' | translate }}&nbsp; <span class="glyphicon glyphicon-sort"></span> </th> <th> {{'Component.Namespace.Branch.Body.ItemMasterValue' | translate }} </th> <th> {{'Component.Namespace.Branch.Body.ItemGrayscaleValue' | translate }} </th> <th> {{'Component.Namespace.Branch.Body.ItemComment' | translate }} </th> <th class="hover" title="{{'Component.Namespace.Branch.Body.ItemSort' | translate }}" ng-click="col='item.dataChangeLastModifiedBy';desc=!desc;"> {{'Component.Namespace.Branch.Body.ItemLastModify' | translate }} <span class="glyphicon glyphicon-sort"></span> </th> <th class="hover" title="{{'Component.Namespace.Branch.Body.ItemSort' | translate }}" ng-click="col='item.dataChangeLastModifiedTime';desc=!desc;"> {{'Component.Namespace.Branch.Body.ItemLastModifyTime' | translate }} <span class="glyphicon glyphicon-sort"></span> </th> <th> {{'Component.Namespace.Branch.Body.ItemOperator' | translate }} </th> </tr> </thead> <tbody> <tr ng-repeat="config in namespace.branch.branchItems |orderBy:col:desc" ng-if="config.item.key"> <td width="7%" class="text-center"> <span class="label label-warning no-radius cursor-pointer" data-tooltip="tooltip" data-placement="bottom" title="{{'Component.Namespace.Branch.Body.ClickToSeeItemValue' | translate }}" ng-if="config.isModified || config.isDeleted" ng-click="showText(config.oldValue)">{{'Component.Namespace.Branch.Body.ItemNoPublish' | translate }}</span> <span class="label label-default-light no-radius" data-tooltip="tooltip" data-placement="bottom" title="{{'Component.Namespace.Branch.Body.ItemEffective' | translate }}" ng-if="!config.isModified">{{'Component.Namespace.Branch.Body.ItemPublished' | translate }}</span> </td> <td width="15%" class="cursor-pointer" title="{{'Component.Namespace.Branch.Body.ClickToSee' | translate }}" ng-click="showText(config.item.key)"> <span ng-bind="config.item.key | limitTo: 250"></span> <span ng-bind="config.item.key.length > 250 ? '...' :''"></span> <span class="label label-danger" ng-if="config.isDeleted" data-tooltip="tooltip" data-placement="bottom" title="{{'Component.Namespace.Branch.Body.DeletedItem' | translate }}">{{'Component.Namespace.Branch.Body.Delete' | translate }}</span> <span class="label label-info" ng-if="!config.isDeleted && config.masterItemExists" data-tooltip="tooltip" data-placement="bottom" title="{{'Component.Namespace.Branch.Body.ChangedFromMaster' | translate }}">{{'Component.Namespace.Branch.Body.Modify' | translate }}</span> <span class="label label-success" ng-if="!config.isDeleted && !config.masterItemExists" data-tooltip="tooltip" data-placement="bottom" title="{{'Component.Namespace.Branch.Body.AddedByGrayscale' | translate }}">{{'Component.Namespace.Branch.Body.Added' | translate }}</span> </td> <td width="20%" class="cursor-pointer" title="{{'Component.Namespace.Branch.Body.ClickToSee' | translate }}" ng-click="showText(config.masterReleaseValue)"> <span ng-bind="config.masterReleaseValue | limitTo: 250"></span> <span ng-bind="config.item.value.length > 250 ? '...': ''"></span> </td> <td width="20%" class="cursor-pointer" title="{{'Component.Namespace.Branch.Body.ClickToSee' | translate }}" ng-click="showText(config.item.value)"> <span ng-bind="config.item.value | limitTo: 250"></span> <span ng-bind="config.item.value.length > 250 ? '...': ''"></span> </td> <td width="10%" title="{{config.item.comment}}"> <span ng-bind="config.item.comment | limitTo: 250"></span> <span ng-bind="config.item.comment.length > 250 ?'...' : ''"></span> </td> <td width="10%" ng-bind="config.item.dataChangeLastModifiedBy"> </td> <td width="10%" ng-bind="config.item.dataChangeLastModifiedTime | date: 'yyyy-MM-dd HH:mm:ss'"> </td> <td width="9%" class="text-center"> <img src="img/edit.png" data-tooltip="tooltip" data-placement="bottom" title="{{'Component.Namespace.Branch.Body.Op.Modify' | translate }}" ng-if="!config.isDeleted" ng-click="editItem(namespace.branch, config.item)" ng-show="namespace.hasModifyPermission"> <img style="margin-left: 5px;" src="img/cancel.png" data-tooltip="tooltip" data-placement="bottom" title="{{'Component.Namespace.Branch.Body.Op.Delete' | translate }}" ng-if="!config.isDeleted" ng-click="preDeleteItem(namespace.branch, config.item)" ng-show="namespace.hasModifyPermission"> </td> </tr> </tbody> </table> </div> <div class="panel panel-default" ng-if="namespace.branch.masterItems && namespace.branch.masterItems.length > 0"> <div class="panel-heading"> {{'Component.Namespace.MasterBranch.Body.Title' | translate }} </div> <table class="table table-bordered table-striped table-hover"> <thead> <tr> <th>{{'Component.Namespace.MasterBranch.Body.PublishState' | translate }}</th> <th class="hover" title="{{'Component.Namespace.Branch.Body.ItemSort' | translate }}" ng-click="col='item.key';desc=!desc;"> {{'Component.Namespace.MasterBranch.Body.ItemKey' | translate }}&nbsp; <span class="glyphicon glyphicon-sort"></span> </th> <th> {{'Component.Namespace.MasterBranch.Body.ItemValue' | translate }} </th> <th> {{'Component.Namespace.MasterBranch.Body.ItemComment' | translate }} </th> <th class="hover" title="{{'Component.Namespace.Branch.Body.ItemSort' | translate }}" ng-click="col='item.dataChangeLastModifiedBy';desc=!desc;"> {{'Component.Namespace.MasterBranch.Body.ItemLastModify' | translate }} <span class="glyphicon glyphicon-sort"></span> </th> <th class="hover" title="{{'Component.Namespace.Branch.Body.ItemSort' | translate }}" ng-click="col='item.dataChangeLastModifiedTime';desc=!desc;"> {{'Component.Namespace.MasterBranch.Body.ItemLastModifyTime' | translate }} <span class="glyphicon glyphicon-sort"></span> </th> <th> {{'Component.Namespace.MasterBranch.Body.ItemOperator' | translate }} </th> </tr> </thead> <tbody> <tr ng-repeat="config in namespace.branch.masterItems |orderBy:col:desc" ng-if="config.item.key"> <td width="8%" class="text-center"> <span class="label label-warning no-radius cursor-pointer" data-tooltip="tooltip" data-placement="bottom" title="{{'Component.Namespace.MasterBranch.Body.ClickToSeeItemValue' | translate }}" ng-if="config.isModified || config.isDeleted" ng-click="showText(config.oldValue)">{{'Component.Namespace.MasterBranch.Body.ItemNoPublish' | translate }}</span> <span class="label label-default-light no-radius" data-tooltip="tooltip" data-placement="bottom" title="{{'Component.Namespace.MasterBranch.Body.ItemEffective' | translate }}" ng-if="!config.isModified">{{'Component.Namespace.MasterBranch.Body.ItemPublished' | translate }}</span> </td> <td width="15%" class="cursor-pointer" title="{{'Component.Namespace.Branch.Body.ClickToSee' | translate }}" ng-click="showText(config.item.key)"> <span ng-bind="config.item.key | limitTo: 250"></span> <span ng-bind="config.item.key.length > 250 ? '...' :''"></span> <span class="label label-success" ng-if="config.isModified && !config.oldValue" data-tooltip="tooltip" data-placement="bottom" title="{{'Component.Namespace.MasterBranch.Body.AddedItem' | translate }}">{{'Component.Namespace.Branch.Body.Added' | translate }}</span> <span class="label label-info" ng-if="config.isModified && config.oldValue && !config.isDeleted" data-tooltip="tooltip" data-placement="bottom" title="{{'Component.Namespace.Branch.Body.ModifiedItem' | translate }}">{{'Component.Namespace.Branch.Body.Modify' | translate }}</span> <span class="label label-danger" ng-if="config.isDeleted" data-tooltip="tooltip" data-placement="bottom" title="{{'Component.Namespace.Branch.Body.DeletedItem' | translate }}">{{'Component.Namespace.Branch.Body.Delete' | translate }}</span> </td> <td width="35%" class="cursor-pointer" title="{{'Component.Namespace.Branch.Body.ClickToSee' | translate }}" ng-click="showText(config.item.value)"> <span ng-bind="config.item.value | limitTo: 250"></span> <span ng-bind="config.item.value.length > 250 ? '...': ''"></span> </td> <td width="12%" title="{{config.item.comment}}"> <span ng-bind="config.item.comment | limitTo: 250"></span> <span ng-bind="config.item.comment.length > 250 ?'...' : ''"></span> </td> <td width="10%" ng-bind="config.item.dataChangeLastModifiedBy"> </td> <td width="15%" ng-bind="config.item.dataChangeLastModifiedTime | date: 'yyyy-MM-dd HH:mm:ss'"> </td> <td width="5%" class="text-center"> <img src="img/gray.png" data-tooltip="tooltip" data-placement="bottom" title="{{'Component.Namespace.MasterBranch.Body.ModifyItem' | translate }}" ng-if="!config.isDeleted" ng-click="editItem(namespace.branch, config.item)" ng-show="namespace.hasModifyPermission"> </td> </tr> </tbody> </table> </div> </div> <!--gray rules--> <div class="rules-manage-view row" ng-show="namespace.branch.viewType == 'rule'"> <div class="alert alert-warning no-radius" ng-show="!namespace.hasModifyPermission && !namespace.hasReleasePermission"> <strong>Tips:</strong> {{'Component.Namespace.Branch.GrayScaleRule.NoPermissionTips' | translate }} </div> <table class="table table-bordered table-hover"> <thead> <tr> <th>{{'Component.Namespace.Branch.GrayScaleRule.AppId' | translate }}</th> <th>{{'Component.Namespace.Branch.GrayScaleRule.IpList' | translate }}</th> <th>{{'Component.Namespace.Branch.GrayScaleRule.Operator' | translate }}</th> </tr> </thead> <tbody> <tr ng-repeat="ruleItem in namespace.branch.rules.ruleItems"> <td width="20%" ng-bind="ruleItem.clientAppId"></td> <td width="70%" ng-show="!ruleItem.ApplyToAllInstances" ng-bind="ruleItem.clientIpList.join(', ')"></td> <td width="70%" ng-show="ruleItem.ApplyToAllInstances"> {{'Component.Namespace.Branch.GrayScaleRule.ApplyToAllInstances' | translate }}</td> <td class="text-center" width="10%"> <img src="img/edit.png" class="i-20 hover" data-tooltip="tooltip" data-placement="bottom" title="{{'Component.Namespace.Branch.GrayScaleRule.Modify' | translate }}" ng-show="namespace.hasModifyPermission || namespace.hasReleasePermission" ng-click="editRuleItem(namespace.branch, ruleItem)"> <img src="img/cancel.png" class="i-20 hover" style="margin-left: 5px;" data-tooltip="tooltip" data-placement="bottom" title="{{'Component.Namespace.Branch.GrayScaleRule.Delete' | translate }}" ng-show="namespace.hasModifyPermission || namespace.hasReleasePermission" ng-click="deleteRuleItem(namespace.branch, ruleItem)"> </td> </tr> </tbody> </table> <button class="btn btn-primary" ng-if="namespace.hasModifyPermission || namespace.hasReleasePermission" ng-show="(namespace.isPublic && !namespace.isLinkedNamespace) || ((!namespace.isPublic || namespace.isLinkedNamespace) && (!namespace.branch.rules || !namespace.branch.rules.ruleItems || !namespace.branch.rules.ruleItems.length))" ng-click="addRuleItem(namespace.branch)">{{'Component.Namespace.Branch.GrayScaleRule.AddNewRule' | translate }} </button> </div> <!--instances --> <div class="panel panel-default" ng-show="namespace.branch.viewType == 'instance'"> <div class="panel-heading text-right"> <button class="btn btn-default btn-sm" data-tooltip="tooltip" data-placement="bottom" title="{{'Component.Namespace.Branch.Instance.RefreshList' | translate }}" ng-click="refreshInstancesInfo(namespace.branch)"> <img ng-src="{{ '/img/refresh.png' | prefixPath }}" /> </button> </div> <div class="panel-body"> <div class="panel-default" ng-if="namespace.branch.latestReleaseInstances.total > 0"> <div class="panel-heading"> <a target="_blank" data-tooltip="tooltip" data-placement="bottom" title="{{'Component.Namespace.Branch.Instance.ItemToSee' | translate }}" ng-href="{{ '/config/history.html' | prefixPath }}?#/appid={{appId}}&env={{env}}&clusterName={{namespace.baseInfo.clusterName}}&namespaceName={{namespace.baseInfo.namespaceName}}&releaseId={{namespace.branch.latestRelease.id}}"> {{namespace.branch.latestRelease.name}} </a> </div> <table class="table table-bordered table-striped"> <thead> <tr> <td>{{'Component.Namespace.Branch.Instance.InstanceAppId' | translate }}</td> <td>{{'Component.Namespace.Branch.Instance.InstanceClusterName' | translate }}</td> <td>{{'Component.Namespace.Branch.Instance.InstanceDataCenter' | translate }}</td> <td>{{'Component.Namespace.Branch.Instance.InstanceIp' | translate }}</td> <td>{{'Component.Namespace.Branch.Instance.InstanceGetItemTime' | translate }}</td> </tr> </thead> <tbody> <tr ng-repeat="instance in namespace.branch.latestReleaseInstances.content"> <td width="20%" ng-bind="instance.appId"></td> <td width="20%" ng-bind="instance.clusterName"></td> <td width="20%" ng-bind="instance.dataCenter"></td> <td width="20%" ng-bind="instance.ip"></td> <td width="20%">{{instance.configs && instance.configs.length ? (instance.configs[0].releaseDeliveryTime | date: 'yyyy-MM-dd HH:mm:ss') : ''}} </td> </tr> </tbody> </table> <div class="row text-center" ng-show="namespace.branch.latestReleaseInstances.content.length < namespace.branch.latestReleaseInstances.total"> <button class="btn btn-default" ng-click="loadInstanceInfo(namespace.branch)">{{'Component.Namespace.Branch.Instance.LoadMore' | translate }}</button> </div> </div> <div class="text-center" ng-if="namespace.branch.latestReleaseInstances.total == 0"> {{'Component.Namespace.Branch.Instance.NoInstance' | translate }} </div> </div> </div> <!--history view--> <div class="J_historyview history-view" ng-show="namespace.branch.viewType == 'history'"> <div class="media" ng-show="namespace.branch.commits && namespace.branch.commits.length" ng-repeat="commits in namespace.branch.commits"> <div class="media-body"> <div class="row"> <div class="col-md-6 col-sm-6 "> <h3 class="media-heading" ng-bind="commits.dataChangeCreatedBy"></h3> </div> <div class="col-md-6 col-sm-6 text-right"> <h5 class="media-heading" ng-bind="commits.dataChangeCreatedTime | date: 'yyyy-MM-dd HH:mm:ss'"></h5> </div> </div> <!--properties format--> <table class="table table-bordered table-striped text-center table-hover" style="margin-top: 5px;" ng-if="namespace.isPropertiesFormat"> <thead> <tr> <th> {{'Component.Namespace.Branch.History.ItemType' | translate }} </th> <th> {{'Component.Namespace.Branch.History.ItemKey' | translate }} </th> <th> {{'Component.Namespace.Branch.History.ItemOldValue' | translate }} </th> <th> {{'Component.Namespace.Branch.History.ItemNewValue' | translate }} </th> <th> {{'Component.Namespace.Branch.History.ItemComment' | translate }} </th> </tr> </thead> <tbody> <!--兼容老数据,不显示item类型为空行和注释的item--> <tr ng-repeat="item in commits.changeSets.createItems" ng-show="item.key"> <td width="6%"> {{'Component.Namespace.Branch.History.NewAdded' | translate }} </td> <td width="20%" title="{{item.key}}"> <span ng-bind="item.key | limitTo: 250"></span> <span ng-bind="item.key.length > 250 ? '...' :''"></span> </td> <td width="28%"> </td> <td width="28%" class="cursor-pointer" title="{{item.value}}" ng-click="showText(item.value)"> <span ng-bind="item.value | limitTo: 250"></span> <span ng-bind="item.value.length > 250 ? '...': ''"></span> </td> <td width="18%" title="{{item.comment}}"> <span ng-bind="item.comment | limitTo: 250"></span> <span ng-bind="item.comment.length > 250 ?'...' : ''"></span> </td> </tr> <tr ng-repeat="item in commits.changeSets.updateItems"> <td width="6%"> {{'Component.Namespace.Branch.History.Modified' | translate }} </td> <td width="20%" title="{{item.newItem.key}}"> <span ng-bind="item.newItem.key | limitTo: 250"></span> <span ng-bind="item.newItem.key.length > 250 ? '...' :''"></span> </td> <td width="28%" class="cursor-pointer" title="{{item.oldItem.value}}" ng-click="showText(item.oldItem.value)"> <span ng-bind="item.oldItem.value | limitTo: 250"></span> <span ng-bind="item.oldItem.value.length > 250 ? '...': ''"></span> </td> <td width="28%" class="cursor-pointer" title="{{item.newItem.value}}" ng-click="showText(item.newItem.value)"> <span ng-bind="item.newItem.value | limitTo: 250"></span> <span ng-bind="item.newItem.value.length > 250 ? '...': ''"></span> </td> <td width="18%" title="{{item.newItem.comment}}"> <span ng-bind="item.newItem.comment | limitTo: 250"></span> <span ng-bind="item.newItem.comment.length > 250 ?'...' : ''"></span> </td> </tr> <tr ng-repeat="item in commits.changeSets.deleteItems" ng-show="item.key || item.comment"> <td width="6%"> {{'Component.Namespace.Branch.History.Deleted' | translate }} </td> <td width="20%" title="{{item.key}}"> <span ng-bind="item.key | limitTo: 250"></span> <span ng-bind="item.key.length > 250 ? '...' :''"></span> </td> <td width="28%" title="{{item.value}}"> <span ng-bind="item.value | limitTo: 250"></span> <span ng-bind="item.value.length > 250 ? '...': ''"></span> </td> <td width="28%"> </td> <td width="18%" title="{{item.comment}}"> <span ng-bind="item.comment | limitTo: 250"></span> <span ng-bind="item.comment.length > 250 ?'...' : ''"></span> </td> </tr> </tbody> </table> <!--not properties format--> <div ng-if="!namespace.isPropertiesFormat"> <div ng-repeat="item in commits.changeSets.createItems"> <textarea class="form-control no-radius" rows="20" ng-disabled="true" ng-bind="item.value"> </textarea> </div> <div ng-repeat="item in commits.changeSets.updateItems"> <textarea class="form-control no-radius" rows="20" ng-disabled="true" ng-bind="item.newItem.value"> </textarea> </div> </div> </div> <hr> </div> <div class="text-center"> <button type="button" class="btn btn-default" ng-show="!namespace.branch.hasLoadAllCommit" ng-click="loadCommitHistory(namespace.branch)">{{'Component.Namespace.Branch.History.LoadMore' | translate }} <span class="glyphicon glyphicon-menu-down"></span></button> </div> <div class="empty-container text-center" ng-show="!namespace.branch.commits || !namespace.branch.commits.length"> {{'Component.Namespace.Branch.History.NoHistory' | translate }} </div> </div> </section> </div> </section>
<section class="branch-panel-body" ng-if="namespace.initialized && (namespace.hasBranch && namespace.displayControl.currentOperateBranch != 'master')"> <!--main header--> <header class="panel-heading"> <div class="row"> <div class="col-md-6 col-sm-6 header-namespace"> <b class="namespace-name" ng-bind="namespace.viewName" data-tooltip="tooltip" data-placement="bottom" title="{{namespace.comment}}"></b> <span class="label label-warning no-radius namespace-label" ng-show="namespace.branch.itemModifiedCnt > 0">{{'Component.Namespace.Branch.IsChanged' | translate }} <span class="badge label badge-white namespace-label" ng-bind="namespace.branch.itemModifiedCnt"></span> </span> <span class="label label-primary no-radius namespace-label" ng-show="namespace.branch.lockOwner">{{'Component.Namespace.Branch.ChangeUser' | translate }}: <span ng-bind="namespace.branch.lockOwner"></span> </span> </div> <div class="col-md-6 col-sm-6 text-right header-buttons"> <a type="button" class="btn btn-success btn-sm" data-tooltip="tooltip" data-placement="bottom" title="{{'Component.Namespace.Branch.ContinueGrayscalePublish' | translate }}" ng-show="(namespace.hasReleasePermission || namespace.hasModifyPermission)" ng-click="publish(namespace.branch)"> {{'Component.Namespace.Branch.GrayscalePublish' | translate }} </a> <a type="button" class="btn btn-primary btn-sm" data-tooltip="tooltip" data-placement="bottom" title="{{'Component.Namespace.Branch.MergeToMasterAndPublish' | translate }}" ng-show="(namespace.hasReleasePermission || namespace.hasModifyPermission)" ng-click="mergeAndPublish(namespace.branch)"> {{'Component.Namespace.Branch.AllPublish' | translate }} </a> <a type="button" class="btn btn-warning btn-sm" data-tooltip="tooltip" data-placement="bottom" title="{{'Component.Namespace.Branch.DiscardGrayscaleVersion' | translate }}" ng-show="(namespace.hasReleasePermission || (!namespace.branch.latestRelease && namespace.hasModifyPermission))" ng-click="preDeleteBranch(namespace.branch)"> {{'Component.Namespace.Branch.DiscardGrayscale' | translate }} </a> </div> </div> </header> <div id="BODY{{namespace.branch.id}}" ng-class="{'collapse in': showNamespaceBody, 'collapse' : !showNamespaceBody}"> <div class="J_namespace-release-tip well well-sm no-radius text-center" ng-show="namespace.isConfigHidden"> <span style="color: red">{{'Component.Namespace.Branch.NoPermissionTips' | translate }}</span> </div> <!--second header--> <header class="panel-heading second-panel-heading" ng-show="!namespace.isConfigHidden"> <div class="row"> <div class="col-md-12 pull-left"> <ul class="nav nav-tabs"> <li role="presentation" ng-click="switchView(namespace.branch, 'table')" ng-show="namespace.isPropertiesFormat"> <a ng-class="{node_active:namespace.branch.viewType == 'table'}"> <img src="img/table.png"> {{'Component.Namespace.Branch.Tab.Configuration' | translate }} </a> </li> <li role="presentation" ng-click="switchView(namespace.branch, 'rule')"> <a ng-class="{node_active:namespace.branch.viewType == 'rule'}"> <img src="img/rule.png"> {{'Component.Namespace.Branch.Tab.GrayscaleRule' | translate }} <span class="badge badge-grey" ng-bind="namespace.branch.grayIps.length + namespace.branch.grayApps.length"></span> </a> </li> <li role="presentation" ng-click="switchView(namespace.branch, 'instance')"> <a ng-class="{node_active:namespace.branch.viewType == 'instance'}"> <img src="img/machine.png"> {{'Component.Namespace.Branch.Tab.GrayscaleInstance' | translate }} <span class="badge badge-grey" ng-bind="namespace.branch.latestReleaseInstances.total"></span> </a> </li> <li role="presentation" ng-click="switchView(namespace.branch, 'history')"> <a ng-class="{node_active:namespace.branch.viewType == 'history'}"> <img src="img/change.png"> {{'Component.Namespace.Branch.Tab.ChangeHistory' | translate }} </a> </li> </ul> </div> </div> </header> <!--namespace body--> <section ng-show="!namespace.isConfigHidden"> <!--items--> <div class="namespace-view-table" ng-show="namespace.branch.viewType == 'table'"> <div class="panel panel-default" ng-if="namespace.hasBranch"> <div class="panel-heading"> {{'Component.Namespace.Branch.Body.Item' | translate }} <button type="button" class="btn btn-primary btn-sm pull-right" style="margin-top: -4px;" ng-show="namespace.hasModifyPermission" ng-click="createItem(namespace.branch)"> <img src="img/plus.png"> {{'Component.Namespace.Branch.Body.AddedItem' | translate }} </button> </div> <table class="table table-bordered table-striped table-hover"> <thead> <tr> <th class="hover" title="{{'Component.Namespace.Branch.Body.ItemSort' | translate }}" ng-click="col='item.dataChangeLastModifiedTime';desc=!desc;"> {{'Component.Namespace.Branch.Body.PublishState' | translate }} <span class="glyphicon glyphicon-sort"></span> </th> <th class="hover" title="{{'Component.Namespace.Branch.Body.ItemSort' | translate }}" ng-click="col='item.key';desc=!desc;"> {{'Component.Namespace.Branch.Body.ItemKey' | translate }}&nbsp; <span class="glyphicon glyphicon-sort"></span> </th> <th> {{'Component.Namespace.Branch.Body.ItemMasterValue' | translate }} </th> <th> {{'Component.Namespace.Branch.Body.ItemGrayscaleValue' | translate }} </th> <th> {{'Component.Namespace.Branch.Body.ItemComment' | translate }} </th> <th class="hover" title="{{'Component.Namespace.Branch.Body.ItemSort' | translate }}" ng-click="col='item.dataChangeLastModifiedBy';desc=!desc;"> {{'Component.Namespace.Branch.Body.ItemLastModify' | translate }} <span class="glyphicon glyphicon-sort"></span> </th> <th class="hover" title="{{'Component.Namespace.Branch.Body.ItemSort' | translate }}" ng-click="col='item.dataChangeLastModifiedTime';desc=!desc;"> {{'Component.Namespace.Branch.Body.ItemLastModifyTime' | translate }} <span class="glyphicon glyphicon-sort"></span> </th> <th> {{'Component.Namespace.Branch.Body.ItemOperator' | translate }} </th> </tr> </thead> <tbody> <tr ng-repeat="config in namespace.branch.branchItems |orderBy:col:desc" ng-if="config.item.key"> <td width="7%" class="text-center"> <span class="label label-warning no-radius cursor-pointer" data-tooltip="tooltip" data-placement="bottom" title="{{'Component.Namespace.Branch.Body.ClickToSeeItemValue' | translate }}" ng-if="config.isModified || config.isDeleted" ng-click="showText(config.oldValue)">{{'Component.Namespace.Branch.Body.ItemNoPublish' | translate }}</span> <span class="label label-default-light no-radius" data-tooltip="tooltip" data-placement="bottom" title="{{'Component.Namespace.Branch.Body.ItemEffective' | translate }}" ng-if="!config.isModified">{{'Component.Namespace.Branch.Body.ItemPublished' | translate }}</span> </td> <td width="15%" class="cursor-pointer" title="{{'Component.Namespace.Branch.Body.ClickToSee' | translate }}" ng-click="showText(config.item.key)"> <span ng-bind="config.item.key | limitTo: 250"></span> <span ng-bind="config.item.key.length > 250 ? '...' :''"></span> <span class="label label-danger" ng-if="config.isDeleted" data-tooltip="tooltip" data-placement="bottom" title="{{'Component.Namespace.Branch.Body.DeletedItem' | translate }}">{{'Component.Namespace.Branch.Body.Delete' | translate }}</span> <span class="label label-info" ng-if="!config.isDeleted && config.masterItemExists" data-tooltip="tooltip" data-placement="bottom" title="{{'Component.Namespace.Branch.Body.ChangedFromMaster' | translate }}">{{'Component.Namespace.Branch.Body.Modify' | translate }}</span> <span class="label label-success" ng-if="!config.isDeleted && !config.masterItemExists" data-tooltip="tooltip" data-placement="bottom" title="{{'Component.Namespace.Branch.Body.AddedByGrayscale' | translate }}">{{'Component.Namespace.Branch.Body.Added' | translate }}</span> </td> <td width="20%" class="cursor-pointer" title="{{'Component.Namespace.Branch.Body.ClickToSee' | translate }}" ng-click="showText(config.masterReleaseValue)"> <span ng-bind="config.masterReleaseValue | limitTo: 250"></span> <span ng-bind="config.item.value.length > 250 ? '...': ''"></span> </td> <td width="20%" class="cursor-pointer" title="{{'Component.Namespace.Branch.Body.ClickToSee' | translate }}" ng-click="showText(config.item.value)"> <span ng-bind="config.item.value | limitTo: 250"></span> <span ng-bind="config.item.value.length > 250 ? '...': ''"></span> </td> <td width="10%" title="{{config.item.comment}}"> <span ng-bind="config.item.comment | limitTo: 250"></span> <span ng-bind="config.item.comment.length > 250 ?'...' : ''"></span> </td> <td width="10%" ng-bind="config.item.dataChangeLastModifiedBy"> </td> <td width="10%" ng-bind="config.item.dataChangeLastModifiedTime | date: 'yyyy-MM-dd HH:mm:ss'"> </td> <td width="9%" class="text-center"> <img src="img/edit.png" data-tooltip="tooltip" data-placement="bottom" title="{{'Component.Namespace.Branch.Body.Op.Modify' | translate }}" ng-if="!config.isDeleted" ng-click="editItem(namespace.branch, config.item)" ng-show="namespace.hasModifyPermission"> <img style="margin-left: 5px;" src="img/cancel.png" data-tooltip="tooltip" data-placement="bottom" title="{{'Component.Namespace.Branch.Body.Op.Delete' | translate }}" ng-if="!config.isDeleted" ng-click="preDeleteItem(namespace.branch, config.item)" ng-show="namespace.hasModifyPermission"> </td> </tr> </tbody> </table> </div> <div class="panel panel-default" ng-if="namespace.branch.masterItems && namespace.branch.masterItems.length > 0"> <div class="panel-heading"> {{'Component.Namespace.MasterBranch.Body.Title' | translate }} </div> <table class="table table-bordered table-striped table-hover"> <thead> <tr> <th>{{'Component.Namespace.MasterBranch.Body.PublishState' | translate }}</th> <th class="hover" title="{{'Component.Namespace.Branch.Body.ItemSort' | translate }}" ng-click="col='item.key';desc=!desc;"> {{'Component.Namespace.MasterBranch.Body.ItemKey' | translate }}&nbsp; <span class="glyphicon glyphicon-sort"></span> </th> <th> {{'Component.Namespace.MasterBranch.Body.ItemValue' | translate }} </th> <th> {{'Component.Namespace.MasterBranch.Body.ItemComment' | translate }} </th> <th class="hover" title="{{'Component.Namespace.Branch.Body.ItemSort' | translate }}" ng-click="col='item.dataChangeLastModifiedBy';desc=!desc;"> {{'Component.Namespace.MasterBranch.Body.ItemLastModify' | translate }} <span class="glyphicon glyphicon-sort"></span> </th> <th class="hover" title="{{'Component.Namespace.Branch.Body.ItemSort' | translate }}" ng-click="col='item.dataChangeLastModifiedTime';desc=!desc;"> {{'Component.Namespace.MasterBranch.Body.ItemLastModifyTime' | translate }} <span class="glyphicon glyphicon-sort"></span> </th> <th> {{'Component.Namespace.MasterBranch.Body.ItemOperator' | translate }} </th> </tr> </thead> <tbody> <tr ng-repeat="config in namespace.branch.masterItems |orderBy:col:desc" ng-if="config.item.key"> <td width="8%" class="text-center"> <span class="label label-warning no-radius cursor-pointer" data-tooltip="tooltip" data-placement="bottom" title="{{'Component.Namespace.MasterBranch.Body.ClickToSeeItemValue' | translate }}" ng-if="config.isModified || config.isDeleted" ng-click="showText(config.oldValue)">{{'Component.Namespace.MasterBranch.Body.ItemNoPublish' | translate }}</span> <span class="label label-default-light no-radius" data-tooltip="tooltip" data-placement="bottom" title="{{'Component.Namespace.MasterBranch.Body.ItemEffective' | translate }}" ng-if="!config.isModified">{{'Component.Namespace.MasterBranch.Body.ItemPublished' | translate }}</span> </td> <td width="15%" class="cursor-pointer" title="{{'Component.Namespace.Branch.Body.ClickToSee' | translate }}" ng-click="showText(config.item.key)"> <span ng-bind="config.item.key | limitTo: 250"></span> <span ng-bind="config.item.key.length > 250 ? '...' :''"></span> <span class="label label-success" ng-if="config.isModified && !config.oldValue" data-tooltip="tooltip" data-placement="bottom" title="{{'Component.Namespace.MasterBranch.Body.AddedItem' | translate }}">{{'Component.Namespace.Branch.Body.Added' | translate }}</span> <span class="label label-info" ng-if="config.isModified && config.oldValue && !config.isDeleted" data-tooltip="tooltip" data-placement="bottom" title="{{'Component.Namespace.Branch.Body.ModifiedItem' | translate }}">{{'Component.Namespace.Branch.Body.Modify' | translate }}</span> <span class="label label-danger" ng-if="config.isDeleted" data-tooltip="tooltip" data-placement="bottom" title="{{'Component.Namespace.Branch.Body.DeletedItem' | translate }}">{{'Component.Namespace.Branch.Body.Delete' | translate }}</span> </td> <td width="35%" class="cursor-pointer" title="{{'Component.Namespace.Branch.Body.ClickToSee' | translate }}" ng-click="showText(config.item.value)"> <span ng-bind="config.item.value | limitTo: 250"></span> <span ng-bind="config.item.value.length > 250 ? '...': ''"></span> </td> <td width="12%" title="{{config.item.comment}}"> <span ng-bind="config.item.comment | limitTo: 250"></span> <span ng-bind="config.item.comment.length > 250 ?'...' : ''"></span> </td> <td width="10%" ng-bind="config.item.dataChangeLastModifiedBy"> </td> <td width="15%" ng-bind="config.item.dataChangeLastModifiedTime | date: 'yyyy-MM-dd HH:mm:ss'"> </td> <td width="5%" class="text-center"> <img src="img/gray.png" data-tooltip="tooltip" data-placement="bottom" title="{{'Component.Namespace.MasterBranch.Body.ModifyItem' | translate }}" ng-if="!config.isDeleted" ng-click="editItem(namespace.branch, config.item)" ng-show="namespace.hasModifyPermission"> </td> </tr> </tbody> </table> </div> </div> <!--gray rules--> <div class="rules-manage-view row" ng-show="namespace.branch.viewType == 'rule'"> <div class="alert alert-warning no-radius" ng-show="!namespace.hasModifyPermission && !namespace.hasReleasePermission"> <strong>Tips:</strong> {{'Component.Namespace.Branch.GrayScaleRule.NoPermissionTips' | translate }} </div> <table class="table table-bordered table-hover"> <thead> <tr> <th>{{'Component.Namespace.Branch.GrayScaleRule.AppId' | translate }}</th> <th>{{'Component.Namespace.Branch.GrayScaleRule.IpList' | translate }}</th> <th>{{'Component.Namespace.Branch.GrayScaleRule.Operator' | translate }}</th> </tr> </thead> <tbody> <tr ng-repeat="ruleItem in namespace.branch.rules.ruleItems"> <td width="20%" ng-bind="ruleItem.clientAppId"></td> <td width="70%" ng-show="!ruleItem.ApplyToAllInstances" ng-bind="ruleItem.clientIpList.join(', ')"></td> <td width="70%" ng-show="ruleItem.ApplyToAllInstances"> {{'Component.Namespace.Branch.GrayScaleRule.ApplyToAllInstances' | translate }}</td> <td class="text-center" width="10%"> <img src="img/edit.png" class="i-20 hover" data-tooltip="tooltip" data-placement="bottom" title="{{'Component.Namespace.Branch.GrayScaleRule.Modify' | translate }}" ng-show="namespace.hasModifyPermission || namespace.hasReleasePermission" ng-click="editRuleItem(namespace.branch, ruleItem)"> <img src="img/cancel.png" class="i-20 hover" style="margin-left: 5px;" data-tooltip="tooltip" data-placement="bottom" title="{{'Component.Namespace.Branch.GrayScaleRule.Delete' | translate }}" ng-show="namespace.hasModifyPermission || namespace.hasReleasePermission" ng-click="deleteRuleItem(namespace.branch, ruleItem)"> </td> </tr> </tbody> </table> <button class="btn btn-primary" ng-if="namespace.hasModifyPermission || namespace.hasReleasePermission" ng-show="(namespace.isPublic && !namespace.isLinkedNamespace) || ((!namespace.isPublic || namespace.isLinkedNamespace) && (!namespace.branch.rules || !namespace.branch.rules.ruleItems || !namespace.branch.rules.ruleItems.length))" ng-click="addRuleItem(namespace.branch)">{{'Component.Namespace.Branch.GrayScaleRule.AddNewRule' | translate }} </button> </div> <!--instances --> <div class="panel panel-default" ng-show="namespace.branch.viewType == 'instance'"> <div class="panel-heading text-right"> <button class="btn btn-default btn-sm" data-tooltip="tooltip" data-placement="bottom" title="{{'Component.Namespace.Branch.Instance.RefreshList' | translate }}" ng-click="refreshInstancesInfo(namespace.branch)"> <img ng-src="{{ '/img/refresh.png' | prefixPath }}" /> </button> </div> <div class="panel-body"> <div class="panel-default" ng-if="namespace.branch.latestReleaseInstances.total > 0"> <div class="panel-heading"> <a target="_blank" data-tooltip="tooltip" data-placement="bottom" title="{{'Component.Namespace.Branch.Instance.ItemToSee' | translate }}" ng-href="{{ '/config/history.html' | prefixPath }}?#/appid={{appId}}&env={{env}}&clusterName={{namespace.baseInfo.clusterName}}&namespaceName={{namespace.baseInfo.namespaceName}}&releaseId={{namespace.branch.latestRelease.id}}"> {{namespace.branch.latestRelease.name}} </a> </div> <table class="table table-bordered table-striped"> <thead> <tr> <td>{{'Component.Namespace.Branch.Instance.InstanceAppId' | translate }}</td> <td>{{'Component.Namespace.Branch.Instance.InstanceClusterName' | translate }}</td> <td>{{'Component.Namespace.Branch.Instance.InstanceDataCenter' | translate }}</td> <td>{{'Component.Namespace.Branch.Instance.InstanceIp' | translate }}</td> <td>{{'Component.Namespace.Branch.Instance.InstanceGetItemTime' | translate }}</td> </tr> </thead> <tbody> <tr ng-repeat="instance in namespace.branch.latestReleaseInstances.content"> <td width="20%" ng-bind="instance.appId"></td> <td width="20%" ng-bind="instance.clusterName"></td> <td width="20%" ng-bind="instance.dataCenter"></td> <td width="20%" ng-bind="instance.ip"></td> <td width="20%">{{instance.configs && instance.configs.length ? (instance.configs[0].releaseDeliveryTime | date: 'yyyy-MM-dd HH:mm:ss') : ''}} </td> </tr> </tbody> </table> <div class="row text-center" ng-show="namespace.branch.latestReleaseInstances.content.length < namespace.branch.latestReleaseInstances.total"> <button class="btn btn-default" ng-click="loadInstanceInfo(namespace.branch)">{{'Component.Namespace.Branch.Instance.LoadMore' | translate }}</button> </div> </div> <div class="text-center" ng-if="namespace.branch.latestReleaseInstances.total == 0"> {{'Component.Namespace.Branch.Instance.NoInstance' | translate }} </div> </div> </div> <!--history view--> <div class="J_historyview history-view" ng-show="namespace.branch.viewType == 'history'"> <div class="media" ng-show="namespace.branch.commits && namespace.branch.commits.length" ng-repeat="commits in namespace.branch.commits"> <div class="media-body"> <div class="row"> <div class="col-md-6 col-sm-6 "> <h3 class="media-heading" ng-bind="commits.dataChangeCreatedBy"></h3> </div> <div class="col-md-6 col-sm-6 text-right"> <h5 class="media-heading" ng-bind="commits.dataChangeCreatedTime | date: 'yyyy-MM-dd HH:mm:ss'"></h5> </div> </div> <!--properties format--> <table class="table table-bordered table-striped text-center table-hover" style="margin-top: 5px;" ng-if="namespace.isPropertiesFormat"> <thead> <tr> <th> {{'Component.Namespace.Branch.History.ItemType' | translate }} </th> <th> {{'Component.Namespace.Branch.History.ItemKey' | translate }} </th> <th> {{'Component.Namespace.Branch.History.ItemOldValue' | translate }} </th> <th> {{'Component.Namespace.Branch.History.ItemNewValue' | translate }} </th> <th> {{'Component.Namespace.Branch.History.ItemComment' | translate }} </th> </tr> </thead> <tbody> <!--兼容老数据,不显示item类型为空行和注释的item--> <tr ng-repeat="item in commits.changeSets.createItems" ng-show="item.key"> <td width="6%"> {{'Component.Namespace.Branch.History.NewAdded' | translate }} </td> <td width="20%" title="{{item.key}}"> <span ng-bind="item.key | limitTo: 250"></span> <span ng-bind="item.key.length > 250 ? '...' :''"></span> </td> <td width="28%"> </td> <td width="28%" class="cursor-pointer" title="{{item.value}}" ng-click="showText(item.value)"> <span ng-bind="item.value | limitTo: 250"></span> <span ng-bind="item.value.length > 250 ? '...': ''"></span> </td> <td width="18%" title="{{item.comment}}"> <span ng-bind="item.comment | limitTo: 250"></span> <span ng-bind="item.comment.length > 250 ?'...' : ''"></span> </td> </tr> <tr ng-repeat="item in commits.changeSets.updateItems"> <td width="6%"> {{'Component.Namespace.Branch.History.Modified' | translate }} </td> <td width="20%" title="{{item.newItem.key}}"> <span ng-bind="item.newItem.key | limitTo: 250"></span> <span ng-bind="item.newItem.key.length > 250 ? '...' :''"></span> </td> <td width="28%" class="cursor-pointer" title="{{item.oldItem.value}}" ng-click="showText(item.oldItem.value)"> <span ng-bind="item.oldItem.value | limitTo: 250"></span> <span ng-bind="item.oldItem.value.length > 250 ? '...': ''"></span> </td> <td width="28%" class="cursor-pointer" title="{{item.newItem.value}}" ng-click="showText(item.newItem.value)"> <span ng-bind="item.newItem.value | limitTo: 250"></span> <span ng-bind="item.newItem.value.length > 250 ? '...': ''"></span> </td> <td width="18%" title="{{item.newItem.comment}}"> <span ng-bind="item.newItem.comment | limitTo: 250"></span> <span ng-bind="item.newItem.comment.length > 250 ?'...' : ''"></span> </td> </tr> <tr ng-repeat="item in commits.changeSets.deleteItems" ng-show="item.key || item.comment"> <td width="6%"> {{'Component.Namespace.Branch.History.Deleted' | translate }} </td> <td width="20%" title="{{item.key}}"> <span ng-bind="item.key | limitTo: 250"></span> <span ng-bind="item.key.length > 250 ? '...' :''"></span> </td> <td width="28%" title="{{item.value}}"> <span ng-bind="item.value | limitTo: 250"></span> <span ng-bind="item.value.length > 250 ? '...': ''"></span> </td> <td width="28%"> </td> <td width="18%" title="{{item.comment}}"> <span ng-bind="item.comment | limitTo: 250"></span> <span ng-bind="item.comment.length > 250 ?'...' : ''"></span> </td> </tr> </tbody> </table> <!--not properties format--> <div ng-if="!namespace.isPropertiesFormat"> <div ng-repeat="item in commits.changeSets.createItems"> <textarea class="form-control no-radius" rows="20" ng-disabled="true" ng-bind="item.value"> </textarea> </div> <div ng-repeat="item in commits.changeSets.updateItems"> <textarea class="form-control no-radius" rows="20" ng-disabled="true" ng-bind="item.newItem.value"> </textarea> </div> </div> </div> <hr> </div> <div class="text-center"> <button type="button" class="btn btn-default" ng-show="!namespace.branch.hasLoadAllCommit" ng-click="loadCommitHistory(namespace.branch)">{{'Component.Namespace.Branch.History.LoadMore' | translate }} <span class="glyphicon glyphicon-menu-down"></span></button> </div> <div class="empty-container text-center" ng-show="!namespace.branch.commits || !namespace.branch.commits.length"> {{'Component.Namespace.Branch.History.NoHistory' | translate }} </div> </div> </section> </div> </section>
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-client/src/main/java/com/ctrip/framework/apollo/spi/ConfigFactoryManager.java
package com.ctrip.framework.apollo.spi; /** * @author Jason Song([email protected]) */ public interface ConfigFactoryManager { /** * Get the config factory for the namespace. * * @param namespace the namespace * @return the config factory for this namespace */ ConfigFactory getFactory(String namespace); }
package com.ctrip.framework.apollo.spi; /** * @author Jason Song([email protected]) */ public interface ConfigFactoryManager { /** * Get the config factory for the namespace. * * @param namespace the namespace * @return the config factory for this namespace */ ConfigFactory getFactory(String namespace); }
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-core/src/main/java/com/ctrip/framework/apollo/tracer/Tracer.java
package com.ctrip.framework.apollo.tracer; import com.ctrip.framework.apollo.tracer.internals.NullMessageProducerManager; import com.ctrip.framework.apollo.tracer.spi.MessageProducer; import com.ctrip.framework.apollo.tracer.spi.MessageProducerManager; import com.ctrip.framework.apollo.tracer.spi.Transaction; import com.ctrip.framework.foundation.internals.ServiceBootstrap; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * @author Jason Song([email protected]) */ public abstract class Tracer { private static final Logger logger = LoggerFactory.getLogger(Tracer.class); private static final MessageProducerManager NULL_MESSAGE_PRODUCER_MANAGER = new NullMessageProducerManager(); private static volatile MessageProducerManager producerManager; private static Object lock = new Object(); static { getProducer(); } private static MessageProducer getProducer() { try { if (producerManager == null) { synchronized (lock) { if (producerManager == null) { producerManager = ServiceBootstrap.loadFirst(MessageProducerManager.class); } } } } catch (Throwable ex) { logger.error( "Failed to initialize message producer manager, use null message producer manager.", ex); producerManager = NULL_MESSAGE_PRODUCER_MANAGER; } return producerManager.getProducer(); } public static void logError(String message, Throwable cause) { try { getProducer().logError(message, cause); } catch (Throwable ex) { logger.warn("Failed to log error for message: {}, cause: {}", message, cause, ex); } } public static void logError(Throwable cause) { try { getProducer().logError(cause); } catch (Throwable ex) { logger.warn("Failed to log error for cause: {}", cause, ex); } } public static void logEvent(String type, String name) { try { getProducer().logEvent(type, name); } catch (Throwable ex) { logger.warn("Failed to log event for type: {}, name: {}", type, name, ex); } } public static void logEvent(String type, String name, String status, String nameValuePairs) { try { getProducer().logEvent(type, name, status, nameValuePairs); } catch (Throwable ex) { logger.warn("Failed to log event for type: {}, name: {}, status: {}, nameValuePairs: {}", type, name, status, nameValuePairs, ex); } } public static Transaction newTransaction(String type, String name) { try { return getProducer().newTransaction(type, name); } catch (Throwable ex) { logger.warn("Failed to create transaction for type: {}, name: {}", type, name, ex); return NULL_MESSAGE_PRODUCER_MANAGER.getProducer().newTransaction(type, name); } } }
package com.ctrip.framework.apollo.tracer; import com.ctrip.framework.apollo.tracer.internals.NullMessageProducerManager; import com.ctrip.framework.apollo.tracer.spi.MessageProducer; import com.ctrip.framework.apollo.tracer.spi.MessageProducerManager; import com.ctrip.framework.apollo.tracer.spi.Transaction; import com.ctrip.framework.foundation.internals.ServiceBootstrap; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * @author Jason Song([email protected]) */ public abstract class Tracer { private static final Logger logger = LoggerFactory.getLogger(Tracer.class); private static final MessageProducerManager NULL_MESSAGE_PRODUCER_MANAGER = new NullMessageProducerManager(); private static volatile MessageProducerManager producerManager; private static Object lock = new Object(); static { getProducer(); } private static MessageProducer getProducer() { try { if (producerManager == null) { synchronized (lock) { if (producerManager == null) { producerManager = ServiceBootstrap.loadFirst(MessageProducerManager.class); } } } } catch (Throwable ex) { logger.error( "Failed to initialize message producer manager, use null message producer manager.", ex); producerManager = NULL_MESSAGE_PRODUCER_MANAGER; } return producerManager.getProducer(); } public static void logError(String message, Throwable cause) { try { getProducer().logError(message, cause); } catch (Throwable ex) { logger.warn("Failed to log error for message: {}, cause: {}", message, cause, ex); } } public static void logError(Throwable cause) { try { getProducer().logError(cause); } catch (Throwable ex) { logger.warn("Failed to log error for cause: {}", cause, ex); } } public static void logEvent(String type, String name) { try { getProducer().logEvent(type, name); } catch (Throwable ex) { logger.warn("Failed to log event for type: {}, name: {}", type, name, ex); } } public static void logEvent(String type, String name, String status, String nameValuePairs) { try { getProducer().logEvent(type, name, status, nameValuePairs); } catch (Throwable ex) { logger.warn("Failed to log event for type: {}, name: {}, status: {}, nameValuePairs: {}", type, name, status, nameValuePairs, ex); } } public static Transaction newTransaction(String type, String name) { try { return getProducer().newTransaction(type, name); } catch (Throwable ex) { logger.warn("Failed to create transaction for type: {}, name: {}", type, name, ex); return NULL_MESSAGE_PRODUCER_MANAGER.getProducer().newTransaction(type, name); } } }
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-portal/src/main/java/com/ctrip/framework/apollo/openapi/v1/controller/AppController.java
package com.ctrip.framework.apollo.openapi.v1.controller; import com.ctrip.framework.apollo.common.dto.ClusterDTO; import com.ctrip.framework.apollo.common.entity.App; import com.ctrip.framework.apollo.common.utils.BeanUtils; import com.ctrip.framework.apollo.portal.environment.Env; import com.ctrip.framework.apollo.openapi.dto.OpenAppDTO; import com.ctrip.framework.apollo.openapi.dto.OpenEnvClusterDTO; import com.ctrip.framework.apollo.openapi.util.OpenApiBeanUtils; import com.ctrip.framework.apollo.portal.component.PortalSettings; import com.ctrip.framework.apollo.portal.service.AppService; import com.ctrip.framework.apollo.portal.service.ClusterService; import com.google.common.collect.Sets; import org.springframework.util.StringUtils; import org.springframework.web.bind.annotation.*; import java.util.ArrayList; import java.util.LinkedList; import java.util.List; @RestController("openapiAppController") @RequestMapping("/openapi/v1") public class AppController { private final PortalSettings portalSettings; private final ClusterService clusterService; private final AppService appService; public AppController(final PortalSettings portalSettings, final ClusterService clusterService, final AppService appService) { this.portalSettings = portalSettings; this.clusterService = clusterService; this.appService = appService; } @GetMapping(value = "/apps/{appId}/envclusters") public List<OpenEnvClusterDTO> loadEnvClusterInfo(@PathVariable String appId){ List<OpenEnvClusterDTO> envClusters = new LinkedList<>(); List<Env> envs = portalSettings.getActiveEnvs(); for (Env env : envs) { OpenEnvClusterDTO envCluster = new OpenEnvClusterDTO(); envCluster.setEnv(env.name()); List<ClusterDTO> clusterDTOs = clusterService.findClusters(env, appId); envCluster.setClusters(BeanUtils.toPropertySet("name", clusterDTOs)); envClusters.add(envCluster); } return envClusters; } @GetMapping("/apps") public List<OpenAppDTO> findApps(@RequestParam(value = "appIds", required = false) String appIds) { final List<App> apps = new ArrayList<>(); if (StringUtils.isEmpty(appIds)) { apps.addAll(appService.findAll()); } else { apps.addAll(appService.findByAppIds(Sets.newHashSet(appIds.split(",")))); } return OpenApiBeanUtils.transformFromApps(apps); } }
package com.ctrip.framework.apollo.openapi.v1.controller; import com.ctrip.framework.apollo.common.dto.ClusterDTO; import com.ctrip.framework.apollo.common.entity.App; import com.ctrip.framework.apollo.common.utils.BeanUtils; import com.ctrip.framework.apollo.portal.environment.Env; import com.ctrip.framework.apollo.openapi.dto.OpenAppDTO; import com.ctrip.framework.apollo.openapi.dto.OpenEnvClusterDTO; import com.ctrip.framework.apollo.openapi.util.OpenApiBeanUtils; import com.ctrip.framework.apollo.portal.component.PortalSettings; import com.ctrip.framework.apollo.portal.service.AppService; import com.ctrip.framework.apollo.portal.service.ClusterService; import com.google.common.collect.Sets; import org.springframework.util.StringUtils; import org.springframework.web.bind.annotation.*; import java.util.ArrayList; import java.util.LinkedList; import java.util.List; @RestController("openapiAppController") @RequestMapping("/openapi/v1") public class AppController { private final PortalSettings portalSettings; private final ClusterService clusterService; private final AppService appService; public AppController(final PortalSettings portalSettings, final ClusterService clusterService, final AppService appService) { this.portalSettings = portalSettings; this.clusterService = clusterService; this.appService = appService; } @GetMapping(value = "/apps/{appId}/envclusters") public List<OpenEnvClusterDTO> loadEnvClusterInfo(@PathVariable String appId){ List<OpenEnvClusterDTO> envClusters = new LinkedList<>(); List<Env> envs = portalSettings.getActiveEnvs(); for (Env env : envs) { OpenEnvClusterDTO envCluster = new OpenEnvClusterDTO(); envCluster.setEnv(env.name()); List<ClusterDTO> clusterDTOs = clusterService.findClusters(env, appId); envCluster.setClusters(BeanUtils.toPropertySet("name", clusterDTOs)); envClusters.add(envCluster); } return envClusters; } @GetMapping("/apps") public List<OpenAppDTO> findApps(@RequestParam(value = "appIds", required = false) String appIds) { final List<App> apps = new ArrayList<>(); if (StringUtils.isEmpty(appIds)) { apps.addAll(appService.findAll()); } else { apps.addAll(appService.findByAppIds(Sets.newHashSet(appIds.split(",")))); } return OpenApiBeanUtils.transformFromApps(apps); } }
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-portal/src/main/java/com/ctrip/framework/apollo/portal/spi/UserInfoHolder.java
package com.ctrip.framework.apollo.portal.spi; import com.ctrip.framework.apollo.portal.entity.bo.UserInfo; /** * Get access to the user's information, * different companies should have a different implementation */ public interface UserInfoHolder { UserInfo getUser(); }
package com.ctrip.framework.apollo.portal.spi; import com.ctrip.framework.apollo.portal.entity.bo.UserInfo; /** * Get access to the user's information, * different companies should have a different implementation */ public interface UserInfoHolder { UserInfo getUser(); }
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-portal/src/main/java/com/ctrip/framework/apollo/portal/spi/ctrip/CtripEmailRequestBuilder.java
package com.ctrip.framework.apollo.portal.spi.ctrip; import com.ctrip.framework.apollo.portal.component.config.PortalConfig; import com.ctrip.framework.apollo.portal.entity.bo.Email; import com.ctrip.framework.apollo.tracer.Tracer; import org.apache.commons.lang.time.DateUtils; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import java.lang.reflect.Method; import java.util.Calendar; import java.util.Date; import java.util.List; import javax.annotation.PostConstruct; public class CtripEmailRequestBuilder { private static final Logger logger = LoggerFactory.getLogger(CtripEmailRequestBuilder.class); private static Class sendEmailRequestClazz; private static Method setBodyContent; private static Method setRecipient; private static Method setSendCode; private static Method setBodyTemplateID; private static Method setSender; private static Method setSubject; private static Method setIsBodyHtml; private static Method setCharset; private static Method setExpiredTime; private static Method setAppID; @Autowired private PortalConfig portalConfig; @PostConstruct public void init() { try { sendEmailRequestClazz = Class.forName("com.ctrip.framework.apolloctripservice.emailservice.SendEmailRequest"); setSendCode = sendEmailRequestClazz.getMethod("setSendCode", String.class); setBodyTemplateID = sendEmailRequestClazz.getMethod("setBodyTemplateID", Integer.class); setSender = sendEmailRequestClazz.getMethod("setSender", String.class); setBodyContent = sendEmailRequestClazz.getMethod("setBodyContent", String.class); setRecipient = sendEmailRequestClazz.getMethod("setRecipient", List.class); setSubject = sendEmailRequestClazz.getMethod("setSubject", String.class); setIsBodyHtml = sendEmailRequestClazz.getMethod("setIsBodyHtml", Boolean.class); setCharset = sendEmailRequestClazz.getMethod("setCharset", String.class); setExpiredTime = sendEmailRequestClazz.getMethod("setExpiredTime", Calendar.class); setAppID = sendEmailRequestClazz.getMethod("setAppID", Integer.class); } catch (Throwable e) { logger.error("init email request build failed", e); Tracer.logError("init email request build failed", e); } } public Object buildEmailRequest(Email email) throws Exception { Object emailRequest = createBasicEmailRequest(); setSender.invoke(emailRequest, email.getSenderEmailAddress()); setSubject.invoke(emailRequest, email.getSubject()); String emailBodyBuilder = "<entry><content><![CDATA[<!DOCTYPE html>" + email.getBody() + "]]></content></entry>"; setBodyContent.invoke(emailRequest, emailBodyBuilder); setRecipient.invoke(emailRequest, email.getRecipients()); return emailRequest; } private Object createBasicEmailRequest() throws Exception { Object request = sendEmailRequestClazz.newInstance(); setSendCode.invoke(request, portalConfig.sendCode()); setBodyTemplateID.invoke(request, portalConfig.templateId()); setIsBodyHtml.invoke(request, true); setCharset.invoke(request, "UTF-8"); setExpiredTime.invoke(request, calExpiredTime()); setAppID.invoke(request, portalConfig.appId()); return request; } private Calendar calExpiredTime() { Calendar calendar = Calendar.getInstance(); calendar.setTime(DateUtils.addHours(new Date(), portalConfig.survivalDuration())); return calendar; } }
package com.ctrip.framework.apollo.portal.spi.ctrip; import com.ctrip.framework.apollo.portal.component.config.PortalConfig; import com.ctrip.framework.apollo.portal.entity.bo.Email; import com.ctrip.framework.apollo.tracer.Tracer; import org.apache.commons.lang.time.DateUtils; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import java.lang.reflect.Method; import java.util.Calendar; import java.util.Date; import java.util.List; import javax.annotation.PostConstruct; public class CtripEmailRequestBuilder { private static final Logger logger = LoggerFactory.getLogger(CtripEmailRequestBuilder.class); private static Class sendEmailRequestClazz; private static Method setBodyContent; private static Method setRecipient; private static Method setSendCode; private static Method setBodyTemplateID; private static Method setSender; private static Method setSubject; private static Method setIsBodyHtml; private static Method setCharset; private static Method setExpiredTime; private static Method setAppID; @Autowired private PortalConfig portalConfig; @PostConstruct public void init() { try { sendEmailRequestClazz = Class.forName("com.ctrip.framework.apolloctripservice.emailservice.SendEmailRequest"); setSendCode = sendEmailRequestClazz.getMethod("setSendCode", String.class); setBodyTemplateID = sendEmailRequestClazz.getMethod("setBodyTemplateID", Integer.class); setSender = sendEmailRequestClazz.getMethod("setSender", String.class); setBodyContent = sendEmailRequestClazz.getMethod("setBodyContent", String.class); setRecipient = sendEmailRequestClazz.getMethod("setRecipient", List.class); setSubject = sendEmailRequestClazz.getMethod("setSubject", String.class); setIsBodyHtml = sendEmailRequestClazz.getMethod("setIsBodyHtml", Boolean.class); setCharset = sendEmailRequestClazz.getMethod("setCharset", String.class); setExpiredTime = sendEmailRequestClazz.getMethod("setExpiredTime", Calendar.class); setAppID = sendEmailRequestClazz.getMethod("setAppID", Integer.class); } catch (Throwable e) { logger.error("init email request build failed", e); Tracer.logError("init email request build failed", e); } } public Object buildEmailRequest(Email email) throws Exception { Object emailRequest = createBasicEmailRequest(); setSender.invoke(emailRequest, email.getSenderEmailAddress()); setSubject.invoke(emailRequest, email.getSubject()); String emailBodyBuilder = "<entry><content><![CDATA[<!DOCTYPE html>" + email.getBody() + "]]></content></entry>"; setBodyContent.invoke(emailRequest, emailBodyBuilder); setRecipient.invoke(emailRequest, email.getRecipients()); return emailRequest; } private Object createBasicEmailRequest() throws Exception { Object request = sendEmailRequestClazz.newInstance(); setSendCode.invoke(request, portalConfig.sendCode()); setBodyTemplateID.invoke(request, portalConfig.templateId()); setIsBodyHtml.invoke(request, true); setCharset.invoke(request, "UTF-8"); setExpiredTime.invoke(request, calExpiredTime()); setAppID.invoke(request, portalConfig.appId()); return request; } private Calendar calExpiredTime() { Calendar calendar = Calendar.getInstance(); calendar.setTime(DateUtils.addHours(new Date(), portalConfig.survivalDuration())); return calendar; } }
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-common/src/main/java/com/ctrip/framework/apollo/common/controller/WebMvcConfig.java
package com.ctrip.framework.apollo.common.controller; import java.util.List; import org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory; import org.springframework.boot.web.server.MimeMappings; import org.springframework.boot.web.server.WebServerFactoryCustomizer; import org.springframework.context.annotation.Configuration; import org.springframework.data.domain.PageRequest; import org.springframework.data.web.PageableHandlerMethodArgumentResolver; import org.springframework.web.method.support.HandlerMethodArgumentResolver; import org.springframework.web.servlet.config.annotation.ContentNegotiationConfigurer; import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry; import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; @Configuration public class WebMvcConfig implements WebMvcConfigurer, WebServerFactoryCustomizer<TomcatServletWebServerFactory> { @Override public void addArgumentResolvers(List<HandlerMethodArgumentResolver> argumentResolvers) { PageableHandlerMethodArgumentResolver pageResolver = new PageableHandlerMethodArgumentResolver(); pageResolver.setFallbackPageable(PageRequest.of(0, 10)); argumentResolvers.add(pageResolver); } @Override public void configureContentNegotiation(ContentNegotiationConfigurer configurer) { configurer.favorPathExtension(false); } @Override public void customize(TomcatServletWebServerFactory factory) { MimeMappings mappings = new MimeMappings(MimeMappings.DEFAULT); mappings.add("html", "text/html;charset=utf-8"); factory.setMimeMappings(mappings ); } @Override public void addResourceHandlers(ResourceHandlerRegistry registry) { // 10 days addCacheControl(registry, "img", 864000); addCacheControl(registry, "vendor", 864000); addCacheControl(registry, "scripts", 864000); addCacheControl(registry, "styles", 864000); // 1 day addCacheControl(registry, "views", 86400); addCacheControl(registry, "i18n", 86400); } private void addCacheControl(ResourceHandlerRegistry registry, String folder, int cachePeriod) { registry.addResourceHandler(String.format("/%s/**", folder)) .addResourceLocations(String.format("classpath:/static/%s/", folder)) .setCachePeriod(cachePeriod); } }
package com.ctrip.framework.apollo.common.controller; import java.util.List; import org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory; import org.springframework.boot.web.server.MimeMappings; import org.springframework.boot.web.server.WebServerFactoryCustomizer; import org.springframework.context.annotation.Configuration; import org.springframework.data.domain.PageRequest; import org.springframework.data.web.PageableHandlerMethodArgumentResolver; import org.springframework.web.method.support.HandlerMethodArgumentResolver; import org.springframework.web.servlet.config.annotation.ContentNegotiationConfigurer; import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry; import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; @Configuration public class WebMvcConfig implements WebMvcConfigurer, WebServerFactoryCustomizer<TomcatServletWebServerFactory> { @Override public void addArgumentResolvers(List<HandlerMethodArgumentResolver> argumentResolvers) { PageableHandlerMethodArgumentResolver pageResolver = new PageableHandlerMethodArgumentResolver(); pageResolver.setFallbackPageable(PageRequest.of(0, 10)); argumentResolvers.add(pageResolver); } @Override public void configureContentNegotiation(ContentNegotiationConfigurer configurer) { configurer.favorPathExtension(false); } @Override public void customize(TomcatServletWebServerFactory factory) { MimeMappings mappings = new MimeMappings(MimeMappings.DEFAULT); mappings.add("html", "text/html;charset=utf-8"); factory.setMimeMappings(mappings ); } @Override public void addResourceHandlers(ResourceHandlerRegistry registry) { // 10 days addCacheControl(registry, "img", 864000); addCacheControl(registry, "vendor", 864000); addCacheControl(registry, "scripts", 864000); addCacheControl(registry, "styles", 864000); // 1 day addCacheControl(registry, "views", 86400); addCacheControl(registry, "i18n", 86400); } private void addCacheControl(ResourceHandlerRegistry registry, String folder, int cachePeriod) { registry.addResourceHandler(String.format("/%s/**", folder)) .addResourceLocations(String.format("classpath:/static/%s/", folder)) .setCachePeriod(cachePeriod); } }
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-core/src/test/java/com/ctrip/framework/apollo/core/enums/EnvUtilsTest.java
package com.ctrip.framework.apollo.core.enums; import static org.junit.Assert.*; import org.junit.Test; public class EnvUtilsTest { @Test public void testTransformEnv() throws Exception { assertEquals(Env.DEV, EnvUtils.transformEnv(Env.DEV.name())); assertEquals(Env.FAT, EnvUtils.transformEnv(Env.FAT.name().toLowerCase())); assertEquals(Env.UAT, EnvUtils.transformEnv(" " + Env.UAT.name().toUpperCase() + "")); assertEquals(Env.UNKNOWN, EnvUtils.transformEnv("someInvalidEnv")); } @Test public void testFromString() throws Exception { assertEquals(Env.DEV, Env.fromString(Env.DEV.name())); assertEquals(Env.FAT, Env.fromString(Env.FAT.name().toLowerCase())); assertEquals(Env.UAT, Env.fromString(" " + Env.UAT.name().toUpperCase() + "")); } @Test(expected = IllegalArgumentException.class) public void testFromInvalidString() throws Exception { Env.fromString("someInvalidEnv"); } }
package com.ctrip.framework.apollo.core.enums; import static org.junit.Assert.*; import org.junit.Test; public class EnvUtilsTest { @Test public void testTransformEnv() throws Exception { assertEquals(Env.DEV, EnvUtils.transformEnv(Env.DEV.name())); assertEquals(Env.FAT, EnvUtils.transformEnv(Env.FAT.name().toLowerCase())); assertEquals(Env.UAT, EnvUtils.transformEnv(" " + Env.UAT.name().toUpperCase() + "")); assertEquals(Env.UNKNOWN, EnvUtils.transformEnv("someInvalidEnv")); } @Test public void testFromString() throws Exception { assertEquals(Env.DEV, Env.fromString(Env.DEV.name())); assertEquals(Env.FAT, Env.fromString(Env.FAT.name().toLowerCase())); assertEquals(Env.UAT, Env.fromString(" " + Env.UAT.name().toUpperCase() + "")); } @Test(expected = IllegalArgumentException.class) public void testFromInvalidString() throws Exception { Env.fromString("someInvalidEnv"); } }
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-portal/src/main/resources/static/img/syntax.png
PNG  IHDRkXTgAMA a cHRMz&u0`:pQ<PLTE6C^4F`4F_3H^@@@2G_3G_3G`3H^2G\5H`3G_3H_3G_2H`3Df3G_3G_3F_$Im+UU3G_3G_1H_1H^3G_3G^3G_6F]2I`2G_3G_UUU3G_4F_@@`3G_3G`4F^3H^2G^3G_3H_4Hb3Ga3G_3G_2G^.F]3G_4F^4G^3G_0@`2F`2F`3G^3J`3G_2F^3G_3G_3G_3G_.F]7I[3G_7Cd3G_3G^3G_3H`3G_;Nb5Db2G`3G_3I_4G_1Jc3G_3F`3G_2F_3G`4G_3G_0H`9Gc3G_3F_3Mf3F^2H`3G_2G_3G_3G`4H_3H^3G^3G_3F_3G_2G`1F_3D^3G^3G_7I[2F_3G_33f3G_5G^3G\3G`3G_4G^3F^3G_4G_4F]4H_+@U2F_3H_3G^3F`3G_4G_4H_3G_4I^3F_2G`3G_4F`4G`2G_9UU4H`2G_3G_3F`3H^2G_3H_6J^2G`3G_5J`2G_5I]3G_4H`3F]4G`2G^3G_3F_1Ia3F`4H_2H^4G_3G_3G_5Fa4G_2H^4G_3G_tRNSbq<Vj$5ݗRC9w!8kZI|'2 TO-LoU "p#x3}  _`鄁ˇe>fDlv,N [Y1=X J(r&Ha?7ԜP.s:QS*AVbKGDH pHYs+tIME'IDATxwE!0"P IT0 bCQ@h(7l`{QDLͷ;s}ys6!ovbX,bX,bX,bX,bX,L`M(,'O\Ԕ Kwiو\:U{?ҙ136 IgV2[{G™ޑpڡ;M:$y[(`dsP@d &hoI6=P;UP;"\%LjoI6K;͵ˠ봷$[J(`s8Qx5zޒlBCp2m|j֬M2aPnY]M<:oq+v;}X5m摩 yӝ3ݽy[1{@mĮ lEEu1Pm_Bu#1P4pS? ?˶m ƋoC7S ϲCvݏִtLـ?vXqLՀw3E=Ylr}'u}Ydhw,ښe ?;P~A8ckա,&Y02˵wz=ǟO҈ 'mpʃ9 1@?!8HH 'Gќck0@̏?cqpСV $^9(tbp T 'Qu Ša?:ԽF8>Q"%ɓp"W`OLw?Z4W-l?y+ޏ5ԏ4؏3ڏ2܏1ޏ0Oяf7Oҏf6Oӏf5OՏa3ˏa3̏yb2͏b1͏ћg1`薀aq?qAH Gk/ڏ0 _a@`?ZÀ ~!Bh Bɋpa@?y `ALbrFf@?yޢ=|fAhYѢ$  GJsV*͑4^<$~4\\,_`um}08 iF>,>`t??}۵g1p>s^P$g=ܘ_Gԏ_̀g?_e E  a~t ?w\Gx%}4?TG %|4?HGsN{4!?G{41?~4??~4??~4??~4??~4??~4??ԏ^֏'6GOj_Oi??ԏn?ԏ^ ~*iE ~ GS G G G+ ^ЏV49ؿf x?Z?4xw?Z?]?Z~2pg?Zqگ~t^P? GG_I?:"(Q=f} Jo:h .}܃Ԏ-qGSv_5܏[n=8n+= |?-<pQaǑiю#7CW࡫* GQ6G2 H9Gy.S?I*m?c i6t5ǜ/}KO4  d3@ՏJ/DGW&[ ?M?: GW'< ]p~tЏV y?b!GW-ޑlp?zdӉC!?+0Px#?wЦ? TN/QLäڛX,bX,bX,bX,bX,?kU)tw%tEXtdate:create2019-02-05T15:01:00+01:00 %tEXtdate:modify2019-02-05T15:01:00+01:00| jtEXtSoftwarewww.inkscape.org<IENDB`
PNG  IHDRkXTgAMA a cHRMz&u0`:pQ<PLTE6C^4F`4F_3H^@@@2G_3G_3G`3H^2G\5H`3G_3H_3G_2H`3Df3G_3G_3F_$Im+UU3G_3G_1H_1H^3G_3G^3G_6F]2I`2G_3G_UUU3G_4F_@@`3G_3G`4F^3H^2G^3G_3H_4Hb3Ga3G_3G_2G^.F]3G_4F^4G^3G_0@`2F`2F`3G^3J`3G_2F^3G_3G_3G_3G_.F]7I[3G_7Cd3G_3G^3G_3H`3G_;Nb5Db2G`3G_3I_4G_1Jc3G_3F`3G_2F_3G`4G_3G_0H`9Gc3G_3F_3Mf3F^2H`3G_2G_3G_3G`4H_3H^3G^3G_3F_3G_2G`1F_3D^3G^3G_7I[2F_3G_33f3G_5G^3G\3G`3G_4G^3F^3G_4G_4F]4H_+@U2F_3H_3G^3F`3G_4G_4H_3G_4I^3F_2G`3G_4F`4G`2G_9UU4H`2G_3G_3F`3H^2G_3H_6J^2G`3G_5J`2G_5I]3G_4H`3F]4G`2G^3G_3F_1Ia3F`4H_2H^4G_3G_3G_5Fa4G_2H^4G_3G_tRNSbq<Vj$5ݗRC9w!8kZI|'2 TO-LoU "p#x3}  _`鄁ˇe>fDlv,N [Y1=X J(r&Ha?7ԜP.s:QS*AVbKGDH pHYs+tIME'IDATxwE!0"P IT0 bCQ@h(7l`{QDLͷ;s}ys6!ovbX,bX,bX,bX,bX,L`M(,'O\Ԕ Kwiو\:U{?ҙ136 IgV2[{G™ޑpڡ;M:$y[(`dsP@d &hoI6=P;UP;"\%LjoI6K;͵ˠ봷$[J(`s8Qx5zޒlBCp2m|j֬M2aPnY]M<:oq+v;}X5m摩 yӝ3ݽy[1{@mĮ lEEu1Pm_Bu#1P4pS? ?˶m ƋoC7S ϲCvݏִtLـ?vXqLՀw3E=Ylr}'u}Ydhw,ښe ?;P~A8ckա,&Y02˵wz=ǟO҈ 'mpʃ9 1@?!8HH 'Gќck0@̏?cqpСV $^9(tbp T 'Qu Ša?:ԽF8>Q"%ɓp"W`OLw?Z4W-l?y+ޏ5ԏ4؏3ڏ2܏1ޏ0Oяf7Oҏf6Oӏf5OՏa3ˏa3̏yb2͏b1͏ћg1`薀aq?qAH Gk/ڏ0 _a@`?ZÀ ~!Bh Bɋpa@?y `ALbrFf@?yޢ=|fAhYѢ$  GJsV*͑4^<$~4\\,_`um}08 iF>,>`t??}۵g1p>s^P$g=ܘ_Gԏ_̀g?_e E  a~t ?w\Gx%}4?TG %|4?HGsN{4!?G{41?~4??~4??~4??~4??~4??~4??ԏ^֏'6GOj_Oi??ԏn?ԏ^ ~*iE ~ GS G G G+ ^ЏV49ؿf x?Z?4xw?Z?]?Z~2pg?Zqگ~t^P? GG_I?:"(Q=f} Jo:h .}܃Ԏ-qGSv_5܏[n=8n+= |?-<pQaǑiю#7CW࡫* GQ6G2 H9Gy.S?I*m?c i6t5ǜ/}KO4  d3@ՏJ/DGW&[ ?M?: GW'< ]p~tЏV y?b!GW-ޑlp?zdӉC!?+0Px#?wЦ? TN/QLäڛX,bX,bX,bX,bX,?kU)tw%tEXtdate:create2019-02-05T15:01:00+01:00 %tEXtdate:modify2019-02-05T15:01:00+01:00| jtEXtSoftwarewww.inkscape.org<IENDB`
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-portal/src/main/resources/static/img/create.png
PNG  IHDRXIDATx^Ov9=Oe^Áy vV=(wT`? TQɕt~H* >pt  p`dL{DJD(ٰʐ▘o nېJP$`T$!Df*r-"DDrI76y#ɸzfR|DܬB}|-E (LO[43neҏ~~2$ ȚL{ ˈ>'[Xg? w},(jgshg<o+Y27<'[BHNlc8*E{,^3Zž/M1/VIq!rȸ;qC]mZ}Ut tϘ诪$}L6gUadK+!NnB8i9ƙͦ{d K%#ȸ;b&w$#Sdhk96 W\qФ '2_Sd(OCGj2胷n 9K;*Bf!bhlbyXQpux6ElczKzb^d9f ++ ۟P}u X^ ?1tOJIKfz4Ys H`Y7!#ppXq@^O*6m2E҆"?~宒d4 =-d/"YM{E9mqj)@2ˤGU.QRr{Y @IO&V* G}|M[$n5 ʯ<4*2Q&(L@  J"eBҨdDP4*2Q&(L@  J"eBҨdDP4*2Q&(L@  J"eBҨdDP4*2Q&(L@  J"eBҨdDP4*2Q&(L@  J"eBҨdDP4*2Q&(L@  J"eBҨdDP4*2Q&(L@  J"eBҨdDP4*2Q&(L@  J"eBҨdDP4*2Q&(L@  J"H2%$7J蘉}& 2"O;rmmnd;4}K"-b>d$ϠQwهϾm %b&czƷu`@܋)Moc:fPE 1+Oc["1_ml>.Q6H>n $w?YK /9T/6_B"T i$2Yk&/؀_UqX܀Ę#Z@i\Tg.)? Hzb痚SM%U,&=z, XV= 4@qi6|R @|*6;31nq=j]$"9|$j-RLǹn?IMVB}~/7Dn߿(5'R>_u.ƺm xγ{@I5tjCF4OB@98J>ꐐ%@gUrp āMW" {R|N&C:2p@@v~7]+m;s{9 uūR~W<!Iu!d p I:˧rwxhe8JLfOMH&[&ݧ*Iğ*YZ8!v!h]lL}&cwmOB6%@:>Ϗym +)ݿdX`s#'ܑꃧW* *ހ~z=O_[_@\S;h?OH;@JBt OH;@JBt OH;@JBt OH;@JBt OH;@JBt OH;@JBt OH;@JBt OH;@JBt OH;@JBt OH;@JBt OH;@JBt OH;1 ɤsDҏJujܙ[R^aV'%3x?.6 ؇Z{ t&;<G&:Oo9䍠O-ؕ1鑭_o?|9irbѮ:v!'t?>ܽ'k#,sFP@ rBls^kZm-_k,>w,yk]:$[f;_-t tb9LwHӬʄ茌$!s 51YuC ҳm,r?EY"$×>+ɴRiqwR<~+_duAE9<*hh값qJ-.[ OH>ư\Y@mZb=89Fl܃G2lvRkRl!j{2dH-t Ǻ/ 3ɤsA-GXĕTMgg@t0xzŦ33wt8\IC" $ݖ%^Ɓ1l~JK;dgZ ~ӖE+L/䖇_O[ie*@ʔy-÷ހ<efz> HzRlEQ-o] ]pIZ0LmZջy\;'R>$'ׇa|U$[WȏX2rCMC: !W }A]26a4*2Q&(L@  J"eBҨdDP4*2Q&(L@  J"eBҨdDP4*2Q&(L@  J"eBҨdDP4*2Q&(L@  J"eBҨdDP4*2Q&(L@  J"eBҨdDP4*2Q&(L@  J"eBҨdDP4*2Q&(L@  J"eBҨdDP4*2Q&(L@  J"eBҨdDP4*2Q&(L@  J"UN?LO[+4Vm]>>M @cu0eɴp@U!kpSHd9f U7H^O5XاLɸ;b>1ŰsJ Έdҹeߵ 2jEW2QIHg>V]u F"!GYmP Hܙ/mDU_2oe,k[~VTg6%W>f.Z[rІ,8E~JvP}, >$`5?tC5sR4K/w`y˱jp`xg]6Hzb痾0o}2>m MrLx @H&k&3tЊ5ոooul\2Zc\gl}lF!$[%#QR> "9 vp(C< $n>mv/1=]@HBpIE[`LO @~lkGe;à K\Ul $cWyƟ@8^ a|ly* q9 ΃Ț$K&~Są#$eKm 7IBgMܬtfþː, ʡc^@>2K2PMD7w<;UD4"S Og! ~>+پ" $ ~$vPgIENDB`
PNG  IHDRXIDATx^Ov9=Oe^Áy vV=(wT`? TQɕt~H* >pt  p`dL{DJD(ٰʐ▘o nېJP$`T$!Df*r-"DDrI76y#ɸzfR|DܬB}|-E (LO[43neҏ~~2$ ȚL{ ˈ>'[Xg? w},(jgshg<o+Y27<'[BHNlc8*E{,^3Zž/M1/VIq!rȸ;qC]mZ}Ut tϘ诪$}L6gUadK+!NnB8i9ƙͦ{d K%#ȸ;b&w$#Sdhk96 W\qФ '2_Sd(OCGj2胷n 9K;*Bf!bhlbyXQpux6ElczKzb^d9f ++ ۟P}u X^ ?1tOJIKfz4Ys H`Y7!#ppXq@^O*6m2E҆"?~宒d4 =-d/"YM{E9mqj)@2ˤGU.QRr{Y @IO&V* G}|M[$n5 ʯ<4*2Q&(L@  J"eBҨdDP4*2Q&(L@  J"eBҨdDP4*2Q&(L@  J"eBҨdDP4*2Q&(L@  J"eBҨdDP4*2Q&(L@  J"eBҨdDP4*2Q&(L@  J"eBҨdDP4*2Q&(L@  J"eBҨdDP4*2Q&(L@  J"eBҨdDP4*2Q&(L@  J"H2%$7J蘉}& 2"O;rmmnd;4}K"-b>d$ϠQwهϾm %b&czƷu`@܋)Moc:fPE 1+Oc["1_ml>.Q6H>n $w?YK /9T/6_B"T i$2Yk&/؀_UqX܀Ę#Z@i\Tg.)? Hzb痚SM%U,&=z, XV= 4@qi6|R @|*6;31nq=j]$"9|$j-RLǹn?IMVB}~/7Dn߿(5'R>_u.ƺm xγ{@I5tjCF4OB@98J>ꐐ%@gUrp āMW" {R|N&C:2p@@v~7]+m;s{9 uūR~W<!Iu!d p I:˧rwxhe8JLfOMH&[&ݧ*Iğ*YZ8!v!h]lL}&cwmOB6%@:>Ϗym +)ݿdX`s#'ܑꃧW* *ހ~z=O_[_@\S;h?OH;@JBt OH;@JBt OH;@JBt OH;@JBt OH;@JBt OH;@JBt OH;@JBt OH;@JBt OH;@JBt OH;@JBt OH;@JBt OH;1 ɤsDҏJujܙ[R^aV'%3x?.6 ؇Z{ t&;<G&:Oo9䍠O-ؕ1鑭_o?|9irbѮ:v!'t?>ܽ'k#,sFP@ rBls^kZm-_k,>w,yk]:$[f;_-t tb9LwHӬʄ茌$!s 51YuC ҳm,r?EY"$×>+ɴRiqwR<~+_duAE9<*hh값qJ-.[ OH>ư\Y@mZb=89Fl܃G2lvRkRl!j{2dH-t Ǻ/ 3ɤsA-GXĕTMgg@t0xzŦ33wt8\IC" $ݖ%^Ɓ1l~JK;dgZ ~ӖE+L/䖇_O[ie*@ʔy-÷ހ<efz> HzRlEQ-o] ]pIZ0LmZջy\;'R>$'ׇa|U$[WȏX2rCMC: !W }A]26a4*2Q&(L@  J"eBҨdDP4*2Q&(L@  J"eBҨdDP4*2Q&(L@  J"eBҨdDP4*2Q&(L@  J"eBҨdDP4*2Q&(L@  J"eBҨdDP4*2Q&(L@  J"eBҨdDP4*2Q&(L@  J"eBҨdDP4*2Q&(L@  J"eBҨdDP4*2Q&(L@  J"UN?LO[+4Vm]>>M @cu0eɴp@U!kpSHd9f U7H^O5XاLɸ;b>1ŰsJ Έdҹeߵ 2jEW2QIHg>V]u F"!GYmP Hܙ/mDU_2oe,k[~VTg6%W>f.Z[rІ,8E~JvP}, >$`5?tC5sR4K/w`y˱jp`xg]6Hzb痾0o}2>m MrLx @H&k&3tЊ5ոooul\2Zc\gl}lF!$[%#QR> "9 vp(C< $n>mv/1=]@HBpIE[`LO @~lkGe;à K\Ul $cWyƟ@8^ a|ly* q9 ΃Ț$K&~Są#$eKm 7IBgMܬtfþː, ʡc^@>2K2PMD7w<;UD4"S Og! ~>+پ" $ ~$vPgIENDB`
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./doc/images/local-development/apollo-demo-app-properties.png
PNG  IHDR6wV iCCPICC ProfileHT[̤ZB{5A:JHc Pೠ"6!ERDEĂ PPׇ*;=o|͝g ,Q'3&62z,@؜LGhh@53Uhrm:Y߯Ws29@('r39(B#es\2]6ININ;Ss"¼P@aE)?yf6'Cl!({ᱹ(ltlOuRR3QZNL񿕑.y? դ- q~ S'aNW sށ3,Nah^~+bEKäXRN d/kx3͏?Ùiၳsy8LsWqسE#퇛# "YҚpY6é:+`,@JʝRr?@wM%0,,܃ӟ1C9^7g:3H@$pĢf$toӁ2PgvB@@l@9p -,  (!CT)C.d YA+AaP,@H CP Tj_ =F` L`=v=@8^<UQ߀<0Mq@$IFDj)E Bn#50L)㏉p0011L36f3bUX', M` jl2.v1p8{?.[یۋkuzq1<7ƻCl|߇& +/! #> 8QKt"ĭ6Mq$O'"H2R21=L";|r8*y@1xQ)bJ=JգSY-ZESg K+FBYO,QVWCvllIٛrzr^rlrri!+|  .* 6͋ơ] qt}:J/Gms+)JCb32N01Q1'iΦ9 s|R䮔TԨtW2SG9Myr}*U^ϥu˙[4܇j Cݪcjj~jB=j^3Swh4\5;5kd*2=2%樦Xf渖V:F'$mdڝڣ:::+uuutyut?EmkWg?6,32c3t0L3kx65U4{{M&&*~Sii,lYs8]?,l--[<T \gfȊcUauǚjkƺM>4`ۍDv v#: tPWk:~qsr:ss<yItrat2]\J4nUnܵݹ/< =R=zy6y~rZxyy(D<M[RcqXU)ςDAmpp@u 淄VȎ'B,-]PyeʰpZ[#ED#;dj>E{GDKbcV܈UǶ,ܵp(60"E-VY%%' u !*X"+2qyu$$$HvI.INqIّ2s^S?IHNo d$d(/]+4 %˜Z6* UgB2[7]+?D̕v/7Zi<߼_V`VpVt\v*UWCWw^Sf(/f-imY+Ya} ~ e E7 M֛lQ-^lQ\Zm3g-.ybK򖞭v[mmlm{M|I^;;v~صd׵RIŻ%eAe{tlW~³RrS姽ܽ}5W_6WU>p_~V.~DpDRVs־Nnk=\/91c q&zDΓ'N鞪l55C˛G[x-;ۜۚΘ9rVl9s[IΏu;^_H0عŘw.-s9+W.vytr5k;\oaw۶7ߚzzolxw^o{[߅޷aݹqw{Ks?HaG=)}w%vsŸ= #oCϩK_h>;;r—C_Moo ޜјѡ6W~͇αб3>*×__|+nGB=e4d#;5-H2yJд"xGO u.D1i,DZPft-r jMJ'&ޣo񖉉hQqڛOJ*,,64UeES'IDATx} TWA() "A1qIw%ytJ{eeuV:vw:ˤ71ɍq"Q2C1P,@\TS>kUgg}Sl9UF#/F`$ر`k?7])U,LF`A`9V/;5'}'Cq\Ɯ[bp'zpT]"8<α &>«יʶ}ܳ~2\"i[{.t^bfkxYc!`c{,"sHkj,̨!ƠE-Cw=jmȖzY#X~)v? թY;3'ۖcah 2eW+*~á,Ln9FzbItJ؟]"# .R 2Ph,ǹcpex'oĆU$;:/Y YV,|Pv¹8O<}k@5o}0)]q)K k*1vvv&{̟ T?J7 k"V4 ?_/#.El%VC!J!>+FS/[SƥŨGuX߷xrjԷ%-ʷS ]tL'2N1gl'~iЩMD"pMxE`W#냹⏟Lhř>j _be/#5Ei;Gxa{(BH\Ew䆁R|E3e1 TWG>IxWejur@]돠0Vӷ~.rZR:ۊ?@`:^|"?ĽgوZ(13Q961cS* ?Uxw4Q_{]OK^ *]73ӊI!dG;jȩ},gϒ: ntE€*g!f=qKae7y: ^uO3wg#_~xTm qUvtWҲ~~ݠzpD[E% 0*&Bs#mJHIJZ]QjRQ?tq&gyyHv],U{z}pDgx.@o2R8ɻ*CN5/7*l{{shFGg\GilSWW̸ّl54#00[/UUħ_췲Ĉi\z,R Ydnv{oQMqIme{n4bf{`h uf@Ťby.C{R^t*M֭yj<h2MJڪF` ``G]<{^V62yDĞzfXA/USQ{b`e3*:(KRUd#Ґ^=WB4=sܱxAUv /z:d44LwT_Ps @Shh"4qulW]TiL| mѪ4X}*ڪF` pT{sh$ǶU& BЯ=>%xp|n2;hlVh,l"=t3eudC}nRѴ5՚Xif íy~M(9SI5Jvtئ<N coku4ƚ-l l6!~i0hýR46FLٌm;ߎKcYZNe#L,Vy0fvF`l;6aɚF` m 0CdM#0M枋4n#8v?c[A7΁`Y2TAaS8`/S4 !栱;qs|F9Sئ%8|9w$qAxɍhsx! {蕸o258H89XdAb#0:̱iƝoMո,)?7Cvsv$Z@4Lk t·2yǾO>CF`B2&z3T ϮctpNʙ(=H!;q-͗)1S$ڤor"1o/@-LĎ'^Ƴ;Wkyt٨IWmHdЁ<H:1 0MXPkTS ;gJDz'I9 舁W&(90tB`CP0T!s} "oQ1;XHgBI22: HO&Jr#0LA5i RN.Bl$'"І"|凭P(;BGF`IsTt}<*o5̵DM7nHq9#ql3 0-N #LرMQ`Fc)`ئ( #`SرNV0vlaF)]F=T60F .S0gɧï<S| sFfT7Qu*. uro1"`7mzR J-p)ST:bŋ8Ta7щӋ?;:ȰvfIClDn(,ED©R,PD2yC||滔/Fn4T㦆tʨgwݛ9B9_F$ԜE|[0a+xcBLT(@x(T:3[33h1b#Ԓ|aqlb(ոq ~IKK␗NtA#qŇ3/Qn3~5r ҂:Nv \oq:<J &e9pDf)*OC5Mk<uRqA'G%wgN7eG*-!)MEBZ*SQ:ZT%jaEle& h"|e]DոɀR\yo 95x@36O!k& iFGDiC5>_l"_:j KZ]-E50}iyLF(ŇNQ,6o *$ޓh)ڌ,;6bC^^j0+#H06Jqmpqm!uB Z"$,Y`c#vfwbQ!mTp0#ر̈́QbF`Tc\,03vl3aFFF 3L@.Н'?I Oj)e0cCglcf31/a"FxfW Xy~,H(hy&T(|e |q5k_s``ǦGwItHM"MmhFչ\^Z3uF`#͊rrr?KtwwXQü ̼=9E@vMKrlN<;'/THX:},RsF`&!{lٳgC,O7o0Zu2/ 9:t[K"n>)>D=\m-d]"31( ]]]8Wp~ YtD*:qĪKlN .Cl\JFl?QEUDAn8-A( ~&J<xۥ T<  #<fn] 1_gdd#JPғ#O'Sڎ^xMנa?АhyGA>2G;6+z{\tnZ# #> JUHa(h+sc0xG $F_dn@u5*ZӐ0eR##֑c0~vjHwVTAP St*88}:gf&L >M㻔e|FF`d#>ˑ ?([kWZVEa9(sC<p2;6Ge##`cs2;6Ge##`]I~0lezTa)F<c|㯼z/_k`-<cB1u rnc*ylc c3 BuM%.c)B~)v? 3~30{rAxɍhsI*qa_'.31fB~tlDzbh-F#E}W⾌dD.\ 6@NōږO<v?JBתe T:[K㝃E]Lx`fNqށqxwl.1}2{ bSTZ3-P#ڹ=ޕJn ~lt9E#⇓~!s컢C(/:պjٞzl_"f޼c'gMA?Zl"+tTرYyq28E?d[l<ckd(= \R|O=' Ҫv(=Hy!ȩ108vA1)xg1J,Ou95 (s?|uux;TgeD4Mj.M|eƋ;6 J%$^iǜCpph"tp:DfaHu]~+jZ0(;-ca"VŁCR:ZZ;pW ]hi95ʠ6oƮ6Ufƍ; |Xk 繋p2TyMqg?;C#5D,t0 E?GQA2Vjb]Xbigct3ІA5!5< Ubx#]f|:EcF UUR?bu*: z >򽞳0zcm#Z@mX&Ӫh_-9BV)tWEgLSFr ")c-}|h. 14)lCcw/-Vh掊V$0G' =9cḰ<c#Yaz3ߊ"v^ArjYw^OxҩYYR=t'{ [*麌 ʼnTX+#%fdebTJZ,Q)MZp9(+@gadd>%WDna쒪#0nmZC항&o/0y3ꃐ0eӃv.q,ѝFZBiӮ$Fu&jХ}jt]:cƂ;6u>|sϕn\xEjA<pww¿3-JF~`fc=c։gC)pxر9O`vl7#F`??:枋;ET㧙j|*m+xf+$5ƧhSئ lW871 .eIg6P+r>r]cS|JڻrrAsׁ^7'/ e2l v{PrڔI=K]އ ~ ϽǠ#ID٨폾B!I?;IiI5欦) DDT9R5qXDNM3u TGaMxM/J;: zybA#\<\0xS{ *TNMPighޚukN*J49̕$ D mxH2t"^uUzΊ5{/hwWZOR|h $c15L[U3ᰄ&TA&i5T㦚/xSGsK_s CS-CW6Ob,&N5 1PU}$KJ9*Hߠ8#cjiftj8<XI.,&J$U[¥gQ@d$% T'*;=e%*'wx= q` qg7PT;_D \ 8AI *+tHCp,O@RZKoF!4@iA9ΖcbbK$%'!)?O.Ąߓ|؍RMƦ t2 ×Îc>xiFε/x):9TכGߣ)¦XF%\z%T rW,| 1Cn/RQHCcH l7ށ-%h[*k\]Q)\ 'f *6q!_!m|"O}y V}QɩrlY;T|<WyWHeG*K@,L6:o!!. Q (:u6*RЌC"4ZS55Ai|uXرM H؊j>xm=g(֢n2Z2*iFw,S S<ion3Ӭn \R|$/Vc<2vuFa-6R}m^Z,gchq4[$|[x-\i4yE9%eCꃦ(1lI{W;V7ȱ a0$)SgD`!4(뜚(R\4]=S)*QGGDk0 usTtGrF`"m0=c%#0C`6Cfc3 0 E;PlF`L#Qns _N7^U*sz8hx):ۑ6$0QǸ+vnHߡ _%|3Ə4k(x6Qڡ^܄S37tFtidřM#)^ӻxkӬin}KQIŏms'ݐ~k;+&Չs9L4&a;d Gez聗 Ik I/Y \k>ŗW)T}Y/ >s- ƊQr]ůg$}DngXv) ]Bw/l@1zŀ]P<f6?ԣH9X/Eʱ<3U={t'ji B`R?-p.^9-xX;+U\JyOo8i+ׅys?Ux~T,Ou_y:ګ[r\4ݰ+ \AJ:Nw#z7OΒy~xZwx=9\є䯑wkI1 '`+&u1O|¯Sf!&רZEHUqI o^a=퇭~H:Iuozpi;Ĥ>mFO-7 f;[t ??wш7΋"m9?`r vHllV|^U(~< Mzݶ[c%0WBmr"ud$yg:ڠeHr =:ϒ>>ƆHk6qj;>ξYזѢfUEرY Gɩ9c{?LXe``.]^Tٓ:T\GwumqQ;᧥wyѹ4 S!`7=CuA[zâugW[+wZBaF\_R8.lUtE8/UCWfawb!ʏ=8eU~Kp`X%һ5(q;!m+6eލ Z2_..m[r7*ip<_ݴE]fݤtE]2 R5W5[FglQ e; Oӟn }Y0ٍ_ '~mKTZ[:W-QUzٳ=F VZZ%/rP#_цyxs<)U)i̢}W¿}<9٭?uS<SЃnG?j]Ic}Dc >?#zX6AǒvKyuwvmdzz'~hǍw=(H[䄆iS=iڤ8=~Gh6wuar*6ZyHZ@]՜`>W$-X yy2 յo9]+9pWOGBgl#!DJr vgU F*7~9 ]J}r67keLCfe.جƋi vGMюTnhmX?'vl60FL\fWv2FpC<q <ZTå\*Ѣ 2/EqT}ZKÁp4xf#~2b6}x]R܆AvxpsYo2o23ȅF 4O]_ Ĥ 3Iyb)4X3K]lVFpdFSG^ڊ 'WAk>׾ȣ<<[email protected]u_'DVi3ر WrUU-0݆bbmR布>ENfTE{PEY|s 巐a ,OG|y NDu"dݶ@-P&:^猿Ry#%Npr;6Y*oJܗHycwqqF;MP^sq>{T }a/ꚽ#2̋nG^vS|U6#cyL[x6\cPd <P| j@:X:̧nVg'PG598f'cDw TA6R?e P"р_Nw"6uvA) ۷S+(RYDéar8J:;fen?dY#;2/;P/7*Q% "7FBP/.NpvGܽ阣(ęe[4sDY4 pa,LL;F GfD(&,`b95 ˑu:$,A e9p_T(JOb?ͨ\GZT3ICʖǰ:W;媜f:xd~A:w:J㝯NtA#H0>:x9P۔Svuz;txgC1Ha*hi%7 guYZ,e4#x_"#1ii1ngP\1%k̀7;JpNމ&--*YbEe8uJͪۮ`f'kFV~DH ˴+LYPh+CB\CMu[iv4Q'vϱ6Eġ|e&-WLM XwK2KbMe&<_jn"X۽6Z )c-Z3& 1?pɓ[DhbY쫻k13!SEI*k L%DWhކ*| zٲ2},bţ"7, WMs m׷JkY3dTi=*URZY%R![ 'iٙQt9KF%lW,Pd7c&/_rt~֯g޺ג;rw= Qat‚!R6A,Coھj jܱj[ff4N9ue YTM4k<:?I^>FwA 3G#FPIYЮ 3ukm'flҞ؅ElHz2.Zrj:Zc*GÔ7iFffPڷxA \o'VJnRA,y@ZR%a.cl;6F`: >U/7IENDB`
PNG  IHDR6wV iCCPICC ProfileHT[̤ZB{5A:JHc Pೠ"6!ERDEĂ PPׇ*;=o|͝g ,Q'3&62z,@؜LGhh@53Uhrm:Y߯Ws29@('r39(B#es\2]6ININ;Ss"¼P@aE)?yf6'Cl!({ᱹ(ltlOuRR3QZNL񿕑.y? դ- q~ S'aNW sށ3,Nah^~+bEKäXRN d/kx3͏?Ùiၳsy8LsWqسE#퇛# "YҚpY6é:+`,@JʝRr?@wM%0,,܃ӟ1C9^7g:3H@$pĢf$toӁ2PgvB@@l@9p -,  (!CT)C.d YA+AaP,@H CP Tj_ =F` L`=v=@8^<UQ߀<0Mq@$IFDj)E Bn#50L)㏉p0011L36f3bUX', M` jl2.v1p8{?.[یۋkuzq1<7ƻCl|߇& +/! #> 8QKt"ĭ6Mq$O'"H2R21=L";|r8*y@1xQ)bJ=JգSY-ZESg K+FBYO,QVWCvllIٛrzr^rlrri!+|  .* 6͋ơ] qt}:J/Gms+)JCb32N01Q1'iΦ9 s|R䮔TԨtW2SG9Myr}*U^ϥu˙[4܇j Cݪcjj~jB=j^3Swh4\5;5kd*2=2%樦Xf渖V:F'$mdڝڣ:::+uuutyut?EmkWg?6,32c3t0L3kx65U4{{M&&*~Sii,lYs8]?,l--[<T \gfȊcUauǚjkƺM>4`ۍDv v#: tPWk:~qsr:ss<yItrat2]\J4nUnܵݹ/< =R=zy6y~rZxyy(D<M[RcqXU)ςDAmpp@u 淄VȎ'B,-]PyeʰpZ[#ED#;dj>E{GDKbcV܈UǶ,ܵp(60"E-VY%%' u !*X"+2qyu$$$HvI.INqIّ2s^S?IHNo d$d(/]+4 %˜Z6* UgB2[7]+?D̕v/7Zi<߼_V`VpVt\v*UWCWw^Sf(/f-imY+Ya} ~ e E7 M֛lQ-^lQ\Zm3g-.ybK򖞭v[mmlm{M|I^;;v~صd׵RIŻ%eAe{tlW~³RrS姽ܽ}5W_6WU>p_~V.~DpDRVs־Nnk=\/91c q&zDΓ'N鞪l55C˛G[x-;ۜۚΘ9rVl9s[IΏu;^_H0عŘw.-s9+W.vytr5k;\oaw۶7ߚzzolxw^o{[߅޷aݹqw{Ks?HaG=)}w%vsŸ= #oCϩK_h>;;r—C_Moo ޜјѡ6W~͇αб3>*×__|+nGB=e4d#;5-H2yJд"xGO u.D1i,DZPft-r jMJ'&ޣo񖉉hQqڛOJ*,,64UeES'IDATx} TWA() "A1qIw%ytJ{eeuV:vw:ˤ71ɍq"Q2C1P,@\TS>kUgg}Sl9UF#/F`$ر`k?7])U,LF`A`9V/;5'}'Cq\Ɯ[bp'zpT]"8<α &>«יʶ}ܳ~2\"i[{.t^bfkxYc!`c{,"sHkj,̨!ƠE-Cw=jmȖzY#X~)v? թY;3'ۖcah 2eW+*~á,Ln9FzbItJ؟]"# .R 2Ph,ǹcpex'oĆU$;:/Y YV,|Pv¹8O<}k@5o}0)]q)K k*1vvv&{̟ T?J7 k"V4 ?_/#.El%VC!J!>+FS/[SƥŨGuX߷xrjԷ%-ʷS ]tL'2N1gl'~iЩMD"pMxE`W#냹⏟Lhř>j _be/#5Ei;Gxa{(BH\Ew䆁R|E3e1 TWG>IxWejur@]돠0Vӷ~.rZR:ۊ?@`:^|"?ĽgوZ(13Q961cS* ?Uxw4Q_{]OK^ *]73ӊI!dG;jȩ},gϒ: ntE€*g!f=qKae7y: ^uO3wg#_~xTm qUvtWҲ~~ݠzpD[E% 0*&Bs#mJHIJZ]QjRQ?tq&gyyHv],U{z}pDgx.@o2R8ɻ*CN5/7*l{{shFGg\GilSWW̸ّl54#00[/UUħ_췲Ĉi\z,R Ydnv{oQMqIme{n4bf{`h uf@Ťby.C{R^t*M֭yj<h2MJڪF` ``G]<{^V62yDĞzfXA/USQ{b`e3*:(KRUd#Ґ^=WB4=sܱxAUv /z:d44LwT_Ps @Shh"4qulW]TiL| mѪ4X}*ڪF` pT{sh$ǶU& BЯ=>%xp|n2;hlVh,l"=t3eudC}nRѴ5՚Xif íy~M(9SI5Jvtئ<N coku4ƚ-l l6!~i0hýR46FLٌm;ߎKcYZNe#L,Vy0fvF`l;6aɚF` m 0CdM#0M枋4n#8v?c[A7΁`Y2TAaS8`/S4 !栱;qs|F9Sئ%8|9w$qAxɍhsx! {蕸o258H89XdAb#0:̱iƝoMո,)?7Cvsv$Z@4Lk t·2yǾO>CF`B2&z3T ϮctpNʙ(=H!;q-͗)1S$ڤor"1o/@-LĎ'^Ƴ;Wkyt٨IWmHdЁ<H:1 0MXPkTS ;gJDz'I9 舁W&(90tB`CP0T!s} "oQ1;XHgBI22: HO&Jr#0LA5i RN.Bl$'"І"|凭P(;BGF`IsTt}<*o5̵DM7nHq9#ql3 0-N #LرMQ`Fc)`ئ( #`SرNV0vlaF)]F=T60F .S0gɧï<S| sFfT7Qu*. uro1"`7mzR J-p)ST:bŋ8Ta7щӋ?;:ȰvfIClDn(,ED©R,PD2yC||滔/Fn4T㦆tʨgwݛ9B9_F$ԜE|[0a+xcBLT(@x(T:3[33h1b#Ԓ|aqlb(ոq ~IKK␗NtA#qŇ3/Qn3~5r ҂:Nv \oq:<J &e9pDf)*OC5Mk<uRqA'G%wgN7eG*-!)MEBZ*SQ:ZT%jaEle& h"|e]DոɀR\yo 95x@36O!k& iFGDiC5>_l"_:j KZ]-E50}iyLF(ŇNQ,6o *$ޓh)ڌ,;6bC^^j0+#H06Jqmpqm!uB Z"$,Y`c#vfwbQ!mTp0#ر̈́QbF`Tc\,03vl3aFFF 3L@.Н'?I Oj)e0cCglcf31/a"FxfW Xy~,H(hy&T(|e |q5k_s``ǦGwItHM"MmhFչ\^Z3uF`#͊rrr?KtwwXQü ̼=9E@vMKrlN<;'/THX:},RsF`&!{lٳgC,O7o0Zu2/ 9:t[K"n>)>D=\m-d]"31( ]]]8Wp~ YtD*:qĪKlN .Cl\JFl?QEUDAn8-A( ~&J<xۥ T<  #<fn] 1_gdd#JPғ#O'Sڎ^xMנa?АhyGA>2G;6+z{\tnZ# #> JUHa(h+sc0xG $F_dn@u5*ZӐ0eR##֑c0~vjHwVTAP St*88}:gf&L >M㻔e|FF`d#>ˑ ?([kWZVEa9(sC<p2;6Ge##`cs2;6Ge##`]I~0lezTa)F<c|㯼z/_k`-<cB1u rnc*ylc c3 BuM%.c)B~)v? 3~30{rAxɍhsI*qa_'.31fB~tlDzbh-F#E}W⾌dD.\ 6@NōږO<v?JBתe T:[K㝃E]Lx`fNqށqxwl.1}2{ bSTZ3-P#ڹ=ޕJn ~lt9E#⇓~!s컢C(/:պjٞzl_"f޼c'gMA?Zl"+tTرYyq28E?d[l<ckd(= \R|O=' Ҫv(=Hy!ȩ108vA1)xg1J,Ou95 (s?|uux;TgeD4Mj.M|eƋ;6 J%$^iǜCpph"tp:DfaHu]~+jZ0(;-ca"VŁCR:ZZ;pW ]hi95ʠ6oƮ6Ufƍ; |Xk 繋p2TyMqg?;C#5D,t0 E?GQA2Vjb]Xbigct3ІA5!5< Ubx#]f|:EcF UUR?bu*: z >򽞳0zcm#Z@mX&Ӫh_-9BV)tWEgLSFr ")c-}|h. 14)lCcw/-Vh掊V$0G' =9cḰ<c#Yaz3ߊ"v^ArjYw^OxҩYYR=t'{ [*麌 ʼnTX+#%fdebTJZ,Q)MZp9(+@gadd>%WDna쒪#0nmZC항&o/0y3ꃐ0eӃv.q,ѝFZBiӮ$Fu&jХ}jt]:cƂ;6u>|sϕn\xEjA<pww¿3-JF~`fc=c։gC)pxر9O`vl7#F`??:枋;ET㧙j|*m+xf+$5ƧhSئ lW871 .eIg6P+r>r]cS|JڻrrAsׁ^7'/ e2l v{PrڔI=K]އ ~ ϽǠ#ID٨폾B!I?;IiI5欦) DDT9R5qXDNM3u TGaMxM/J;: zybA#\<\0xS{ *TNMPighޚukN*J49̕$ D mxH2t"^uUzΊ5{/hwWZOR|h $c15L[U3ᰄ&TA&i5T㦚/xSGsK_s CS-CW6Ob,&N5 1PU}$KJ9*Hߠ8#cjiftj8<XI.,&J$U[¥gQ@d$% T'*;=e%*'wx= q` qg7PT;_D \ 8AI *+tHCp,O@RZKoF!4@iA9ΖcbbK$%'!)?O.Ąߓ|؍RMƦ t2 ×Îc>xiFε/x):9TכGߣ)¦XF%\z%T rW,| 1Cn/RQHCcH l7ށ-%h[*k\]Q)\ 'f *6q!_!m|"O}y V}QɩrlY;T|<WyWHeG*K@,L6:o!!. Q (:u6*RЌC"4ZS55Ai|uXرM H؊j>xm=g(֢n2Z2*iFw,S S<ion3Ӭn \R|$/Vc<2vuFa-6R}m^Z,gchq4[$|[x-\i4yE9%eCꃦ(1lI{W;V7ȱ a0$)SgD`!4(뜚(R\4]=S)*QGGDk0 usTtGrF`"m0=c%#0C`6Cfc3 0 E;PlF`L#Qns _N7^U*sz8hx):ۑ6$0QǸ+vnHߡ _%|3Ə4k(x6Qڡ^܄S37tFtidřM#)^ӻxkӬin}KQIŏms'ݐ~k;+&Չs9L4&a;d Gez聗 Ik I/Y \k>ŗW)T}Y/ >s- ƊQr]ůg$}DngXv) ]Bw/l@1zŀ]P<f6?ԣH9X/Eʱ<3U={t'ji B`R?-p.^9-xX;+U\JyOo8i+ׅys?Ux~T,Ou_y:ګ[r\4ݰ+ \AJ:Nw#z7OΒy~xZwx=9\є䯑wkI1 '`+&u1O|¯Sf!&רZEHUqI o^a=퇭~H:Iuozpi;Ĥ>mFO-7 f;[t ??wш7΋"m9?`r vHllV|^U(~< Mzݶ[c%0WBmr"ud$yg:ڠeHr =:ϒ>>ƆHk6qj;>ξYזѢfUEرY Gɩ9c{?LXe``.]^Tٓ:T\GwumqQ;᧥wyѹ4 S!`7=CuA[zâugW[+wZBaF\_R8.lUtE8/UCWfawb!ʏ=8eU~Kp`X%һ5(q;!m+6eލ Z2_..m[r7*ip<_ݴE]fݤtE]2 R5W5[FglQ e; Oӟn }Y0ٍ_ '~mKTZ[:W-QUzٳ=F VZZ%/rP#_цyxs<)U)i̢}W¿}<9٭?uS<SЃnG?j]Ic}Dc >?#zX6AǒvKyuwvmdzz'~hǍw=(H[䄆iS=iڤ8=~Gh6wuar*6ZyHZ@]՜`>W$-X yy2 յo9]+9pWOGBgl#!DJr vgU F*7~9 ]J}r67keLCfe.جƋi vGMюTnhmX?'vl60FL\fWv2FpC<q <ZTå\*Ѣ 2/EqT}ZKÁp4xf#~2b6}x]R܆AvxpsYo2o23ȅF 4O]_ Ĥ 3Iyb)4X3K]lVFpdFSG^ڊ 'WAk>׾ȣ<<[email protected]u_'DVi3ر WrUU-0݆bbmR布>ENfTE{PEY|s 巐a ,OG|y NDu"dݶ@-P&:^猿Ry#%Npr;6Y*oJܗHycwqqF;MP^sq>{T }a/ꚽ#2̋nG^vS|U6#cyL[x6\cPd <P| j@:X:̧nVg'PG598f'cDw TA6R?e P"р_Nw"6uvA) ۷S+(RYDéar8J:;fen?dY#;2/;P/7*Q% "7FBP/.NpvGܽ阣(ęe[4sDY4 pa,LL;F GfD(&,`b95 ˑu:$,A e9p_T(JOb?ͨ\GZT3ICʖǰ:W;媜f:xd~A:w:J㝯NtA#H0>:x9P۔Svuz;txgC1Ha*hi%7 guYZ,e4#x_"#1ii1ngP\1%k̀7;JpNމ&--*YbEe8uJͪۮ`f'kFV~DH ˴+LYPh+CB\CMu[iv4Q'vϱ6Eġ|e&-WLM XwK2KbMe&<_jn"X۽6Z )c-Z3& 1?pɓ[DhbY쫻k13!SEI*k L%DWhކ*| zٲ2},bţ"7, WMs m׷JkY3dTi=*URZY%R![ 'iٙQt9KF%lW,Pd7c&/_rt~֯g޺ג;rw= Qat‚!R6A,Coھj jܱj[ff4N9ue YTM4k<:?I^>FwA 3G#FPIYЮ 3ukm'flҞ؅ElHz2.Zrj:Zc*GÔ7iFffPڷxA \o'VJnRA,y@ZR%a.cl;6F`: >U/7IENDB`
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-portal/src/main/java/com/ctrip/framework/apollo/portal/controller/OrganizationController.java
package com.ctrip.framework.apollo.portal.controller; import com.ctrip.framework.apollo.portal.component.config.PortalConfig; import com.ctrip.framework.apollo.portal.entity.vo.Organization; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; import java.util.List; /** * @author Jason Song([email protected]) */ @RestController @RequestMapping("/organizations") public class OrganizationController { private final PortalConfig portalConfig; public OrganizationController(final PortalConfig portalConfig) { this.portalConfig = portalConfig; } @RequestMapping public List<Organization> loadOrganization() { return portalConfig.organizations(); } }
package com.ctrip.framework.apollo.portal.controller; import com.ctrip.framework.apollo.portal.component.config.PortalConfig; import com.ctrip.framework.apollo.portal.entity.vo.Organization; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; import java.util.List; /** * @author Jason Song([email protected]) */ @RestController @RequestMapping("/organizations") public class OrganizationController { private final PortalConfig portalConfig; public OrganizationController(final PortalConfig portalConfig) { this.portalConfig = portalConfig; } @RequestMapping public List<Organization> loadOrganization() { return portalConfig.organizations(); } }
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-core/src/main/java/com/ctrip/framework/foundation/internals/io/ByteOrderMark.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE * file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file * to You 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 com.ctrip.framework.foundation.internals.io; import java.io.Serializable; /** * Byte Order Mark (BOM) representation - see {@link BOMInputStream}. * * @see BOMInputStream * @see <a href="http://en.wikipedia.org/wiki/Byte_order_mark">Wikipedia: Byte Order Mark</a> * @see <a href="http://www.w3.org/TR/2006/REC-xml-20060816/#sec-guessing">W3C: Autodetection of Character Encodings * (Non-Normative)</a> * @version $Id: ByteOrderMark.java 1586504 2014-04-10 23:34:37Z ggregory $ * @since 2.0 */ public class ByteOrderMark implements Serializable { private static final long serialVersionUID = 1L; /** UTF-8 BOM */ public static final ByteOrderMark UTF_8 = new ByteOrderMark("UTF-8", 0xEF, 0xBB, 0xBF); /** UTF-16BE BOM (Big-Endian) */ public static final ByteOrderMark UTF_16BE = new ByteOrderMark("UTF-16BE", 0xFE, 0xFF); /** UTF-16LE BOM (Little-Endian) */ public static final ByteOrderMark UTF_16LE = new ByteOrderMark("UTF-16LE", 0xFF, 0xFE); /** * UTF-32BE BOM (Big-Endian) * * @since 2.2 */ public static final ByteOrderMark UTF_32BE = new ByteOrderMark("UTF-32BE", 0x00, 0x00, 0xFE, 0xFF); /** * UTF-32LE BOM (Little-Endian) * * @since 2.2 */ public static final ByteOrderMark UTF_32LE = new ByteOrderMark("UTF-32LE", 0xFF, 0xFE, 0x00, 0x00); /** * Unicode BOM character; external form depends on the encoding. * * @see <a href="http://unicode.org/faq/utf_bom.html#BOM">Byte Order Mark (BOM) FAQ</a> * @since 2.5 */ public static final char UTF_BOM = '\uFEFF'; private final String charsetName; private final int[] bytes; /** * Construct a new BOM. * * @param charsetName The name of the charset the BOM represents * @param bytes The BOM's bytes * @throws IllegalArgumentException if the charsetName is null or zero length * @throws IllegalArgumentException if the bytes are null or zero length */ public ByteOrderMark(final String charsetName, final int... bytes) { if (charsetName == null || charsetName.isEmpty()) { throw new IllegalArgumentException("No charsetName specified"); } if (bytes == null || bytes.length == 0) { throw new IllegalArgumentException("No bytes specified"); } this.charsetName = charsetName; this.bytes = new int[bytes.length]; System.arraycopy(bytes, 0, this.bytes, 0, bytes.length); } /** * Return the name of the {@link java.nio.charset.Charset} the BOM represents. * * @return the character set name */ public String getCharsetName() { return charsetName; } /** * Return the length of the BOM's bytes. * * @return the length of the BOM's bytes */ public int length() { return bytes.length; } /** * The byte at the specified position. * * @param pos The position * @return The specified byte */ public int get(final int pos) { return bytes[pos]; } /** * Return a copy of the BOM's bytes. * * @return a copy of the BOM's bytes */ public byte[] getBytes() { final byte[] copy = new byte[bytes.length]; for (int i = 0; i < bytes.length; i++) { copy[i] = (byte) bytes[i]; } return copy; } /** * Indicates if this BOM's bytes equals another. * * @param obj The object to compare to * @return true if the bom's bytes are equal, otherwise false */ @Override public boolean equals(final Object obj) { if (!(obj instanceof ByteOrderMark)) { return false; } final ByteOrderMark bom = (ByteOrderMark) obj; if (bytes.length != bom.length()) { return false; } for (int i = 0; i < bytes.length; i++) { if (bytes[i] != bom.get(i)) { return false; } } return true; } /** * Return the hashcode for this BOM. * * @return the hashcode for this BOM. * @see Object#hashCode() */ @Override public int hashCode() { int hashCode = getClass().hashCode(); for (final int b : bytes) { hashCode += b; } return hashCode; } /** * Provide a String representation of the BOM. * * @return the length of the BOM's bytes */ @Override public String toString() { final StringBuilder builder = new StringBuilder(); builder.append(getClass().getSimpleName()); builder.append('['); builder.append(charsetName); builder.append(": "); for (int i = 0; i < bytes.length; i++) { if (i > 0) { builder.append(","); } builder.append("0x"); builder.append(Integer.toHexString(0xFF & bytes[i]).toUpperCase()); } builder.append(']'); return builder.toString(); } }
/* * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE * file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file * to You 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 com.ctrip.framework.foundation.internals.io; import java.io.Serializable; /** * Byte Order Mark (BOM) representation - see {@link BOMInputStream}. * * @see BOMInputStream * @see <a href="http://en.wikipedia.org/wiki/Byte_order_mark">Wikipedia: Byte Order Mark</a> * @see <a href="http://www.w3.org/TR/2006/REC-xml-20060816/#sec-guessing">W3C: Autodetection of Character Encodings * (Non-Normative)</a> * @version $Id: ByteOrderMark.java 1586504 2014-04-10 23:34:37Z ggregory $ * @since 2.0 */ public class ByteOrderMark implements Serializable { private static final long serialVersionUID = 1L; /** UTF-8 BOM */ public static final ByteOrderMark UTF_8 = new ByteOrderMark("UTF-8", 0xEF, 0xBB, 0xBF); /** UTF-16BE BOM (Big-Endian) */ public static final ByteOrderMark UTF_16BE = new ByteOrderMark("UTF-16BE", 0xFE, 0xFF); /** UTF-16LE BOM (Little-Endian) */ public static final ByteOrderMark UTF_16LE = new ByteOrderMark("UTF-16LE", 0xFF, 0xFE); /** * UTF-32BE BOM (Big-Endian) * * @since 2.2 */ public static final ByteOrderMark UTF_32BE = new ByteOrderMark("UTF-32BE", 0x00, 0x00, 0xFE, 0xFF); /** * UTF-32LE BOM (Little-Endian) * * @since 2.2 */ public static final ByteOrderMark UTF_32LE = new ByteOrderMark("UTF-32LE", 0xFF, 0xFE, 0x00, 0x00); /** * Unicode BOM character; external form depends on the encoding. * * @see <a href="http://unicode.org/faq/utf_bom.html#BOM">Byte Order Mark (BOM) FAQ</a> * @since 2.5 */ public static final char UTF_BOM = '\uFEFF'; private final String charsetName; private final int[] bytes; /** * Construct a new BOM. * * @param charsetName The name of the charset the BOM represents * @param bytes The BOM's bytes * @throws IllegalArgumentException if the charsetName is null or zero length * @throws IllegalArgumentException if the bytes are null or zero length */ public ByteOrderMark(final String charsetName, final int... bytes) { if (charsetName == null || charsetName.isEmpty()) { throw new IllegalArgumentException("No charsetName specified"); } if (bytes == null || bytes.length == 0) { throw new IllegalArgumentException("No bytes specified"); } this.charsetName = charsetName; this.bytes = new int[bytes.length]; System.arraycopy(bytes, 0, this.bytes, 0, bytes.length); } /** * Return the name of the {@link java.nio.charset.Charset} the BOM represents. * * @return the character set name */ public String getCharsetName() { return charsetName; } /** * Return the length of the BOM's bytes. * * @return the length of the BOM's bytes */ public int length() { return bytes.length; } /** * The byte at the specified position. * * @param pos The position * @return The specified byte */ public int get(final int pos) { return bytes[pos]; } /** * Return a copy of the BOM's bytes. * * @return a copy of the BOM's bytes */ public byte[] getBytes() { final byte[] copy = new byte[bytes.length]; for (int i = 0; i < bytes.length; i++) { copy[i] = (byte) bytes[i]; } return copy; } /** * Indicates if this BOM's bytes equals another. * * @param obj The object to compare to * @return true if the bom's bytes are equal, otherwise false */ @Override public boolean equals(final Object obj) { if (!(obj instanceof ByteOrderMark)) { return false; } final ByteOrderMark bom = (ByteOrderMark) obj; if (bytes.length != bom.length()) { return false; } for (int i = 0; i < bytes.length; i++) { if (bytes[i] != bom.get(i)) { return false; } } return true; } /** * Return the hashcode for this BOM. * * @return the hashcode for this BOM. * @see Object#hashCode() */ @Override public int hashCode() { int hashCode = getClass().hashCode(); for (final int b : bytes) { hashCode += b; } return hashCode; } /** * Provide a String representation of the BOM. * * @return the length of the BOM's bytes */ @Override public String toString() { final StringBuilder builder = new StringBuilder(); builder.append(getClass().getSimpleName()); builder.append('['); builder.append(charsetName); builder.append(": "); for (int i = 0; i < bytes.length; i++) { if (i > 0) { builder.append(","); } builder.append("0x"); builder.append(Integer.toHexString(0xFF & bytes[i]).toUpperCase()); } builder.append(']'); return builder.toString(); } }
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-portal/src/main/resources/static/img/404.png
PNG  IHDRXIDATx^]Mr7~ u}'Trk&l- LoGrP[i̜ b 1ğ~h 4ݏUXxxx?0$a&F@#5!'n\%0AZ2<L7 nq iD0`ƵZ%tC j LL4 s\{bx9DD@[DO/[<7i0@@7r '8<F9 _>?[9`@)z$v3Ar|B&Wfꄀsnd N}-/ID>9| #^;6 _`B:c}o8Rii2ъKtCkJ;;a)Q"d ~bS00$|lE9%OJF\OsO|' _r31Xpx`z!/\/;H|0^BGj2ϿC$C`0<n>:<#p5ovq z/_8m@&H[F « 0Ax 0n j LL4 &n\%0AZ2<L7 nq iD0`ƵZ%tC j LL4 &n\%0AZ2<L7 [R1nkor 1xg60Az>"_KT67un?6ߤL5AnAw0ƖQ<~c4C3~&T=B{1Gq'|B]*IvJ݀ bAڋLOKi!ITf&]}{&/_%=[ >AV|1h6SX(ƪ)v -ԝd (_Ձ2l.Q2;)@ce5),yDD\Py\E8ƇW'F&D?`wSc} KŤ?ָ ,[jҰNŮ_-㣨aj=y#蟎l1A,=M 30rqWY.{Iɂ.0Ya)PӥA /sob-`u* ) O֨Yr E^L5/&$ T},g*cFbj>AWcͫȳ&ߒ{EX4)c܏_O>ldvJ9U+Ds)j:bh)rL[ gő5Y8qil6/B^@7ek圹e,2EH@^UgҞ"$7C;k;FúL:v{Y֛d4mֶS&H(7jS&H(7j@4d+ !)$.[ibcO jR2,6BC+6Q}J7[u_䪼;΍6/3fC",6S H#?&>I` Sk ѼhX+a$ @c&P4ϐ^5YH Zqz`ϣ?Bʠ# 85WtraaĎ XZ @.^M`͙ߪX9bݠg LE#::: N_V$UهJZGT޿s4F ⥑TAtIPTZU}A2Yo;7Jf4gy E忸[A21 S3^%|VY8CBQ I\6$_wdTuЀQ1ŎG+QռyJWj rsݥO[56B:pl&Ҽ`iV6,Ez-}tl걎 = g~Ki$)PrcU;89jktA `0|o yT$E`Bve4 > &|oճltp&6Xd--M;@xCE!rerDݞ u`Enۅ7wi?chAonL6]r'HL5ϻdRsY"UXߔm )З0{n#"Cӗ%orwh'Upe`.f%MjyP~2]2'U8,%bR*D֫`&I߯hN*=/Ѹ-ƴu%CKz8rjGPcʔDA͓pԅʴt\Kõ{ 4M%6r56k|%A$OFPzf|FߢhIӋUa ԣ/2c-+$ADh@2_e_ HL(Zs˂OѮ eYDvYḘ|L1MX`o;},^"V>U6H +gۂwή{tЦa/)\pYhu+ =fZt 8حu]U[!u'(ZЗXU/T+2aĴ4un#k F r >9T$IڌFl𤲗$ bʰuln%֖ [Ll yIJc8is\./t`e BAjb޷)[HЮeD8J̀m% y |ZK:, "pYA~1AibFT)kz B RV4=zٶ 8*` 6|˲kˆ.b0!iM39eQSeue5g$?DȜd0tzlA7~VtԿ];_6NKgc[gKo1:GK[ޓA8U[]xO~<r"ae9i %tj\+T~p x CzYxOAKke!S= rC\@-~ZRΡ#)ᜥ|8%A".^X-U(CQ\v/@tY9 qQ=%Vp an(sZ6CE1g 6C[0BwÅv%C]$r* -<Cn'G I2B.K9?\tR{6r!V̂o0| ڋ\ Rk}띕<)ylyOAxhuZ FwbP-W:%OV Ջ[IGv4eG"iRUԝɓ:AHH1^$1cCUrnB #1V"{_adb pbqiM"~S&X_O#9Q"T`·2u1jU'Fј=eB-)7 GAcWɝ NE fw5?ou,񗊷 M e#r,(b^֡^;h5IhHvOr>R' Ql>6E;P4׷.ʹ"D'&KMWeԽL ڲރy'Iz'3]dzlYe˺1h"!/R?ŐzqBH"HcLoAU4O l.1  IĊY+<UPCT6)ׅj:4@$, ((NyMaqj^%L$Iҙ=$̸|)/m.ٶɟHwSf>`jurBa%K2mP t#_W&Fq$H|!~Obw`军i 7?cJWߖ0~$(یAogSS0NG9(YS)&0 ^? UfX5OEE ̿dczK @J#+RٟYf&"Fdl[nO"xHL>&tiT%Dx=~9Z9!Ef$Jԣ}F G'G \R4odڨL+탄g O%T)NmG-K߀ЫbBһ$jL׹NM"yIYf; OFOZw0^RޙL|geYG \R 46URGSCށ99tr.zyqړOFPQhdnU#趔DL Ț0x$<q~l:Qg;5m@vי9AR#2*0+bLK6z6AN- VdvO'`sE|fhYJRN+lFA=BpN Y XEM˰ֺ]D_ik}b,Zgﱆ&jnDɖ}E=@t?ldzsN :N]b&AZ<(G7A&G9>3Me0V>那uPq=l R.EJ1N(06. )GU(,+cV=h/i^4A6y^M^.\~ެdZqM &j lfh:bOZDGS.9y l}L`Q4{5qTA*yv咹j'{s?:E_]Qm Y>w)Vf mXngm_gG ő܎6w b| I3e@I-#`}bY`#3GPXd IF*Ó->ʛsG6 IQ^OL|Z%bZQ\ }T)LWf1ԍ$wZw<նLH;}aΖy~/$;E X3}.v\FC*" mNf!D^ ACu<X%ĵ-H$|\ge-Z\ #6թ>XQl6DzE6kQ! O /3RzS xY1w0?Y$;1AS65#:rjd'^Iaa zQX`JcCǧoE|̾mn@5UV /W%=G>fj50H*Fݎ,O%at/]zknqƫH•-ߑl2+ۨd02Do1{JZwqG+˪w?2 Ә F'AXwI Uɧ;jXh"DLNҀ\/<hZ3EYcT!Jx7x<EtPW: #v6絜R4\_B.T"{բWph2+#*?KI)iq)S_hD* ž"w;hC*oݟ9ԩ7ABAOSffVbн^dKi ";~ה%ܩJzT4ŋGxo$6D+6'!ۢ3[ԆB42e[9SXo,b;{e-NU&|Eڟ TezX70SkD'Ζ'JHtRn;v՗ Uu9n?,?e7:X-Xh" hי *mRԂ%|.1-g(t?mE[!;uiioqk:Eb䌦>EܖkQ^q^ڥ;X|f^D<gK,WٿRcQX}g  L^# nq iD0`ƵZ%tC j LL4 &n\%0AZ2<L7 nq o[mIENDB`
PNG  IHDRXIDATx^]Mr7~ u}'Trk&l- LoGrP[i̜ b 1ğ~h 4ݏUXxxx?0$a&F@#5!'n\%0AZ2<L7 nq iD0`ƵZ%tC j LL4 s\{bx9DD@[DO/[<7i0@@7r '8<F9 _>?[9`@)z$v3Ar|B&Wfꄀsnd N}-/ID>9| #^;6 _`B:c}o8Rii2ъKtCkJ;;a)Q"d ~bS00$|lE9%OJF\OsO|' _r31Xpx`z!/\/;H|0^BGj2ϿC$C`0<n>:<#p5ovq z/_8m@&H[F « 0Ax 0n j LL4 &n\%0AZ2<L7 nq iD0`ƵZ%tC j LL4 &n\%0AZ2<L7 [R1nkor 1xg60Az>"_KT67un?6ߤL5AnAw0ƖQ<~c4C3~&T=B{1Gq'|B]*IvJ݀ bAڋLOKi!ITf&]}{&/_%=[ >AV|1h6SX(ƪ)v -ԝd (_Ձ2l.Q2;)@ce5),yDD\Py\E8ƇW'F&D?`wSc} KŤ?ָ ,[jҰNŮ_-㣨aj=y#蟎l1A,=M 30rqWY.{Iɂ.0Ya)PӥA /sob-`u* ) O֨Yr E^L5/&$ T},g*cFbj>AWcͫȳ&ߒ{EX4)c܏_O>ldvJ9U+Ds)j:bh)rL[ gő5Y8qil6/B^@7ek圹e,2EH@^UgҞ"$7C;k;FúL:v{Y֛d4mֶS&H(7jS&H(7j@4d+ !)$.[ibcO jR2,6BC+6Q}J7[u_䪼;΍6/3fC",6S H#?&>I` Sk ѼhX+a$ @c&P4ϐ^5YH Zqz`ϣ?Bʠ# 85WtraaĎ XZ @.^M`͙ߪX9bݠg LE#::: N_V$UهJZGT޿s4F ⥑TAtIPTZU}A2Yo;7Jf4gy E忸[A21 S3^%|VY8CBQ I\6$_wdTuЀQ1ŎG+QռyJWj rsݥO[56B:pl&Ҽ`iV6,Ez-}tl걎 = g~Ki$)PrcU;89jktA `0|o yT$E`Bve4 > &|oճltp&6Xd--M;@xCE!rerDݞ u`Enۅ7wi?chAonL6]r'HL5ϻdRsY"UXߔm )З0{n#"Cӗ%orwh'Upe`.f%MjyP~2]2'U8,%bR*D֫`&I߯hN*=/Ѹ-ƴu%CKz8rjGPcʔDA͓pԅʴt\Kõ{ 4M%6r56k|%A$OFPzf|FߢhIӋUa ԣ/2c-+$ADh@2_e_ HL(Zs˂OѮ eYDvYḘ|L1MX`o;},^"V>U6H +gۂwή{tЦa/)\pYhu+ =fZt 8حu]U[!u'(ZЗXU/T+2aĴ4un#k F r >9T$IڌFl𤲗$ bʰuln%֖ [Ll yIJc8is\./t`e BAjb޷)[HЮeD8J̀m% y |ZK:, "pYA~1AibFT)kz B RV4=zٶ 8*` 6|˲kˆ.b0!iM39eQSeue5g$?DȜd0tzlA7~VtԿ];_6NKgc[gKo1:GK[ޓA8U[]xO~<r"ae9i %tj\+T~p x CzYxOAKke!S= rC\@-~ZRΡ#)ᜥ|8%A".^X-U(CQ\v/@tY9 qQ=%Vp an(sZ6CE1g 6C[0BwÅv%C]$r* -<Cn'G I2B.K9?\tR{6r!V̂o0| ڋ\ Rk}띕<)ylyOAxhuZ FwbP-W:%OV Ջ[IGv4eG"iRUԝɓ:AHH1^$1cCUrnB #1V"{_adb pbqiM"~S&X_O#9Q"T`·2u1jU'Fј=eB-)7 GAcWɝ NE fw5?ou,񗊷 M e#r,(b^֡^;h5IhHvOr>R' Ql>6E;P4׷.ʹ"D'&KMWeԽL ڲރy'Iz'3]dzlYe˺1h"!/R?ŐzqBH"HcLoAU4O l.1  IĊY+<UPCT6)ׅj:4@$, ((NyMaqj^%L$Iҙ=$̸|)/m.ٶɟHwSf>`jurBa%K2mP t#_W&Fq$H|!~Obw`军i 7?cJWߖ0~$(یAogSS0NG9(YS)&0 ^? UfX5OEE ̿dczK @J#+RٟYf&"Fdl[nO"xHL>&tiT%Dx=~9Z9!Ef$Jԣ}F G'G \R4odڨL+탄g O%T)NmG-K߀ЫbBһ$jL׹NM"yIYf; OFOZw0^RޙL|geYG \R 46URGSCށ99tr.zyqړOFPQhdnU#趔DL Ț0x$<q~l:Qg;5m@vי9AR#2*0+bLK6z6AN- VdvO'`sE|fhYJRN+lFA=BpN Y XEM˰ֺ]D_ik}b,Zgﱆ&jnDɖ}E=@t?ldzsN :N]b&AZ<(G7A&G9>3Me0V>那uPq=l R.EJ1N(06. )GU(,+cV=h/i^4A6y^M^.\~ެdZqM &j lfh:bOZDGS.9y l}L`Q4{5qTA*yv咹j'{s?:E_]Qm Y>w)Vf mXngm_gG ő܎6w b| I3e@I-#`}bY`#3GPXd IF*Ó->ʛsG6 IQ^OL|Z%bZQ\ }T)LWf1ԍ$wZw<նLH;}aΖy~/$;E X3}.v\FC*" mNf!D^ ACu<X%ĵ-H$|\ge-Z\ #6թ>XQl6DzE6kQ! O /3RzS xY1w0?Y$;1AS65#:rjd'^Iaa zQX`JcCǧoE|̾mn@5UV /W%=G>fj50H*Fݎ,O%at/]zknqƫH•-ߑl2+ۨd02Do1{JZwqG+˪w?2 Ә F'AXwI Uɧ;jXh"DLNҀ\/<hZ3EYcT!Jx7x<EtPW: #v6絜R4\_B.T"{բWph2+#*?KI)iq)S_hD* ž"w;hC*oݟ9ԩ7ABAOSffVbн^dKi ";~ה%ܩJzT4ŋGxo$6D+6'!ۢ3[ԆB42e[9SXo,b;{e-NU&|Eڟ TezX70SkD'Ζ'JHtRn;v՗ Uu9n?,?e7:X-Xh" hי *mRԂ%|.1-g(t?mE[!;uiioqk:Eb䌦>EܖkQ^q^ڥ;X|f^D<gK,WٿRcQX}g  L^# nq iD0`ƵZ%tC j LL4 &n\%0AZ2<L7 nq o[mIENDB`
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-assembly/src/main/resources/META-INF/app.properties
app.id=100003171 jdkVersion=1.8
app.id=100003171 jdkVersion=1.8
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./docs/zh/design/apollo-design.md
# &nbsp; # 一、总体设计 ## 1.1 基础模型 如下即是Apollo的基础模型: 1. 用户在配置中心对配置进行修改并发布 2. 配置中心通知Apollo客户端有配置更新 3. Apollo客户端从配置中心拉取最新的配置、更新本地配置并通知到应用 ![basic-architecture](https://raw.githubusercontent.com/ctripcorp/apollo/master/doc/images/basic-architecture.png) ## 1.2 架构模块 下图是Apollo架构模块的概览,详细说明可以参考[Apollo配置中心架构剖析](https://mp.weixin.qq.com/s/-hUaQPzfsl9Lm3IqQW3VDQ)。 ![overall-architecture](https://raw.githubusercontent.com/ctripcorp/apollo/master/doc/images/overall-architecture.png) 上图简要描述了Apollo的总体设计,我们可以从下往上看: * Config Service提供配置的读取、推送等功能,服务对象是Apollo客户端 * Admin Service提供配置的修改、发布等功能,服务对象是Apollo Portal(管理界面) * Config Service和Admin Service都是多实例、无状态部署,所以需要将自己注册到Eureka中并保持心跳 * 在Eureka之上我们架了一层Meta Server用于封装Eureka的服务发现接口 * Client通过域名访问Meta Server获取Config Service服务列表(IP+Port),而后直接通过IP+Port访问服务,同时在Client侧会做load balance、错误重试 * Portal通过域名访问Meta Server获取Admin Service服务列表(IP+Port),而后直接通过IP+Port访问服务,同时在Portal侧会做load balance、错误重试 * 为了简化部署,我们实际上会把Config Service、Eureka和Meta Server三个逻辑角色部署在同一个JVM进程中 ### 1.2.1 Why Eureka 为什么我们采用Eureka作为服务注册中心,而不是使用传统的zk、etcd呢?我大致总结了一下,有以下几方面的原因: * 它提供了完整的Service Registry和Service Discovery实现 * 首先是提供了完整的实现,并且也经受住了Netflix自己的生产环境考验,相对使用起来会比较省心。 * 和Spring Cloud无缝集成 * 我们的项目本身就使用了Spring Cloud和Spring Boot,同时Spring Cloud还有一套非常完善的开源代码来整合Eureka,所以使用起来非常方便。 * 另外,Eureka还支持在我们应用自身的容器中启动,也就是说我们的应用启动完之后,既充当了Eureka的角色,同时也是服务的提供者。这样就极大的提高了服务的可用性。 * **这一点是我们选择Eureka而不是zk、etcd等的主要原因,为了提高配置中心的可用性和降低部署复杂度,我们需要尽可能地减少外部依赖。** * Open Source * 最后一点是开源,由于代码是开源的,所以非常便于我们了解它的实现原理和排查问题。 ## 1.3 各模块概要介绍 ### 1.3.1 Config Service * 提供配置获取接口 * 提供配置更新推送接口(基于Http long polling) * 服务端使用[Spring DeferredResult](http://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/web/context/request/async/DeferredResult.html)实现异步化,从而大大增加长连接数量 * 目前使用的tomcat embed默认配置是最多10000个连接(可以调整),使用了4C8G的虚拟机实测可以支撑10000个连接,所以满足需求(一个应用实例只会发起一个长连接)。 * 接口服务对象为Apollo客户端 ### 1.3.2 Admin Service * 提供配置管理接口 * 提供配置修改、发布等接口 * 接口服务对象为Portal ### 1.3.3 Meta Server * Portal通过域名访问Meta Server获取Admin Service服务列表(IP+Port) * Client通过域名访问Meta Server获取Config Service服务列表(IP+Port) * Meta Server从Eureka获取Config Service和Admin Service的服务信息,相当于是一个Eureka Client * 增设一个Meta Server的角色主要是为了封装服务发现的细节,对Portal和Client而言,永远通过一个Http接口获取Admin Service和Config Service的服务信息,而不需要关心背后实际的服务注册和发现组件 * Meta Server只是一个逻辑角色,在部署时和Config Service是在一个JVM进程中的,所以IP、端口和Config Service一致 ### 1.3.4 Eureka * 基于[Eureka](https://github.com/Netflix/eureka)和[Spring Cloud Netflix](https://cloud.spring.io/spring-cloud-netflix/)提供服务注册和发现 * Config Service和Admin Service会向Eureka注册服务,并保持心跳 * 为了简单起见,目前Eureka在部署时和Config Service是在一个JVM进程中的(通过Spring Cloud Netflix) ### 1.3.5 Portal * 提供Web界面供用户管理配置 * 通过Meta Server获取Admin Service服务列表(IP+Port),通过IP+Port访问服务 * 在Portal侧做load balance、错误重试 ### 1.3.6 Client * Apollo提供的客户端程序,为应用提供配置获取、实时更新等功能 * 通过Meta Server获取Config Service服务列表(IP+Port),通过IP+Port访问服务 * 在Client侧做load balance、错误重试 ## 1.4 E-R Diagram ### 1.4.1 主体E-R Diagram ![apollo-erd](https://raw.githubusercontent.com/ctripcorp/apollo/master/doc/images/apollo-erd.png) * **App** * App信息 * **AppNamespace** * App下Namespace的元信息 * **Cluster** * 集群信息 * **Namespace** * 集群下的namespace * **Item** * Namespace的配置,每个Item是一个key, value组合 * **Release** * Namespace发布的配置,每个发布包含发布时该Namespace的所有配置 * **Commit** * Namespace下的配置更改记录 * **Audit** * 审计信息,记录用户在何时使用何种方式操作了哪个实体。 ### 1.4.2 权限相关E-R Diagram ![apollo-erd-role-permission](https://raw.githubusercontent.com/ctripcorp/apollo/master/doc/images/apollo-erd-role-permission.png) * **User** * Apollo portal用户 * **UserRole** * 用户和角色的关系 * **Role** * 角色 * **RolePermission** * 角色和权限的关系 * **Permission** * 权限 * 对应到具体的实体资源和操作,如修改NamespaceA的配置,发布NamespaceB的配置等。 * **Consumer** * 第三方应用 * **ConsumerToken** * 发给第三方应用的token * **ConsumerRole** * 第三方应用和角色的关系 * **ConsumerAudit** * 第三方应用访问审计 # 二、服务端设计 ## 2.1 配置发布后的实时推送设计 在配置中心中,一个重要的功能就是配置发布后实时推送到客户端。下面我们简要看一下这块是怎么设计实现的。 ![release-message-notification-design](https://raw.githubusercontent.com/ctripcorp/apollo/master/doc/images/release-message-notification-design.png) 上图简要描述了配置发布的大致过程: 1. 用户在Portal操作配置发布 2. Portal调用Admin Service的接口操作发布 3. Admin Service发布配置后,发送ReleaseMessage给各个Config Service 4. Config Service收到ReleaseMessage后,通知对应的客户端 ### 2.1.1 发送ReleaseMessage的实现方式 Admin Service在配置发布后,需要通知所有的Config Service有配置发布,从而Config Service可以通知对应的客户端来拉取最新的配置。 从概念上来看,这是一个典型的消息使用场景,Admin Service作为producer发出消息,各个Config Service作为consumer消费消息。通过一个消息组件(Message Queue)就能很好的实现Admin Service和Config Service的解耦。 在实现上,考虑到Apollo的实际使用场景,以及为了尽可能减少外部依赖,我们没有采用外部的消息中间件,而是通过数据库实现了一个简单的消息队列。 实现方式如下: 1. Admin Service在配置发布后会往ReleaseMessage表插入一条消息记录,消息内容就是配置发布的AppId+Cluster+Namespace,参见[DatabaseMessageSender](https://github.com/ctripcorp/apollo/blob/master/apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/message/DatabaseMessageSender.java) 2. Config Service有一个线程会每秒扫描一次ReleaseMessage表,看看是否有新的消息记录,参见[ReleaseMessageScanner](https://github.com/ctripcorp/apollo/blob/master/apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/message/ReleaseMessageScanner.java) 3. Config Service如果发现有新的消息记录,那么就会通知到所有的消息监听器([ReleaseMessageListener](https://github.com/ctripcorp/apollo/blob/master/apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/message/ReleaseMessageListener.java)),如[NotificationControllerV2](https://github.com/ctripcorp/apollo/blob/master/apollo-configservice/src/main/java/com/ctrip/framework/apollo/configservice/controller/NotificationControllerV2.java),消息监听器的注册过程参见[ConfigServiceAutoConfiguration](https://github.com/ctripcorp/apollo/blob/master/apollo-configservice/src/main/java/com/ctrip/framework/apollo/configservice/ConfigServiceAutoConfiguration.java) 4. NotificationControllerV2得到配置发布的AppId+Cluster+Namespace后,会通知对应的客户端 示意图如下: <img src="https://raw.githubusercontent.com/ctripcorp/apollo/master/doc/images/release-message-design.png" alt="release-message-design" width="400px"> ### 2.1.2 Config Service通知客户端的实现方式 上一节中简要描述了NotificationControllerV2是如何得知有配置发布的,那NotificationControllerV2在得知有配置发布后是如何通知到客户端的呢? 实现方式如下: 1. 客户端会发起一个Http请求到Config Service的`notifications/v2`接口,也就是[NotificationControllerV2](https://github.com/ctripcorp/apollo/blob/master/apollo-configservice/src/main/java/com/ctrip/framework/apollo/configservice/controller/NotificationControllerV2.java),参见[RemoteConfigLongPollService](https://github.com/ctripcorp/apollo/blob/master/apollo-client/src/main/java/com/ctrip/framework/apollo/internals/RemoteConfigLongPollService.java) 2. NotificationControllerV2不会立即返回结果,而是通过[Spring DeferredResult](http://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/web/context/request/async/DeferredResult.html)把请求挂起 3. 如果在60秒内没有该客户端关心的配置发布,那么会返回Http状态码304给客户端 4. 如果有该客户端关心的配置发布,NotificationControllerV2会调用DeferredResult的[setResult](http://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/web/context/request/async/DeferredResult.html#setResult-T-)方法,传入有配置变化的namespace信息,同时该请求会立即返回。客户端从返回的结果中获取到配置变化的namespace后,会立即请求Config Service获取该namespace的最新配置。 # 三、客户端设计 ![client-architecture](https://raw.githubusercontent.com/ctripcorp/apollo/master/doc/images/client-architecture.png) 上图简要描述了Apollo客户端的实现原理: 1. 客户端和服务端保持了一个长连接,从而能第一时间获得配置更新的推送。(通过Http Long Polling实现) 2. 客户端还会定时从Apollo配置中心服务端拉取应用的最新配置。 * 这是一个fallback机制,为了防止推送机制失效导致配置不更新 * 客户端定时拉取会上报本地版本,所以一般情况下,对于定时拉取的操作,服务端都会返回304 - Not Modified * 定时频率默认为每5分钟拉取一次,客户端也可以通过在运行时指定System Property: `apollo.refreshInterval`来覆盖,单位为分钟。 3. 客户端从Apollo配置中心服务端获取到应用的最新配置后,会保存在内存中 4. 客户端会把从服务端获取到的配置在本地文件系统缓存一份 * 在遇到服务不可用,或网络不通的时候,依然能从本地恢复配置 5. 应用程序可以从Apollo客户端获取最新的配置、订阅配置更新通知 ## 3.1 和Spring集成的原理 Apollo除了支持API方式获取配置,也支持和Spring/Spring Boot集成,集成原理简述如下。 Spring从3.1版本开始增加了`ConfigurableEnvironment`和`PropertySource`: * ConfigurableEnvironment * Spring的ApplicationContext会包含一个Environment(实现ConfigurableEnvironment接口) * ConfigurableEnvironment自身包含了很多个PropertySource * PropertySource * 属性源 * 可以理解为很多个Key - Value的属性配置 在运行时的结构形如: ![Overview](https://raw.githubusercontent.com/ctripcorp/apollo/master/doc/images/environment.png) 需要注意的是,PropertySource之间是有优先级顺序的,如果有一个Key在多个property source中都存在,那么在前面的property source优先。 所以对上图的例子: * env.getProperty(“key1”) -> value1 * **env.getProperty(“key2”) -> value2** * env.getProperty(“key3”) -> value4 在理解了上述原理后,Apollo和Spring/Spring Boot集成的手段就呼之欲出了:在应用启动阶段,Apollo从远端获取配置,然后组装成PropertySource并插入到第一个即可,如下图所示: ![Overview](https://raw.githubusercontent.com/ctripcorp/apollo/master/doc/images/environment-remote-source.png) 相关代码可以参考[PropertySourcesProcessor](https://github.com/ctripcorp/apollo/blob/master/apollo-client/src/main/java/com/ctrip/framework/apollo/spring/config/PropertySourcesProcessor.java) # 四、可用性考虑 <table> <thead> <tr> <th width="20%">场景</th> <th width="20%">影响</th> <th width="30%">降级</th> <th width="30%">原因</th> </tr> </thead> <tbody> <tr> <td>某台Config Service下线</td> <td>无影响</td> <td></td> <td>Config Service无状态,客户端重连其它Config Service</td> </tr> <tr> <td>所有Config Service下线</td> <td>客户端无法读取最新配置,Portal无影响</td> <td>客户端重启时,可以读取本地缓存配置文件。如果是新扩容的机器,可以从其它机器上获取已缓存的配置文件,具体信息可以参考<a href='/#/zh/usage/java-sdk-user-guide?id=_123-本地缓存路径'>Java客户端使用指南 - 1.2.3 本地缓存路径</a> </td> <td></td> </tr> <tr> <td>某台Admin Service下线</td> <td>无影响</td> <td></td> <td>Admin Service无状态,Portal重连其它Admin Service</td> </tr> <tr> <td>所有Admin Service下线</td> <td>客户端无影响,Portal无法更新配置</td> <td></td> <td></td> </tr> <tr> <td>某台Portal下线</td> <td>无影响</td> <td></td> <td>Portal域名通过SLB绑定多台服务器,重试后指向可用的服务器</td> </tr> <tr> <td>全部Portal下线</td> <td>客户端无影响,Portal无法更新配置</td> <td></td> <td></td> </tr> <tr> <td>某个数据中心下线</td> <td>无影响</td> <td></td> <td>多数据中心部署,数据完全同步,Meta Server/Portal域名通过SLB自动切换到其它存活的数据中心</td> </tr> <tr> <td>数据库宕机</td> <td>客户端无影响,Portal无法更新配置</td> <td>Config Service开启<a href="/#/zh/deployment/distributed-deployment-guide?id=_3-config-servicecacheenabled-是否开启配置缓存">配置缓存</a>后,对配置的读取不受数据库宕机影响</td> <td></td> </tr> </tbody> </table> # 五、监控相关 ## 5.1 Tracing ### 5.1.1 CAT Apollo客户端和服务端目前支持[CAT](https://github.com/dianping/cat)自动打点,所以如果自己公司内部部署了CAT的话,只要引入cat-client后Apollo就会自动启用CAT打点。 如果不使用CAT的话,也不用担心,只要不引入cat-client,Apollo是不会启用CAT打点的。 Apollo也提供了Tracer相关的SPI,可以方便地对接自己公司的监控系统。 更多信息,可以参考[v0.4.0 Release Note](https://github.com/ctripcorp/apollo/releases/tag/v0.4.0) ### 5.1.2 SkyWalking 可以参考[@hepyu](https://github.com/hepyu)贡献的[apollo-skywalking-pro样例](https://github.com/hepyu/k8s-app-config/tree/master/product/standard/apollo-skywalking-pro)。 ## 5.2 Metrics 从1.5.0版本开始,Apollo服务端支持通过`/prometheus`暴露prometheus格式的metrics,如`http://${someIp:somePort}/prometheus`
# &nbsp; # 一、总体设计 ## 1.1 基础模型 如下即是Apollo的基础模型: 1. 用户在配置中心对配置进行修改并发布 2. 配置中心通知Apollo客户端有配置更新 3. Apollo客户端从配置中心拉取最新的配置、更新本地配置并通知到应用 ![basic-architecture](https://raw.githubusercontent.com/ctripcorp/apollo/master/doc/images/basic-architecture.png) ## 1.2 架构模块 下图是Apollo架构模块的概览,详细说明可以参考[Apollo配置中心架构剖析](https://mp.weixin.qq.com/s/-hUaQPzfsl9Lm3IqQW3VDQ)。 ![overall-architecture](https://raw.githubusercontent.com/ctripcorp/apollo/master/doc/images/overall-architecture.png) 上图简要描述了Apollo的总体设计,我们可以从下往上看: * Config Service提供配置的读取、推送等功能,服务对象是Apollo客户端 * Admin Service提供配置的修改、发布等功能,服务对象是Apollo Portal(管理界面) * Config Service和Admin Service都是多实例、无状态部署,所以需要将自己注册到Eureka中并保持心跳 * 在Eureka之上我们架了一层Meta Server用于封装Eureka的服务发现接口 * Client通过域名访问Meta Server获取Config Service服务列表(IP+Port),而后直接通过IP+Port访问服务,同时在Client侧会做load balance、错误重试 * Portal通过域名访问Meta Server获取Admin Service服务列表(IP+Port),而后直接通过IP+Port访问服务,同时在Portal侧会做load balance、错误重试 * 为了简化部署,我们实际上会把Config Service、Eureka和Meta Server三个逻辑角色部署在同一个JVM进程中 ### 1.2.1 Why Eureka 为什么我们采用Eureka作为服务注册中心,而不是使用传统的zk、etcd呢?我大致总结了一下,有以下几方面的原因: * 它提供了完整的Service Registry和Service Discovery实现 * 首先是提供了完整的实现,并且也经受住了Netflix自己的生产环境考验,相对使用起来会比较省心。 * 和Spring Cloud无缝集成 * 我们的项目本身就使用了Spring Cloud和Spring Boot,同时Spring Cloud还有一套非常完善的开源代码来整合Eureka,所以使用起来非常方便。 * 另外,Eureka还支持在我们应用自身的容器中启动,也就是说我们的应用启动完之后,既充当了Eureka的角色,同时也是服务的提供者。这样就极大的提高了服务的可用性。 * **这一点是我们选择Eureka而不是zk、etcd等的主要原因,为了提高配置中心的可用性和降低部署复杂度,我们需要尽可能地减少外部依赖。** * Open Source * 最后一点是开源,由于代码是开源的,所以非常便于我们了解它的实现原理和排查问题。 ## 1.3 各模块概要介绍 ### 1.3.1 Config Service * 提供配置获取接口 * 提供配置更新推送接口(基于Http long polling) * 服务端使用[Spring DeferredResult](http://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/web/context/request/async/DeferredResult.html)实现异步化,从而大大增加长连接数量 * 目前使用的tomcat embed默认配置是最多10000个连接(可以调整),使用了4C8G的虚拟机实测可以支撑10000个连接,所以满足需求(一个应用实例只会发起一个长连接)。 * 接口服务对象为Apollo客户端 ### 1.3.2 Admin Service * 提供配置管理接口 * 提供配置修改、发布等接口 * 接口服务对象为Portal ### 1.3.3 Meta Server * Portal通过域名访问Meta Server获取Admin Service服务列表(IP+Port) * Client通过域名访问Meta Server获取Config Service服务列表(IP+Port) * Meta Server从Eureka获取Config Service和Admin Service的服务信息,相当于是一个Eureka Client * 增设一个Meta Server的角色主要是为了封装服务发现的细节,对Portal和Client而言,永远通过一个Http接口获取Admin Service和Config Service的服务信息,而不需要关心背后实际的服务注册和发现组件 * Meta Server只是一个逻辑角色,在部署时和Config Service是在一个JVM进程中的,所以IP、端口和Config Service一致 ### 1.3.4 Eureka * 基于[Eureka](https://github.com/Netflix/eureka)和[Spring Cloud Netflix](https://cloud.spring.io/spring-cloud-netflix/)提供服务注册和发现 * Config Service和Admin Service会向Eureka注册服务,并保持心跳 * 为了简单起见,目前Eureka在部署时和Config Service是在一个JVM进程中的(通过Spring Cloud Netflix) ### 1.3.5 Portal * 提供Web界面供用户管理配置 * 通过Meta Server获取Admin Service服务列表(IP+Port),通过IP+Port访问服务 * 在Portal侧做load balance、错误重试 ### 1.3.6 Client * Apollo提供的客户端程序,为应用提供配置获取、实时更新等功能 * 通过Meta Server获取Config Service服务列表(IP+Port),通过IP+Port访问服务 * 在Client侧做load balance、错误重试 ## 1.4 E-R Diagram ### 1.4.1 主体E-R Diagram ![apollo-erd](https://raw.githubusercontent.com/ctripcorp/apollo/master/doc/images/apollo-erd.png) * **App** * App信息 * **AppNamespace** * App下Namespace的元信息 * **Cluster** * 集群信息 * **Namespace** * 集群下的namespace * **Item** * Namespace的配置,每个Item是一个key, value组合 * **Release** * Namespace发布的配置,每个发布包含发布时该Namespace的所有配置 * **Commit** * Namespace下的配置更改记录 * **Audit** * 审计信息,记录用户在何时使用何种方式操作了哪个实体。 ### 1.4.2 权限相关E-R Diagram ![apollo-erd-role-permission](https://raw.githubusercontent.com/ctripcorp/apollo/master/doc/images/apollo-erd-role-permission.png) * **User** * Apollo portal用户 * **UserRole** * 用户和角色的关系 * **Role** * 角色 * **RolePermission** * 角色和权限的关系 * **Permission** * 权限 * 对应到具体的实体资源和操作,如修改NamespaceA的配置,发布NamespaceB的配置等。 * **Consumer** * 第三方应用 * **ConsumerToken** * 发给第三方应用的token * **ConsumerRole** * 第三方应用和角色的关系 * **ConsumerAudit** * 第三方应用访问审计 # 二、服务端设计 ## 2.1 配置发布后的实时推送设计 在配置中心中,一个重要的功能就是配置发布后实时推送到客户端。下面我们简要看一下这块是怎么设计实现的。 ![release-message-notification-design](https://raw.githubusercontent.com/ctripcorp/apollo/master/doc/images/release-message-notification-design.png) 上图简要描述了配置发布的大致过程: 1. 用户在Portal操作配置发布 2. Portal调用Admin Service的接口操作发布 3. Admin Service发布配置后,发送ReleaseMessage给各个Config Service 4. Config Service收到ReleaseMessage后,通知对应的客户端 ### 2.1.1 发送ReleaseMessage的实现方式 Admin Service在配置发布后,需要通知所有的Config Service有配置发布,从而Config Service可以通知对应的客户端来拉取最新的配置。 从概念上来看,这是一个典型的消息使用场景,Admin Service作为producer发出消息,各个Config Service作为consumer消费消息。通过一个消息组件(Message Queue)就能很好的实现Admin Service和Config Service的解耦。 在实现上,考虑到Apollo的实际使用场景,以及为了尽可能减少外部依赖,我们没有采用外部的消息中间件,而是通过数据库实现了一个简单的消息队列。 实现方式如下: 1. Admin Service在配置发布后会往ReleaseMessage表插入一条消息记录,消息内容就是配置发布的AppId+Cluster+Namespace,参见[DatabaseMessageSender](https://github.com/ctripcorp/apollo/blob/master/apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/message/DatabaseMessageSender.java) 2. Config Service有一个线程会每秒扫描一次ReleaseMessage表,看看是否有新的消息记录,参见[ReleaseMessageScanner](https://github.com/ctripcorp/apollo/blob/master/apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/message/ReleaseMessageScanner.java) 3. Config Service如果发现有新的消息记录,那么就会通知到所有的消息监听器([ReleaseMessageListener](https://github.com/ctripcorp/apollo/blob/master/apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/message/ReleaseMessageListener.java)),如[NotificationControllerV2](https://github.com/ctripcorp/apollo/blob/master/apollo-configservice/src/main/java/com/ctrip/framework/apollo/configservice/controller/NotificationControllerV2.java),消息监听器的注册过程参见[ConfigServiceAutoConfiguration](https://github.com/ctripcorp/apollo/blob/master/apollo-configservice/src/main/java/com/ctrip/framework/apollo/configservice/ConfigServiceAutoConfiguration.java) 4. NotificationControllerV2得到配置发布的AppId+Cluster+Namespace后,会通知对应的客户端 示意图如下: <img src="https://raw.githubusercontent.com/ctripcorp/apollo/master/doc/images/release-message-design.png" alt="release-message-design" width="400px"> ### 2.1.2 Config Service通知客户端的实现方式 上一节中简要描述了NotificationControllerV2是如何得知有配置发布的,那NotificationControllerV2在得知有配置发布后是如何通知到客户端的呢? 实现方式如下: 1. 客户端会发起一个Http请求到Config Service的`notifications/v2`接口,也就是[NotificationControllerV2](https://github.com/ctripcorp/apollo/blob/master/apollo-configservice/src/main/java/com/ctrip/framework/apollo/configservice/controller/NotificationControllerV2.java),参见[RemoteConfigLongPollService](https://github.com/ctripcorp/apollo/blob/master/apollo-client/src/main/java/com/ctrip/framework/apollo/internals/RemoteConfigLongPollService.java) 2. NotificationControllerV2不会立即返回结果,而是通过[Spring DeferredResult](http://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/web/context/request/async/DeferredResult.html)把请求挂起 3. 如果在60秒内没有该客户端关心的配置发布,那么会返回Http状态码304给客户端 4. 如果有该客户端关心的配置发布,NotificationControllerV2会调用DeferredResult的[setResult](http://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/web/context/request/async/DeferredResult.html#setResult-T-)方法,传入有配置变化的namespace信息,同时该请求会立即返回。客户端从返回的结果中获取到配置变化的namespace后,会立即请求Config Service获取该namespace的最新配置。 # 三、客户端设计 ![client-architecture](https://raw.githubusercontent.com/ctripcorp/apollo/master/doc/images/client-architecture.png) 上图简要描述了Apollo客户端的实现原理: 1. 客户端和服务端保持了一个长连接,从而能第一时间获得配置更新的推送。(通过Http Long Polling实现) 2. 客户端还会定时从Apollo配置中心服务端拉取应用的最新配置。 * 这是一个fallback机制,为了防止推送机制失效导致配置不更新 * 客户端定时拉取会上报本地版本,所以一般情况下,对于定时拉取的操作,服务端都会返回304 - Not Modified * 定时频率默认为每5分钟拉取一次,客户端也可以通过在运行时指定System Property: `apollo.refreshInterval`来覆盖,单位为分钟。 3. 客户端从Apollo配置中心服务端获取到应用的最新配置后,会保存在内存中 4. 客户端会把从服务端获取到的配置在本地文件系统缓存一份 * 在遇到服务不可用,或网络不通的时候,依然能从本地恢复配置 5. 应用程序可以从Apollo客户端获取最新的配置、订阅配置更新通知 ## 3.1 和Spring集成的原理 Apollo除了支持API方式获取配置,也支持和Spring/Spring Boot集成,集成原理简述如下。 Spring从3.1版本开始增加了`ConfigurableEnvironment`和`PropertySource`: * ConfigurableEnvironment * Spring的ApplicationContext会包含一个Environment(实现ConfigurableEnvironment接口) * ConfigurableEnvironment自身包含了很多个PropertySource * PropertySource * 属性源 * 可以理解为很多个Key - Value的属性配置 在运行时的结构形如: ![Overview](https://raw.githubusercontent.com/ctripcorp/apollo/master/doc/images/environment.png) 需要注意的是,PropertySource之间是有优先级顺序的,如果有一个Key在多个property source中都存在,那么在前面的property source优先。 所以对上图的例子: * env.getProperty(“key1”) -> value1 * **env.getProperty(“key2”) -> value2** * env.getProperty(“key3”) -> value4 在理解了上述原理后,Apollo和Spring/Spring Boot集成的手段就呼之欲出了:在应用启动阶段,Apollo从远端获取配置,然后组装成PropertySource并插入到第一个即可,如下图所示: ![Overview](https://raw.githubusercontent.com/ctripcorp/apollo/master/doc/images/environment-remote-source.png) 相关代码可以参考[PropertySourcesProcessor](https://github.com/ctripcorp/apollo/blob/master/apollo-client/src/main/java/com/ctrip/framework/apollo/spring/config/PropertySourcesProcessor.java) # 四、可用性考虑 <table> <thead> <tr> <th width="20%">场景</th> <th width="20%">影响</th> <th width="30%">降级</th> <th width="30%">原因</th> </tr> </thead> <tbody> <tr> <td>某台Config Service下线</td> <td>无影响</td> <td></td> <td>Config Service无状态,客户端重连其它Config Service</td> </tr> <tr> <td>所有Config Service下线</td> <td>客户端无法读取最新配置,Portal无影响</td> <td>客户端重启时,可以读取本地缓存配置文件。如果是新扩容的机器,可以从其它机器上获取已缓存的配置文件,具体信息可以参考<a href='/#/zh/usage/java-sdk-user-guide?id=_123-本地缓存路径'>Java客户端使用指南 - 1.2.3 本地缓存路径</a> </td> <td></td> </tr> <tr> <td>某台Admin Service下线</td> <td>无影响</td> <td></td> <td>Admin Service无状态,Portal重连其它Admin Service</td> </tr> <tr> <td>所有Admin Service下线</td> <td>客户端无影响,Portal无法更新配置</td> <td></td> <td></td> </tr> <tr> <td>某台Portal下线</td> <td>无影响</td> <td></td> <td>Portal域名通过SLB绑定多台服务器,重试后指向可用的服务器</td> </tr> <tr> <td>全部Portal下线</td> <td>客户端无影响,Portal无法更新配置</td> <td></td> <td></td> </tr> <tr> <td>某个数据中心下线</td> <td>无影响</td> <td></td> <td>多数据中心部署,数据完全同步,Meta Server/Portal域名通过SLB自动切换到其它存活的数据中心</td> </tr> <tr> <td>数据库宕机</td> <td>客户端无影响,Portal无法更新配置</td> <td>Config Service开启<a href="/#/zh/deployment/distributed-deployment-guide?id=_3-config-servicecacheenabled-是否开启配置缓存">配置缓存</a>后,对配置的读取不受数据库宕机影响</td> <td></td> </tr> </tbody> </table> # 五、监控相关 ## 5.1 Tracing ### 5.1.1 CAT Apollo客户端和服务端目前支持[CAT](https://github.com/dianping/cat)自动打点,所以如果自己公司内部部署了CAT的话,只要引入cat-client后Apollo就会自动启用CAT打点。 如果不使用CAT的话,也不用担心,只要不引入cat-client,Apollo是不会启用CAT打点的。 Apollo也提供了Tracer相关的SPI,可以方便地对接自己公司的监控系统。 更多信息,可以参考[v0.4.0 Release Note](https://github.com/ctripcorp/apollo/releases/tag/v0.4.0) ### 5.1.2 SkyWalking 可以参考[@hepyu](https://github.com/hepyu)贡献的[apollo-skywalking-pro样例](https://github.com/hepyu/k8s-app-config/tree/master/product/standard/apollo-skywalking-pro)。 ## 5.2 Metrics 从1.5.0版本开始,Apollo服务端支持通过`/prometheus`暴露prometheus格式的metrics,如`http://${someIp:somePort}/prometheus`
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-client/src/test/resources/spring/yaml/case3.yaml
timeout: 1000
timeout: 1000
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-common/src/main/java/com/ctrip/framework/apollo/common/condition/ConditionalOnProfile.java
package com.ctrip.framework.apollo.common.condition; import org.springframework.context.annotation.Conditional; import java.lang.annotation.Documented; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * {@link Conditional} that only matches when the specified profiles are active. * * @author Jason Song([email protected]) */ @Target({ ElementType.TYPE, ElementType.METHOD }) @Retention(RetentionPolicy.RUNTIME) @Documented @Conditional(OnProfileCondition.class) public @interface ConditionalOnProfile { /** * The profiles that should be active * @return */ String[] value() default {}; }
package com.ctrip.framework.apollo.common.condition; import org.springframework.context.annotation.Conditional; import java.lang.annotation.Documented; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * {@link Conditional} that only matches when the specified profiles are active. * * @author Jason Song([email protected]) */ @Target({ ElementType.TYPE, ElementType.METHOD }) @Retention(RetentionPolicy.RUNTIME) @Documented @Conditional(OnProfileCondition.class) public @interface ConditionalOnProfile { /** * The profiles that should be active * @return */ String[] value() default {}; }
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-client/src/test/java/com/ctrip/framework/apollo/internals/RemoteConfigLongPollServiceTest.java
package com.ctrip.framework.apollo.internals; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertTrue; import static org.mockito.Matchers.any; import static org.mockito.Matchers.eq; import static org.mockito.Mockito.doAnswer; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.never; import static org.mockito.Mockito.times; import static org.mockito.Mockito.verify; import static org.mockito.Mockito.when; import com.ctrip.framework.apollo.build.MockInjector; import com.ctrip.framework.apollo.core.dto.ApolloConfigNotification; import com.ctrip.framework.apollo.core.dto.ApolloNotificationMessages; import com.ctrip.framework.apollo.core.dto.ServiceDTO; import com.ctrip.framework.apollo.core.signature.Signature; import com.ctrip.framework.apollo.util.ConfigUtil; import com.ctrip.framework.apollo.util.http.HttpRequest; import com.ctrip.framework.apollo.util.http.HttpResponse; import com.ctrip.framework.apollo.util.http.HttpUtil; import com.google.common.collect.ImmutableMap; import com.google.common.collect.Lists; import com.google.common.net.HttpHeaders; import com.google.common.util.concurrent.SettableFuture; import java.lang.reflect.Type; import java.util.List; import java.util.Map; import java.util.concurrent.TimeUnit; import java.util.concurrent.atomic.AtomicInteger; import javax.servlet.http.HttpServletResponse; import org.junit.After; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.ArgumentCaptor; import org.mockito.Mock; import org.mockito.invocation.InvocationOnMock; import org.mockito.runners.MockitoJUnitRunner; import org.mockito.stubbing.Answer; import org.springframework.test.util.ReflectionTestUtils; /** * @author Jason Song([email protected]) */ @RunWith(MockitoJUnitRunner.class) public class RemoteConfigLongPollServiceTest { private RemoteConfigLongPollService remoteConfigLongPollService; @Mock private HttpResponse<List<ApolloConfigNotification>> pollResponse; @Mock private HttpUtil httpUtil; @Mock private ConfigServiceLocator configServiceLocator; private Type responseType; private static String someServerUrl; private static String someAppId; private static String someCluster; private static String someSecret; @Before public void setUp() throws Exception { MockInjector.setInstance(HttpUtil.class, httpUtil); someServerUrl = "http://someServer"; ServiceDTO serviceDTO = mock(ServiceDTO.class); when(serviceDTO.getHomepageUrl()).thenReturn(someServerUrl); when(configServiceLocator.getConfigServices()).thenReturn(Lists.newArrayList(serviceDTO)); MockInjector.setInstance(ConfigServiceLocator.class, configServiceLocator); MockInjector.setInstance(ConfigUtil.class, new MockConfigUtil()); remoteConfigLongPollService = new RemoteConfigLongPollService(); responseType = (Type) ReflectionTestUtils.getField(remoteConfigLongPollService, "m_responseType"); someAppId = "someAppId"; someCluster = "someCluster"; } @After public void tearDown() throws Exception { MockInjector.reset(); } @Test public void testSubmitLongPollNamespaceWith304Response() throws Exception { RemoteConfigRepository someRepository = mock(RemoteConfigRepository.class); final String someNamespace = "someNamespace"; when(pollResponse.getStatusCode()).thenReturn(HttpServletResponse.SC_NOT_MODIFIED); final SettableFuture<Boolean> longPollFinished = SettableFuture.create(); doAnswer(new Answer<HttpResponse<List<ApolloConfigNotification>>>() { @Override public HttpResponse<List<ApolloConfigNotification>> answer(InvocationOnMock invocation) throws Throwable { try { TimeUnit.MILLISECONDS.sleep(50); } catch (InterruptedException e) { } HttpRequest request = invocation.getArgumentAt(0, HttpRequest.class); assertTrue(request.getUrl().contains(someServerUrl + "/notifications/v2?")); assertTrue(request.getUrl().contains("appId=" + someAppId)); assertTrue(request.getUrl().contains("cluster=" + someCluster)); assertTrue(request.getUrl().contains("notifications=")); assertTrue(request.getUrl().contains(someNamespace)); longPollFinished.set(true); return pollResponse; } }).when(httpUtil).doGet(any(HttpRequest.class), eq(responseType)); remoteConfigLongPollService.submit(someNamespace, someRepository); longPollFinished.get(5000, TimeUnit.MILLISECONDS); remoteConfigLongPollService.stopLongPollingRefresh(); verify(someRepository, never()).onLongPollNotified(any(ServiceDTO.class), any(ApolloNotificationMessages.class)); } @Test public void testSubmitLongPollNamespaceWith200Response() throws Exception { RemoteConfigRepository someRepository = mock(RemoteConfigRepository.class); final String someNamespace = "someNamespace"; ApolloNotificationMessages notificationMessages = new ApolloNotificationMessages(); String someKey = "someKey"; long someNotificationId = 1; String anotherKey = "anotherKey"; long anotherNotificationId = 2; notificationMessages.put(someKey, someNotificationId); notificationMessages.put(anotherKey, anotherNotificationId); ApolloConfigNotification someNotification = mock(ApolloConfigNotification.class); when(someNotification.getNamespaceName()).thenReturn(someNamespace); when(someNotification.getMessages()).thenReturn(notificationMessages); when(pollResponse.getStatusCode()).thenReturn(HttpServletResponse.SC_OK); when(pollResponse.getBody()).thenReturn(Lists.newArrayList(someNotification)); doAnswer(new Answer<HttpResponse<List<ApolloConfigNotification>>>() { @Override public HttpResponse<List<ApolloConfigNotification>> answer(InvocationOnMock invocation) throws Throwable { try { TimeUnit.MILLISECONDS.sleep(50); } catch (InterruptedException e) { } return pollResponse; } }).when(httpUtil).doGet(any(HttpRequest.class), eq(responseType)); final SettableFuture<Boolean> onNotified = SettableFuture.create(); doAnswer(new Answer<Void>() { @Override public Void answer(InvocationOnMock invocation) throws Throwable { onNotified.set(true); return null; } }).when(someRepository).onLongPollNotified(any(ServiceDTO.class), any(ApolloNotificationMessages.class)); remoteConfigLongPollService.submit(someNamespace, someRepository); onNotified.get(5000, TimeUnit.MILLISECONDS); remoteConfigLongPollService.stopLongPollingRefresh(); final ArgumentCaptor<ApolloNotificationMessages> captor = ArgumentCaptor.forClass(ApolloNotificationMessages.class); verify(someRepository, times(1)).onLongPollNotified(any(ServiceDTO.class), captor.capture()); ApolloNotificationMessages captured = captor.getValue(); assertEquals(2, captured.getDetails().size()); assertEquals(someNotificationId, captured.get(someKey).longValue()); assertEquals(anotherNotificationId, captured.get(anotherKey).longValue()); } @Test public void testSubmitLongPollNamespaceWithAccessKeySecret() throws Exception { someSecret = "someSecret"; RemoteConfigRepository someRepository = mock(RemoteConfigRepository.class); final String someNamespace = "someNamespace"; ApolloNotificationMessages notificationMessages = new ApolloNotificationMessages(); String someKey = "someKey"; long someNotificationId = 1; notificationMessages.put(someKey, someNotificationId); ApolloConfigNotification someNotification = mock(ApolloConfigNotification.class); when(someNotification.getNamespaceName()).thenReturn(someNamespace); when(someNotification.getMessages()).thenReturn(notificationMessages); when(pollResponse.getStatusCode()).thenReturn(HttpServletResponse.SC_OK); when(pollResponse.getBody()).thenReturn(Lists.newArrayList(someNotification)); doAnswer(new Answer<HttpResponse<List<ApolloConfigNotification>>>() { @Override public HttpResponse<List<ApolloConfigNotification>> answer(InvocationOnMock invocation) throws Throwable { try { TimeUnit.MILLISECONDS.sleep(50); } catch (InterruptedException e) { } HttpRequest request = invocation.getArgumentAt(0, HttpRequest.class); Map<String, String> headers = request.getHeaders(); assertNotNull(headers); assertTrue(headers.containsKey(Signature.HTTP_HEADER_TIMESTAMP)); assertTrue(headers.containsKey(HttpHeaders.AUTHORIZATION)); return pollResponse; } }).when(httpUtil).doGet(any(HttpRequest.class), eq(responseType)); final SettableFuture<Boolean> onNotified = SettableFuture.create(); doAnswer(new Answer<Void>() { @Override public Void answer(InvocationOnMock invocation) throws Throwable { onNotified.set(true); return null; } }).when(someRepository).onLongPollNotified(any(ServiceDTO.class), any(ApolloNotificationMessages.class)); remoteConfigLongPollService.submit(someNamespace, someRepository); onNotified.get(5000, TimeUnit.MILLISECONDS); remoteConfigLongPollService.stopLongPollingRefresh(); verify(someRepository, times(1)).onLongPollNotified(any(ServiceDTO.class), any(ApolloNotificationMessages.class)); } @Test public void testSubmitLongPollMultipleNamespaces() throws Exception { RemoteConfigRepository someRepository = mock(RemoteConfigRepository.class); RemoteConfigRepository anotherRepository = mock(RemoteConfigRepository.class); final String someNamespace = "someNamespace"; final String anotherNamespace = "anotherNamespace"; final ApolloConfigNotification someNotification = mock(ApolloConfigNotification.class); when(someNotification.getNamespaceName()).thenReturn(someNamespace); final ApolloConfigNotification anotherNotification = mock(ApolloConfigNotification.class); when(anotherNotification.getNamespaceName()).thenReturn(anotherNamespace); final SettableFuture<Boolean> submitAnotherNamespaceStart = SettableFuture.create(); final SettableFuture<Boolean> submitAnotherNamespaceFinish = SettableFuture.create(); doAnswer(new Answer<HttpResponse<List<ApolloConfigNotification>>>() { final AtomicInteger counter = new AtomicInteger(); @Override public HttpResponse<List<ApolloConfigNotification>> answer(InvocationOnMock invocation) throws Throwable { try { TimeUnit.MILLISECONDS.sleep(50); } catch (InterruptedException e) { } //the first time if (counter.incrementAndGet() == 1) { HttpRequest request = invocation.getArgumentAt(0, HttpRequest.class); assertTrue(request.getUrl().contains("notifications=")); assertTrue(request.getUrl().contains(someNamespace)); submitAnotherNamespaceStart.set(true); when(pollResponse.getStatusCode()).thenReturn(HttpServletResponse.SC_OK); when(pollResponse.getBody()).thenReturn(Lists.newArrayList(someNotification)); } else if (submitAnotherNamespaceFinish.get()) { HttpRequest request = invocation.getArgumentAt(0, HttpRequest.class); assertTrue(request.getUrl().contains("notifications=")); assertTrue(request.getUrl().contains(someNamespace)); assertTrue(request.getUrl().contains(anotherNamespace)); when(pollResponse.getStatusCode()).thenReturn(HttpServletResponse.SC_OK); when(pollResponse.getBody()).thenReturn(Lists.newArrayList(anotherNotification)); } else { when(pollResponse.getStatusCode()).thenReturn(HttpServletResponse.SC_NOT_MODIFIED); when(pollResponse.getBody()).thenReturn(null); } return pollResponse; } }).when(httpUtil).doGet(any(HttpRequest.class), eq(responseType)); final SettableFuture<Boolean> onAnotherRepositoryNotified = SettableFuture.create(); doAnswer(new Answer<Void>() { @Override public Void answer(InvocationOnMock invocation) throws Throwable { onAnotherRepositoryNotified.set(true); return null; } }).when(anotherRepository).onLongPollNotified(any(ServiceDTO.class), any(ApolloNotificationMessages.class)); remoteConfigLongPollService.submit(someNamespace, someRepository); submitAnotherNamespaceStart.get(5000, TimeUnit.MILLISECONDS); remoteConfigLongPollService.submit(anotherNamespace, anotherRepository); submitAnotherNamespaceFinish.set(true); onAnotherRepositoryNotified.get(5000, TimeUnit.MILLISECONDS); remoteConfigLongPollService.stopLongPollingRefresh(); verify(someRepository, times(1)).onLongPollNotified(any(ServiceDTO.class), any(ApolloNotificationMessages.class)); verify(anotherRepository, times(1)).onLongPollNotified(any(ServiceDTO.class), any(ApolloNotificationMessages.class)); } @Test public void testSubmitLongPollMultipleNamespacesWithMultipleNotificationsReturned() throws Exception { RemoteConfigRepository someRepository = mock(RemoteConfigRepository.class); RemoteConfigRepository anotherRepository = mock(RemoteConfigRepository.class); final String someNamespace = "someNamespace"; final String anotherNamespace = "anotherNamespace"; ApolloNotificationMessages notificationMessages = new ApolloNotificationMessages(); String someKey = "someKey"; long someNotificationId = 1; notificationMessages.put(someKey, someNotificationId); ApolloNotificationMessages anotherNotificationMessages = new ApolloNotificationMessages(); String anotherKey = "anotherKey"; long anotherNotificationId = 2; anotherNotificationMessages.put(anotherKey, anotherNotificationId); final ApolloConfigNotification someNotification = mock(ApolloConfigNotification.class); when(someNotification.getNamespaceName()).thenReturn(someNamespace); when(someNotification.getMessages()).thenReturn(notificationMessages); final ApolloConfigNotification anotherNotification = mock(ApolloConfigNotification.class); when(anotherNotification.getNamespaceName()).thenReturn(anotherNamespace); when(anotherNotification.getMessages()).thenReturn(anotherNotificationMessages); when(pollResponse.getStatusCode()).thenReturn(HttpServletResponse.SC_OK); when(pollResponse.getBody()).thenReturn(Lists.newArrayList(someNotification, anotherNotification)); doAnswer(new Answer<HttpResponse<List<ApolloConfigNotification>>>() { @Override public HttpResponse<List<ApolloConfigNotification>> answer(InvocationOnMock invocation) throws Throwable { try { TimeUnit.MILLISECONDS.sleep(50); } catch (InterruptedException e) { } return pollResponse; } }).when(httpUtil).doGet(any(HttpRequest.class), eq(responseType)); final SettableFuture<Boolean> someRepositoryNotified = SettableFuture.create(); doAnswer(new Answer<Void>() { @Override public Void answer(InvocationOnMock invocation) throws Throwable { someRepositoryNotified.set(true); return null; } }).when(someRepository).onLongPollNotified(any(ServiceDTO.class), any(ApolloNotificationMessages.class)); final SettableFuture<Boolean> anotherRepositoryNotified = SettableFuture.create(); doAnswer(new Answer<Void>() { @Override public Void answer(InvocationOnMock invocation) throws Throwable { anotherRepositoryNotified.set(true); return null; } }).when(anotherRepository).onLongPollNotified(any(ServiceDTO.class), any(ApolloNotificationMessages.class)); remoteConfigLongPollService.submit(someNamespace, someRepository); remoteConfigLongPollService.submit(anotherNamespace, anotherRepository); someRepositoryNotified.get(5000, TimeUnit.MILLISECONDS); anotherRepositoryNotified.get(5000, TimeUnit.MILLISECONDS); remoteConfigLongPollService.stopLongPollingRefresh(); final ArgumentCaptor<ApolloNotificationMessages> captor = ArgumentCaptor.forClass(ApolloNotificationMessages.class); final ArgumentCaptor<ApolloNotificationMessages> anotherCaptor = ArgumentCaptor.forClass(ApolloNotificationMessages.class); verify(someRepository, times(1)).onLongPollNotified(any(ServiceDTO.class), captor.capture()); verify(anotherRepository, times(1)).onLongPollNotified(any(ServiceDTO.class), anotherCaptor.capture()); ApolloNotificationMessages result = captor.getValue(); assertEquals(1, result.getDetails().size()); assertEquals(someNotificationId, result.get(someKey).longValue()); ApolloNotificationMessages anotherResult = anotherCaptor.getValue(); assertEquals(1, anotherResult.getDetails().size()); assertEquals(anotherNotificationId, anotherResult.get(anotherKey).longValue()); } @Test public void testSubmitLongPollNamespaceWithMessagesUpdated() throws Exception { RemoteConfigRepository someRepository = mock(RemoteConfigRepository.class); final String someNamespace = "someNamespace"; ApolloNotificationMessages notificationMessages = new ApolloNotificationMessages(); String someKey = "someKey"; long someNotificationId = 1; notificationMessages.put(someKey, someNotificationId); ApolloConfigNotification someNotification = mock(ApolloConfigNotification.class); when(someNotification.getNamespaceName()).thenReturn(someNamespace); when(someNotification.getMessages()).thenReturn(notificationMessages); when(pollResponse.getStatusCode()).thenReturn(HttpServletResponse.SC_OK); when(pollResponse.getBody()).thenReturn(Lists.newArrayList(someNotification)); doAnswer(new Answer<HttpResponse<List<ApolloConfigNotification>>>() { @Override public HttpResponse<List<ApolloConfigNotification>> answer(InvocationOnMock invocation) throws Throwable { try { TimeUnit.MILLISECONDS.sleep(50); } catch (InterruptedException e) { } return pollResponse; } }).when(httpUtil).doGet(any(HttpRequest.class), eq(responseType)); final SettableFuture<Boolean> onNotified = SettableFuture.create(); doAnswer(new Answer<Void>() { @Override public Void answer(InvocationOnMock invocation) throws Throwable { onNotified.set(true); return null; } }).when(someRepository).onLongPollNotified(any(ServiceDTO.class), any(ApolloNotificationMessages.class)); remoteConfigLongPollService.submit(someNamespace, someRepository); onNotified.get(5000, TimeUnit.MILLISECONDS); //reset to 304 when(pollResponse.getStatusCode()).thenReturn(HttpServletResponse.SC_NOT_MODIFIED); final ArgumentCaptor<ApolloNotificationMessages> captor = ArgumentCaptor.forClass(ApolloNotificationMessages.class); verify(someRepository, times(1)).onLongPollNotified(any(ServiceDTO.class), captor.capture()); ApolloNotificationMessages captured = captor.getValue(); assertEquals(1, captured.getDetails().size()); assertEquals(someNotificationId, captured.get(someKey).longValue()); final SettableFuture<Boolean> anotherOnNotified = SettableFuture.create(); doAnswer(new Answer<Void>() { @Override public Void answer(InvocationOnMock invocation) throws Throwable { anotherOnNotified.set(true); return null; } }).when(someRepository).onLongPollNotified(any(ServiceDTO.class), any(ApolloNotificationMessages.class)); String anotherKey = "anotherKey"; long anotherNotificationId = 2; notificationMessages.put(anotherKey, anotherNotificationId); //send notifications when(pollResponse.getStatusCode()).thenReturn(HttpServletResponse.SC_OK); anotherOnNotified.get(5000, TimeUnit.MILLISECONDS); remoteConfigLongPollService.stopLongPollingRefresh(); verify(someRepository, times(2)).onLongPollNotified(any(ServiceDTO.class), captor.capture()); captured = captor.getValue(); assertEquals(2, captured.getDetails().size()); assertEquals(someNotificationId, captured.get(someKey).longValue()); assertEquals(anotherNotificationId, captured.get(anotherKey).longValue()); } @Test public void testAssembleLongPollRefreshUrl() throws Exception { String someUri = someServerUrl; String someAppId = "someAppId"; String someCluster = "someCluster+ &.-_someSign"; String someNamespace = "someName"; long someNotificationId = 1; Map<String, Long> notificationsMap = ImmutableMap.of(someNamespace, someNotificationId); String longPollRefreshUrl = remoteConfigLongPollService .assembleLongPollRefreshUrl(someUri, someAppId, someCluster, null, notificationsMap); assertTrue(longPollRefreshUrl.contains(someServerUrl + "/notifications/v2?")); assertTrue(longPollRefreshUrl.contains("appId=" + someAppId)); assertTrue(longPollRefreshUrl.contains("cluster=someCluster%2B+%26.-_someSign")); assertTrue(longPollRefreshUrl.contains( "notifications=%5B%7B%22namespaceName%22%3A%22" + someNamespace + "%22%2C%22notificationId%22%3A" + 1 + "%7D%5D")); } @Test public void testAssembleLongPollRefreshUrlWithMultipleNamespaces() throws Exception { String someUri = someServerUrl; String someAppId = "someAppId"; String someCluster = "someCluster+ &.-_someSign"; String someNamespace = "someName"; String anotherNamespace = "anotherName"; long someNotificationId = 1; long anotherNotificationId = 2; Map<String, Long> notificationsMap = ImmutableMap.of(someNamespace, someNotificationId, anotherNamespace, anotherNotificationId); String longPollRefreshUrl = remoteConfigLongPollService .assembleLongPollRefreshUrl(someUri, someAppId, someCluster, null, notificationsMap); assertTrue(longPollRefreshUrl.contains(someServerUrl + "/notifications/v2?")); assertTrue(longPollRefreshUrl.contains("appId=" + someAppId)); assertTrue(longPollRefreshUrl.contains("cluster=someCluster%2B+%26.-_someSign")); assertTrue( longPollRefreshUrl.contains("notifications=%5B%7B%22namespaceName%22%3A%22" + someNamespace + "%22%2C%22notificationId%22%3A" + someNotificationId + "%7D%2C%7B%22namespaceName%22%3A%22" + anotherNamespace + "%22%2C%22notificationId%22%3A" + anotherNotificationId + "%7D%5D")); } public static class MockConfigUtil extends ConfigUtil { @Override public String getAppId() { return someAppId; } @Override public String getCluster() { return someCluster; } @Override public String getAccessKeySecret() { return someSecret; } @Override public String getDataCenter() { return null; } @Override public int getLoadConfigQPS() { return 200; } @Override public int getLongPollQPS() { return 200; } @Override public long getLongPollingInitialDelayInMills() { return 0; } } }
package com.ctrip.framework.apollo.internals; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertTrue; import static org.mockito.Matchers.any; import static org.mockito.Matchers.eq; import static org.mockito.Mockito.doAnswer; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.never; import static org.mockito.Mockito.times; import static org.mockito.Mockito.verify; import static org.mockito.Mockito.when; import com.ctrip.framework.apollo.build.MockInjector; import com.ctrip.framework.apollo.core.dto.ApolloConfigNotification; import com.ctrip.framework.apollo.core.dto.ApolloNotificationMessages; import com.ctrip.framework.apollo.core.dto.ServiceDTO; import com.ctrip.framework.apollo.core.signature.Signature; import com.ctrip.framework.apollo.util.ConfigUtil; import com.ctrip.framework.apollo.util.http.HttpRequest; import com.ctrip.framework.apollo.util.http.HttpResponse; import com.ctrip.framework.apollo.util.http.HttpUtil; import com.google.common.collect.ImmutableMap; import com.google.common.collect.Lists; import com.google.common.net.HttpHeaders; import com.google.common.util.concurrent.SettableFuture; import java.lang.reflect.Type; import java.util.List; import java.util.Map; import java.util.concurrent.TimeUnit; import java.util.concurrent.atomic.AtomicInteger; import javax.servlet.http.HttpServletResponse; import org.junit.After; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.ArgumentCaptor; import org.mockito.Mock; import org.mockito.invocation.InvocationOnMock; import org.mockito.runners.MockitoJUnitRunner; import org.mockito.stubbing.Answer; import org.springframework.test.util.ReflectionTestUtils; /** * @author Jason Song([email protected]) */ @RunWith(MockitoJUnitRunner.class) public class RemoteConfigLongPollServiceTest { private RemoteConfigLongPollService remoteConfigLongPollService; @Mock private HttpResponse<List<ApolloConfigNotification>> pollResponse; @Mock private HttpUtil httpUtil; @Mock private ConfigServiceLocator configServiceLocator; private Type responseType; private static String someServerUrl; private static String someAppId; private static String someCluster; private static String someSecret; @Before public void setUp() throws Exception { MockInjector.setInstance(HttpUtil.class, httpUtil); someServerUrl = "http://someServer"; ServiceDTO serviceDTO = mock(ServiceDTO.class); when(serviceDTO.getHomepageUrl()).thenReturn(someServerUrl); when(configServiceLocator.getConfigServices()).thenReturn(Lists.newArrayList(serviceDTO)); MockInjector.setInstance(ConfigServiceLocator.class, configServiceLocator); MockInjector.setInstance(ConfigUtil.class, new MockConfigUtil()); remoteConfigLongPollService = new RemoteConfigLongPollService(); responseType = (Type) ReflectionTestUtils.getField(remoteConfigLongPollService, "m_responseType"); someAppId = "someAppId"; someCluster = "someCluster"; } @After public void tearDown() throws Exception { MockInjector.reset(); } @Test public void testSubmitLongPollNamespaceWith304Response() throws Exception { RemoteConfigRepository someRepository = mock(RemoteConfigRepository.class); final String someNamespace = "someNamespace"; when(pollResponse.getStatusCode()).thenReturn(HttpServletResponse.SC_NOT_MODIFIED); final SettableFuture<Boolean> longPollFinished = SettableFuture.create(); doAnswer(new Answer<HttpResponse<List<ApolloConfigNotification>>>() { @Override public HttpResponse<List<ApolloConfigNotification>> answer(InvocationOnMock invocation) throws Throwable { try { TimeUnit.MILLISECONDS.sleep(50); } catch (InterruptedException e) { } HttpRequest request = invocation.getArgumentAt(0, HttpRequest.class); assertTrue(request.getUrl().contains(someServerUrl + "/notifications/v2?")); assertTrue(request.getUrl().contains("appId=" + someAppId)); assertTrue(request.getUrl().contains("cluster=" + someCluster)); assertTrue(request.getUrl().contains("notifications=")); assertTrue(request.getUrl().contains(someNamespace)); longPollFinished.set(true); return pollResponse; } }).when(httpUtil).doGet(any(HttpRequest.class), eq(responseType)); remoteConfigLongPollService.submit(someNamespace, someRepository); longPollFinished.get(5000, TimeUnit.MILLISECONDS); remoteConfigLongPollService.stopLongPollingRefresh(); verify(someRepository, never()).onLongPollNotified(any(ServiceDTO.class), any(ApolloNotificationMessages.class)); } @Test public void testSubmitLongPollNamespaceWith200Response() throws Exception { RemoteConfigRepository someRepository = mock(RemoteConfigRepository.class); final String someNamespace = "someNamespace"; ApolloNotificationMessages notificationMessages = new ApolloNotificationMessages(); String someKey = "someKey"; long someNotificationId = 1; String anotherKey = "anotherKey"; long anotherNotificationId = 2; notificationMessages.put(someKey, someNotificationId); notificationMessages.put(anotherKey, anotherNotificationId); ApolloConfigNotification someNotification = mock(ApolloConfigNotification.class); when(someNotification.getNamespaceName()).thenReturn(someNamespace); when(someNotification.getMessages()).thenReturn(notificationMessages); when(pollResponse.getStatusCode()).thenReturn(HttpServletResponse.SC_OK); when(pollResponse.getBody()).thenReturn(Lists.newArrayList(someNotification)); doAnswer(new Answer<HttpResponse<List<ApolloConfigNotification>>>() { @Override public HttpResponse<List<ApolloConfigNotification>> answer(InvocationOnMock invocation) throws Throwable { try { TimeUnit.MILLISECONDS.sleep(50); } catch (InterruptedException e) { } return pollResponse; } }).when(httpUtil).doGet(any(HttpRequest.class), eq(responseType)); final SettableFuture<Boolean> onNotified = SettableFuture.create(); doAnswer(new Answer<Void>() { @Override public Void answer(InvocationOnMock invocation) throws Throwable { onNotified.set(true); return null; } }).when(someRepository).onLongPollNotified(any(ServiceDTO.class), any(ApolloNotificationMessages.class)); remoteConfigLongPollService.submit(someNamespace, someRepository); onNotified.get(5000, TimeUnit.MILLISECONDS); remoteConfigLongPollService.stopLongPollingRefresh(); final ArgumentCaptor<ApolloNotificationMessages> captor = ArgumentCaptor.forClass(ApolloNotificationMessages.class); verify(someRepository, times(1)).onLongPollNotified(any(ServiceDTO.class), captor.capture()); ApolloNotificationMessages captured = captor.getValue(); assertEquals(2, captured.getDetails().size()); assertEquals(someNotificationId, captured.get(someKey).longValue()); assertEquals(anotherNotificationId, captured.get(anotherKey).longValue()); } @Test public void testSubmitLongPollNamespaceWithAccessKeySecret() throws Exception { someSecret = "someSecret"; RemoteConfigRepository someRepository = mock(RemoteConfigRepository.class); final String someNamespace = "someNamespace"; ApolloNotificationMessages notificationMessages = new ApolloNotificationMessages(); String someKey = "someKey"; long someNotificationId = 1; notificationMessages.put(someKey, someNotificationId); ApolloConfigNotification someNotification = mock(ApolloConfigNotification.class); when(someNotification.getNamespaceName()).thenReturn(someNamespace); when(someNotification.getMessages()).thenReturn(notificationMessages); when(pollResponse.getStatusCode()).thenReturn(HttpServletResponse.SC_OK); when(pollResponse.getBody()).thenReturn(Lists.newArrayList(someNotification)); doAnswer(new Answer<HttpResponse<List<ApolloConfigNotification>>>() { @Override public HttpResponse<List<ApolloConfigNotification>> answer(InvocationOnMock invocation) throws Throwable { try { TimeUnit.MILLISECONDS.sleep(50); } catch (InterruptedException e) { } HttpRequest request = invocation.getArgumentAt(0, HttpRequest.class); Map<String, String> headers = request.getHeaders(); assertNotNull(headers); assertTrue(headers.containsKey(Signature.HTTP_HEADER_TIMESTAMP)); assertTrue(headers.containsKey(HttpHeaders.AUTHORIZATION)); return pollResponse; } }).when(httpUtil).doGet(any(HttpRequest.class), eq(responseType)); final SettableFuture<Boolean> onNotified = SettableFuture.create(); doAnswer(new Answer<Void>() { @Override public Void answer(InvocationOnMock invocation) throws Throwable { onNotified.set(true); return null; } }).when(someRepository).onLongPollNotified(any(ServiceDTO.class), any(ApolloNotificationMessages.class)); remoteConfigLongPollService.submit(someNamespace, someRepository); onNotified.get(5000, TimeUnit.MILLISECONDS); remoteConfigLongPollService.stopLongPollingRefresh(); verify(someRepository, times(1)).onLongPollNotified(any(ServiceDTO.class), any(ApolloNotificationMessages.class)); } @Test public void testSubmitLongPollMultipleNamespaces() throws Exception { RemoteConfigRepository someRepository = mock(RemoteConfigRepository.class); RemoteConfigRepository anotherRepository = mock(RemoteConfigRepository.class); final String someNamespace = "someNamespace"; final String anotherNamespace = "anotherNamespace"; final ApolloConfigNotification someNotification = mock(ApolloConfigNotification.class); when(someNotification.getNamespaceName()).thenReturn(someNamespace); final ApolloConfigNotification anotherNotification = mock(ApolloConfigNotification.class); when(anotherNotification.getNamespaceName()).thenReturn(anotherNamespace); final SettableFuture<Boolean> submitAnotherNamespaceStart = SettableFuture.create(); final SettableFuture<Boolean> submitAnotherNamespaceFinish = SettableFuture.create(); doAnswer(new Answer<HttpResponse<List<ApolloConfigNotification>>>() { final AtomicInteger counter = new AtomicInteger(); @Override public HttpResponse<List<ApolloConfigNotification>> answer(InvocationOnMock invocation) throws Throwable { try { TimeUnit.MILLISECONDS.sleep(50); } catch (InterruptedException e) { } //the first time if (counter.incrementAndGet() == 1) { HttpRequest request = invocation.getArgumentAt(0, HttpRequest.class); assertTrue(request.getUrl().contains("notifications=")); assertTrue(request.getUrl().contains(someNamespace)); submitAnotherNamespaceStart.set(true); when(pollResponse.getStatusCode()).thenReturn(HttpServletResponse.SC_OK); when(pollResponse.getBody()).thenReturn(Lists.newArrayList(someNotification)); } else if (submitAnotherNamespaceFinish.get()) { HttpRequest request = invocation.getArgumentAt(0, HttpRequest.class); assertTrue(request.getUrl().contains("notifications=")); assertTrue(request.getUrl().contains(someNamespace)); assertTrue(request.getUrl().contains(anotherNamespace)); when(pollResponse.getStatusCode()).thenReturn(HttpServletResponse.SC_OK); when(pollResponse.getBody()).thenReturn(Lists.newArrayList(anotherNotification)); } else { when(pollResponse.getStatusCode()).thenReturn(HttpServletResponse.SC_NOT_MODIFIED); when(pollResponse.getBody()).thenReturn(null); } return pollResponse; } }).when(httpUtil).doGet(any(HttpRequest.class), eq(responseType)); final SettableFuture<Boolean> onAnotherRepositoryNotified = SettableFuture.create(); doAnswer(new Answer<Void>() { @Override public Void answer(InvocationOnMock invocation) throws Throwable { onAnotherRepositoryNotified.set(true); return null; } }).when(anotherRepository).onLongPollNotified(any(ServiceDTO.class), any(ApolloNotificationMessages.class)); remoteConfigLongPollService.submit(someNamespace, someRepository); submitAnotherNamespaceStart.get(5000, TimeUnit.MILLISECONDS); remoteConfigLongPollService.submit(anotherNamespace, anotherRepository); submitAnotherNamespaceFinish.set(true); onAnotherRepositoryNotified.get(5000, TimeUnit.MILLISECONDS); remoteConfigLongPollService.stopLongPollingRefresh(); verify(someRepository, times(1)).onLongPollNotified(any(ServiceDTO.class), any(ApolloNotificationMessages.class)); verify(anotherRepository, times(1)).onLongPollNotified(any(ServiceDTO.class), any(ApolloNotificationMessages.class)); } @Test public void testSubmitLongPollMultipleNamespacesWithMultipleNotificationsReturned() throws Exception { RemoteConfigRepository someRepository = mock(RemoteConfigRepository.class); RemoteConfigRepository anotherRepository = mock(RemoteConfigRepository.class); final String someNamespace = "someNamespace"; final String anotherNamespace = "anotherNamespace"; ApolloNotificationMessages notificationMessages = new ApolloNotificationMessages(); String someKey = "someKey"; long someNotificationId = 1; notificationMessages.put(someKey, someNotificationId); ApolloNotificationMessages anotherNotificationMessages = new ApolloNotificationMessages(); String anotherKey = "anotherKey"; long anotherNotificationId = 2; anotherNotificationMessages.put(anotherKey, anotherNotificationId); final ApolloConfigNotification someNotification = mock(ApolloConfigNotification.class); when(someNotification.getNamespaceName()).thenReturn(someNamespace); when(someNotification.getMessages()).thenReturn(notificationMessages); final ApolloConfigNotification anotherNotification = mock(ApolloConfigNotification.class); when(anotherNotification.getNamespaceName()).thenReturn(anotherNamespace); when(anotherNotification.getMessages()).thenReturn(anotherNotificationMessages); when(pollResponse.getStatusCode()).thenReturn(HttpServletResponse.SC_OK); when(pollResponse.getBody()).thenReturn(Lists.newArrayList(someNotification, anotherNotification)); doAnswer(new Answer<HttpResponse<List<ApolloConfigNotification>>>() { @Override public HttpResponse<List<ApolloConfigNotification>> answer(InvocationOnMock invocation) throws Throwable { try { TimeUnit.MILLISECONDS.sleep(50); } catch (InterruptedException e) { } return pollResponse; } }).when(httpUtil).doGet(any(HttpRequest.class), eq(responseType)); final SettableFuture<Boolean> someRepositoryNotified = SettableFuture.create(); doAnswer(new Answer<Void>() { @Override public Void answer(InvocationOnMock invocation) throws Throwable { someRepositoryNotified.set(true); return null; } }).when(someRepository).onLongPollNotified(any(ServiceDTO.class), any(ApolloNotificationMessages.class)); final SettableFuture<Boolean> anotherRepositoryNotified = SettableFuture.create(); doAnswer(new Answer<Void>() { @Override public Void answer(InvocationOnMock invocation) throws Throwable { anotherRepositoryNotified.set(true); return null; } }).when(anotherRepository).onLongPollNotified(any(ServiceDTO.class), any(ApolloNotificationMessages.class)); remoteConfigLongPollService.submit(someNamespace, someRepository); remoteConfigLongPollService.submit(anotherNamespace, anotherRepository); someRepositoryNotified.get(5000, TimeUnit.MILLISECONDS); anotherRepositoryNotified.get(5000, TimeUnit.MILLISECONDS); remoteConfigLongPollService.stopLongPollingRefresh(); final ArgumentCaptor<ApolloNotificationMessages> captor = ArgumentCaptor.forClass(ApolloNotificationMessages.class); final ArgumentCaptor<ApolloNotificationMessages> anotherCaptor = ArgumentCaptor.forClass(ApolloNotificationMessages.class); verify(someRepository, times(1)).onLongPollNotified(any(ServiceDTO.class), captor.capture()); verify(anotherRepository, times(1)).onLongPollNotified(any(ServiceDTO.class), anotherCaptor.capture()); ApolloNotificationMessages result = captor.getValue(); assertEquals(1, result.getDetails().size()); assertEquals(someNotificationId, result.get(someKey).longValue()); ApolloNotificationMessages anotherResult = anotherCaptor.getValue(); assertEquals(1, anotherResult.getDetails().size()); assertEquals(anotherNotificationId, anotherResult.get(anotherKey).longValue()); } @Test public void testSubmitLongPollNamespaceWithMessagesUpdated() throws Exception { RemoteConfigRepository someRepository = mock(RemoteConfigRepository.class); final String someNamespace = "someNamespace"; ApolloNotificationMessages notificationMessages = new ApolloNotificationMessages(); String someKey = "someKey"; long someNotificationId = 1; notificationMessages.put(someKey, someNotificationId); ApolloConfigNotification someNotification = mock(ApolloConfigNotification.class); when(someNotification.getNamespaceName()).thenReturn(someNamespace); when(someNotification.getMessages()).thenReturn(notificationMessages); when(pollResponse.getStatusCode()).thenReturn(HttpServletResponse.SC_OK); when(pollResponse.getBody()).thenReturn(Lists.newArrayList(someNotification)); doAnswer(new Answer<HttpResponse<List<ApolloConfigNotification>>>() { @Override public HttpResponse<List<ApolloConfigNotification>> answer(InvocationOnMock invocation) throws Throwable { try { TimeUnit.MILLISECONDS.sleep(50); } catch (InterruptedException e) { } return pollResponse; } }).when(httpUtil).doGet(any(HttpRequest.class), eq(responseType)); final SettableFuture<Boolean> onNotified = SettableFuture.create(); doAnswer(new Answer<Void>() { @Override public Void answer(InvocationOnMock invocation) throws Throwable { onNotified.set(true); return null; } }).when(someRepository).onLongPollNotified(any(ServiceDTO.class), any(ApolloNotificationMessages.class)); remoteConfigLongPollService.submit(someNamespace, someRepository); onNotified.get(5000, TimeUnit.MILLISECONDS); //reset to 304 when(pollResponse.getStatusCode()).thenReturn(HttpServletResponse.SC_NOT_MODIFIED); final ArgumentCaptor<ApolloNotificationMessages> captor = ArgumentCaptor.forClass(ApolloNotificationMessages.class); verify(someRepository, times(1)).onLongPollNotified(any(ServiceDTO.class), captor.capture()); ApolloNotificationMessages captured = captor.getValue(); assertEquals(1, captured.getDetails().size()); assertEquals(someNotificationId, captured.get(someKey).longValue()); final SettableFuture<Boolean> anotherOnNotified = SettableFuture.create(); doAnswer(new Answer<Void>() { @Override public Void answer(InvocationOnMock invocation) throws Throwable { anotherOnNotified.set(true); return null; } }).when(someRepository).onLongPollNotified(any(ServiceDTO.class), any(ApolloNotificationMessages.class)); String anotherKey = "anotherKey"; long anotherNotificationId = 2; notificationMessages.put(anotherKey, anotherNotificationId); //send notifications when(pollResponse.getStatusCode()).thenReturn(HttpServletResponse.SC_OK); anotherOnNotified.get(5000, TimeUnit.MILLISECONDS); remoteConfigLongPollService.stopLongPollingRefresh(); verify(someRepository, times(2)).onLongPollNotified(any(ServiceDTO.class), captor.capture()); captured = captor.getValue(); assertEquals(2, captured.getDetails().size()); assertEquals(someNotificationId, captured.get(someKey).longValue()); assertEquals(anotherNotificationId, captured.get(anotherKey).longValue()); } @Test public void testAssembleLongPollRefreshUrl() throws Exception { String someUri = someServerUrl; String someAppId = "someAppId"; String someCluster = "someCluster+ &.-_someSign"; String someNamespace = "someName"; long someNotificationId = 1; Map<String, Long> notificationsMap = ImmutableMap.of(someNamespace, someNotificationId); String longPollRefreshUrl = remoteConfigLongPollService .assembleLongPollRefreshUrl(someUri, someAppId, someCluster, null, notificationsMap); assertTrue(longPollRefreshUrl.contains(someServerUrl + "/notifications/v2?")); assertTrue(longPollRefreshUrl.contains("appId=" + someAppId)); assertTrue(longPollRefreshUrl.contains("cluster=someCluster%2B+%26.-_someSign")); assertTrue(longPollRefreshUrl.contains( "notifications=%5B%7B%22namespaceName%22%3A%22" + someNamespace + "%22%2C%22notificationId%22%3A" + 1 + "%7D%5D")); } @Test public void testAssembleLongPollRefreshUrlWithMultipleNamespaces() throws Exception { String someUri = someServerUrl; String someAppId = "someAppId"; String someCluster = "someCluster+ &.-_someSign"; String someNamespace = "someName"; String anotherNamespace = "anotherName"; long someNotificationId = 1; long anotherNotificationId = 2; Map<String, Long> notificationsMap = ImmutableMap.of(someNamespace, someNotificationId, anotherNamespace, anotherNotificationId); String longPollRefreshUrl = remoteConfigLongPollService .assembleLongPollRefreshUrl(someUri, someAppId, someCluster, null, notificationsMap); assertTrue(longPollRefreshUrl.contains(someServerUrl + "/notifications/v2?")); assertTrue(longPollRefreshUrl.contains("appId=" + someAppId)); assertTrue(longPollRefreshUrl.contains("cluster=someCluster%2B+%26.-_someSign")); assertTrue( longPollRefreshUrl.contains("notifications=%5B%7B%22namespaceName%22%3A%22" + someNamespace + "%22%2C%22notificationId%22%3A" + someNotificationId + "%7D%2C%7B%22namespaceName%22%3A%22" + anotherNamespace + "%22%2C%22notificationId%22%3A" + anotherNotificationId + "%7D%5D")); } public static class MockConfigUtil extends ConfigUtil { @Override public String getAppId() { return someAppId; } @Override public String getCluster() { return someCluster; } @Override public String getAccessKeySecret() { return someSecret; } @Override public String getDataCenter() { return null; } @Override public int getLoadConfigQPS() { return 200; } @Override public int getLongPollQPS() { return 200; } @Override public long getLongPollingInitialDelayInMills() { return 0; } } }
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-portal/src/main/java/com/ctrip/framework/apollo/openapi/entity/Consumer.java
package com.ctrip.framework.apollo.openapi.entity; import com.ctrip.framework.apollo.common.entity.BaseEntity; import org.hibernate.annotations.SQLDelete; import org.hibernate.annotations.Where; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.Table; @Entity @Table(name = "Consumer") @SQLDelete(sql = "Update Consumer set isDeleted = 1 where id = ?") @Where(clause = "isDeleted = 0") public class Consumer extends BaseEntity { @Column(name = "Name", nullable = false) private String name; @Column(name = "AppId", nullable = false) private String appId; @Column(name = "OrgId", nullable = false) private String orgId; @Column(name = "OrgName", nullable = false) private String orgName; @Column(name = "OwnerName", nullable = false) private String ownerName; @Column(name = "OwnerEmail", nullable = false) private String ownerEmail; public String getAppId() { return appId; } public String getName() { return name; } public String getOrgId() { return orgId; } public String getOrgName() { return orgName; } public String getOwnerEmail() { return ownerEmail; } public String getOwnerName() { return ownerName; } public void setAppId(String appId) { this.appId = appId; } public void setName(String name) { this.name = name; } public void setOrgId(String orgId) { this.orgId = orgId; } public void setOrgName(String orgName) { this.orgName = orgName; } public void setOwnerEmail(String ownerEmail) { this.ownerEmail = ownerEmail; } public void setOwnerName(String ownerName) { this.ownerName = ownerName; } @Override public String toString() { return toStringHelper().add("name", name).add("appId", appId) .add("orgId", orgId) .add("orgName", orgName) .add("ownerName", ownerName) .add("ownerEmail", ownerEmail).toString(); } }
package com.ctrip.framework.apollo.openapi.entity; import com.ctrip.framework.apollo.common.entity.BaseEntity; import org.hibernate.annotations.SQLDelete; import org.hibernate.annotations.Where; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.Table; @Entity @Table(name = "Consumer") @SQLDelete(sql = "Update Consumer set isDeleted = 1 where id = ?") @Where(clause = "isDeleted = 0") public class Consumer extends BaseEntity { @Column(name = "Name", nullable = false) private String name; @Column(name = "AppId", nullable = false) private String appId; @Column(name = "OrgId", nullable = false) private String orgId; @Column(name = "OrgName", nullable = false) private String orgName; @Column(name = "OwnerName", nullable = false) private String ownerName; @Column(name = "OwnerEmail", nullable = false) private String ownerEmail; public String getAppId() { return appId; } public String getName() { return name; } public String getOrgId() { return orgId; } public String getOrgName() { return orgName; } public String getOwnerEmail() { return ownerEmail; } public String getOwnerName() { return ownerName; } public void setAppId(String appId) { this.appId = appId; } public void setName(String name) { this.name = name; } public void setOrgId(String orgId) { this.orgId = orgId; } public void setOrgName(String orgName) { this.orgName = orgName; } public void setOwnerEmail(String ownerEmail) { this.ownerEmail = ownerEmail; } public void setOwnerName(String ownerName) { this.ownerName = ownerName; } @Override public String toString() { return toStringHelper().add("name", name).add("appId", appId) .add("orgId", orgId) .add("orgName", orgName) .add("ownerName", ownerName) .add("ownerEmail", ownerEmail).toString(); } }
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-adminservice/src/main/java/com/ctrip/framework/apollo/adminservice/controller/ItemSetController.java
package com.ctrip.framework.apollo.adminservice.controller; import com.ctrip.framework.apollo.adminservice.aop.PreAcquireNamespaceLock; import com.ctrip.framework.apollo.biz.service.ItemSetService; import com.ctrip.framework.apollo.common.dto.ItemChangeSets; import org.springframework.http.HttpStatus; import org.springframework.http.ResponseEntity; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RestController; @RestController public class ItemSetController { private final ItemSetService itemSetService; public ItemSetController(final ItemSetService itemSetService) { this.itemSetService = itemSetService; } @PreAcquireNamespaceLock @PostMapping("/apps/{appId}/clusters/{clusterName}/namespaces/{namespaceName}/itemset") public ResponseEntity<Void> create(@PathVariable String appId, @PathVariable String clusterName, @PathVariable String namespaceName, @RequestBody ItemChangeSets changeSet) { itemSetService.updateSet(appId, clusterName, namespaceName, changeSet); return ResponseEntity.status(HttpStatus.OK).build(); } }
package com.ctrip.framework.apollo.adminservice.controller; import com.ctrip.framework.apollo.adminservice.aop.PreAcquireNamespaceLock; import com.ctrip.framework.apollo.biz.service.ItemSetService; import com.ctrip.framework.apollo.common.dto.ItemChangeSets; import org.springframework.http.HttpStatus; import org.springframework.http.ResponseEntity; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RestController; @RestController public class ItemSetController { private final ItemSetService itemSetService; public ItemSetController(final ItemSetService itemSetService) { this.itemSetService = itemSetService; } @PreAcquireNamespaceLock @PostMapping("/apps/{appId}/clusters/{clusterName}/namespaces/{namespaceName}/itemset") public ResponseEntity<Void> create(@PathVariable String appId, @PathVariable String clusterName, @PathVariable String namespaceName, @RequestBody ItemChangeSets changeSet) { itemSetService.updateSet(appId, clusterName, namespaceName, changeSet); return ResponseEntity.status(HttpStatus.OK).build(); } }
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./scripts/helm/apollo-portal/templates/deployment-portal.yaml
--- # configmap for apollo-portal kind: ConfigMap apiVersion: v1 metadata: {{- $portalFullName := include "apollo.portal.fullName" . }} name: {{ $portalFullName }} data: application-github.properties: | spring.datasource.url = jdbc:mysql://{{include "apollo.portaldb.serviceName" .}}:{{include "apollo.portaldb.servicePort" .}}/{{ .Values.portaldb.dbName }}{{ if .Values.portaldb.connectionStringProperties }}?{{ .Values.portaldb.connectionStringProperties }}{{ end }} spring.datasource.username = {{ required "portaldb.userName is required!" .Values.portaldb.userName }} spring.datasource.password = {{ required "portaldb.password is required!" .Values.portaldb.password }} {{- if .Values.config.envs }} apollo.portal.envs = {{ .Values.config.envs }} {{- end }} {{- if .Values.config.contextPath }} server.servlet.context-path = {{ .Values.config.contextPath }} {{- end }} apollo-env.properties: | {{- range $env, $address := .Values.config.metaServers }} {{ $env }}.meta = {{ $address }} {{- end }} {{- range $fileName, $content := .Values.config.files }} {{ $fileName | indent 2 }}: | {{ $content | indent 4 }} {{- end }} --- kind: Deployment apiVersion: apps/v1 metadata: name: {{ $portalFullName }} labels: {{- include "apollo.portal.labels" . | nindent 4 }} spec: replicas: {{ .Values.replicaCount }} selector: matchLabels: app: {{ $portalFullName }} {{- with .Values.strategy }} strategy: {{- toYaml . | nindent 4 }} {{- end }} template: metadata: labels: app: {{ $portalFullName }} spec: {{- with .Values.imagePullSecrets }} imagePullSecrets: {{- toYaml . | nindent 8 }} {{- end }} volumes: - name: configmap-{{ $portalFullName }} configMap: name: {{ $portalFullName }} items: - key: application-github.properties path: application-github.properties - key: apollo-env.properties path: apollo-env.properties {{- range $fileName, $content := .Values.config.files }} - key: {{ $fileName }} path: {{ $fileName }} {{- end }} defaultMode: 420 containers: - name: {{ .Values.name }} image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" imagePullPolicy: {{ .Values.image.pullPolicy }} ports: - name: http containerPort: {{ .Values.containerPort }} protocol: TCP env: - name: SPRING_PROFILES_ACTIVE value: {{ .Values.config.profiles | quote }} {{- range $key, $value := .Values.env }} - name: {{ $key }} value: {{ $value }} {{- end }} volumeMounts: - name: configmap-{{ $portalFullName }} mountPath: /apollo-portal/config/application-github.properties subPath: application-github.properties - name: configmap-{{ $portalFullName }} mountPath: /apollo-portal/config/apollo-env.properties subPath: apollo-env.properties {{- range $fileName, $content := .Values.config.files }} - name: configmap-{{ $portalFullName }} mountPath: /apollo-portal/config/{{ $fileName }} subPath: {{ $fileName }} {{- end }} livenessProbe: tcpSocket: port: {{ .Values.containerPort }} initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} periodSeconds: {{ .Values.liveness.periodSeconds }} readinessProbe: httpGet: path: {{ .Values.config.contextPath }}/health port: {{ .Values.containerPort }} initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }} periodSeconds: {{ .Values.readiness.periodSeconds }} resources: {{- toYaml .Values.resources | nindent 12 }} {{- with .Values.nodeSelector }} nodeSelector: {{- toYaml . | nindent 8 }} {{- end }} {{- with .Values.affinity }} affinity: {{- toYaml . | nindent 8 }} {{- end }} {{- with .Values.tolerations }} tolerations: {{- toYaml . | nindent 8 }} {{- end }}
--- # configmap for apollo-portal kind: ConfigMap apiVersion: v1 metadata: {{- $portalFullName := include "apollo.portal.fullName" . }} name: {{ $portalFullName }} data: application-github.properties: | spring.datasource.url = jdbc:mysql://{{include "apollo.portaldb.serviceName" .}}:{{include "apollo.portaldb.servicePort" .}}/{{ .Values.portaldb.dbName }}{{ if .Values.portaldb.connectionStringProperties }}?{{ .Values.portaldb.connectionStringProperties }}{{ end }} spring.datasource.username = {{ required "portaldb.userName is required!" .Values.portaldb.userName }} spring.datasource.password = {{ required "portaldb.password is required!" .Values.portaldb.password }} {{- if .Values.config.envs }} apollo.portal.envs = {{ .Values.config.envs }} {{- end }} {{- if .Values.config.contextPath }} server.servlet.context-path = {{ .Values.config.contextPath }} {{- end }} apollo-env.properties: | {{- range $env, $address := .Values.config.metaServers }} {{ $env }}.meta = {{ $address }} {{- end }} {{- range $fileName, $content := .Values.config.files }} {{ $fileName | indent 2 }}: | {{ $content | indent 4 }} {{- end }} --- kind: Deployment apiVersion: apps/v1 metadata: name: {{ $portalFullName }} labels: {{- include "apollo.portal.labels" . | nindent 4 }} spec: replicas: {{ .Values.replicaCount }} selector: matchLabels: app: {{ $portalFullName }} {{- with .Values.strategy }} strategy: {{- toYaml . | nindent 4 }} {{- end }} template: metadata: labels: app: {{ $portalFullName }} spec: {{- with .Values.imagePullSecrets }} imagePullSecrets: {{- toYaml . | nindent 8 }} {{- end }} volumes: - name: configmap-{{ $portalFullName }} configMap: name: {{ $portalFullName }} items: - key: application-github.properties path: application-github.properties - key: apollo-env.properties path: apollo-env.properties {{- range $fileName, $content := .Values.config.files }} - key: {{ $fileName }} path: {{ $fileName }} {{- end }} defaultMode: 420 containers: - name: {{ .Values.name }} image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" imagePullPolicy: {{ .Values.image.pullPolicy }} ports: - name: http containerPort: {{ .Values.containerPort }} protocol: TCP env: - name: SPRING_PROFILES_ACTIVE value: {{ .Values.config.profiles | quote }} {{- range $key, $value := .Values.env }} - name: {{ $key }} value: {{ $value }} {{- end }} volumeMounts: - name: configmap-{{ $portalFullName }} mountPath: /apollo-portal/config/application-github.properties subPath: application-github.properties - name: configmap-{{ $portalFullName }} mountPath: /apollo-portal/config/apollo-env.properties subPath: apollo-env.properties {{- range $fileName, $content := .Values.config.files }} - name: configmap-{{ $portalFullName }} mountPath: /apollo-portal/config/{{ $fileName }} subPath: {{ $fileName }} {{- end }} livenessProbe: tcpSocket: port: {{ .Values.containerPort }} initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} periodSeconds: {{ .Values.liveness.periodSeconds }} readinessProbe: httpGet: path: {{ .Values.config.contextPath }}/health port: {{ .Values.containerPort }} initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }} periodSeconds: {{ .Values.readiness.periodSeconds }} resources: {{- toYaml .Values.resources | nindent 12 }} {{- with .Values.nodeSelector }} nodeSelector: {{- toYaml . | nindent 8 }} {{- end }} {{- with .Values.affinity }} affinity: {{- toYaml . | nindent 8 }} {{- end }} {{- with .Values.tolerations }} tolerations: {{- toYaml . | nindent 8 }} {{- end }}
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./.github/PULL_REQUEST_TEMPLATE.md
## What's the purpose of this PR XXXXX ## Which issue(s) this PR fixes: Fixes # ## Brief changelog XXXXX Follow this checklist to help us incorporate your contribution quickly and easily: - [ ] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [ ] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [ ] Write necessary unit tests to verify the code. - [ ] Run `mvn clean test` to make sure this pull request doesn't break anything.
## What's the purpose of this PR XXXXX ## Which issue(s) this PR fixes: Fixes # ## Brief changelog XXXXX Follow this checklist to help us incorporate your contribution quickly and easily: - [ ] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [ ] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [ ] Write necessary unit tests to verify the code. - [ ] Run `mvn clean test` to make sure this pull request doesn't break anything.
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-core/src/main/java/com/ctrip/framework/foundation/internals/Utils.java
package com.ctrip.framework.foundation.internals; import com.google.common.base.Strings; public class Utils { public static boolean isBlank(String str) { return Strings.nullToEmpty(str).trim().isEmpty(); } public static boolean isOSWindows() { String osName = System.getProperty("os.name"); if (Utils.isBlank(osName)) { return false; } return osName.startsWith("Windows"); } }
package com.ctrip.framework.foundation.internals; import com.google.common.base.Strings; public class Utils { public static boolean isBlank(String str) { return Strings.nullToEmpty(str).trim().isEmpty(); } public static boolean isOSWindows() { String osName = System.getProperty("os.name"); if (Utils.isBlank(osName)) { return false; } return osName.startsWith("Windows"); } }
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-common/src/main/java/com/ctrip/framework/apollo/common/exception/BadRequestException.java
package com.ctrip.framework.apollo.common.exception; import org.springframework.http.HttpStatus; public class BadRequestException extends AbstractApolloHttpException { public BadRequestException(String str) { super(str); setHttpStatus(HttpStatus.BAD_REQUEST); } }
package com.ctrip.framework.apollo.common.exception; import org.springframework.http.HttpStatus; public class BadRequestException extends AbstractApolloHttpException { public BadRequestException(String str) { super(str); setHttpStatus(HttpStatus.BAD_REQUEST); } }
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/customize/BizLoggingCustomizer.java
package com.ctrip.framework.apollo.biz.customize; import com.ctrip.framework.apollo.biz.config.BizConfig; import com.ctrip.framework.apollo.common.customize.LoggingCustomizer; import org.springframework.context.annotation.Profile; import org.springframework.stereotype.Component; @Component @Profile("ctrip") public class BizLoggingCustomizer extends LoggingCustomizer{ private final BizConfig bizConfig; public BizLoggingCustomizer(final BizConfig bizConfig) { this.bizConfig = bizConfig; } @Override protected String cloggingUrl() { return bizConfig.cloggingUrl(); } @Override protected String cloggingPort() { return bizConfig.cloggingPort(); } }
package com.ctrip.framework.apollo.biz.customize; import com.ctrip.framework.apollo.biz.config.BizConfig; import com.ctrip.framework.apollo.common.customize.LoggingCustomizer; import org.springframework.context.annotation.Profile; import org.springframework.stereotype.Component; @Component @Profile("ctrip") public class BizLoggingCustomizer extends LoggingCustomizer{ private final BizConfig bizConfig; public BizLoggingCustomizer(final BizConfig bizConfig) { this.bizConfig = bizConfig; } @Override protected String cloggingUrl() { return bizConfig.cloggingUrl(); } @Override protected String cloggingPort() { return bizConfig.cloggingPort(); } }
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-adminservice/src/main/java/com/ctrip/framework/apollo/adminservice/controller/NamespaceLockController.java
package com.ctrip.framework.apollo.adminservice.controller; import com.ctrip.framework.apollo.biz.config.BizConfig; import com.ctrip.framework.apollo.biz.entity.Namespace; import com.ctrip.framework.apollo.biz.entity.NamespaceLock; import com.ctrip.framework.apollo.biz.service.NamespaceLockService; import com.ctrip.framework.apollo.biz.service.NamespaceService; import com.ctrip.framework.apollo.common.dto.NamespaceLockDTO; import com.ctrip.framework.apollo.common.exception.BadRequestException; import com.ctrip.framework.apollo.common.utils.BeanUtils; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RestController; @RestController public class NamespaceLockController { private final NamespaceLockService namespaceLockService; private final NamespaceService namespaceService; private final BizConfig bizConfig; public NamespaceLockController( final NamespaceLockService namespaceLockService, final NamespaceService namespaceService, final BizConfig bizConfig) { this.namespaceLockService = namespaceLockService; this.namespaceService = namespaceService; this.bizConfig = bizConfig; } @GetMapping("/apps/{appId}/clusters/{clusterName}/namespaces/{namespaceName}/lock") public NamespaceLockDTO getNamespaceLockOwner(@PathVariable String appId, @PathVariable String clusterName, @PathVariable String namespaceName) { Namespace namespace = namespaceService.findOne(appId, clusterName, namespaceName); if (namespace == null) { throw new BadRequestException("namespace not exist."); } if (bizConfig.isNamespaceLockSwitchOff()) { return null; } NamespaceLock lock = namespaceLockService.findLock(namespace.getId()); if (lock == null) { return null; } return BeanUtils.transform(NamespaceLockDTO.class, lock); } }
package com.ctrip.framework.apollo.adminservice.controller; import com.ctrip.framework.apollo.biz.config.BizConfig; import com.ctrip.framework.apollo.biz.entity.Namespace; import com.ctrip.framework.apollo.biz.entity.NamespaceLock; import com.ctrip.framework.apollo.biz.service.NamespaceLockService; import com.ctrip.framework.apollo.biz.service.NamespaceService; import com.ctrip.framework.apollo.common.dto.NamespaceLockDTO; import com.ctrip.framework.apollo.common.exception.BadRequestException; import com.ctrip.framework.apollo.common.utils.BeanUtils; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RestController; @RestController public class NamespaceLockController { private final NamespaceLockService namespaceLockService; private final NamespaceService namespaceService; private final BizConfig bizConfig; public NamespaceLockController( final NamespaceLockService namespaceLockService, final NamespaceService namespaceService, final BizConfig bizConfig) { this.namespaceLockService = namespaceLockService; this.namespaceService = namespaceService; this.bizConfig = bizConfig; } @GetMapping("/apps/{appId}/clusters/{clusterName}/namespaces/{namespaceName}/lock") public NamespaceLockDTO getNamespaceLockOwner(@PathVariable String appId, @PathVariable String clusterName, @PathVariable String namespaceName) { Namespace namespace = namespaceService.findOne(appId, clusterName, namespaceName); if (namespace == null) { throw new BadRequestException("namespace not exist."); } if (bizConfig.isNamespaceLockSwitchOff()) { return null; } NamespaceLock lock = namespaceLockService.findLock(namespace.getId()); if (lock == null) { return null; } return BeanUtils.transform(NamespaceLockDTO.class, lock); } }
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-core/src/main/java/com/ctrip/framework/foundation/internals/provider/DefaultApplicationProvider.java
package com.ctrip.framework.foundation.internals.provider; import java.io.InputStream; import java.io.InputStreamReader; import java.nio.charset.StandardCharsets; import java.util.Properties; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.ctrip.framework.foundation.internals.Utils; import com.ctrip.framework.foundation.internals.io.BOMInputStream; import com.ctrip.framework.foundation.spi.provider.ApplicationProvider; import com.ctrip.framework.foundation.spi.provider.Provider; public class DefaultApplicationProvider implements ApplicationProvider { private static final Logger logger = LoggerFactory.getLogger(DefaultApplicationProvider.class); public static final String APP_PROPERTIES_CLASSPATH = "/META-INF/app.properties"; private Properties m_appProperties = new Properties(); private String m_appId; private String accessKeySecret; @Override public void initialize() { try { InputStream in = Thread.currentThread().getContextClassLoader() .getResourceAsStream(APP_PROPERTIES_CLASSPATH.substring(1)); if (in == null) { in = DefaultApplicationProvider.class.getResourceAsStream(APP_PROPERTIES_CLASSPATH); } initialize(in); } catch (Throwable ex) { logger.error("Initialize DefaultApplicationProvider failed.", ex); } } @Override public void initialize(InputStream in) { try { if (in != null) { try { m_appProperties .load(new InputStreamReader(new BOMInputStream(in), StandardCharsets.UTF_8)); } finally { in.close(); } } initAppId(); initAccessKey(); } catch (Throwable ex) { logger.error("Initialize DefaultApplicationProvider failed.", ex); } } @Override public String getAppId() { return m_appId; } @Override public String getAccessKeySecret() { return accessKeySecret; } @Override public boolean isAppIdSet() { return !Utils.isBlank(m_appId); } @Override public String getProperty(String name, String defaultValue) { if ("app.id".equals(name)) { String val = getAppId(); return val == null ? defaultValue : val; } if ("apollo.accesskey.secret".equals(name)) { String val = getAccessKeySecret(); return val == null ? defaultValue : val; } String val = m_appProperties.getProperty(name, defaultValue); return val == null ? defaultValue : val; } @Override public Class<? extends Provider> getType() { return ApplicationProvider.class; } private void initAppId() { // 1. Get app.id from System Property m_appId = System.getProperty("app.id"); if (!Utils.isBlank(m_appId)) { m_appId = m_appId.trim(); logger.info("App ID is set to {} by app.id property from System Property", m_appId); return; } //2. Try to get app id from OS environment variable m_appId = System.getenv("APP_ID"); if (!Utils.isBlank(m_appId)) { m_appId = m_appId.trim(); logger.info("App ID is set to {} by APP_ID property from OS environment variable", m_appId); return; } // 3. Try to get app id from app.properties. m_appId = m_appProperties.getProperty("app.id"); if (!Utils.isBlank(m_appId)) { m_appId = m_appId.trim(); logger.info("App ID is set to {} by app.id property from {}", m_appId, APP_PROPERTIES_CLASSPATH); return; } m_appId = null; logger.warn("app.id is not available from System Property and {}. It is set to null", APP_PROPERTIES_CLASSPATH); } private void initAccessKey() { // 1. Get accesskey secret from System Property accessKeySecret = System.getProperty("apollo.accesskey.secret"); if (!Utils.isBlank(accessKeySecret)) { accessKeySecret = accessKeySecret.trim(); logger .info("ACCESSKEY SECRET is set by apollo.accesskey.secret property from System Property"); return; } //2. Try to get accesskey secret from OS environment variable accessKeySecret = System.getenv("APOLLO_ACCESSKEY_SECRET"); if (!Utils.isBlank(accessKeySecret)) { accessKeySecret = accessKeySecret.trim(); logger.info( "ACCESSKEY SECRET is set by APOLLO_ACCESSKEY_SECRET property from OS environment variable"); return; } // 3. Try to get accesskey secret from app.properties. accessKeySecret = m_appProperties.getProperty("apollo.accesskey.secret"); if (!Utils.isBlank(accessKeySecret)) { accessKeySecret = accessKeySecret.trim(); logger.info("ACCESSKEY SECRET is set by apollo.accesskey.secret property from {}", APP_PROPERTIES_CLASSPATH); return; } accessKeySecret = null; } @Override public String toString() { return "appId [" + getAppId() + "] properties: " + m_appProperties + " (DefaultApplicationProvider)"; } }
package com.ctrip.framework.foundation.internals.provider; import java.io.InputStream; import java.io.InputStreamReader; import java.nio.charset.StandardCharsets; import java.util.Properties; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.ctrip.framework.foundation.internals.Utils; import com.ctrip.framework.foundation.internals.io.BOMInputStream; import com.ctrip.framework.foundation.spi.provider.ApplicationProvider; import com.ctrip.framework.foundation.spi.provider.Provider; public class DefaultApplicationProvider implements ApplicationProvider { private static final Logger logger = LoggerFactory.getLogger(DefaultApplicationProvider.class); public static final String APP_PROPERTIES_CLASSPATH = "/META-INF/app.properties"; private Properties m_appProperties = new Properties(); private String m_appId; private String accessKeySecret; @Override public void initialize() { try { InputStream in = Thread.currentThread().getContextClassLoader() .getResourceAsStream(APP_PROPERTIES_CLASSPATH.substring(1)); if (in == null) { in = DefaultApplicationProvider.class.getResourceAsStream(APP_PROPERTIES_CLASSPATH); } initialize(in); } catch (Throwable ex) { logger.error("Initialize DefaultApplicationProvider failed.", ex); } } @Override public void initialize(InputStream in) { try { if (in != null) { try { m_appProperties .load(new InputStreamReader(new BOMInputStream(in), StandardCharsets.UTF_8)); } finally { in.close(); } } initAppId(); initAccessKey(); } catch (Throwable ex) { logger.error("Initialize DefaultApplicationProvider failed.", ex); } } @Override public String getAppId() { return m_appId; } @Override public String getAccessKeySecret() { return accessKeySecret; } @Override public boolean isAppIdSet() { return !Utils.isBlank(m_appId); } @Override public String getProperty(String name, String defaultValue) { if ("app.id".equals(name)) { String val = getAppId(); return val == null ? defaultValue : val; } if ("apollo.accesskey.secret".equals(name)) { String val = getAccessKeySecret(); return val == null ? defaultValue : val; } String val = m_appProperties.getProperty(name, defaultValue); return val == null ? defaultValue : val; } @Override public Class<? extends Provider> getType() { return ApplicationProvider.class; } private void initAppId() { // 1. Get app.id from System Property m_appId = System.getProperty("app.id"); if (!Utils.isBlank(m_appId)) { m_appId = m_appId.trim(); logger.info("App ID is set to {} by app.id property from System Property", m_appId); return; } //2. Try to get app id from OS environment variable m_appId = System.getenv("APP_ID"); if (!Utils.isBlank(m_appId)) { m_appId = m_appId.trim(); logger.info("App ID is set to {} by APP_ID property from OS environment variable", m_appId); return; } // 3. Try to get app id from app.properties. m_appId = m_appProperties.getProperty("app.id"); if (!Utils.isBlank(m_appId)) { m_appId = m_appId.trim(); logger.info("App ID is set to {} by app.id property from {}", m_appId, APP_PROPERTIES_CLASSPATH); return; } m_appId = null; logger.warn("app.id is not available from System Property and {}. It is set to null", APP_PROPERTIES_CLASSPATH); } private void initAccessKey() { // 1. Get accesskey secret from System Property accessKeySecret = System.getProperty("apollo.accesskey.secret"); if (!Utils.isBlank(accessKeySecret)) { accessKeySecret = accessKeySecret.trim(); logger .info("ACCESSKEY SECRET is set by apollo.accesskey.secret property from System Property"); return; } //2. Try to get accesskey secret from OS environment variable accessKeySecret = System.getenv("APOLLO_ACCESSKEY_SECRET"); if (!Utils.isBlank(accessKeySecret)) { accessKeySecret = accessKeySecret.trim(); logger.info( "ACCESSKEY SECRET is set by APOLLO_ACCESSKEY_SECRET property from OS environment variable"); return; } // 3. Try to get accesskey secret from app.properties. accessKeySecret = m_appProperties.getProperty("apollo.accesskey.secret"); if (!Utils.isBlank(accessKeySecret)) { accessKeySecret = accessKeySecret.trim(); logger.info("ACCESSKEY SECRET is set by apollo.accesskey.secret property from {}", APP_PROPERTIES_CLASSPATH); return; } accessKeySecret = null; } @Override public String toString() { return "appId [" + getAppId() + "] properties: " + m_appProperties + " (DefaultApplicationProvider)"; } }
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./doc/images/gray-release/gray-release-instance-list.png
PNG  IHDRSm IDATxř U$@ s4ccw>; >" "#@r+vQf{~%jif6hgv<3]]]VU>OD!SZBD"ѵ҈@ , " " " " " " " " " ]ĿY*O׀tUѮZ0KD@D@D@D@҅@,m۶YyyקKw֧O iT] hvũD@D@D@D@D`w}+Wx<n={pX3NH@ΖY=lȑۆSGwA`H" " " " C`͚5V[[kÆ H$NiTr""Er֭[gw">4}8*؃}+**𗓓4$mL " m"H$,++k%%%DSwEbfP0̙عkh^[l{ϦN <ʪ@^ " " O*۷oo(Epd8t;GfM2iӦF̘1vYgVDܢgϞmm2FIvpWYYi-r3=ǻeO\7ol]w{#duWYD@ZE@mmn@?%x\pQ8BʧA3eW^lQ6aBh&+| 1 䏀Ƥ.qO}a;sG<$m4lϯӏOoh*>E9Y?gy;M}" " " " " " " ":DC뮻,DA_Dtoo p n^XhVPP`c TÇw`9.ˈWZD@s 1Tod}n~K~;'pCt'NI&|=S백yFۚtyǍ1Ž:$cD@D@D@D@D@D@D@D t|r[~nbԊ+;sA zUWW7xuDAT]zlÆ 6ydڐ!CovlD$_!o"021*߇;w}lk,|gNLAqr! EHɁm7n\&?cC?FD`e(]C㏝ 䇎(!L`~}7}xO"1t ߰d:ݻwyPF]"0Κ5EE <qx^+$GLy71@C~s CmV#/Ј;3mڵNO> " " " " " " "pa-=+]?8gw# ǎ]qr\b"Y 0W^qB|Y4۶m?ON; a+UhLDq(NM GD>nNn?ܝ?9]?<R5`4pQ.X/(<񝼍9u~EEE֯_?ww_ǍxN6-xj" `^1vHl#|c:/7kS穩8mONvlrt_Q=K,>8mcORD%h;z-ׯgf"чgQ` q_z%;S]tp :߿ASIn}wqqƏ<E&Lﻶ2'|9tzp]aZ@F"DZjb1WB.D.iN0hyXt97QF5zlkwa/^0F䜭Qa?0!nFLC9?b`p[̜9ӎ?=;9 cR_4nvu't/6q0p͛=7נF|O<Ν~GN#@GpΖ63p݀}xG;{~6=7xK[oa+128\^'aA?:P&t|>73K-O9j%v bb`yöel[0j䅀ȹ2``N&~EW|o@#7U>{ڗ/ Dc8c$>1 瀉~>ps3?}i8\r%vG8L6ի]O_{֭[kq9LOf&i>@*eK~G,X5-mz)ַ'Ю… Â&3**my.@d,BN;-Z /+[G}y|c|Ax{vgkurͷx}z*."k7F pSr!8ٸq@)+DSyy{ۀTz> 7MTCIApOW_u)[r/=*p0dti4Vn?iox"Zc0 Vt M͋}0E 믿|cbpi7v  A43?+/߼`DZ_rm9΅H?o0c=l80H : Z)>87_ eOF/ tk0y ؽy&Pz&ɵB}>ܤ`@T~ uOyJI{/bǕ?T6g#q_!uYn/'%w8ЯECWꪫ}pF'/~ƣc>rⰏ{/ s&O@=nW_胋SNuoTTn>ɕ>Mƒ8a<t'5_ꆰrQcxC8 i4wtɗ޳8el@Z@!K7u)CXv $x;9 •|sN`Ѹl2 <x>lX>I$7Ja_cҐPfTexUކ@cJ#KyilO8[" " " "iٜ9s!9yxA=m[l#F2("v8HdخfTȇ8{2h")eR‹7" F'Q [<ї ΍, 4?m3 ڣμ| ؇t9'\Zu8ޔxޗrd *'r0/A{)Q/aF]lbAv'ohe{}Gwy/~ tvhLCAN[L|a5`;5ߴmˤ3o|^:;@>(_}<hyF%Y~=9ֱ?s31)'oHI&Y۶vx axbڏq7w_OW<@O=sT o1xq# A-_t 9',(xM^K@|3P^hx/mI C 2nqi084$>1cFCZ~"7+l,?51\+SLكecktaÆ9x{`K᠀ȅ}P-ü]ɇ파6ƮH{xRmءظ؅Hp:ai{ے L7^tphE!]K>mAˋ98r1쩧rƁSkLJ(L(}_>F<O|I,xI9^C>|uB_soC>]\G " -#@{6+>m</Uhi︇}= ^p"Ms9ǽs?}`W\<y@_s{Jб.6`8ow/ DFh-<hSс•/uKӧ^y G;K*ߞ<(6t p ^\܃ *?r@% {A9 ̃ 믿a>9.xD?$.!N6`~R $eA~6`A?H8Q n#o4|/* `);( eƂwe7}}Y 8?H^HS}*wpiRyc4pː*~68椤 " " " "ЙQM}‹sl/hl:D="6$lxaa!4 9ڎt:Bo٣amWfϟF>(';B$GM#t`*8n~ ,ZϧLߗatv5\xmwÆp@0E{J4:l{X$"4^hOyq@/QhWË <*囶ѐz29=/2h7iWq~?=K]~קּ[%l^)? qL<IIDopk" "1roTY~hnPS!]w 38g9TZZej.L.B`|QQσ 5UxqH!<Fnn/^qssƛN*y7#c_Dd1Q c@C/.V˛Vf'ۓÅ^o(I:|g x61k,#+9b•48A#)4 '\'MM>6hĿTMD@D@D3`E'5?[&[t0װx=֜x.y(*$?T qK'hс46}qEJ86Y0L/6akRH<ҙM`H=66DŽaA\tSKWg6; 9 " -#@lh7CMF{ }vki۹ܣmF;q8A1\>?Ww7w jo܇p!h80e>KvBҼKXˁċ 4 /vM$+1</T('B"Lvr<yBѨ|<|kʲ*KΛ@ I(D"mydΏ?jH.>P ?7x87:d1*o^7lfè[K?Ï<A7?lMx)1욺EP5P2r]P?)tRw'Cٛ{ن![10)% t:%AQt^DaNo43t<ypOF B* {+vgvb6Yr Ez*0!`zlFòM篵5vfs7qZ>qt~C@leBt/k4Vʦm"Н oG^ޡMb$" }m?qoSyiY Oem66tœ6{/ Y? <?x:&OF[g7P~xγr| 0`^Ev~6OF`6hܹЦؖ*QFԟ)Xjm"qq1y(t!XI.[?Frf7͘lo ^\c}='"83o!BOb9gs7@sS[p|]&$`}9n\ߖkwh V>GlS MĜFfض %2C1eŜG~A0CEGcAC/E,mg%=?raI3ٶl~*y$dۍUJ:qq"'/SΟ<5UT؁wpXZx-Fɋ/e|)U:*pH'`;aJ 36g@ Q6W_D@>/msq3 )\^m7[nqnv7v$.b' 83><ATB&_<x~7ڷ3|ǿ@%s ZM7sy97߼sկ~y{/Gg.aOa]W9`0p1ސ`?y!M>m* @益y%Gz/x?'8_8~&.7-*x;7CШKu>>px]@9PQ u@G# uśH8Q^dFa^ICi,؎xْƘ9qxۉDZVxnIZ#" " " Iۉ1T%;j~Fc.$l`^@D  [{{t`4Fe OzvsO?}[<OAm9}>QdY ؓs0 K gt -]xꩥϿEk|{O!x>Vŋt:!.;`Χo f!p/zo\WH>>0 k܋AYwS}q>m+ 0ѦsN*^p{|uf@ bʁ?o c=oD\xÉ~?84R<dnUҠӤ|8yNdj ^,a{Sꪫәl/((x\Tk 4m\\!lm.n*"y0'ќTErl` !pr7[|704nI={0O|"8`4<\>.oQ߹ւ 4˅2ÁX߶7ho*9a\=ʄuLD@D@D@D`_nDtæ.MDgy@mA{aΝFADm͹@1#΍$.sJa!\q<v/[09UJGa.=tÇOڈOF:~8cRwHo#𔑀HN)^( `<O2LEİ78WbaC]Q>ۖ>*u+ !&";0O>Gns NyFA2g]-<iD[; G{"lK]HȂˤYyyijk9y ⡁gw>=pϧ Mb !y}w{CHc=F,D+@1X%Xco7p`6+\LmKxp Bd;7|p3"b o&G mF~ *˻wr`,q6\e"pApN. ?JsckwP?\MM䁋F7rf IDAT8O]bh,6.se?+YZŖz􁛕rVi\44o1K[E@D@D@D=$wevؼtOk/#i®6C:x4M\xMwRl^K}VlZ`y1#6=`RvDG:LNѧ͍mHR;xlLO A۹lDC~s~#@bJ`Hq1R>)G͟Kȳ8t[\o"ZcnV^p?іb! 9{mZ;^ЧͤFCMc 砝;>@ii*aoѽ|vַֿ{8Fo~t8v`۬Y\v$`;IڣNh?j L;a_>uZyf?@<jƕ5~*jɋe3gt7b7 xq.p݇h[9 ,=7U䉊"N籥߼B$ܐS_<1('2a04@|r1'eh- 8N:8q09? ~^E T)0^{#UF^ !>ћkRm" " " "dLV.þ/9S2lQllr<&?NpwDHg(( b۲{ [cAo:x`2!%y6sޥKVlE;:Rt>pn<F(D锑Ýɧ`ק)gesÆp,vpH^󒽩,#"&LxoRN>?yC%`6U>5fR&G r >ȷ\?ԫD-{O{!v~gSh>ε^[h#WM|ȳ -ϦTφTm"eǣ/Uف_r `f(Eī{u~㏧DgǖǦw?*p< S;x FGDZT7 \(|8D<d>X H~sDZT^{<H %xN~SNT+@?G)cy(!m@ 7 GrFz787 1yP.\e8 H $0.tllgl.<F'OPev0BB' .atFtHHx~= 8|8xa" gt+@,ip~:xxPfe`'ې!aADo<6˶jңl{蘒^*ͥgs;G?)9}`Y}:mfA0!Q-"wmUSG'/5?kPL?:3?x rg/xn2`?y}L֙eh˹St-L}Q HoJ( r} Vlqpa+QqgߜIoQԃ~D,cG Oe)qC<tR^Y" m8AH\N y;#"|mnGDӼ &]_n`]&ڮb ]~F3F3!q}ݐGb0ta " " " M{I0 ֥ ؤ^cPIN˧X a{QMyRC]ˇic[=ۂؽ{A"?M/ymc0>=~#5&R7QQx "4*@W!\#^{d"61d4 TC/`0"x{1|06D(D {6 \XBO0ml~_wstVaR<[?<!x'><8}7Ps1$SxqN%3( \uyKך<yD U|\HC:>=\_)K>Rc.vL4Ec;dc7DMo0$\k8-" " " "б_y1H @FG}(" KOw mx YT$M2({&<1#dQU#ƆZЉ+\uR3<8d0# l^L L5s 24/(2cr]I/ ׽ 9xZRR;/#C]2UغnDg:GM_Ñ%bf<x+iɛ}kλ Q.WA ݲɢXؽ͹do8?;^++t$%J poˬ" " " " " " " "$aRe1+m D䡲-9#0M7{pp G_i@:Ha~*~Xf:SN@wmgD@D@D@D@D@D@D@D1i#1|K.q3ZHFcvz^lk:@w$@[<Sw2@2}D@D@D@D@D`f5af-jUjUHW;vp k/,YyE@D@D@D@D .[lyv:VD@:<VTTؠA:?CʁPBcҬJF6mՊ@zᖟ6yRFD ]HKP>D@D@D@D@4<SjjjD@D@ڏS+hc]>Uh 9Pt-V}4" " " " " " " " "@ >Xt)zM8ܥjT/kk-tA@"H㉄UWY}}4Kկ #" " " " " " " " Ǭ֢?OXUu! B," " " " " " " " ]zX6[D@D@D@D@D@D@D@D@D 3 33ʵ@s$5GHE@D@D@D@D@D@D@D@D C HЊSE@D@D@D@D@D@D@D@D9#" " " " " " " " "$eh)" " " " " " " " "~P2mhĿid(Zqʶ4G@_s_D@D@D@D@D@D@D@D@2Ŀ 8e[D@D@D@D@D@D@D@D@# 9B/" " " " " " " " J@_V-" " " " " " " " ! % /C+NHk@l@sEhP(dD%QGҖ@\P(meND@D@D@D@D@D@AKXUUx"L[E c,dѬlah'ۆ [&z H>xg~-ڭm" " " " " " " iD_yYB ӧeeeQєh9<W+++zc辿C,Vgʭ,@',OX<p(lp"a<pb1 ӱ5^51KsĔܴQD@D@D@D@D@D@#VU X;BU3@nnE"V^Qf}k|_?t> [V$TGPa{ٔFZ8=̷s&b/~8A4jcN0%>fWO?=PΟ;*愽hQoRIE@D@D@D@D@D@D@D@ZJBEMM]pҳ*)B+/d_.?fL8 r /^턾#f:g}z\lpy{(W~3\ړ'Z^vpXo:;wۻKںiZ]ʖ@3$17?Z3nx"%9y{UdV?j?nxۃh͊ڴچtֆa z6ѐᾥKfÕ;k̲J-_\ʨ j/EZ$]n|!wȈAؑc~lƭvuV\^@YϻywC:GVS[DRnL Zca}G[{LpC~qO;Ͼe{wz7o |meV\y [h5uӫ󗏾lr]1xߕ\gh-V=hdx"a߿s[Ϸ'_ܾ2(Y_o+6o+mh+6;E>?u]talDD,"^0l].u@:N@ -nq ӭͳwsM<`-\J*Ng?Xdg~]w$'KؘA}ظნ0Ȝpr"b " " " " " " " ]&:ut8~rqvkmQa+ۏ/;od6*;ֻGϵ+e/}n}er[q-۴͖mVfX_TE@D@D@D@D@D@D[-Y ԧ37eۭl>YDq2ַ?m,.{ZYNGZnQ/&%΋Pu+Ee/ h,KҚ@8ٺ-v߼ȱ-;5[KWAmؾyE+QiuM7[6naYplHBeYQB>i} (s" " " " " " "$52 C 2O7QnQCƸ@3mx֯geEvmgfPf{frPA}z#?޴Gԭ*" " " " " " E -ſDMծo5^-K-Q_k=X9`EQ<M-V\i#G<- 99M&VTTddL޹/_mKWMZ},f}{mm!j*+Vc{awAַGVV[<[8~`;6WTR<¡r,+t;|P_X` " " " " " " "uWmxYݺ@v~Eziy/a{c}v'q,b!gFՐ?l'x Q__o=M6ͦLeOpѢEha v ,<ƍs|Əo'NR~?v)4)e XQYm==;-[nUVUnhjNv ώ9z]}v~#3{mh8d._oX^dxWYUM<j0[*vZ(k)ʚZ۫ڒEppF^ho~ڢϡHi%ծ|v<}l1F-:hEg\m+l/[YaHqoۖ< fzj'![mm 2Ĉ ۧ~j<! Ⱦ^x}]'!!s1VQQa};ڵk7p~9W^.߱cˋHH&{nڴΝk=zصx {ֿDF}\mػ >suC#YV^Qe+׮EWl{ ~uUζd6EVy[a0?'%h[zeGn6VTz ~!x?N4D@D@D@D@D@D@D@bWYS?X fyG\lCBaKVZron͇Vރ3 ~ɚ8Cgي+sqt;|mСvg8!-YhC D#pկ~̙^}ns=³>ۉlDL;&OGm  28Aoݺ w+oGİjF~oK]z^z>57=giKgN ϜnU!#_^>1B>%mϢ!f ro*vW:T z~/Zi<q?Ykv&D] ,g,o?+uխĪ߹r9"}4>}۲e|{e;3<aļzoÆ NH#UV9AķuֹKKKmΝN"C@ܶm阫gϞNKF$x$Hx4>ƌ_SNߕoՖmuv_{d2_vV0f?_{C_lv݇QS[ص<GKP<ؓ@Zb]nk;nOnV-QUbΰ)7Y0ywdַ-cլ||~#b^rx A;#egg;;6z6h C{7P^nL`/‹gCg7xcr_tC!b#y7o˻?ė^z=oʘOϳw|ꄿD,7;ۮl'g=i}ĦM9ڮT Ow?c0soʾO$3 'ް}FHKG>nϽe_lm1D0X&~rfncoGYthW&ˌh|}v̻GwCzg̘ѐ橧j'p͜9ӦNjt[՗9RbX1"9_u;\Zl[`-^CvS]pnH1"]wmر>|JmWb6x3r+ʢe4W`8cC=򭸤̲Glڔ2 AC~GkHZܚ y!^X}O Cuʱp0?ضUs'qY!YV:ODUja/?)wX'p^zf&Mr+"va. 1L,Cp |x}pʕ+붳XwЋy ~ 0Ο?ߝ{/qoᕸqƆ<p(_jtϥ+ڪ dqE9Ǝn= v];kjޭZ -Yxu IDAT▝~(" " " " " " " -'_(/QS ¡ifY"s%K,Q[wdi;UwY|{!!ǫ?{ǜgHdYoG|b9}Y'͚5:,7Oވ m. !R?%]DL?J-4IauVU]0Û׮l7}\}!bqC-W[~^+ޫ?m-] ~t&qP^E@D@D@D@D@D@D@D= ;"}GZڏn{蹖5`y?YūxevuW5VW`Vehzx'"C{饗>p+=O<і-[뮻ATK1 w矏W޸q9{l\ /lh"'X2 ow xOŅ :/c9Lh[I~YU}7n'l~-^y}xnP/%eVQzfǙP_ʣ@fH /rnu>O[aZֈ7*w=B,KjͿX|E1ǵ4c?^~NË@ģ;8b7 Ϻ &8;DC?w;HI'<?𪫮jTXon.?/k=拘IO?=xhFNRp8a7\q6n|~ۻz7!Έ+" " " " " " " "ABlyG\b XzG9nh;pWmy 2="Z9>Aغukqyco}[ J]]=V]]mW\q ?c7 B'tCO>'~>SHZ9ˏ}5AX$B>O'睺׷M>Pk nǭf= 'E@D@D@D@D@D@D@D;]9ĒG㮷?ض5V2,,{o}*l-w }d on6g EcQˌ %X_pUuYc?ꫯv^u#FpC|I't2!Ï}իy䑻m.]`_{wϷ?O6p@',c3{art^A h[IxF 0w`&1P^E@D@D@D@D@D@D@D V[,-L/KfV= ꏞpo(5 E"a+8l e=>̟h/"M7}t7^>_Xȃa={l _?V3oȐ!E0^/"v `n7lذ{=7n0>w#!0AcGِAmm +Cahyyْ^xP}@&V_8zLnŭZ }$wZ[3ZTqx5v{!4_< ۼyM<ACTd9sXyyK_~e_bvM79o?,X`EEEV[[f0}`1c@Jx"2d%cDvqi>tF;~cZ$[m+ag%+XB}}FbS&NHڣE@D@D@D@D@D@D@D{H+*sv?Y(ź*'a)hn3@ƚ qp K =Xma^>r Gu{|3,?묳RGHzx|6x`'(³@"D[0Sy3w> ,8_,Cڭ]3r}io2VEܵ՗i͔b+" " " " " " " "СB;ʪQ: (jhRYuv<]y3Y(z_;$c2o}h?jFwuu6COxuOrb.͘]~iÿ^leyׯ_o9=,'')06)-jC qsS.%" " " " " " "ЕlQV{1:ro×cJʳآCD}[w:{:$=mQ߻-QS[VD#n/s}t\P(l E;7]f/(" " " " " " " "^nV2m)ZY?5 ^鳬v"{>^dƊHrsyfgeCϴO?Uw/m mk:Y#'ZS`5KY~ k8~ߵ?[bo-^ƊKvy {p {L<`|ֿot-%" " " " " " " J ?yNB/WTb:>#IG>YUu⛛mYYi3N:4F # U_}H" " " " " " " "r@SD@D@D@D@D@D@D@D@2Ŀ.eVD@D@D@D@D@D@D@D@ZN@_Y)dU]ʬĿRL(2YhD}R*" " " " " " iM@_ZW2'O޳s6YM6ٲel/Z,sUWWۆ l6k,[~}ʴ8殻2.O>UŭoR XMMvZѰJJJ>9sK/dO<(" " " " " " AD  B6g_~6{l1cLkʕvybqN[d47h FS7[H>c;餓R#7qUUD`zj۱cG`,gVVmzmŎVTmFag}KG? Z=lΝŲ-??Hߓ&MjZ)**˗" " " " " " @^t3uViY)b` d,O ! =Мm7 {om۶m71y!2>!۴iӜ &oƍvAdyyyngx7!}mٲ<o֫W/xbq{co7_s,oQ8{9q;p"!`WO?}ڑGļ>}ؿۿx-)S NHԥ} Ax͚5n:WA൉G PR'v#F/aQ+϶U[}7N:rGBf;{4w=l%tZ;z]|g.bPmm^6"xx!UTT!-,,tkYZCbH*hV?ti̜9ӎ=X'N!`qCbz–\gizcܟɓ'aĹ_vW~;# z (<7<9x"6olK.8|>pfuzC N[uK!r.`ҡr9 <i}@hg ۚmU6gf[vT[ v\  96~6m\C !XNNE 錺H52=:eRw E8Db8*ѯ~+'4a؍7֭ؐ[Єԣ>N9唆#+cE"aβ쬬g.a0dйb 袋x!?DV>;oAD9̳H Ǟ0awT/wqv饗$>"df[D@D@D@D@D@Dc ICtsڢ/AVU奶yGMٽſCwvSS'9uu[>{SG| {F_]<"c:+4>ĤT>v1;cgq=Nbq:#tOgͰiSr٬m%nuf6|pmժU6}J{ݰ^u_~qnF3aľPv~6|njc,կ~ =PafwCp~a`<Xm] Y{dVRh=Idž|۾N'ڣOlM`H+Gϼbn? 6bhja o1)"(!ZCmd(Bѫ~Ux2̔?/`<n)ςSNu+%0t 0>W鎲 硧_qz:ʬO^xoAd}Wa׈xW/=sz#=1?CO/AH: !>a/» }H^xӟ9B!&?[ DA2@4muVZUgû_=دUUUۇ XT^CEgrnڴ >\}?,?8$Ud Y9ȪPGCΟ}x!jx׿}{i)c1YSc**m%^}C x'lBYIss-\ >x>#nh5ÅCSa!P^'Ntb0|XAD70d5p޽{-r[D@D@D@D@D@D} I#+Mkߜ*52&f>GeU;mrtr٣ IGyJT<a .pCWYA?o1h~x"|Tr!K/s<vT'h$j=5*-[i={Rp޼yn޽tCyZ'|"ϕ 4xxŇ'9{_p u/6,Ƃ;i$;wyv;ovWWÆ s ȱ'x;W_m3fhX!" " " " " "Ю,kn@H8o)>1#CpfQ2Ku}Ǐw0"tÄwos1D.ⱆb |}te:umCdfq'ظƸ|0fGv̑7<`܈ % "1L l|A9rȢ,>0 R!ee?\aLj~ׯw3|tƍX " " " " " "q$u[,K  ;Ͽ2Z6j GRC +-))qCI}.>CEHCb*^|Kxw)S!owꩧ:闿q<O4b "֨QaeZDt pBᐕU8''؟8|XfJYQ \}~C ÈՔI, }> "Q,jì ̹ 0|>}Y[x9$D@D@D@D@D@D@:ĿE # fۄC=cV̇O>_n= ?x쮕b,..3g38o>A /D&D#B>x!Npq.b'`qN,/d9Bc0 @27]<?no\7"+3Il ~ ?M9F>C| Av=y9C{wj z;3]W\q;?"s "2g }G?ru _0g*O AJ-" " " " " G US (PdZVdO/˶R!O>vبAڷ^IxnCX ~>]>[bVSWkKڣ(b!a{ ECcH/ǯXf;N d<|Z ZGߗߥeNT]t:q߻.?Ut}9Dc S3f@BY9y-ç.Gs+""Rwg6^Az ny }h좢֫ĚKA_s[gu[uMѧ_c6j=#kK[Uusٸ? obaVHdWep:xbq۶ -k<ër[:*iοs-$"С" k=Q7N<ؠTtv$2`c03EB! bMGz/5@H{!/ew_%F*jbl[E kWMf;omژ]>y7 /p,d![fVmD@D@D@D@D@D@D@D@D H/a!r><>'l ;ᠾvքz-؄=s gWqwŝG r˟oE Ŀ.t]("С(cܡQMŎM.G&ݰD¶ؿ< ~BH$zFmA,`ȯq%˹+,;X~pX2KmyQeEBVV]oYu u;ƒ2YieCj;ZFc/GjE@D@D@D@D@<pcxoiUx3ax4^݆εcz^9VTV<bqE4uֲ#!  " -#ފu_XG˨uuKkJQD@D@D@D@D/7#˾~B.x_^b3&2]:i1=Ȳ#a'즳s_A҉WiEuE.:BNj-/;jьi>dEatTX~N[KTBD$h1WdElˆBu-Ȳc*,7[_R. |"Q3^9YYFegؿ_rZnCʣO<ס@g[UA(cĿH$dE5/%|Sk wnPlm.1+K#U^-!9q." " " " " " ݒom #Bm?V<O=F+sÿaU[L#|=A}t#qA1lKZYX<nGeSk'מhU0:\*@W"Δ0_],sF8[Z{ IDATeEbo^V o؈F/> " " " " " " " " ]@hGYux<aUZˊmqSܷ E^Y ^Q͎XIe|.≄˲qLm}zG-7+b+j9{`ONcd]H+xJK!C,;{έ'j+*jzh1Ge5 ! V[@`a@A@,Dӳ>+h7!Qڠ,[ȣUOj(I& oL cʕ@GϿ(E Yw_ 3XCc1g|wpM$x̺9pĬT۸S_pdUuU :\&D/6u)cW/|j|Ϊkc,>ɇ㜉2^W]%b{N-,{Dkj_/(" " " " " " "≸t]aP[;j._m~7 GءVc۫-/B-lZ_m gi1l':KV:|6Yr ͸q~f=f̲NJ:mUW^/ؽCV8Vaϭ|~o {uVP+=5Ͷ=:n_lծ{5ս9Y$;KfS&uo{i*>jH܍1Řbzo!tMHmM @rBBj6`{ei,lݝ9ssff}c0F#`8T &eUh%__3~vڰ$I6XqϑH2Sm&@V0F#`0FN`}'އs"dnjz-FرC>OW^^jjjuVPQ'L_K붠}!6#`0F#`zz`ZW@w l2w}:묳t'kʕ_;OrJ7qҥJ&4h;0WNJ+\ݴwtF[1*l8}>}ȡ>0E#`0F#`NϰyV8`,Af2% 'RHU__:U=^끨KiGyq|~!Z2F#`X)9F[(=+_q)?N)W\>%UP (!Nޞ]^bLe~ʧtF4ſ V:'=xM[ [#X}=<]w}s?\B=WVuEb D"ð#a=Gq?|9G΋ko4c#VxW_}+cԨQ708}~!(v Ênwرcu5׸Gmn}LC.q凓}\>ڻݜ Ҟr{;hX#`0FJgHrCZuB[*rb\h ׺=K#Q4R6+j62b jCj[6>{uwk*Q4Pq67(]䙘Ddvk#DZmB5œTj:䫶1ʺn~t}2  Aˑ/_m-fgY=D<r,TebYz u>!$HҍmyE{-96?D`Dɪ m5?ZWΌtkĿd2/>hum34#p 4Uj9:w\/JJJtqiʔ).… K/9l͛ݾ#G:]/;a2z-ruv^x;Ncۀtkڴi_˗/w! meZv|Vo .@m...vu sP(#8Bgq 6ܘy'(yzwi&o:5~xÃA*Ss "Ա,z[0F#1/Wh|μ*>!>N(DLI:tvy^U4V8+=6oQecE'Ԑ׎~g9x&?B-Mee BX4sؑ~iU*syCѰvD*HP߾|_[\?Vᠿp<ȭ*mU=/__YP/ʽ wϮз.%2%Ϯ 6( cY/Gz ?x=.vR2&0jxnV=,#ORΔTܷB F(ڗIɟ?Xe(~4qN䫔Eu`)U_J]tb!BX`*66.S4f/UV![;[PՇU~jY@%iSum4 !{QSSˎ5rUUU.޵^@>[Ή7ntVXvu]D6l0'?VQ};kkk]݈vP\j&f]r%N=#ϧ>)Q>"{2( &2OhW?"mD* 9BB;<Qg?Yv?}R5*ZXQG Fyꨜ}Ց{o0F#} )sƜ\qP>=gjsIخ=-._^cx:7AؤkG~|[?W GjF =! w4VєASmߦ!Ǹ n8?φkUuh<Ǔ) l.3nW.AQ*ǒB[&^ǔ;J7'0!^XgőЂZR,7/z kN:Lѐ_r *ƕ. e[ݘhFHC˟_D/vb]z')T2UG8 ܙnv Ft`Dщ*2f+@YB%6˕?Vdf}al˝OKWByG p)P&rcq7;9a:ڗTJ׆)jIoi@WxםXu '8qŊ?O/ 81 +_|Q_~~Ґ%D6%͟?߉oi,1k,'!ak}s"'x&M8|DXHKF1BX30֌Mu^Ya<l`H@Qw2pΜ9:;wtB(BkXxx%# vV'雯 J/nOO^(c)5h{8\Z]Šgi B-Ӹ[!&2Ķ#`0FtoE ]CE\(jsm7sBV\?,K7͸ѽǪ|^[V~DZ'M4M  qǩ)դxn_SGG<с[4VTBC_Pk׸fDfZYrϿw!d +;N2T7?Q ~܉2Hxb:fu% Ž7 KX?b4@rTהӇ9p`~DǍy+5md.5JK7W1ԔENXxܐBmא~Q' :@ZrXxdҊ=KaǺ M&٤ܙQb; tV|93>)_(WJǕm%~/I?3J%+W*5e1g+?R|}~4-Rp2X֗ ~bRb<U5Bx7Fs“iɊ4Fpuj'tMyU E]vq"1K^xayYi۾qD9G;p̘1wAx [nm3`#~<>ŋv"<^vev_w}[ dɒ%ne`"({eagB#ij\~zkG\W]:f*cIE~mIN(ә)?PC2g7-SՇGr~.hC}\۩uu1 DՔJkAyݰS#04% U~PNP觪XRKru*ܾgT::wD*w䦺PU5M0=cx#`0F|X!hV>6}ZŹ邟_ XftR|͹ݏ8,}^u tsǧ|!٨GʖW\e-({SwsrW'5w\C ,$=jǗ gɓkg}\Z:=b=x.9vDյz-:|H)710w&6%U/mӸ!j%u 9Wgx[71 `??1O7ZE9 lZ|տe(W9 ϸNu/@*O/SU/Qr9T?6%w,`y+QشQ5.{YxޡĎe*JUoP+V&ѨL*._(Ǖs#f)q0w\kz_g@' /oѢEu[oun"tO|!z^- W?RGy?ze镅F(2 Қ#[R8"r-{£L+eR/"uoذan'"""a)|^*,,t)+rƟF۵M}{cBʱTZ#A}b|!Sin؉~-٦' v"?=lݏ CM쟫Ƅ+hkC\Eu!κ!EݯrWH)Ay[տQl@mF#`0ݔqR鄦OsxMƽ#RN0W,Ź "mۨ<+&\ ;|u6l+[^ՆڍNBc/ݿZ]Z@Е$TTDG S>A9)#Nհa:zQ;M;lQċͰέuavXn!ڦs]~ٰS .Ѐ.=v6jw_iڡ\׷p]_I/.-s|?1ϬPv+jT\^S"91{;v%xIcOi{ekGx YQv&^L:@ye5 Za;2EƜLQ>] cnR҉{ Q')UETpD' :@Y%Qûlo(esB =.`brWGEEv[] Vͳ#~ <zgZ-p%_@敋- "rauQj|{l 3H-qK=[|aClÎ+u#Gy}lcq(+n$,~L,):8_M-"[kA^{V;Kӆɥz%v% u~v֋7Y t_]2?*wC鸒|gYHz 걃kn˓:oC]\tVrt~i?KKDI\)k90F#`A"5,g8`׬Wv_i^-=VXf}U6 jV,;'rk1vZ7`NXxENpmzq[Ѓ|ikB .E"V 谢4(whӖ-zl+Mas//-+UӐsW)茩C ;O5MBv rB.Fr,۔H9_~X;jLU{?ZAO(| 闣_3SmWYeu.>uuⅹa}/GѰ_hHXZuM,wO~q.^(%6@|£NVj*eR1e+S@%[7<|;W+9'EF 8QAJ\'/`zb5_&Tx'w 5_ShDek)Jl}K}]%w&RVZb wWhС"~~V+V.>mfqύ+[zr{˛]G{7D7E4 /[{*#f!я[ՃړGݔ~C_#;Nh@_\Q5Mz}{ָy5[SV\oש17w (TT E<<U֔ȼJorBI}ZOok*\Gz>/yRiX^H7Mj^ϑOVkhnHS线DJbⵋR)j0F#p$R ]t؅.sw|zPg:S9(-_`cu;_k7RAՇP[NcA#4{l׫Mut9qUh*e/nX oU"wNغu5 Ѓxjƅĉ%*-u$_;nj'cO *YvLJ ܯ1΋?y]ml5',bI7<uak㋫yëtر;YDTnFLDۊ~kxO:/)4bH#`R[-LH|y%~VӲ?ZtJW(V&VDD*Ǟ`ndr%˗</ >G n%`9!2Ptn/`2{u~Y~#Ѝ ~E"nvo[Q,[?'| `QRRxüj+ <ع#X>s:3i&hn,1 }m#c#[3bYx8N?93 yX p:X(Yy:bV'aPGaK?:6%'jE~; AcKY'LY{kjczNsB* iyu5$ve52$7 5l[JJW#`0FLmvl]rꇝ3dPbU۵iK0qfVe;q 9?[vC :ok]I'_ #k]B 5+p@<iIJgRJeCRS2t) 8WTK~!}xO|iPռvTw^I:>7ē*ʋ4?<FDž3;1ﶧ邙u٬zl&2i:Rh8Wo|]vɥX\JT,/ub/r[B~_1KZ@X9?@(<$F4 |V IDAT ?A:%f-'| մ (;@Mi#J/V }E^TVQ~tfsERCY*4} }DQ:.nկXegF>/ 7W;AㆇF=FGyY-^ٯ,J{D{;;.a?m}$ZJ?|my:Gp!f?B$!da/emkW$b77[;;뛒i[ F)/IC \~[EĠhPâ> 40kkcZQ'qn-~l 9kR$s:1m5aDZb0F#`&sZ}ZuP^7%moخի5(U6t.tFEE*V=;߽SNNzլnVMol{jgj֐Ykzd#.ߕp{~.^ ϓωtܹxy,PrxXEmOѐbI}Oo:<,Κ>T_8g*nr܈ǜaI;0>⼖x3+l7P_`ڡ=Bjޱi]ys7/ꆄ^Y]#v=o3Ku~-6:P2)KTjaG>V :BhsqoY_91 `{| %,P򇝀'7jZb^RIMP_w|A 9b? m,{GMvǓ'UD!3bâZRǁu_ױ!'wgtBtgm\;wtjjjZc!Rʕ+%_XQd==s$.L9^<yX/SO=꭮v^?D8묳C<>Lq;_iʔ)bq8zvxmnDkƕ[QQ舅!+cH>{ێxW|:uh+fGSRߩYQZbcopNce_3V:@V}jS =$_U<'6V y- 'n5sGiUuk ֈm֘fqnzrc[hN(I=*IDA͖0F#`:KK{޻WDa4\|>[w{v ?[\SN/,18(Ys6nT~(O8D}bǵ`^/:8m0Er[ a,?/1'(GIWWOĽWޝ4YFMCX-\ĺTWMӶ܊!;@s#VxJ߻H7s{V7:ι^kc] ΘӦjz9}()PЈur&_TZ%+W*: ' "걐n9cNwq[lvMܱT ; U|+:R7a Up?*u "V 9R9G^#n CTf U4:G錪URRfqe5ݖ̢{6"TUUkhii$OcU[,zyyyz#nFww2kq /G}馛XǏĽk+!rÆ NC5jz%b vO^,Ƕ=Ս0 eW^K^OI\'1ޱ_J.Rf'4y{fKީhPa8w*UєT4W~ЯTFn\n܈oXר^,q!U*>Un.FGjIAƎ.ǝWƤG_Vm<#KUs/j=~#GFU{#`0FG1gf/}Մڱ_U~(_׃rxlJo9nh0jH68]W\Y7XtBO{Zs$D}B?& uO)st5$DA?VeUU]=5I}ձRɾlS7 o3냛#?F Dhߜxc^Q?#ax|]Mz)D~;[tu1{~6*-Z#'Ѭqzyv}p0I#imat+?o1j=5ijiTҹy˟Wܺ7s-8JUsV~KUq7JmWԫ_=zE'\~꧄.ÅgHM?t\᳕{MN}FMvh?D3oPd]G*]͹"1me (15,K/J]VW[8 c sկYg!m_Xym:[lG/G2ϳh%zrx:4[yxmo)툀XHve"Wj],>5baWkY!I}X轼E &!ҭi[;5n$S=Tw%RvC6NeW6WVKbΝ:"ln1F#`**tf6nr?vǻw/MF,:7D󶾮UuV|UɃ&kU*mwp+ ouO}Bs7 kc& /-sqkex[6jZf8`|3vlqu)L)L߿&17hùϭ*¯.߮ʺަ*lz}^Z1ٝEAp": ))fϛKí+W۔njv)]_.D5R:._0%S gȘضEx(Na_+eA\Ew(}+_7Kbԇu`x[D$e)v+Y L| JVpOWi_WҴ@"*ޯH{j[|cOl'jX-jt} bEOkS =e q=ڭ sV?n۞ #,nkV}0F#`@"Īt܉{X[l#-\4Y\'"(vʴyf6ǼU9\TX~ 5ׇF?/aH]?nю)-ٚooQ@lB#.\~~^ga|-Zʕz>vMvK:_u-o8:˼tV\2ᚼhϯtcbk_h[܁[DLYKu/qqO4%ht hK1ޱuוZf1F`Q Vł8z{KX+qo[Yc|ƹzVxVD=,hyv]0F#`0@h:̲b'ҵKY_OuXoxut~l[,~Hb^/N|AZAk-"]PךZ݀Mm_qqj+<mu~wwܶgݱ-m?P:۴7p9"?VX|rYƕ L#˒+p 6m.O޽cN Pk^4pd0F#`0}@^{57RſW^y yYoȐ!nҲ2-YY. "8aWƉ'׷>{kYɻ~íDIǥVd0F#`0%cĿ=ggxxb'x≚={ˋ<+ҭq|ʶW#`@g-p͵]L0F#`0F+o;,pSZlcEQ}I8^nc8C:&Pڻ zGV#`0F`!Km 쉉jˉO,,bi:PN[jv)܃[zlz#p u [F#`0@V$Q:識ސyݺ  =wG636nY\|{W"Nj }u[o*//YE4cƌ܃V+#`0F#`@'P;H3Jf赭 R=YutI%b:y : _Ɨw+/?_n5r D;jzN +8x)j^MLQTL1gy;ˇYرC֭s }uPc6l 2V0F#`0FF /V<nM<))wjg)zSo,S,R_ 卫oqATW3C3Qeo+Ji@_H>Șp:z[:W\ǨIK/ud☇z3`ZV0F#`0Fs~I5|j:cH<usTUפWkFʋsm/SLS2tv1Էs󬫷oڴib߇~X'|R^ym۶MgqpBz/<#F^sگg-@<#`0F#`0=@a'6(?zHibW4V=F>}6mڤ_]K.uz꩚9sWQQs9Ut(ҤI4o<ԹG"ӀX[0F#`0F#`@WU4~錪URRj>A۾}peqB`cc[)ۇ0qyh$DH4_%UUZZp8'[0F#`0Fлo/WbߖXyF?odoj}~րY2F#`0F#`0@[S0F#`0F#`cLcn5F#`0F#`;L;cm=5F#`0F#`cLcn5F#`0F#`;z܂}gh}@&#g#`0F#`0Lst#>TW,ILFCcM1F#`0F#p |>ś|n>0:;t=2 )u}V0F#`0F#У 5*n d_rkl_ }pE/0>#`0F#`+ :lгc0F#`0F#`@7&`_7k0F#`0F#` :Cώ5F#`0F#`0ݘ@cpg|iF#p |0V]#йH(ݮ; #`0F#%:)ؔPJeLB=T:}a-0}@u4Ueli5[2G # *VYRr'aZ.#`0FL_F9ѠrrBi>6CI`KwMZBx̵ĬCaW_y(䓂@5#`0Ft@'?_;pa%#`@#b2_|eR (Hㆰ[5&E몌(64R Ngn5Z#`0FHAlUe0o)UdDQ>(}R*zor7o^?ߩ*ӯ_e(#`0FnHĿn8($#`@'J*p|kE[fd,&~}~>sAu0`Mѷo(zm?T(t&vp+#`0FG0G 5#;`kh v2KdѨ~5cx/2+͑QxLM 74(7U$qoU`0F#`!X0+g ~䨰P999]?ĿLmh*R,W<WU9̚ [QF#`0==eFD f1>eaeVD暥VoO)ۉ{TZ0F#`@_%`__y0F BnuVsf;he0F#`@_$`__u0F,8nLkN7&9ɇui'{c0F#`,u#`0F#`0Fr&#`0F#`0F]&ݱ#`0F#`0Fr}ZcD"aA{In3F#`0F#`@_%cxU^^f4}t 0@՚7od1/77W'NTiiieeez7f555i:#tQG)7F#`0F#`0F'1߂ qF=Zhyfjjj38!1/8!pӦMzWOZC qpN[NߴtR]s5B0d0F#`0F#`z:#|>9R7pcNxbʕ+e_ Щ;Ή+V]wݥ%KD<:gHa>N<zNj7F=M_0xo鴙soMX3&ˏUO⻈p8e?m S태{*϶?%e0F#b'eOdd ɯwn"Elm۶9W_=\DYgy-[w}Ws9$h=jz*,pCץX,*F`aOކwqA;YT>{k… ݏW_}޲CS mvϋ/aÆ90凓1 B:] 8Pq1bZ?չ{h^{q?*au?Kbkqv2vկ5Emmn]~:Ï^_| k`|O2?~1_ugc6y;t ߟW9{k@u=/;7y"K#}?kul>S9Q?qQm0F#` #Z__\syfŠ/ fgڵn2iE#M2$?g# $Ibv iN4[ ڰa&yainZYY&LVoo*((pWYfi˖-N@<餓phGvq9;֐V1>)W,<yCFªohT:QnNT`[>qA>!͏?f&F)Cůk'q/DHEЇ>Cl@`DB#߮ &m7I IDAT(˽PDXAhbk=cJSy$V0P*VcSJ1PL]amh`uV:i$7F|n|JAΌ );wt9,|'{zw\~>YƅHGrJE !<?\fΜϞ=[ׯw$m\.1O |ɮ^_9_BꫯػÇwbƇ?V=>WUU魷r;\br_1cnuGem<G0p| 1!ssYgg l10W֭;}O$Ƌ'1s^= [2F#`zC( ~w}Ak?|C3y2!`Dk&<3)(q%#З ,[N?.mؼu؞buW]wT<cƌэ7ިnHqUWɮW,~_N~$1 NavI?<f3M_c??_/O:s,]uY_ߣ՗k/;/z)/?? 9&LƱz*{?r`wǺŋ_ve.?byUq^pb}B 0Gɽ__s9a3O> Dm:w>$I]\3N罥rҙfaCZ7k;*XZL 8E*3 yH36) O|\&'N<UbUV9/q1}cӨQܸ|uh6c??\G}ڴi.'!P1^9aѢENe%{N~~{OR\pcK<qŚQ1g|ϵlG幇ψ\\wq:OCZur#R<!kNPd?u ?A~KF#`0='n&2Dhqg0:c6qb!X0b &Jى툃LJN~{o[p/\h$(};iGen:\< {g-"-^I޵ډ'C 4bx"p!6a)>(O}su+8q  B?{DDD>&Xt1zu3qM)? GA.<UF81+k Y~^}]}~wzBEEȇy@y15s]yl_g~i}+_qC8ùϱXwB,j 1sqe?f7t 2FJB03)+.ZD$o- qnwA D BGE^9/`^\.ዸGhEa/cJfY6OKӜ3;y༡r\{wbɹYr|aac̘s| _p)k/ѮqD DpFX(Q7Ew?/~ wDʱd0F# LRx[RDŽ apwbBL*/x7"_vo@RCq ^шaċhgusiރb$&\2%!x ﱀb J Xܾ܁}rXJ5pX!}La,W؎-S#l<VXSpbI! a]}u v$(e;H1nV^.wWI+lp|8+`ܭo&X[J< m^jK;>cP +>#x8+8`UA__ݘQ&B/|O?}_X }pL={Knj=mnB4D\w,<q WQeS֖Xf_<؟WݨzF;[ϧJ56/|RW\g~ю1),,yۼs `zl88>~GXs{ q>sO$'ޓzu1W#`0F /xn4o&#yer51pkI(dN>>E'˟ָ1ߡK?UGNfr ~7iok؁74&X1D‰I+2 ,xO9 L Yo_/&LqƲʳȂ" yXeO{Xr!Na9D~pO9>DâA,<K#M ޸]vBGOU2 1 )'ݡz'NG[0xB<X<E޷-{,cbo~ 8'ܒ9?G?H>a]ƱXv! q-zPs&O|'">n9/8\Ū/Rm^'K5/zoں}ƎZ-WKc1QWR&k~hdV0@DR@Pcb- 1{+=GƏDX؆8?ɝǴ{c=ֺ X_[2F#`z$=%v,Kuvbx PրLD$Hd*0&1t)9(i1%&L8qI}g$wsqmf L<HXkFĄ(ey Rax酧+@V8ᶉ0/}ɉ@X 1G a C V\;#qhf_W!b} b S_=QI5uJ?b;Q0X2&,snk_q]`E~nӞ@zb!l㒍K? 2;/qΝ?µʿLGK9-q,m;6q˱#y}c[0pζ><W|RVk6膏~H]}ҩ'55ko*K3!|2#7;ƘgH۽9Pz饗Mz2U(1F&qE $ /q_tE6>چǏ0F#`z>3nba-@_n>ϻY&(ޤ#t2'0{^I'GUXu,|~2YV:XpBYݮ!D(D=VD0aO :Ą'&Ah.>;rpo{H&CkͺNt{~p! X+@,^rrA bu~!^!4" (0NL1>zuxm鎯Y-XT6nJw #35u8emV[9/4ģ!A Aeĉn8* 9Wz'tNAjq| ˌVYXzEӏ1".cƪٞ%;c%s]]r%ṉO#ώp?x;|;No~gH}F%O?J%r.wt >fzM+,רCt쑓]m^1#Xcy%/ 7Ƃ-`qND=%9P.W\G/#`0Fl=FAuoi&AXOkb}U3\tɹhm-|nmD6/7&,CZ 3%]$"lvDŽUdQa4oFڟo?pWQ>9njIxQ#[@d"X3#&Y W;ǽk#Jg#w垊@Y`byFw֝bH8RB w_cۺ{AXau7Mb ud'/6%pJ&z@D%-c{OF ƪ4h#9;~)8qBC q 裏 $zߩ^.C?-[Cnsҗ?>=x /Wϻz`qM<v_Ө᥻u a v\X1֌/xxלW@v=?98'8_#g? b x%~Tvi\ǒsAsSث0F#`@ cĿށza?]vC-maI+G+D &V㳗hJd㺳h@Ywx5w_n؆HG̾G.[YV" $B@x,<kV=X!?tCX"P X&b]ȌȈ@ԫPrS%+u_{+j1 ęӏh]!XI"N<" BBI%V{EkX`X__ ]-[E\:!vd)s]<NCXܻۋIa1M\˽D\B/?n'0ҧkt,Rvs;Wڅ`b}<z.#4}"'V ހ߯Z~KXIGoy}khܦ+,Oq%'$3G'{a$q$/gϏx}W#`0F0sh#ЫT57޿?Gfw@@[+&}ނ|F<x+>HP.d3b^APa%`$؛f[x+則M].Vm2:X6om "ۑ(\w@n&' '?q 2"F72g<NX+wܡnE@t28z뭮D@D[ƎqB毷ܨ pXKo}y(-^:q&a@>}?"*\0AXr8/ 'yRfGAP3P3nܸ6B+ 2:u'쐗NSgl9Db7A'C8ΟzYAs~uV^ߐ@>/O>Pow^H(V^|r 4͂ }+a~<k\6ĉ$/ ʍB(X؍1.O*gK1nFw~y!窗j?X[7#,N+6ʰW#`0FCĿ3VR#p `v'./_/JhbE MѳBB4_&_be+)O :(Lz^xdCEPḽ%ڷ8~?.Xymbv"|CrB!DJ "رb3X"h!(}' 82,cs7Uki7b$(FcߡS/-e5sђ:nT=ꛚ1eƎ4ʝz/uq.ۊuB(q_W0', \q`pfLD0Ֆ}Ғ\fK>bȆD # y\{maVDkM`O$B[D0@|O8<^9\:[앋 V w-s~z nԋխR;^Ը9k^Ƚu'i5KP|rnj%9+`5yu,okY+\9np!q'#^+'S}Nɴ[w! F#`Q|5yO URRl1b13"|E"ǐ<`]UUMdej֑u'?;]~:zD' xVۨG_!.7!FvdbOL*4Ao-4˵uOsg7Tns<vT+hfѓXpԺ~Lșc V=LCqò!FQ W#bD<k8xŒ qt,&y'ʷi2- A٢?w *BA]{yEgѱ3'pݦO] ,`9 ^k`6'?Vx0Ca Kbo{#!d' ["QOG1:"q^z +GBo,)NpΤt]g/U+?M*8qB ڱ? ʛjhg*?/O̮<<Ҏf[}zfm%q)Qګ !q>z#&%ɴhutm3F#`8pxvܾ\Xv%{j{"c,,-YFZ;kZ$CNP*] 0~}y>'Ʀ>S-}@0u{(#ϧGލR錋#Oxஸw}y\#D#!!H XuV]-u5 +#`0F|P@/$0yaO5xWmR\6m&p;ģβi,wl#饓cgLvq+O-{Yo]Kh,Hq-M+`D?qEXvm+4#`0F#л ׻zg7b[giXR%j~^Nm`hn dq}bqF#`0F00F.Sz#`0FG`.+#`~ ^%#`0F#`<<C+#`@UC|>d`ϱwvze0F#`:MĿN#0F~*ۡ!5$nޮ*\ PP\K#`0FjK'F%|Mf@o#ym~O//_u;* m ?]Cśc)=p:skj#`0FGgΤN>56%RיرFHӇ)7)KI}za}5(QLo)S:|*W>a{d:k7IQ_ݳ!&_}‘FB d+ !#`0F|Jbjk>əUF9ѐrrVm1n2P 8l@#Ŀ S)5U+QRԣcBM!uu >f/|Ne!i%bvN!0F#` R)uR٢]?Vb$Igɤ5xp~DaZ,Bi@Q<jzYе㜪q?P0IS~Ω5`9յԭ4#`0FL +Hhd8,RſO+)dM`l ~nnM/Jno^~p>ɏĹ߮#`g=sof WK,^bQ[Ŗ8IWJb'&Qk;%Po IDATUJ(vR,b H׳ G fxZ3)<Hnc^/8K;j:GڙiiY'@ h7_ `wءC-el $ VhkWUW|32,LOHfm(u!֥ `r:~'7\efZ3-n50=j֭nii= % DZ4Օf0sNN_RW& 񯃁+9,w,X߲Z_7F8b$&\Ʊv5IKP0c U$u+r@ =?ZC̝[ fJEIf5={WiFh @$uū2@ ĤEV7BE?_` V =75 H)|4V6|UhԲ,772335o ]KeUD@D@D@D Hk{QD@D O_+Z;\Ye555xjت鐮LE 7XN <'edd8ObrWCTv$uߡ灾֘ڏĶP(Ԭ;V<mލ+;;CˡD@چuY33-զ٬"H$XOa\%u@# /~=ÇۢElݺuVQQaz06|p۱c<x̋z|GuǍă &СC>QD] PǽeK굷 Ei !(~D@D@D@D@.oD3:Fё$yZ ^z%+--uSN/^lkƾ vrQ1ʂ;ܹso۷ku7vW_hU.R" mN-՟Ŀ6G#cRپ}'bG?c޽&"H <vM6ٓO>iNb'On2e!ٳgۂ 8ȹXa)8p@Wio&MrBv!,R~m'\uUtU@[dVTtmh1{ٳgaGQa3x!->rJ$ZZСCDr͛ga_ 4D7oN͂5\2uޜ9s?D:ߧO[]]ʊ7[͛k#Ge8mf}u'Nt˫ڶlbeeeڰalԨQnD@D@D@D@D@D@D@ z999.m/@&$f&S$8uk׮=ٸ"a۩ĭe˖9!s=<qt}nxɇ~Y"!#a_>ALuy[fڛo*4(`…..wD@D@D@D@D@D@D@$DD q/ݰa0!g|\8 Xwx/t?sww _UUUNc8 :,p57PcfVc=) b TB:яK,1s8XXqܹӉ>}-E@D@D@D@D@D@D@Do '|Ɣ ȝxt<L(ƛnY1?|ljiG<V;~x{ꩧwlƍrJ78Kd^zk?;wļ>۰c&`܄AD0ӦMsUo@0$dD" " " " " " " "dˆN;~ӟYh"k&la W_}lXusY/҉]Ƽ8oÍ1Qƅ^h=zoۖw'ղ)Z=,!K}A~rB KXz8,?ÍǾ'x-i7߯tkf=$fe>>+VpBmlTY7d \\}9+4, >0,ԼPүlF Q 7I%VLr>7Ǖ2(w2.^f̘oر$^O~S ?s\p VN@_ Cċ 7V,Ѱc?DBV~XaF@8ٰCBBkNkj;!$xm̘1h"O3ӌJhDc\?YY{zpFPYX230AØcUc&"" " " " " " " ]Ŀ\p,{qVjN\psEbFڥK:6~sx7bX6%dY=ڍه#`؆d_x7:VXέƜ?ѮJg-3ۙE?3g:qܹNLw^`P>D@D@D@D@D@D@D@D VN|СNc?\uϟ+ĺ={:+?ڶmƳ{饗uB`ƒk@,հfr -alu؋b$%836!eヵ$#Gq")+ـN{1#22/֒G>Y9_}/8EںlV]S{$4Y:k,7/zX!⚊E-b=TC¥;p Ws9ljJ<uTCZn]|/YcԨQNC7cx #v&yc?PEzpAHed&a;4ه.B!%/_no9a\d@8U;wGm-\jG!CG ٽ^cYD(>jd#*^Nj)y8ca؆B4)S 8!㼅mlp@~A\ͧ qp &s`L>&@Yf᲋Ta8H>|sݻwSQzΝ;-3+23x:S<YvĢш~ހ@0ہܼ-={=k[qMx3*+PdeY^n i(ntày ZOP/ QX|J,NtaLJX o߾~WҋU~.^5,žS%`)9m4Ak~rH8<y'" " " " " " " >}yw.죆A_l/}lAfX2w<jg^ld=vե3[Pȝ_WWo-YeYֻWP}J AKKx%+" " " " " " " "<nE= ?rwߺBi,'D_lGD@D@D@D@D@D@D@DP+;Ta Y(t`X~#S{/Q%%H_Y(?~z|?_ +/]~s/%%%RE@D@D@D@D@D@D@D@ڛ@MmWTdFd#rpnbYgLiהּi"HEHIJ3m`޶b:*kl V]SkmQ)U<)uY 0l_|Ϧ9^ge1#_a{Hnh@7z!辛ۮudYAn*e"Rj)" " " " " " " " B ';zz Hk@8mh4jh4A" " " " " " " " " [!*@g D:C1T8 ?nYB)@AywtY`a¡BPBhAK_VVveEEEؑJJJ#FZm"}#Vm@۷ƍ;|Ⱥ4ѣwxڱ%к@ `$A{DHJ[D@D@D@D@D@D@D@D j5O ؂;ٹ!" " " " " " " " " mC@_pT," " " " " " " " "t$%%QD@D@D@D@D@D@D@D@DmHkED@D@D@D@D@D@D@D@&HKy3T__o555ƒnpح߱ojPLd'///4# OB8t-\֯_ovSlٳǥ;j(۶m߿QqꬠXڤI8n89rdE @*JW+vZ{嗭϶;Ӗ,Yb3gڲet'm߾<h]wM8ѝ 믿nzر>ַ喿.sB$,@JAޡ%hiU6l~ډvrݻw/YaG38 Ξ=,X`{ڰaz߾}o>?~eddkPZZؼ{%A0ՃwzL2)" " " " " " " -'>kM)i.؊l˗/#GXnlv1vm>Cww}צOnÇ 붏>Fa{nvtRg WRR^zل s1֭[|wޱ7xX_nx186mdNuq>ovx5͛u!րpFLL{@&p((pZ$om|M6Ʃ7oHh矻BŋmСljh"wɓ-;;1'~͙3NJlƌκ 1_4ocsmX/mΝ.{|p7b*|HXQQXfffrrr>/&|Ν܇qp3fc~Qݻcvq)T%-k֬S:3N?AƧcb ܀b{!C8 >o+s=. CtDW&ʸK!!Vp~vEرcc_}UcٽDM,X[!!"2H~>ʕ+U#zJ?@@D8Ue " " " " " " "u 6pRuY"!B.b:h#d?֭[-Uq%}YW_}u>ı+p,{\}|Z2Gl@cl>V|X@XA!q>X&pJQ1ҹǦudׂ%YgĵsPŠuU L!>d :/F!hyaLdhqX!0DċVPP(l!^{O?n{;80>/x.!'M̈WXagy+/c'bՇYB"~>3qyΤT>]-E@D@D@D@D@D@D@D+,}LFqF'}oȋvYqe>V7Y܊LŒT߇)S 8xN_(#~}M?B+&cJG\byI89޻.J@_ .<1c!"ZʌLLL؁@ugc|?d>0v .LJڪUyA̟``L*5NLg5&&Ha\uIU$KĺC ^o߾}Ƅ+wuRlab5> " " " " " " " ]k?:GpsTW>1XWT,p9r?t|Љ~X>CiUUUn}b'r IFB>;i;Q&9)&>D`]~=S|8\c;D]i@_ .a6gg7tPcB?عK@\Yr]\Xc,qc;~cUEc 2-ZdӧO?β8|iĚnGyĉ qq^%K[ /Y!ˌXAR~N%[8 " " " " " " " " fZp`Mkfsubbl`X%`l⭨mߺubv9voN 馛ܸu֊0p? BiV2f"wc/!|"w>ĘLT[/'baG>JdVd#:M|xUW5 AyDWTGO%H$jJs<8Rj7#-Ulc=>xAkqDiǧuuuNdC&?ٳ|!~,XDO܋9gYm]GفF6pࠤs[\(" " " " " " "&Pva֣i!X$ƌM(/`2~?‰>ٹD&KEζHr7ŭ-V" " " " " " " "H W1 ..*" " " " " " "ERD@D@D@D@D@D@D@D@D@ OtRrV?yH$$:HKP"뭡͔+J@KKKپ۾|t8D??Yu8z%(" " " " " " x.9"/Е'? tq(" " " " " " " " "$9RE(" " " " " " " " A@_r\BD@D@D@D@D@D@D@D@ڜĿ6GE@D@D@D@D@D@D@D@D 9n6"QH.)"zcb ‘Hg( " " " :S IDAT" " " " v_r-;;C(E8(oNs1Urt@$uk@H ,#m*CAӒ:8icNܴ}xOD@D@D@D@D@D@R@˞SDʫ@jgtqB@;,3-t>"v%~ΝlƾY}lv'K 1SAD@D@D@D@D@D@ `R9EVuLжiy@khXSS #QA ۡ:(--`o.5;+WLKG-jyYi#7m#/w_8| (̶Usڏ.nw;cE }`~=pPHYᛓDGRD@D@D@D@D@D@:* "Fvu{[ȹ֚YnP*qxM%p68׆9wܷWد欵,3ZZ0h 6D쯟]:p6sBo镣!l[&,pVkƮvńV]`۷L2wHm*9bc&A[*-+=d/pI{e4sySXD@D@D@D@D@D@RĿtʸ=Ŀ݇[xhԶﯲY'[U^VSnb-ب>ܶ .ʵ}$N۫JPeq@'!;\k,iw;Ⱥe;1YR^cW\ǂ!+-tք[ZZB:cdl&~=\Vn?d~we+1ÔOl[ܶH8!j*6`c)"" " " " " " G@_]3XڍBԡ[0hw73wsn//n>Yam 8K;=@va;pvwWE1,dY rc-zХ¢=P'[]|3fb1wި^n?z[aSkƒ#6(׉>G2 "җ()zmhOx2;݇ݤ{d[(4 Fmٶ:sY8P~X9Xm|}1^yUQWcVء:6X$u7M`Xgt"a7gpǍǼ|e_0dV챹qʵ+g}$+ץEIWAD@D@D@D@D@D@:&qyjjj-YD fA[xXzE"g+((lCha7݄d}aB-s"Coopc=x= ~iYiw7:_NHdr׾stcb9H:Цi荸 Ծw0tb?hu^8Dpre[/笳1YQL[̍H_zc?BAN (^N@@_'^ۧ~j6lpmΝN;vm޼JJJ@D=D KOOo,B bϞ=֪rb1cچnLhcϛْ{Ȳ3NQiʪnd,+#&vϬpc'U4NfePlro1փ3uhuVcrgeXS]e5[6lF>lOMpƖA" " " " " " "$LZ^y+//wV~3f̰n͖/_neeev饗ʕ+mٲeN8[lW_m'O' "|O>Į:裏]tEvZZnӽ-{vv3&ajS:?a'beؙCz]Qsa}' ̉}+;aW^fY*j<zm^2dޚkmʰB'j#{:ADgO,cم;lf'T" W  UYYY< Y cZv=쳎|=zpbGv);a5joٶ`gاO9r޽XGܻwt.X믿ՆERQa9[+{]a\1ҹn+ {¶~gdsLچH[^Ugit!{ӭ=' ¬n@,]׾{PPhgW5ڞuV?+0 e-73ͮ׹sfNc@%XQJ@_ ,|`+VJs%\bNzwm̙֯_XKKK7ߴs=׉X~֭[w.9sXnn>C۴isζAqL7x G>o&+**r%n\{U<h_}c:i$wys\/ b, q/F,7n\H|`aaٷgS 1}Hm+ӧ:& nu;{3Ҭoaϲgn[) qn>b!K=w6 iOO-G'68]7=-dx7`z(pRD@D@D@D@D@D@㟸R[YV<Ľ#FجYl6|{5Ç*؀+na…tRc$۶mM=-^ \7p?֬Yc<sm._ڞ={eicWXXeE>Xa~|`ǘCDDܸq=裎5b%5!cѢE.Ύ.sgHy 60~p0g7~@5cm_.:|({6w;6o3ncV; o\<o.snw]8.Wl+v[~N_AvP 7[M]1Yꎉnb6sB!ztdJ;:g*_,fֱ[~M>Yqؔ)SE{grBGX1}hל.,n-ۘ3p <xC"tx.p`oÅ#GI@CWaÆ5Zb85|x"jE1o߂,cPжc} zuBa(pM\`ᨛQϮi7ϭI{8>3{δ=s>Xx._~=-̌ a}IAZl'/v\Ai,\K*U%V={?@K$d׊ XsL4D`~E3pku;}[Y1.X( j1$~B!ֈӦM3\."el@rs D=,ox" Ǿ}:?~3޵1xB8AV-Ӎwd%-wNd5OA={g^'VnC{8ʎ{k"j!+;Rk-a۶wtr^y:ABp ?on<UwU;?~c =_w~f}b|A{t. " " " " " " "Wq{뭷졇rәg,^{5g(D+-Xgfۘ1clX6gF"&nSan;/5uLGn֊i˘ \,7(+Yg`,,|;uT^r֐e q'+7)m,4em H-;m7٤GEcz٦}G7mҊ' 2f c=vU{Kmpze큋; Sۏ/aO~f+GXvQKسp{i.dseìᨈˇ;u 7#0fmCĹP{I@b݇O#  +3uVϜVx"!@a;߮]lNŠUC`l.Dc:r[qq=c^bpfr%K8Jv X1c0dzϽ`C,#$) N a=쬡6eHdܤq3nn—+Z'1 wu v";_Mwuም/Ϸ]26u{[tg :v9 ݸGRpY}lٶC-;bto>40|`,oA@_ #VyXamx/j,D U> }^ډx}UXz}X"2%~c؀E BbVVVXz$bq$6 oĉnfb&R8/X+GDA,y7/RrxZ "q<Nr3F9X,#DZoHQ /sgD8\1ȹ>vTe;j]h 6qPc{AnQg-8_^li33#{H̴]9O^͑vD@_ &/{9wFvvo޼yΒG."+WQF7c;y0/B!Gvb#&`V\\`1{|Gyk„ ڑroweǭ.3fXQQs~sb*~X buUW]ßxy%ܝ)a/еLXzXy1x{T<:f&b'舍|Gsd996\T$ W k5̙<q?Pb?Bb]-َȷi&7->L<Yb vʰrc6`$z̤Nċ"audwy%%%N2Nsε+V8‡s 2 V̎O:)Ϛ5Y&AD@D@D@D@D@D@D@M P^Q}bӜfrYJa(+Ba vw<<gyfΜ<>ƾc\:x IC***ﭷ~9A YE8՗1#q ~ۧ%+HDK;#yg"<?䙱9O>5Wgʌmۜ@5\(Nyʳ̬ӉR%mA͎xLKAD@D@D@D@D@D@D 5oN%cKOϰN3im<ZI `ƘBUKj':gB ]6BЧqe+"$VK]2\p͚5.ܸA*BS 0B! .ƍkUSqlĿ~H\*QK%8,N5H#Nzl2E\l{lG#F"Q8M[u\JID@D@D@D@D@D@D@D@DHk'VD@D@D@D@D@D@D@D@M@_v" *ZH4J_D@D@D@D@D@D@D@D@ډĿvhE@D@D@D@D@D@D@D@D /"@GE@D@D@D@D@D@D@RĿdʰ@86> " " " " " " " ' &V_@ڔdצXY'"@݈FD*Տc:ՏwMU#v,S#@sDN_+]hG7 X<E-Lѯ%2EY ~t+r_?c)O 8#Տ@<= Ŀ@0(„^>%AOЧOSWPyo/;wZ߾}--ʢѿ@JUP‰&М]xWj{YjMh{JKKm=UNj@'P]]meee /)?eZyy䨓K  F̂P[D8D@D@D@D@Ys&DWMYvIkPGnEuȴs-r͵`$GS~GbTZ" ]iʲõw^+((E׺w:UiÖB!0" " " "O Cc@e5ggF0O1!3._B[F0&!D$9S(WZ(rr󭦦39({]]P0䄿̔wSxi _"-L'>'Ň9qRl/fYGZ?g[yeeei\ʮ@8-j. ,HkTډ@ £o ) E+" " " " p}\hγH"c1&fֽ{au8`6o~ihԲ>-]l Sv/yFe\_')e#pZOI>N*@^V'!U-" " " -'-f ,`Lj  |ᆰ/޽_l9v:2`λrKv[% -XYoM_Y-#A`{6U+Z$p~$iA 6IVnVUi閝iN@0,RcE>~O!3Efƪ&lw:>WJQD@@[<LD@D@D@D@D@'Rn4jpgfYn,??;.v8Ŀp8lEEEG_l8:K <뭮]'y%(Q$& //&" " " " "bF+bq<MKNS;\VFIO4~QclF>Z Ttz:%VE@D@D@D@D@NH `(ƋOecc!JUtkn&D]dN!xVXXh[QQsss=_]]cSKݻ{@@8 rFiQ<Iv[DC9+\4srrEN~t!pTkt4?G5pXjIZpf.{};|%넉'رc].2{n>}mgv.woMM͛7ϥ?o={tnDZ}2q.|zb瞳k֥/[>K,qYbLx K@"9b44n_{+EZ|}v뭷޽{w9%iئLm'!PZZjomܸu,ƍg_~먭Yƾ wo@GN+oO'K/;˘U>P̙3&-E|Ƕnݺ8x8z /~5non=,1j]vm6!xa IDAT3<.~H:p!0 B`Ŷaۜ(+f{zjOKFy14ze~:cx~x^Yt]tEFlvWۦMUW]eK'?'|Ht̙=+ӎl޼ы/&M_rA<7;DF/ >k,<x {n E'}Oxjժ㞃)ȑ#O]:ZKG@#@?woxp5jT5z]5x44[ngy5]wq _gF@ ۷{15f߾}]'s8po@|gQwo:h:3"7Î;t6Њ";wK^ߎN}{l'N8A5k?x`c~w-rZѣ+hMt4X2q0 䎡 -)))|;Nh<Y+"Љ +t?^uYyVPG?5 "`G՝wey}v ?1]['m?' Q/C&VBdvyJ;F7B$t3V6l;s^̟? ?|<Ӯ\~"p:$=+o0MKC8Gƛ'Ǝ},9N!C$1zhYCW_O>uFd<(E{ߓ&LpFEPc'gq9뼝7сDm6o F1\:ƚ BF:ɼ߲eOl /ÛdޖSg 3E<&VM8yꉎ.4,(wΡ<-O'Dq76f{Gs1<8qOq/q}Cr<|ў6ߗ- q"llG{#7'~*uzG]>G؏xCۆia9XPpF`?iDA=Lj@;W}+ 1zA x>G8nDDgqD#K3 i{/ (}9 ?WU%/h/&O^ [Wfc%C\hhH5}tnq_RAڒĿD -rѸ$-oY[o,:qטƉF^XH$Аy)Z~-E Q>?3 c ~^~9>k?]]q%~q᱘Btd\DD :#%"QxzEǔ8e0A'N .oي+\bS M.oy{N'AvK= (\?1+k<@!r#y7 B8!`sNQ'x8$,vz)WG9uT馛 i!Q:񐼓Xr,<ؑ/ڨۭp bq(_ -OF@A ^"џASi#GDc?/j~?K[D3.\hsq?Ex&'ӎ74 R -!?tx ·+^sX%:mISq@@hkޠai 3rx`㡇F'xc1LرoZ\AM#S2=F:qԧ@G툂WW ""F у)ه~)$>ƓA󈰈肰ml@@ұ}嗝 (n-+2MñϠt o|Mg-cz XL=}@?3WGh'{{ { !z@C^\<imXS~v ^{͵Qj !; c?!qCub]˜L<0JuwJ H{J/x^t%5pEÐ}cy`?K^`@c-9, }.GxrKm1KM<h7"O‹^;\}x>/h?˲@_7ܼ_6uw*tt4< nC#I #Al3m4P7l<0-MZSI'@"t!E=h*Qx1McƌqbqTr>-y02Jo;oSӹ$ D} {d5灴<#Qb!H]7bXU4,8$5ue6 v<Lh"wop/r }~P<aUK{@!󰇸6>ċ@^! /PG9穓A}RcS h<M<?K'Jy6/@v,QO7z><p<?AyDzGN _7y+;$GyĵOqF[E߆h7/F;\ # Dy(cKvh-%EaFFYh|hh i$i)X%:6L<[aa+ '#Ac|#H :DNx :Fd(6!n1+np49,2Fm] ,FpA ]i[%.@yqAQ̃/EX~X`DcܯkXm1pw{Z|8| ̨l<Cf7NƯE{KVt- *g2R^`DW fq>-&`klgMx[|e9q / %PlMXA>CX!0x#[Nk<mS! Thl.E1pѤAuA@EaDXMoon+*! 0떂$u?qAL`\b'2'N B: \ \E|ǒ>N_trGDy[M^pw;ٸ qOq|'ip+8TC8nL=j>f;m ?XBq?t4㡊+?x:iI@0HcJ<c>];uzH:Xslj≍S]g׻6<<kx1-C$&p,B:bc; O&h3p'ch??/gI|#'}akG~?DFF;Kbڤؼtbv>!핂AUq@ZQ,|" vƌ-ŋ3xQ7ckrƕƌ@\cP:5D4 "hD1&dfYe0ӡm2MD<& PWxb:t8RoxMZ_|Eg%%Q#БxN$y!b>c谝N+X3b?#ufID^SN,b\l`Lgx80N$F=K)_h 81 {5VP`GdZCwn"v+GϹZuPiqG$g21޵|W]l ɱ3%qE.7(? >>П%>'|W{Oddo߾Y3~9CyQD,96!PHvv aO}hCP6%,( /[̥vxFj.% tt4XO&hy )Cn \;Xaف>&f^̈tyУDAC$C9vJ ],9'K<s>ޤSz58a!q?1ӼȇP=N=B!уfs00 /2<Q /:bcHD@A駟vRt1MZG6~k:~&mX"h@!poxƽhνP>sPgx}8ZBްZGpf\K7\Cmu|Ϥ__wh{YC'uvtROD ^0>WqZHg 蘭ǰ < 19cD8,6">O?gu].n)(<2^yr y?ɾo>Oc& n&9a\(S 7ae%Oh"bMAڊ@AW*V#"jQ:Pbh[DJ[ŲW'?Ez!2Ѐ+@2EABkiF@<AsR? M<t6 cɥx (\@8=,iPi&0eCe:}<Z&8-?x##~uy~#P/9׋:ESM{G[s3䇇ʦ҉ϛ~'?]|j-*%z9kR4Gw}yfG ?+3' ?G^xR?NOA]eq z;-f7/,9&96g?X~cǬXq` ȋV7v ^ƇG}ԉxLaE'2 jm !,|K.O~" n$mLZ܏:ՀL]IOϰŧɧ%ԃK(d$$p౗6PFƕ"FqZB5 M:MNB{ tRcEө<`)@skdꔏ7יv !EI&9ĴiӜF ~??O=X1+2#bog\ڦ;fr/}&m\|{A/>fsnl__y&]`cMZJĿpCE_3 8H X(7_B Jd 2>&F 7h hbE16V=9rΏs6EkNk*6~DRo]"p:NS XΎTVn2;KsM eIt^!}ƺoC0&pZ_$`nksyr#PD蠫sMGD@D@D@D@D@D@D@RiJtnRP!Y7՘vTW!DFD@D@D@D@D@D@D@R)(0Y:kβ`08 lפRt,pj@THuWmHu,E^t_D@D@D@D@D@D@D@D@:7S:7ND@D@D@D@D@D@D@D@RĿԿ*4I@_XQRLܷ_7RR"z|+r,-';?/ci tOt?RښE[U|@ԏUe8J"MZA 0QH(߭"Х ֏dv ·@u,: ֺ vpص~_eN1@4pж׆Bnn|:@}}}ccRT*":h_!HK<@ػwfnc@سgO)J"mHk׮6QQ@BܳۆF/LgUՆQUUeYYY+Q Տ乖,SUe޽%V\|;wT$?^0$<~ h{谶}*QRoCC{ "5ՏYhs@ dd4Yed}(>T?q%J8x_]*_?` "p<,![~W[ `v'?A@Ϟ=]XADkԉ+**X&Oԏ^z'zt:EꎺR6, {Zf~ч*,,/oH"aiYYf[wMtx[cYY @Ç'<I,E~2]m_fm=lP-hueԂ9=T3vZS6FQQQa+ViӦ9'YM端/$GnL(" " " " " " " "RTڑjVn#2,B,\wꕳ-8˽-kvd={8pC||Xap믿޽M"e˖ի{+ c̉+-ϟ? H5\@Afl7 |{#9hРSؗg{nܖ+/>ϖ``Y2)O|tJoYd{12K+af iuۿoXEV%n,x{=g ?3C=8 7/B3y͛7>l۷oR2e%`Iz^x7?ECb4}ŋ;X1H8nOZ~|{7}\-< qG8bmܲî";w++" " " " " " " O ĿV_[֥1˟k'7F,XɞxU-yƎw;޿Z #rI)0Yr,Vyݻw:K?"`"<ym"!^tEͦyA'ya/? 3g'3w\ɟ7Zaȸ$sO 5k(,h}i56)5J]DWD@D@D@D@D@D@D $-QZչz"CVZl_KK;,w,k{;Coz<~A|9r 8~xСCϺm gq"r 2$6*'bŹv9 ¦1`0}]wM4}@lXD = 7dܔz)'Ɵ-E<&{wvzz}pZ&YWD@D@D@D@D@D@D@D F2jVai[8BLѰc5e]Nrm;_ |RDرpӽ8|lh/},ٷdg=?|@{wܥv# DA qnQ2^[.\_ؚ pʞĿʴ@GH/oXڲμBEߴ u`7GJ-s`3.]=.k,}Y8%>|s}Wl֬YTL<sw5ƚ0vѢE~z'﮸ 7 al@,9> (" 2+.x11v(q IDATÕ(}e6̎貋?h^E=Z'EU~D@D@D@D@D@D@D@F )ĿHeX&uI0z1dU-~w,9ed2\q]j9m7jԨlf~qc-8sL[reD!X-X"Njo߾NMIxǤ f=қXYUc7XZ(x 1?񊥥,;;r7qh% VE@D@D@D@D@D@D@D$wdE*J,ؽ S<ZWiEci=]ǖK7,5?YqnJ8Ŀ}zҥKbaÆ56ܸHuť ۧ:⥷.??~:ZFF,㘫o|^)w#Gloi-n@Ɏ '&6H a/ZWemnYbe ,[dU]dy0gcHcٳ縱}<,.6{UUUtMDfQ-OAg3DLl8n;;k~#: !*N8(!ꢀh@W=6>ٜ۷~u2̓y<'Onʈ8QگhDNHU'IW?i֋vw<SޞΫ.-]׷cnn~˜ͽ+] W_uh z&?6m 诲^Ј>M՟(D`*" <SŒhjWqmz"$@w 6HӆҳBE}GȦJLT )64K֤sN\'^mmKmAӜSͺme"ʇl L^rTg:t~̱d2|A}$dzJ+c#e|lvX)2;>07Eׯu=|BH8+5wqǕ>{تUʷ 'ҥKwzU>Ǡw+Ů/-o)?яʋ^:׾V.raUk֬{zxhh(i|n(ZS_띬Rr핗o2:qJn!| >hO~RQy '_\]reyWN>/A߿tI Rk?ϫ|6ڌ{gY^#_}le˖ŵ~d(؏#CFω~'65S"0]@ݞ/5<@9^*mK9{- 7:b}wpȲ@"V>ܮ7^}Wm?]a?-<Ha<)(g [ &Ie{キyG]N9唺@%OW?2 v[3 :zjKߖguN"HN+-ک?My>'x%XsycY4^eg~c<7lP ?pͣ:j^<We.s!ԲuA;m y{!Kk~"/İ~_m#IO'|}SXHGSqM|Lcu=> 24/ǘyi/}7Dܷv;W|fe:-*cVOQ'DI?nϾp@C(85([_Ԕi3anDN h\w^g>󙝄WUַU˱qTG,o{۪+}ݐw駔n(V-A]W_V浾ܩ|^|w,P 0"[y%\Rs\urxUWUEo|*-(FԯZS< 9-R>D#< !*Y- ׿^ 4wo|S.S"0xzh'u 1̔_bEXs;DYƒ:Fse]7nsZ+&'{%@"J989,< (0ƛc9އ/jخ_jo80cGMoN>6Wr9 {׿uaYc$mX`>2搭s`Xp2x^W=ї@PС7-v`W_=A;s|70`sp[,=\<.Ȅ g~&SdM _뼗eޢܵ^[bέ@/<;sMyph|unB9Si{YgM_yw߽}dl@GE]T2ND+cX˽u]ծ1CH7CoӘqWot:̭aO;A'݅@w8RU>{q;&o|dsпyMT^$9j~;|}xJu]WR{[Z RѠՉ tvj b2d¦E4Z}CgCz'r]Ok pGvH?2Bps Ïc̾?P˔5\SW(6raڪ"/~ңH(s8 G>ZoDD?z_ TNpǓx(qe>yTH{G{^(C3 $f6x sV|(Ɯ  j 4Vm1tIьU4bOF8mDvNGtGn3%@"UeD%WL(#z-DxS͂&N=l{Ζ>>9H87iBOp6GW8 礣W8_8U/_^|K_'u5{ dr0Гl9 _b駟^6=,2WTl(A.Ed+igu 7Tg!"O6Y89Ȗ:ûpmU"cxNu|ot֏y?OWY0[oÖbPvh,]N\UX gfi&`wڭ0 kq_'Yȿ`dqy!{X2u']XP-/[{o)Rzڊӯux]~K#K;x509#DhuvpRD"&aA->~O}jA`B%34Hk DCA`bnOuSiӖfN0SA53mn<P5>SVx$^$ ^;ц?D)eq!1^JL1qAD8 ZylXTOd2)_ D~2 7W1Ǩg?[yO8$^PУn*sj15yM|1VV-kc Mz)V]D H.@maeтd<0{!(bOy- 7;#q/A [#.訫 y.6G<9sspԤv;Q9k&lBWWD hp`q +\xᅕW噳sD'k#i 97{T3M̃88$2cAys 'I7q/-;9(;!|({' =Xq[P4^%c7CC9GV9=t`ιo\/;1'4 dLt c[;*#݁@W8@1%?be_)C'7uH)oleݝox w;OJGGT!@% OA#&`%!@`$ν '1A!\V\Pʨ6no@{6u7?xGmqms OV|m{F<N,E%QP/Fq욲'#%9-b;( I(*<?t'!+*J<IyNBmi!ӮvD)#bZsd:h<&W&c׶L0zW>F`x&jV+jEutȄE 61r-s")CyB~3%@"tg#O[tG9vRGM䱟L]k s 1qW/t#M{D&c߱D<PQs66W0zQ2%'N$s혓rԉ@c y 9^?e"&Rqy[}%d /*Br~q6jɻMu}n `hIg~[ kdS^>`)iE&e{7,a1Bz#$1p< u" fᡍLݍ@8-9,8}e?2׷eSFW?Z={ O57me+޾=o'"o<o'LOh9(H 7xL' !j'9JW oj'%J?%+%Z=(ԢQr̖cV)Oud,^?aOeӦe'fmuU?)Q(fRkB3Y&5|z=uGWERT'7YV(7 U!?F)IjGߜGϙd14-ĸogt1(-E1!>f_+3.EQev' 43%@"t7ALƛ= ((1 ǼBɼpm)Kwaa~)b,ogEՠcz3›"t}ӧC{3@_sqx϶SȇzKyxk_[l3 #'h#imyMEŶ\ ??ǠN=O܋{pJMdS]=Po~c飈cܔq 0؆S, 修Dk:27e75_ede7_zzwT<oe])˼C+_;x&LU'KP4dCD"Q9#Y6dР/_U֮PC//z/|{c+W/>ҭW2 G|2KCI9g@*AGe@)k):wdR4"lѣurVϴǀ0q[uy=#jzqB0rHVoN"<9a#fM&cMr]]Cg=EN N)DZS$@"UJa %[EY| uvHNrDCVŢT8-G~褬=AQv2tiޢV:vm("1Yo!o}g]gΒ:N?x-eV8A65OFg*rȮ#2q/-zr*zc,7C|܄h,No}|4N51_`D6#~DdW :ųLavNl\G1=[yt) ]+=}eUz,pYw??2pԩW|9FWl}螲e`e;t3el" o北r:j/K5gnrۿ1 !xJHa I)SGFfK1ʣ@D9ysϞq{%< E*YUO zѶڭ($#c*3EőHy18$SLd1N? J@ޒgQƗ%<)J /rDs6[il@h?*o;Nyy-HD{? qQD3&}#}{_3@ފϗD:l8 K h5L-#hS$--yʔv'1aC" ZF;qj&4a[Eޙw'_կNv^̏|h9 ϜюKؑm_[ 6"giFt-ى1FMX=:;ڊI޻v{PVL#/lcXz'Zw968o~o{J' ?T=e=_%&Cc,YVN JPtٓA-Q928mofeGQ>חzEyy{)PNV U7{֞>snPN)X1S6"c }Q^:F=G*Xf1Jp<+>O(:>ȡb "jspM )` OhpZYz. ^0a,6Ż&R LO9xd(:2ExDrV[e42h$?^ tNfᬳΪ} $1Hو}1%(Q3T3{y}Ы =DͶa+w,֊@(g/3bWY_:ؾ5}EC '% EG$]Cl.G2>ce9<N06}86l-Ll&:ls7m䊳̫x:궟@rl y޼sb^DeW,%DFV s]Y2J9S>t+D_,cn5xN[x| hM}[W&FQ'݃@9c^Qey2'9UvB?һ`Vg^pD7U:e۾6UA4am?}(kDPIq7ׁ߾1V$A٦%pu!G6CYPG8"E[)YF:h3 du(\-F2"|)Q.N^Q[7@WC0IwYP@y L842y#/d?U8W+"*o);HnF6 }@g+a۰$3 ]c46I9-&윂H"8b -v:"5JW;4p<QT? c̔O#<5\1E8)#Fk}nceDҮ-9<ޤ?dH" ه:#}#MN]v{S>ʡ%~G&4n8W^:1bsrF*cKGäxFcg$DGK(}c!гzƝxYrK+sNZK{ _Po:lP~e||y'm?a LQ'et&UcO]! +FCEq~O uKu(eFDJ WխNɒ|wUiz(>KF D y B:Y;&8W9>Δ<Ya|\ 42Ce%甲icټdi 9hɒ:67>8C>$ }kt(qyM[(tK# {LOgtJ$4'*/R5xJOdyF3=߼̻?)7\[ez;B^C'Ne/ s_M msN6ݐ6(Ӿ{i(۾,<ʵ|T?d(ߤ٤WgIDATH :9C|Nfzs79Cl'xX0?P\|p}Kk#vF|"B\4cosPQ6cƾM4bvAM3DZ]OԮ+1?R!h1|(&/q4K*2!K?dJp]YlyD Hkty[ aoɏz~Sn].~v}m2:EyL<F$x|D4¾@Ӧj'582Q~e'*S^kAMMmi^o)Vmdw:eC|{NSgҟ=m3LW~ܦw37-׬@"$@`|Ӡ4"{?E|l 9]hmo6ݳaO3g0soϖD HD HD`&?V__oHݲ/)cx@+};Yn@)͛gm֯,<KEw"$v<ID HD H}o6,XX==p_ϕ'WXTz.,V";-*ۙkow)eӒg|LJٹD Hftd"$@"$@">嵗r];:Twfy{ݬ##eKN._pLxz(>HHxD HD HD )eoWcmN}@umR.;<pumx_L@"$;H,,HD HD H=ox?PVxj2?tv 4)LfN{UټpQ[3J?A"tydoD HD HD9Fsh^OO.k.<~euee|lW{GGG˪V%dTslK~ޱ2W˂ 6E1%\A;FGhn:Wf.Sc"$@"${ o ys)cl$οp`:iuΛWo+7%NE:zʖm2.cn ο+&@"$@"0K<?E9nZ8:98 :tu<Q]p@"u<Cx_ƲC"wOvM=l5#;҅tC.87R>fQd"~D<k;tG4 ŋڋg1Ʊe@Sg$Ii@)3}G7DM6U5DI1QȔ$;38=GNvgs l'_,n!w)J;z6wzA_ī7n;7wLy"lBW(Te_&";֯_7̶Y׭[7kM&p#B<ۙmp]vu;g:o@<,]YD HD HD HD`"<'ND HD HD HD H@ Sى@"$@"$@"$@"$lE eD HD HD HD H)Hev"$@"$@"$@"$@"0[Hl}rD HD HD HD HD` 7@$@"$@"$@"$@"V7[\;HD HD HD HD tMPf'@"$@"$@"$@"$t'ND HD HD HD H@ Sى@"$@"$@"$@"$lE eD HD HD HD H)Hev"$@"$@"$@"$@"0[[IENDB`
PNG  IHDRSm IDATxř U$@ s4ccw>; >" "#@r+vQf{~%jif6hgv<3]]]VU>OD!SZBD"ѵ҈@ , " " " " " " " " " ]ĿY*O׀tUѮZ0KD@D@D@D@҅@,m۶YyyקKw֧O iT] hvũD@D@D@D@D`w}+Wx<n={pX3NH@ΖY=lȑۆSGwA`H" " " " C`͚5V[[kÆ H$NiTr""Er֭[gw">4}8*؃}+**𗓓4$mL " m"H$,++k%%%DSwEbfP0̙عkh^[l{ϦN <ʪ@^ " " O*۷oo(Epd8t;GfM2iӦF̘1vYgVDܢgϞmm2FIvpWYYi-r3=ǻeO\7ol]w{#duWYD@ZE@mmn@?%x\pQ8BʧA3eW^lQ6aBh&+| 1 䏀Ƥ.qO}a;sG<$m4lϯӏOoh*>E9Y?gy;M}" " " " " " " ":DC뮻,DA_Dtoo p n^XhVPP`c TÇw`9.ˈWZD@s 1Tod}n~K~;'pCt'NI&|=S백yFۚtyǍ1Ž:$cD@D@D@D@D@D@D@D t|r[~nbԊ+;sA zUWW7xuDAT]zlÆ 6ydڐ!CovlD$_!o"021*߇;w}lk,|gNLAqr! EHɁm7n\&?cC?FD`e(]C㏝ 䇎(!L`~}7}xO"1t ߰d:ݻwyPF]"0Κ5EE <qx^+$GLy71@C~s CmV#/Ј;3mڵNO> " " " " " " "pa-=+]?8gw# ǎ]qr\b"Y 0W^qB|Y4۶m?ON; a+UhLDq(NM GD>nNn?ܝ?9]?<R5`4pQ.X/(<񝼍9u~EEE֯_?ww_ǍxN6-xj" `^1vHl#|c:/7kS穩8mONvlrt_Q=K,>8mcORD%h;z-ׯgf"чgQ` q_z%;S]tp :߿ASIn}wqqƏ<E&Lﻶ2'|9tzp]aZ@F"DZjb1WB.D.iN0hyXt97QF5zlkwa/^0F䜭Qa?0!nFLC9?b`p[̜9ӎ?=;9 cR_4nvu't/6q0p͛=7נF|O<Ν~GN#@GpΖ63p݀}xG;{~6=7xK[oa+128\^'aA?:P&t|>73K-O9j%v bb`yöel[0j䅀ȹ2``N&~EW|o@#7U>{ڗ/ Dc8c$>1 瀉~>ps3?}i8\r%vG8L6ի]O_{֭[kq9LOf&i>@*eK~G,X5-mz)ַ'Ю… Â&3**my.@d,BN;-Z /+[G}y|c|Ax{vgkurͷx}z*."k7F pSr!8ٸq@)+DSyy{ۀTz> 7MTCIApOW_u)[r/=*p0dti4Vn?iox"Zc0 Vt M͋}0E 믿|cbpi7v  A43?+/߼`DZ_rm9΅H?o0c=l80H : Z)>87_ eOF/ tk0y ؽy&Pz&ɵB}>ܤ`@T~ uOyJI{/bǕ?T6g#q_!uYn/'%w8ЯECWꪫ}pF'/~ƣc>rⰏ{/ s&O@=nW_胋SNuoTTn>ɕ>Mƒ8a<t'5_ꆰrQcxC8 i4wtɗ޳8el@Z@!K7u)CXv $x;9 •|sN`Ѹl2 <x>lX>I$7Ja_cҐPfTexUކ@cJ#KyilO8[" " " "iٜ9s!9yxA=m[l#F2("v8HdخfTȇ8{2h")eR‹7" F'Q [<ї ΍, 4?m3 ڣμ| ؇t9'\Zu8ޔxޗrd *'r0/A{)Q/aF]lbAv'ohe{}Gwy/~ tvhLCAN[L|a5`;5ߴmˤ3o|^:;@>(_}<hyF%Y~=9ֱ?s31)'oHI&Y۶vx axbڏq7w_OW<@O=sT o1xq# A-_t 9',(xM^K@|3P^hx/mI C 2nqi084$>1cFCZ~"7+l,?51\+SLكecktaÆ9x{`K᠀ȅ}P-ü]ɇ파6ƮH{xRmءظ؅Hp:ai{ے L7^tphE!]K>mAˋ98r1쩧rƁSkLJ(L(}_>F<O|I,xI9^C>|uB_soC>]\G " -#@{6+>m</Uhi︇}= ^p"Ms9ǽs?}`W\<y@_s{Jб.6`8ow/ DFh-<hSс•/uKӧ^y G;K*ߞ<(6t p ^\܃ *?r@% {A9 ̃ 믿a>9.xD?$.!N6`~R $eA~6`A?H8Q n#o4|/* `);( eƂwe7}}Y 8?H^HS}*wpiRyc4pː*~68椤 " " " "ЙQM}‹sl/hl:D="6$lxaa!4 9ڎt:Bo٣amWfϟF>(';B$GM#t`*8n~ ,ZϧLߗatv5\xmwÆp@0E{J4:l{X$"4^hOyq@/QhWË <*囶ѐz29=/2h7iWq~?=K]~קּ[%l^)? qL<IIDopk" "1roTY~hnPS!]w 38g9TZZej.L.B`|QQσ 5UxqH!<Fnn/^qssƛN*y7#c_Dd1Q c@C/.V˛Vf'ۓÅ^o(I:|g x61k,#+9b•48A#)4 '\'MM>6hĿTMD@D@D3`E'5?[&[t0װx=֜x.y(*$?T qK'hс46}qEJ86Y0L/6akRH<ҙM`H=66DŽaA\tSKWg6; 9 " -#@lh7CMF{ }vki۹ܣmF;q8A1\>?Ww7w jo܇p!h80e>KvBҼKXˁċ 4 /vM$+1</T('B"Lvr<yBѨ|<|kʲ*KΛ@ I(D"mydΏ?jH.>P ?7x87:d1*o^7lfè[K?Ï<A7?lMx)1욺EP5P2r]P?)tRw'Cٛ{ن![10)% t:%AQt^DaNo43t<ypOF B* {+vgvb6Yr Ez*0!`zlFòM篵5vfs7qZ>qt~C@leBt/k4Vʦm"Н oG^ޡMb$" }m?qoSyiY Oem66tœ6{/ Y? <?x:&OF[g7P~xγr| 0`^Ev~6OF`6hܹЦؖ*QFԟ)Xjm"qq1y(t!XI.[?Frf7͘lo ^\c}='"83o!BOb9gs7@sS[p|]&$`}9n\ߖkwh V>GlS MĜFfض %2C1eŜG~A0CEGcAC/E,mg%=?raI3ٶl~*y$dۍUJ:qq"'/SΟ<5UT؁wpXZx-Fɋ/e|)U:*pH'`;aJ 36g@ Q6W_D@>/msq3 )\^m7[nqnv7v$.b' 83><ATB&_<x~7ڷ3|ǿ@%s ZM7sy97߼sկ~y{/Gg.aOa]W9`0p1ސ`?y!M>m* @益y%Gz/x?'8_8~&.7-*x;7CШKu>>px]@9PQ u@G# uśH8Q^dFa^ICi,؎xْƘ9qxۉDZVxnIZ#" " " Iۉ1T%;j~Fc.$l`^@D  [{{t`4Fe OzvsO?}[<OAm9}>QdY ؓs0 K gt -]xꩥϿEk|{O!x>Vŋt:!.;`Χo f!p/zo\WH>>0 k܋AYwS}q>m+ 0ѦsN*^p{|uf@ bʁ?o c=oD\xÉ~?84R<dnUҠӤ|8yNdj ^,a{Sꪫәl/((x\Tk 4m\\!lm.n*"y0'ќTErl` !pr7[|704nI={0O|"8`4<\>.oQ߹ւ 4˅2ÁX߶7ho*9a\=ʄuLD@D@D@D`_nDtæ.MDgy@mA{aΝFADm͹@1#΍$.sJa!\q<v/[09UJGa.=tÇOڈOF:~8cRwHo#𔑀HN)^( `<O2LEİ78WbaC]Q>ۖ>*u+ !&";0O>Gns NyFA2g]-<iD[; G{"lK]HȂˤYyyijk9y ⡁gw>=pϧ Mb !y}w{CHc=F,D+@1X%Xco7p`6+\LmKxp Bd;7|p3"b o&G mF~ *˻wr`,q6\e"pApN. ?JsckwP?\MM䁋F7rf IDAT8O]bh,6.se?+YZŖz􁛕rVi\44o1K[E@D@D@D=$wevؼtOk/#i®6C:x4M\xMwRl^K}VlZ`y1#6=`RvDG:LNѧ͍mHR;xlLO A۹lDC~s~#@bJ`Hq1R>)G͟Kȳ8t[\o"ZcnV^p?іb! 9{mZ;^ЧͤFCMc 砝;>@ii*aoѽ|vַֿ{8Fo~t8v`۬Y\v$`;IڣNh?j L;a_>uZyf?@<jƕ5~*jɋe3gt7b7 xq.p݇h[9 ,=7U䉊"N籥߼B$ܐS_<1('2a04@|r1'eh- 8N:8q09? ~^E T)0^{#UF^ !>ћkRm" " " "dLV.þ/9S2lQllr<&?NpwDHg(( b۲{ [cAo:x`2!%y6sޥKVlE;:Rt>pn<F(D锑Ýɧ`ק)gesÆp,vpH^󒽩,#"&LxoRN>?yC%`6U>5fR&G r >ȷ\?ԫD-{O{!v~gSh>ε^[h#WM|ȳ -ϦTφTm"eǣ/Uف_r `f(Eī{u~㏧DgǖǦw?*p< S;x FGDZT7 \(|8D<d>X H~sDZT^{<H %xN~SNT+@?G)cy(!m@ 7 GrFz787 1yP.\e8 H $0.tllgl.<F'OPev0BB' .atFtHHx~= 8|8xa" gt+@,ip~:xxPfe`'ې!aADo<6˶jңl{蘒^*ͥgs;G?)9}`Y}:mfA0!Q-"wmUSG'/5?kPL?:3?x rg/xn2`?y}L֙eh˹St-L}Q HoJ( r} Vlqpa+QqgߜIoQԃ~D,cG Oe)qC<tR^Y" m8AH\N y;#"|mnGDӼ &]_n`]&ڮb ]~F3F3!q}ݐGb0ta " " " M{I0 ֥ ؤ^cPIN˧X a{QMyRC]ˇic[=ۂؽ{A"?M/ymc0>=~#5&R7QQx "4*@W!\#^{d"61d4 TC/`0"x{1|06D(D {6 \XBO0ml~_wstVaR<[?<!x'><8}7Ps1$SxqN%3( \uyKך<yD U|\HC:>=\_)K>Rc.vL4Ec;dc7DMo0$\k8-" " " "б_y1H @FG}(" KOw mx YT$M2({&<1#dQU#ƆZЉ+\uR3<8d0# l^L L5s 24/(2cr]I/ ׽ 9xZRR;/#C]2UغnDg:GM_Ñ%bf<x+iɛ}kλ Q.WA ݲɢXؽ͹do8?;^++t$%J poˬ" " " " " " " "$aRe1+m D䡲-9#0M7{pp G_i@:Ha~*~Xf:SN@wmgD@D@D@D@D@D@D@D1i#1|K.q3ZHFcvz^lk:@w$@[<Sw2@2}D@D@D@D@D`f5af-jUjUHW;vp k/,YyE@D@D@D@D .[lyv:VD@:<VTTؠA:?CʁPBcҬJF6mՊ@zᖟ6yRFD ]HKP>D@D@D@D@4<SjjjD@D@ڏS+hc]>Uh 9Pt-V}4" " " " " " " " "@ >Xt)zM8ܥjT/kk-tA@"H㉄UWY}}4Kկ #" " " " " " " " Ǭ֢?OXUu! B," " " " " " " " ]zX6[D@D@D@D@D@D@D@D@D 3 33ʵ@s$5GHE@D@D@D@D@D@D@D@D C HЊSE@D@D@D@D@D@D@D@D9#" " " " " " " " "$eh)" " " " " " " " "~P2mhĿid(Zqʶ4G@_s_D@D@D@D@D@D@D@D@2Ŀ 8e[D@D@D@D@D@D@D@D@# 9B/" " " " " " " " J@_V-" " " " " " " " ! % /C+NHk@l@sEhP(dD%QGҖ@\P(meND@D@D@D@D@D@AKXUUx"L[E c,dѬlah'ۆ [&z H>xg~-ڭm" " " " " " " iD_yYB ӧeeeQєh9<W+++zc辿C,Vgʭ,@',OX<p(lp"a<pb1 ӱ5^51KsĔܴQD@D@D@D@D@D@#VU X;BU3@nnE"V^Qf}k|_?t> [V$TGPa{ٔFZ8=̷s&b/~8A4jcN0%>fWO?=PΟ;*愽hQoRIE@D@D@D@D@D@D@D@ZJBEMM]pҳ*)B+/d_.?fL8 r /^턾#f:g}z\lpy{(W~3\ړ'Z^vpXo:;wۻKںiZ]ʖ@3$17?Z3nx"%9y{UdV?j?nxۃh͊ڴچtֆa z6ѐᾥKfÕ;k̲J-_\ʨ j/EZ$]n|!wȈAؑc~lƭvuV\^@YϻywC:GVS[DRnL Zca}G[{LpC~qO;Ͼe{wz7o |meV\y [h5uӫ󗏾lr]1xߕ\gh-V=hdx"a߿s[Ϸ'_ܾ2(Y_o+6o+mh+6;E>?u]talDD,"^0l].u@:N@ -nq ӭͳwsM<`-\J*Ng?Xdg~]w$'KؘA}ظნ0Ȝpr"b " " " " " " " ]&:ut8~rqvkmQa+ۏ/;od6*;ֻGϵ+e/}n}er[q-۴͖mVfX_TE@D@D@D@D@D@D[-Y ԧ37eۭl>YDq2ַ?m,.{ZYNGZnQ/&%΋Pu+Ee/ h,KҚ@8ٺ-v߼ȱ-;5[KWAmؾyE+QiuM7[6naYplHBeYQB>i} (s" " " " " " "$52 C 2O7QnQCƸ@3mx֯geEvmgfPf{frPA}z#?޴Gԭ*" " " " " " E -ſDMծo5^-K-Q_k=X9`EQ<M-V\i#G<- 99M&VTTddL޹/_mKWMZ},f}{mm!j*+Vc{awAַGVV[<[8~`;6WTR<¡r,+t;|P_X` " " " " " " "uWmxYݺ@v~Eziy/a{c}v'q,b!gFՐ?l'x Q__o=M6ͦLeOpѢEha v ,<ƍs|Əo'NR~?v)4)e XQYm==;-[nUVUnhjNv ώ9z]}v~#3{mh8d._oX^dxWYUM<j0[*vZ(k)ʚZ۫ڒEppF^ho~ڢϡHi%ծ|v<}l1F-:hEg\m+l/[YaHqoۖ< fzj'![mm 2Ĉ ۧ~j<! Ⱦ^x}]'!!s1VQQa};ڵk7p~9W^.߱cˋHH&{nڴΝk=zصx {ֿDF}\mػ >suC#YV^Qe+׮EWl{ ~uUζd6EVy[a0?'%h[zeGn6VTz ~!x?N4D@D@D@D@D@D@D@bWYS?X fyG\lCBaKVZron͇Vރ3 ~ɚ8Cgي+sqt;|mСvg8!-YhC D#pկ~̙^}ns=³>ۉlDL;&OGm  28Aoݺ w+oGİjF~oK]z^z>57=giKgN ϜnU!#_^>1B>%mϢ!f ro*vW:T z~/Zi<q?Ykv&D] ,g,o?+uխĪ߹r9"}4>}۲e|{e;3<aļzoÆ NH#UV9AķuֹKKKmΝN"C@ܶm阫gϞNKF$x$Hx4>ƌ_SNߕoՖmuv_{d2_vV0f?_{C_lv݇QS[ص<GKP<ؓ@Zb]nk;nOnV-QUbΰ)7Y0ywdַ-cլ||~#b^rx A;#egg;;6z6h C{7P^nL`/‹gCg7xcr_tC!b#y7o˻?ė^z=oʘOϳw|ꄿD,7;ۮl'g=i}ĦM9ڮT Ow?c0soʾO$3 'ް}FHKG>nϽe_lm1D0X&~rfncoGYthW&ˌh|}v̻GwCzg̘ѐ橧j'p͜9ӦNjt[՗9RbX1"9_u;\Zl[`-^CvS]pnH1"]wmر>|JmWb6x3r+ʢe4W`8cC=򭸤̲Glڔ2 AC~GkHZܚ y!^X}O Cuʱp0?ضUs'qY!YV:ODUja/?)wX'p^zf&Mr+"va. 1L,Cp |x}pʕ+붳XwЋy ~ 0Ο?ߝ{/qoᕸqƆ<p(_jtϥ+ڪ dqE9Ǝn= v];kjޭZ -Yxu IDAT▝~(" " " " " " " -'_(/QS ¡ifY"s%K,Q[wdi;UwY|{!!ǫ?{ǜgHdYoG|b9}Y'͚5:,7Oވ m. !R?%]DL?J-4IauVU]0Û׮l7}\}!bqC-W[~^+ޫ?m-] ~t&qP^E@D@D@D@D@D@D@D= ;"}GZڏn{蹖5`y?YūxevuW5VW`Vehzx'"C{饗>p+=O<і-[뮻ATK1 w矏W޸q9{l\ /lh"'X2 ow xOŅ :/c9Lh[I~YU}7n'l~-^y}xnP/%eVQzfǙP_ʣ@fH /rnu>O[aZֈ7*w=B,KjͿX|E1ǵ4c?^~NË@ģ;8b7 Ϻ &8;DC?w;HI'<?𪫮jTXon.?/k=拘IO?=xhFNRp8a7\q6n|~ۻz7!Έ+" " " " " " " "ABlyG\b XzG9nh;pWmy 2="Z9>Aغukqyco}[ J]]=V]]mW\q ?c7 B'tCO>'~>SHZ9ˏ}5AX$B>O'睺׷M>Pk nǭf= 'E@D@D@D@D@D@D@D;]9ĒG㮷?ض5V2,,{o}*l-w }d on6g EcQˌ %X_pUuYc?ꫯv^u#FpC|I't2!Ï}իy䑻m.]`_{wϷ?O6p@',c3{art^A h[IxF 0w`&1P^E@D@D@D@D@D@D@D V[,-L/KfV= ꏞpo(5 E"a+8l e=>̟h/"M7}t7^>_Xȃa={l _?V3oȐ!E0^/"v `n7lذ{=7n0>w#!0AcGِAmm +Cahyyْ^xP}@&V_8zLnŭZ }$wZ[3ZTqx5v{!4_< ۼyM<ACTd9sXyyK_~e_bvM79o?,X`EEEV[[f0}`1c@Jx"2d%cDvqi>tF;~cZ$[m+ag%+XB}}FbS&NHڣE@D@D@D@D@D@D@D{H+*sv?Y(ź*'a)hn3@ƚ qp K =Xma^>r Gu{|3,?묳RGHzx|6x`'(³@"D[0Sy3w> ,8_,Cڭ]3r}io2VEܵ՗i͔b+" " " " " " " "СB;ʪQ: (jhRYuv<]y3Y(z_;$c2o}h?jFwuu6COxuOrb.͘]~iÿ^leyׯ_o9=,'')06)-jC qsS.%" " " " " " "ЕlQV{1:ro×cJʳآCD}[w:{:$=mQ߻-QS[VD#n/s}t\P(l E;7]f/(" " " " " " " "^nV2m)ZY?5 ^鳬v"{>^dƊHrsyfgeCϴO?Uw/m mk:Y#'ZS`5KY~ k8~ߵ?[bo-^ƊKvy {p {L<`|ֿot-%" " " " " " " J ?yNB/WTb:>#IG>YUu⛛mYYi3N:4F # U_}H" " " " " " " "r@SD@D@D@D@D@D@D@D@2Ŀ.eVD@D@D@D@D@D@D@D@ZN@_Y)dU]ʬĿRL(2YhD}R*" " " " " " iM@_ZW2'O޳s6YM6ٲel/Z,sUWWۆ l6k,[~}ʴ8殻2.O>UŭoR XMMvZѰJJJ>9sK/dO<(" " " " " " AD  B6g_~6{l1cLkʕvybqN[d47h FS7[H>c;餓R#7qUUD`zj۱cG`,gVVmzmŎVTmFag}KG? Z=lΝŲ-??Hߓ&MjZ)**˗" " " " " " @^t3uViY)b` d,O ! =Мm7 {om۶m71y!2>!۴iӜ &oƍvAdyyyngx7!}mٲ<o֫W/xbq{co7_s,oQ8{9q;p"!`WO?}ڑGļ>}ؿۿx-)S NHԥ} Ax͚5n:WA൉G PR'v#F/aQ+϶U[}7N:rGBf;{4w=l%tZ;z]|g.bPmm^6"xx!UTT!-,,tkYZCbH*hV?ti̜9ӎ=X'N!`qCbz–\gizcܟɓ'aĹ_vW~;# z (<7<9x"6olK.8|>pfuzC N[uK!r.`ҡr9 <i}@hg ۚmU6gf[vT[ v\  96~6m\C !XNNE 錺H52=:eRw E8Db8*ѯ~+'4a؍7֭ؐ[Єԣ>N9唆#+cE"aβ쬬g.a0dйb 袋x!?DV>;oAD9̳H Ǟ0awT/wqv饗$>"df[D@D@D@D@D@Dc ICtsڢ/AVU奶yGMٽſCwvSS'9uu[>{SG| {F_]<"c:+4>ĤT>v1;cgq=Nbq:#tOgͰiSr٬m%nuf6|pmժU6}J{ݰ^u_~qnF3aľPv~6|njc,կ~ =PafwCp~a`<Xm] Y{dVRh=Idž|۾N'ڣOlM`H+Gϼbn? 6bhja o1)"(!ZCmd(Bѫ~Ux2̔?/`<n)ςSNu+%0t 0>W鎲 硧_qz:ʬO^xoAd}Wa׈xW/=sz#=1?CO/AH: !>a/» }H^xӟ9B!&?[ DA2@4muVZUgû_=دUUUۇ XT^CEgrnڴ >\}?,?8$Ud Y9ȪPGCΟ}x!jx׿}{i)c1YSc**m%^}C x'lBYIss-\ >x>#nh5ÅCSa!P^'Ntb0|XAD70d5p޽{-r[D@D@D@D@D@D} I#+Mkߜ*52&f>GeU;mrtr٣ IGyJT<a .pCWYA?o1h~x"|Tr!K/s<vT'h$j=5*-[i={Rp޼yn޽tCyZ'|"ϕ 4xxŇ'9{_p u/6,Ƃ;i$;wyv;ovWWÆ s ȱ'x;W_m3fhX!" " " " " "Ю,kn@H8o)>1#CpfQ2Ku}Ǐw0"tÄwos1D.ⱆb |}te:umCdfq'ظƸ|0fGv̑7<`܈ % "1L l|A9rȢ,>0 R!ee?\aLj~ׯw3|tƍX " " " " " "q$u[,K  ;Ͽ2Z6j GRC +-))qCI}.>CEHCb*^|Kxw)S!owꩧ:闿q<O4b "֨QaeZDt pBᐕU8''؟8|XfJYQ \}~C ÈՔI, }> "Q,jì ̹ 0|>}Y[x9$D@D@D@D@D@D@:ĿE # fۄC=cV̇O>_n= ?x쮕b,..3g38o>A /D&D#B>x!Npq.b'`qN,/d9Bc0 @27]<?no\7"+3Il ~ ?M9F>C| Av=y9C{wj z;3]W\q;?"s "2g }G?ru _0g*O AJ-" " " " " G US (PdZVdO/˶R!O>vبAڷ^IxnCX ~>]>[bVSWkKڣ(b!a{ ECcH/ǯXf;N d<|Z ZGߗߥeNT]t:q߻.?Ut}9Dc S3f@BY9y-ç.Gs+""Rwg6^Az ny }h좢֫ĚKA_s[gu[uMѧ_c6j=#kK[Uusٸ? obaVHdWep:xbq۶ -k<ër[:*iοs-$"С" k=Q7N<ؠTtv$2`c03EB! bMGz/5@H{!/ew_%F*jbl[E kWMf;omژ]>y7 /p,d![fVmD@D@D@D@D@D@D@D@D H/a!r><>'l ;ᠾvքz-؄=s gWqwŝG r˟oE Ŀ.t]("С(cܡQMŎM.G&ݰD¶ؿ< ~BH$zFmA,`ȯq%˹+,;X~pX2KmyQeEBVV]oYu u;ƒ2YieCj;ZFc/GjE@D@D@D@D@<pcxoiUx3ax4^݆εcz^9VTV<bqE4uֲ#!  " -#ފu_XG˨uuKkJQD@D@D@D@D/7#˾~B.x_^b3&2]:i1=Ȳ#a'즳s_A҉WiEuE.:BNj-/;jьi>dEatTX~N[KTBD$h1WdElˆBu-Ȳc*,7[_R. |"Q3^9YYFegؿ_rZnCʣO<ס@g[UA(cĿH$dE5/%|Sk wnPlm.1+K#U^-!9q." " " " " " ݒom #Bm?V<O=F+sÿaU[L#|=A}t#qA1lKZYX<nGeSk'מhU0:\*@W"Δ0_],sF8[Z{ IDATeEbo^V o؈F/> " " " " " " " " ]@hGYux<aUZˊmqSܷ E^Y ^Q͎XIe|.≄˲qLm}zG-7+b+j9{`ONcd]H+xJK!C,;{έ'j+*jzh1Ge5 ! V[@`a@A@,Dӳ>+h7!Qڠ,[ȣUOj(I& oL cʕ@GϿ(E Yw_ 3XCc1g|wpM$x̺9pĬT۸S_pdUuU :\&D/6u)cW/|j|Ϊkc,>ɇ㜉2^W]%b{N-,{Dkj_/(" " " " " " "≸t]aP[;j._m~7 GءVc۫-/B-lZ_m gi1l':KV:|6Yr ͸q~f=f̲NJ:mUW^/ؽCV8Vaϭ|~o {uVP+=5Ͷ=:n_lծ{5ս9Y$;KfS&uo{i*>jH܍1Řbzo!tMHmM @rBBj6`{ei,lݝ9ssff}c0F#`8T &eUh%__3~vڰ$I6XqϑH2Sm&@V0F#`0FN`}'އs"dnjz-FرC>OW^^jjjuVPQ'L_K붠}!6#`0F#`zz`ZW@w l2w}:묳t'kʕ_;OrJ7qҥJ&4h;0WNJ+\ݴwtF[1*l8}>}ȡ>0E#`0F#`NϰyV8`,Af2% 'RHU__:U=^끨KiGyq|~!Z2F#`X)9F[(=+_q)?N)W\>%UP (!Nޞ]^bLe~ʧtF4ſ V:'=xM[ [#X}=<]w}s?\B=WVuEb D"ð#a=Gq?|9G΋ko4c#VxW_}+cԨQ708}~!(v Ênwرcu5׸Gmn}LC.q凓}\>ڻݜ Ҟr{;hX#`0FJgHrCZuB[*rb\h ׺=K#Q4R6+j62b jCj[6>{uwk*Q4Pq67(]䙘Ddvk#DZmB5œTj:䫶1ʺn~t}2  Aˑ/_m-fgY=D<r,TebYz u>!$HҍmyE{-96?D`Dɪ m5?ZWΌtkĿd2/>hum34#p 4Uj9:w\/JJJtqiʔ).… K/9l͛ݾ#G:]/;a2z-ruv^x;Ncۀtkڴi_˗/w! meZv|Vo .@m...vu sP(#8Bgq 6ܘy'(yzwi&o:5~xÃA*Ss "Ա,z[0F#1/Wh|μ*>!>N(DLI:tvy^U4V8+=6oQecE'Ԑ׎~g9x&?B-Mee BX4sؑ~iU*syCѰvD*HP߾|_[\?Vᠿp<ȭ*mU=/__YP/ʽ wϮз.%2%Ϯ 6( cY/Gz ?x=.vR2&0jxnV=,#ORΔTܷB F(ڗIɟ?Xe(~4qN䫔Eu`)U_J]tb!BX`*66.S4f/UV![;[PՇU~jY@%iSum4 !{QSSˎ5rUUU.޵^@>[Ή7ntVXvu]D6l0'?VQ};kkk]݈vP\j&f]r%N=#ϧ>)Q>"{2( &2OhW?"mD* 9BB;<Qg?Yv?}R5*ZXQG Fyꨜ}Ց{o0F#} )sƜ\qP>=gjsIخ=-._^cx:7AؤkG~|[?W GjF =! w4VєASmߦ!Ǹ n8?φkUuh<Ǔ) l.3nW.AQ*ǒB[&^ǔ;J7'0!^XgőЂZR,7/z kN:Lѐ_r *ƕ. e[ݘhFHC˟_D/vb]z')T2UG8 ܙnv Ft`Dщ*2f+@YB%6˕?Vdf}al˝OKWByG p)P&rcq7;9a:ڗTJ׆)jIoi@WxםXu '8qŊ?O/ 81 +_|Q_~~Ґ%D6%͟?߉oi,1k,'!ak}s"'x&M8|DXHKF1BX30֌Mu^Ya<l`H@Qw2pΜ9:;wtB(BkXxx%# vV'雯 J/nOO^(c)5h{8\Z]Šgi B-Ӹ[!&2Ķ#`0FtoE ]CE\(jsm7sBV\?,K7͸ѽǪ|^[V~DZ'M4M  qǩ)դxn_SGG<с[4VTBC_Pk׸fDfZYrϿw!d +;N2T7?Q ~܉2Hxb:fu% Ž7 KX?b4@rTהӇ9p`~DǍy+5md.5JK7W1ԔENXxܐBmא~Q' :@ZrXxdҊ=KaǺ M&٤ܙQb; tV|93>)_(WJǕm%~/I?3J%+W*5e1g+?R|}~4-Rp2X֗ ~bRb<U5Bx7Fs“iɊ4Fpuj'tMyU E]vq"1K^xayYi۾qD9G;p̘1wAx [nm3`#~<>ŋv"<^vev_w}[ dɒ%ne`"({eagB#ij\~zkG\W]:f*cIE~mIN(ә)?PC2g7-SՇGr~.hC}\۩uu1 DՔJkAyݰS#04% U~PNP觪XRKru*ܾgT::wD*w䦺PU5M0=cx#`0F|X!hV>6}ZŹ邟_ XftR|͹ݏ8,}^u tsǧ|!٨GʖW\e-({SwsrW'5w\C ,$=jǗ gɓkg}\Z:=b=x.9vDյz-:|H)710w&6%U/mӸ!j%u 9Wgx[71 `??1O7ZE9 lZ|տe(W9 ϸNu/@*O/SU/Qr9T?6%w,`y+QشQ5.{YxޡĎe*JUoP+V&ѨL*._(Ǖs#f)q0w\kz_g@' /oѢEu[oun"tO|!z^- W?RGy?ze镅F(2 Қ#[R8"r-{£L+eR/"uoذan'"""a)|^*,,t)+rƟF۵M}{cBʱTZ#A}b|!Sin؉~-٦' v"?=lݏ CM쟫Ƅ+hkC\Eu!κ!EݯrWH)Ay[տQl@mF#`0ݔqR鄦OsxMƽ#RN0W,Ź "mۨ<+&\ ;|u6l+[^ՆڍNBc/ݿZ]Z@Е$TTDG S>A9)#Nհa:zQ;M;lQċͰέuavXn!ڦs]~ٰS .Ѐ.=v6jw_iڡ\׷p]_I/.-s|?1ϬPv+jT\^S"91{;v%xIcOi{ekGx YQv&^L:@ye5 Za;2EƜLQ>] cnR҉{ Q')UETpD' :@Y%Qûlo(esB =.`brWGEEv[] Vͳ#~ <zgZ-p%_@敋- "rauQj|{l 3H-qK=[|aClÎ+u#Gy}lcq(+n$,~L,):8_M-"[kA^{V;Kӆɥz%v% u~v֋7Y t_]2?*wC鸒|gYHz 걃kn˓:oC]\tVrt~i?KKDI\)k90F#`A"5,g8`׬Wv_i^-=VXf}U6 jV,;'rk1vZ7`NXxENpmzq[Ѓ|ikB .E"V 谢4(whӖ-zl+Mas//-+UӐsW)茩C ;O5MBv rB.Fr,۔H9_~X;jLU{?ZAO(| 闣_3SmWYeu.>uuⅹa}/GѰ_hHXZuM,wO~q.^(%6@|£NVj*eR1e+S@%[7<|;W+9'EF 8QAJ\'/`zb5_&Tx'w 5_ShDek)Jl}K}]%w&RVZb wWhС"~~V+V.>mfqύ+[zr{˛]G{7D7E4 /[{*#f!я[ՃړGݔ~C_#;Nh@_\Q5Mz}{ָy5[SV\oש17w (TT E<<U֔ȼJorBI}ZOok*\Gz>/yRiX^H7Mj^ϑOVkhnHS线DJbⵋR)j0F#p$R ]t؅.sw|zPg:S9(-_`cu;_k7RAՇP[NcA#4{l׫Mut9qUh*e/nX oU"wNغu5 Ѓxjƅĉ%*-u$_;nj'cO *YvLJ ܯ1΋?y]ml5',bI7<uak㋫yëtر;YDTnFLDۊ~kxO:/)4bH#`R[-LH|y%~VӲ?ZtJW(V&VDD*Ǟ`ndr%˗</ >G n%`9!2Ptn/`2{u~Y~#Ѝ ~E"nvo[Q,[?'| `QRRxüj+ <ع#X>s:3i&hn,1 }m#c#[3bYx8N?93 yX p:X(Yy:bV'aPGaK?:6%'jE~; AcKY'LY{kjczNsB* iyu5$ve52$7 5l[JJW#`0FLmvl]rꇝ3dPbU۵iK0qfVe;q 9?[vC :ok]I'_ #k]B 5+p@<iIJgRJeCRS2t) 8WTK~!}xO|iPռvTw^I:>7ē*ʋ4?<FDž3;1ﶧ邙u٬zl&2i:Rh8Wo|]vɥX\JT,/ub/r[B~_1KZ@X9?@(<$F4 |V IDAT ?A:%f-'| մ (;@Mi#J/V }E^TVQ~tfsERCY*4} }DQ:.nկXegF>/ 7W;AㆇF=FGyY-^ٯ,J{D{;;.a?m}$ZJ?|my:Gp!f?B$!da/emkW$b77[;;뛒i[ F)/IC \~[EĠhPâ> 40kkcZQ'qn-~l 9kR$s:1m5aDZb0F#`&sZ}ZuP^7%moخի5(U6t.tFEE*V=;߽SNNzլnVMol{jgj֐Ykzd#.ߕp{~.^ ϓωtܹxy,PrxXEmOѐbI}Oo:<,Κ>T_8g*nr܈ǜaI;0>⼖x3+l7P_`ڡ=Bjޱi]ys7/ꆄ^Y]#v=o3Ku~-6:P2)KTjaG>V :BhsqoY_91 `{| %,P򇝀'7jZb^RIMP_w|A 9b? m,{GMvǓ'UD!3bâZRǁu_ױ!'wgtBtgm\;wtjjjZc!Rʕ+%_XQd==s$.L9^<yX/SO=꭮v^?D8묳C<>Lq;_iʔ)bq8zvxmnDkƕ[QQ舅!+cH>{ێxW|:uh+fGSRߩYQZbcopNce_3V:@V}jS =$_U<'6V y- 'n5sGiUuk ֈm֘fqnzrc[hN(I=*IDA͖0F#`:KK{޻WDa4\|>[w{v ?[\SN/,18(Ys6nT~(O8D}bǵ`^/:8m0Er[ a,?/1'(GIWWOĽWޝ4YFMCX-\ĺTWMӶ܊!;@s#VxJ߻H7s{V7:ι^kc] ΘӦjz9}()PЈur&_TZ%+W*: ' "걐n9cNwq[lvMܱT ; U|+:R7a Up?*u "V 9R9G^#n CTf U4:G錪URRfqe5ݖ̢{6"TUUkhii$OcU[,zyyyz#nFww2kq /G}馛XǏĽk+!rÆ NC5jz%b vO^,Ƕ=Ս0 eW^K^OI\'1ޱ_J.Rf'4y{fKީhPa8w*UєT4W~ЯTFn\n܈oXר^,q!U*>Un.FGjIAƎ.ǝWƤG_Vm<#KUs/j=~#GFU{#`0FG1gf/}Մڱ_U~(_׃rxlJo9nh0jH68]W\Y7XtBO{Zs$D}B?& uO)st5$DA?VeUU]=5I}ձRɾlS7 o3냛#?F Dhߜxc^Q?#ax|]Mz)D~;[tu1{~6*-Z#'Ѭqzyv}p0I#imat+?o1j=5ijiTҹy˟Wܺ7s-8JUsV~KUq7JmWԫ_=zE'\~꧄.ÅgHM?t\᳕{MN}FMvh?D3oPd]G*]͹"1me (15,K/J]VW[8 c sկYg!m_Xym:[lG/G2ϳh%zrx:4[yxmo)툀XHve"Wj],>5baWkY!I}X轼E &!ҭi[;5n$S=Tw%RvC6NeW6WVKbΝ:"ln1F#`**tf6nr?vǻw/MF,:7D󶾮UuV|UɃ&kU*mwp+ ouO}Bs7 kc& /-sqkex[6jZf8`|3vlqu)L)L߿&17hùϭ*¯.߮ʺަ*lz}^Z1ٝEAp": ))fϛKí+W۔njv)]_.D5R:._0%S gȘضEx(Na_+eA\Ew(}+_7Kbԇu`x[D$e)v+Y L| JVpOWi_WҴ@"*ޯH{j[|cOl'jX-jt} bEOkS =e q=ڭ sV?n۞ #,nkV}0F#`@"Īt܉{X[l#-\4Y\'"(vʴyf6ǼU9\TX~ 5ׇF?/aH]?nю)-ٚooQ@lB#.\~~^ga|-Zʕz>vMvK:_u-o8:˼tV\2ᚼhϯtcbk_h[܁[DLYKu/qqO4%ht hK1ޱuוZf1F`Q Vł8z{KX+qo[Yc|ƹzVxVD=,hyv]0F#`0@h:̲b'ҵKY_OuXoxut~l[,~Hb^/N|AZAk-"]PךZ݀Mm_qqj+<mu~wwܶgݱ-m?P:۴7p9"?VX|rYƕ L#˒+p 6m.O޽cN Pk^4pd0F#`0}@^{57RſW^y yYoȐ!nҲ2-YY. "8aWƉ'׷>{kYɻ~íDIǥVd0F#`0%cĿ=ggxxb'x≚={ˋ<+ҭq|ʶW#`@g-p͵]L0F#`0F+o;,pSZlcEQ}I8^nc8C:&Pڻ zGV#`0F`!Km 쉉jˉO,,bi:PN[jv)܃[zlz#p u [F#`0@V$Q:識ސyݺ  =wG636nY\|{W"Nj }u[o*//YE4cƌ܃V+#`0F#`@'P;H3Jf赭 R=YutI%b:y : _Ɨw+/?_n5r D;jzN +8x)j^MLQTL1gy;ˇYرC֭s }uPc6l 2V0F#`0FF /V<nM<))wjg)zSo,S,R_ 卫oqATW3C3Qeo+Ji@_H>Șp:z[:W\ǨIK/ud☇z3`ZV0F#`0Fs~I5|j:cH<usTUפWkFʋsm/SLS2tv1Էs󬫷oڴib߇~X'|R^ym۶MgqpBz/<#F^sگg-@<#`0F#`0=@a'6(?zHibW4V=F>}6mڤ_]K.uz꩚9sWQQs9Ut(ҤI4o<ԹG"ӀX[0F#`0F#`@WU4~錪URRj>A۾}peqB`cc[)ۇ0qyh$DH4_%UUZZp8'[0F#`0Fлo/WbߖXyF?odoj}~րY2F#`0F#`0@[S0F#`0F#`cLcn5F#`0F#`;L;cm=5F#`0F#`cLcn5F#`0F#`;z܂}gh}@&#g#`0F#`0Lst#>TW,ILFCcM1F#`0F#p |>ś|n>0:;t=2 )u}V0F#`0F#У 5*n d_rkl_ }pE/0>#`0F#`+ :lгc0F#`0F#`@7&`_7k0F#`0F#` :Cώ5F#`0F#`0ݘ@cpg|iF#p |0V]#йH(ݮ; #`0F#%:)ؔPJeLB=T:}a-0}@u4Ueli5[2G # *VYRr'aZ.#`0FL_F9ѠrrBi>6CI`KwMZBx̵ĬCaW_y(䓂@5#`0Ft@'?_;pa%#`@#b2_|eR (Hㆰ[5&E몌(64R Ngn5Z#`0FHAlUe0o)UdDQ>(}R*zor7o^?ߩ*ӯ_e(#`0FnHĿn8($#`@'J*p|kE[fd,&~}~>sAu0`Mѷo(zm?T(t&vp+#`0FG0G 5#;`kh v2KdѨ~5cx/2+͑QxLM 74(7U$qoU`0F#`!X0+g ~䨰P999]?ĿLmh*R,W<WU9̚ [QF#`0==eFD f1>eaeVD暥VoO)ۉ{TZ0F#`@_%`__y0F BnuVsf;he0F#`@_$`__u0F,8nLkN7&9ɇui'{c0F#`,u#`0F#`0Fr&#`0F#`0F]&ݱ#`0F#`0Fr}ZcD"aA{In3F#`0F#`@_%cxU^^f4}t 0@՚7od1/77W'NTiiieeez7f555i:#tQG)7F#`0F#`0F'1߂ qF=Zhyfjjj38!1/8!pӦMzWOZC qpN[NߴtR]s5B0d0F#`0F#`z:#|>9R7pcNxbʕ+e_ Щ;Ή+V]wݥ%KD<:gHa>N<zNj7F=M_0xo鴙soMX3&ˏUO⻈p8e?m S태{*϶?%e0F#b'eOdd ɯwn"Elm۶9W_=\DYgy-[w}Ws9$h=jz*,pCץX,*F`aOކwqA;YT>{k… ݏW_}޲CS mvϋ/aÆ90凓1 B:] 8Pq1bZ?չ{h^{q?*au?Kbkqv2vկ5Emmn]~:Ï^_| k`|O2?~1_ugc6y;t ߟW9{k@u=/;7y"K#}?kul>S9Q?qQm0F#` #Z__\syfŠ/ fgڵn2iE#M2$?g# $Ibv iN4[ ڰa&yainZYY&LVoo*((pWYfi˖-N@<餓phGvq9;֐V1>)W,<yCFªohT:QnNT`[>qA>!͏?f&F)Cůk'q/DHEЇ>Cl@`DB#߮ &m7I IDAT(˽PDXAhbk=cJSy$V0P*VcSJ1PL]amh`uV:i$7F|n|JAΌ );wt9,|'{zw\~>YƅHGrJE !<?\fΜϞ=[ׯw$m\.1O |ɮ^_9_BꫯػÇwbƇ?V=>WUU魷r;\br_1cnuGem<G0p| 1!ssYgg l10W֭;}O$Ƌ'1s^= [2F#`zC( ~w}Ak?|C3y2!`Dk&<3)(q%#З ,[N?.mؼu؞buW]wT<cƌэ7ިnHqUWɮW,~_N~$1 NavI?<f3M_c??_/O:s,]uY_ߣ՗k/;/z)/?? 9&LƱz*{?r`wǺŋ_ve.?byUq^pb}B 0Gɽ__s9a3O> Dm:w>$I]\3N罥rҙfaCZ7k;*XZL 8E*3 yH36) O|\&'N<UbUV9/q1}cӨQܸ|uh6c??\G}ڴi.'!P1^9aѢENe%{N~~{OR\pcK<qŚQ1g|ϵlG幇ψ\\wq:OCZur#R<!kNPd?u ?A~KF#`0='n&2Dhqg0:c6qb!X0b &Jى툃LJN~{o[p/\h$(};iGen:\< {g-"-^I޵ډ'C 4bx"p!6a)>(O}su+8q  B?{DDD>&Xt1zu3qM)? GA.<UF81+k Y~^}]}~wzBEEȇy@y15s]yl_g~i}+_qC8ùϱXwB,j 1sqe?f7t 2FJB03)+.ZD$o- qnwA D BGE^9/`^\.ዸGhEa/cJfY6OKӜ3;y༡r\{wbɹYr|aac̘s| _p)k/ѮqD DpFX(Q7Ew?/~ wDʱd0F# LRx[RDŽ apwbBL*/x7"_vo@RCq ^шaċhgusiރb$&\2%!x ﱀb J Xܾ܁}rXJ5pX!}La,W؎-S#l<VXSpbI! a]}u v$(e;H1nV^.wWI+lp|8+`ܭo&X[J< m^jK;>cP +>#x8+8`UA__ݘQ&B/|O?}_X }pL={Knj=mnB4D\w,<q WQeS֖Xf_<؟WݨzF;[ϧJ56/|RW\g~ю1),,yۼs `zl88>~GXs{ q>sO$'ޓzu1W#`0F /xn4o&#yer51pkI(dN>>E'˟ָ1ߡK?UGNfr ~7iok؁74&X1D‰I+2 ,xO9 L Yo_/&LqƲʳȂ" yXeO{Xr!Na9D~pO9>DâA,<K#M ޸]vBGOU2 1 )'ݡz'NG[0xB<X<E޷-{,cbo~ 8'ܒ9?G?H>a]ƱXv! q-zPs&O|'">n9/8\Ū/Rm^'K5/zoں}ƎZ-WKc1QWR&k~hdV0@DR@Pcb- 1{+=GƏDX؆8?ɝǴ{c=ֺ X_[2F#`z$=%v,Kuvbx PրLD$Hd*0&1t)9(i1%&L8qI}g$wsqmf L<HXkFĄ(ey Rax酧+@V8ᶉ0/}ɉ@X 1G a C V\;#qhf_W!b} b S_=QI5uJ?b;Q0X2&,snk_q]`E~nӞ@zb!l㒍K? 2;/qΝ?µʿLGK9-q,m;6q˱#y}c[0pζ><W|RVk6膏~H]}ҩ'55ko*K3!|2#7;ƘgH۽9Pz饗Mz2U(1F&qE $ /q_tE6>چǏ0F#`z>3nba-@_n>ϻY&(ޤ#t2'0{^I'GUXu,|~2YV:XpBYݮ!D(D=VD0aO :Ą'&Ah.>;rpo{H&CkͺNt{~p! X+@,^rrA bu~!^!4" (0NL1>zuxm鎯Y-XT6nJw #35u8emV[9/4ģ!A Aeĉn8* 9Wz'tNAjq| ˌVYXzEӏ1".cƪٞ%;c%s]]r%ṉO#ώp?x;|;No~gH}F%O?J%r.wt >fzM+,רCt쑓]m^1#Xcy%/ 7Ƃ-`qND=%9P.W\G/#`0Fl=FAuoi&AXOkb}U3\tɹhm-|nmD6/7&,CZ 3%]$"lvDŽUdQa4oFڟo?pWQ>9njIxQ#[@d"X3#&Y W;ǽk#Jg#w垊@Y`byFw֝bH8RB w_cۺ{AXau7Mb ud'/6%pJ&z@D%-c{OF ƪ4h#9;~)8qBC q 裏 $zߩ^.C?-[Cnsҗ?>=x /Wϻz`qM<v_Ө᥻u a v\X1֌/xxלW@v=?98'8_#g? b x%~Tvi\ǒsAsSث0F#`@ cĿށza?]vC-maI+G+D &V㳗hJd㺳h@Ywx5w_n؆HG̾G.[YV" $B@x,<kV=X!?tCX"P X&b]ȌȈ@ԫPrS%+u_{+j1 ęӏh]!XI"N<" BBI%V{EkX`X__ ]-[E\:!vd)s]<NCXܻۋIa1M\˽D\B/?n'0ҧkt,Rvs;Wڅ`b}<z.#4}"'V ހ߯Z~KXIGoy}khܦ+,Oq%'$3G'{a$q$/gϏx}W#`0F0sh#ЫT57޿?Gfw@@[+&}ނ|F<x+>HP.d3b^APa%`$؛f[x+則M].Vm2:X6om "ۑ(\w@n&' '?q 2"F72g<NX+wܡnE@t28z뭮D@D[ƎqB毷ܨ pXKo}y(-^:q&a@>}?"*\0AXr8/ 'yRfGAP3P3nܸ6B+ 2:u'쐗NSgl9Db7A'C8ΟzYAs~uV^ߐ@>/O>Pow^H(V^|r 4͂ }+a~<k\6ĉ$/ ʍB(X؍1.O*gK1nFw~y!窗j?X[7#,N+6ʰW#`0FCĿ3VR#p `v'./_/JhbE MѳBB4_&_be+)O :(Lz^xdCEPḽ%ڷ8~?.Xymbv"|CrB!DJ "رb3X"h!(}' 82,cs7Uki7b$(FcߡS/-e5sђ:nT=ꛚ1eƎ4ʝz/uq.ۊuB(q_W0', \q`pfLD0Ֆ}Ғ\fK>bȆD # y\{maVDkM`O$B[D0@|O8<^9\:[앋 V w-s~z nԋխR;^Ը9k^Ƚu'i5KP|rnj%9+`5yu,okY+\9np!q'#^+'S}Nɴ[w! F#`Q|5yO URRl1b13"|E"ǐ<`]UUMdej֑u'?;]~:zD' xVۨG_!.7!FvdbOL*4Ao-4˵uOsg7Tns<vT+hfѓXpԺ~Lșc V=LCqò!FQ W#bD<k8xŒ qt,&y'ʷi2- A٢?w *BA]{yEgѱ3'pݦO] ,`9 ^k`6'?Vx0Ca Kbo{#!d' ["QOG1:"q^z +GBo,)NpΤt]g/U+?M*8qB ڱ? ʛjhg*?/O̮<<Ҏf[}zfm%q)Qګ !q>z#&%ɴhutm3F#`8pxvܾ\Xv%{j{"c,,-YFZ;kZ$CNP*] 0~}y>'Ʀ>S-}@0u{(#ϧGލR錋#Oxஸw}y\#D#!!H XuV]-u5 +#`0F|P@/$0yaO5xWmR\6m&p;ģβi,wl#饓cgLvq+O-{Yo]Kh,Hq-M+`D?qEXvm+4#`0F#л ׻zg7b[giXR%j~^Nm`hn dq}bqF#`0F00F.Sz#`0FG`.+#`~ ^%#`0F#`<<C+#`@UC|>d`ϱwvze0F#`:MĿN#0F~*ۡ!5$nޮ*\ PP\K#`0FjK'F%|Mf@o#ym~O//_u;* m ?]Cśc)=p:skj#`0FGgΤN>56%RיرFHӇ)7)KI}za}5(QLo)S:|*W>a{d:k7IQ_ݳ!&_}‘FB d+ !#`0F|Jbjk>əUF9ѐrrVm1n2P 8l@#Ŀ S)5U+QRԣcBM!uu >f/|Ne!i%bvN!0F#` R)uR٢]?Vb$Igɤ5xp~DaZ,Bi@Q<jzYе㜪q?P0IS~Ω5`9յԭ4#`0FL +Hhd8,RſO+)dM`l ~nnM/Jno^~p>ɏĹ߮#`g=sof WK,^bQ[Ŗ8IWJb'&Qk;%Po IDATUJ(vR,b H׳ G fxZ3)<Hnc^/8K;j:GڙiiY'@ h7_ `wءC-el $ VhkWUW|32,LOHfm(u!֥ `r:~'7\efZ3-n50=j֭nii= % DZ4Օf0sNN_RW& 񯃁+9,w,X߲Z_7F8b$&\Ʊv5IKP0c U$u+r@ =?ZC̝[ fJEIf5={WiFh @$uū2@ ĤEV7BE?_` V =75 H)|4V6|UhԲ,772335o ]KeUD@D@D@D Hk{QD@D O_+Z;\Ye555xjت鐮LE 7XN <'edd8ObrWCTv$uߡ灾֘ڏĶP(Ԭ;V<mލ+;;CˡD@چuY33-զ٬"H$XOa\%u@# /~=ÇۢElݺuVQQaz06|p۱c<x̋z|GuǍă &СC>QD] PǽeK굷 Ei !(~D@D@D@D@.oD3:Fё$yZ ^z%+--uSN/^lkƾ vrQ1ʂ;ܹso۷ku7vW_hU.R" mN-՟Ŀ6G#cRپ}'bG?c޽&"H <vM6ٓO>iNb'On2e!ٳgۂ 8ȹXa)8p@Wio&MrBv!,R~m'\uUtU@[dVTtmh1{ٳgaGQa3x!->rJ$ZZСCDr͛ga_ 4D7oN͂5\2uޜ9s?D:ߧO[]]ʊ7[͛k#Ge8mf}u'Nt˫ڶlbeeeڰalԨQnD@D@D@D@D@D@D@ z999.m/@&$f&S$8uk׮=ٸ"a۩ĭe˖9!s=<qt}nxɇ~Y"!#a_>ALuy[fڛo*4(`…..wD@D@D@D@D@D@D@$DD q/ݰa0!g|\8 Xwx/t?sww _UUUNc8 :,p57PcfVc=) b TB:яK,1s8XXqܹӉ>}-E@D@D@D@D@D@D@Do '|Ɣ ȝxt<L(ƛnY1?|ljiG<V;~x{ꩧwlƍrJ78Kd^zk?;wļ>۰c&`܄AD0ӦMsUo@0$dD" " " " " " " "dˆN;~ӟYh"k&la W_}lXusY/҉]Ƽ8oÍ1Qƅ^h=zoۖw'ղ)Z=,!K}A~rB KXz8,?ÍǾ'x-i7߯tkf=$fe>>+VpBmlTY7d \\}9+4, >0,ԼPүlF Q 7I%VLr>7Ǖ2(w2.^f̘oر$^O~S ?s\p VN@_ Cċ 7V,Ѱc?DBV~XaF@8ٰCBBkNkj;!$xm̘1h"O3ӌJhDc\?YY{zpFPYX230AØcUc&"" " " " " " " ]Ŀ\p,{qVjN\psEbFڥK:6~sx7bX6%dY=ڍه#`؆d_x7:VXέƜ?ѮJg-3ۙE?3g:qܹNLw^`P>D@D@D@D@D@D@D@D VN|СNc?\uϟ+ĺ={:+?ڶmƳ{饗uB`ƒk@,հfr -alu؋b$%836!eヵ$#Gq")+ـN{1#22/֒G>Y9_}/8EںlV]S{$4Y:k,7/zX!⚊E-b=TC¥;p Ws9ljJ<uTCZn]|/YcԨQNC7cx #v&yc?PEzpAHed&a;4ه.B!%/_no9a\d@8U;wGm-\jG!CG ٽ^cYD(>jd#*^Nj)y8ca؆B4)S 8!㼅mlp@~A\ͧ qp &s`L>&@Yf᲋Ta8H>|sݻwSQzΝ;-3+23x:S<YvĢш~ހ@0ہܼ-={=k[qMx3*+PdeY^n i(ntày ZOP/ QX|J,NtaLJX o߾~WҋU~.^5,žS%`)9m4Ak~rH8<y'" " " " " " " >}yw.죆A_l/}lAfX2w<jg^ld=vե3[Pȝ_WWo-YeYֻWP}J AKKx%+" " " " " " " "<nE= ?rwߺBi,'D_lGD@D@D@D@D@D@D@DP+;Ta Y(t`X~#S{/Q%%H_Y(?~z|?_ +/]~s/%%%RE@D@D@D@D@D@D@D@ڛ@MmWTdFd#rpnbYgLiהּi"HEHIJ3m`޶b:*kl V]SkmQ)U<)uY 0l_|Ϧ9^ge1#_a{Hnh@7z!辛ۮudYAn*e"Rj)" " " " " " " " B ';zz Hk@8mh4jh4A" " " " " " " " " [!*@g D:C1T8 ?nYB)@AywtY`a¡BPBhAK_VVveEEEؑJJJ#FZm"}#Vm@۷ƍ;|Ⱥ4ѣwxڱ%к@ `$A{DHJ[D@D@D@D@D@D@D@D j5O ؂;ٹ!" " " " " " " " " mC@_pT," " " " " " " " "t$%%QD@D@D@D@D@D@D@D@DmHkED@D@D@D@D@D@D@D@&HKy3T__o555ƒnpح߱ojPLd'///4# OB8t-\֯_ovSlٳǥ;j(۶m߿QqꬠXڤI8n89rdE @*JW+vZ{嗭϶;Ӗ,Yb3gڲet'm߾<h]wM8ѝ 믿nzر>ַ喿.sB$,@JAޡ%hiU6l~ډvrݻw/YaG38 Ξ=,X`{ڰaz߾}o>?~eddkPZZؼ{%A0ՃwzL2)" " " " " " " -'>kM)i.؊l˗/#GXnlv1vm>Cww}צOnÇ 붏>Fa{nvtRg WRR^zل s1֭[|wޱ7xX_nx186mdNuq>ovx5͛u!րpFLL{@&p((pZ$om|M6Ʃ7oHh矻BŋmСljh"wɓ-;;1'~͙3NJlƌκ 1_4ocsmX/mΝ.{|p7b*|HXQQXfffrrr>/&|Ν܇qp3fc~Qݻcvq)T%-k֬S:3N?AƧcb ܀b{!C8 >o+s=. CtDW&ʸK!!Vp~vEرcc_}UcٽDM,X[!!"2H~>ʕ+U#zJ?@@D8Ue " " " " " " "u 6pRuY"!B.b:h#d?֭[-Uq%}YW_}u>ı+p,{\}|Z2Gl@cl>V|X@XA!q>X&pJQ1ҹǦudׂ%YgĵsPŠuU L!>d :/F!hyaLdhqX!0DċVPP(l!^{O?n{;80>/x.!'M̈WXagy+/c'bՇYB"~>3qyΤT>]-E@D@D@D@D@D@D@D+,}LFqF'}oȋvYqe>V7Y܊LŒT߇)S 8xN_(#~}M?B+&cJG\byI89޻.J@_ .<1c!"ZʌLLL؁@ugc|?d>0v .LJڪUyA̟``L*5NLg5&&Ha\uIU$KĺC ^o߾}Ƅ+wuRlab5> " " " " " " " ]k?:GpsTW>1XWT,p9r?t|Љ~X>CiUUUn}b'r IFB>;i;Q&9)&>D`]~=S|8\c;D]i@_ .a6gg7tPcB?عK@\Yr]\Xc,qc;~cUEc 2-ZdӧO?β8|iĚnGyĉ qq^%K[ /Y!ˌXAR~N%[8 " " " " " " " " fZp`Mkfsubbl`X%`l⭨mߺubv9voN 馛ܸu֊0p? BiV2f"wc/!|"w>ĘLT[/'baG>JdVd#:M|xUW5 AyDWTGO%H$jJs<8Rj7#-Ulc=>xAkqDiǧuuuNdC&?ٳ|!~,XDO܋9gYm]GفF6pࠤs[\(" " " " " " "&Pva֣i!X$ƌM(/`2~?‰>ٹD&KEζHr7ŭ-V" " " " " " " "H W1 ..*" " " " " " "ERD@D@D@D@D@D@D@D@D@ OtRrV?yH$$:HKP"뭡͔+J@KKKپ۾|t8D??Yu8z%(" " " " " " x.9"/Е'? tq(" " " " " " " " "$9RE(" " " " " " " " A@_r\BD@D@D@D@D@D@D@D@ڜĿ6GE@D@D@D@D@D@D@D@D 9n6"QH.)"zcb ‘Hg( " " " :S IDAT" " " " v_r-;;C(E8(oNs1Urt@$uk@H ,#m*CAӒ:8icNܴ}xOD@D@D@D@D@D@R@˞SDʫ@jgtqB@;,3-t>"v%~ΝlƾY}lv'K 1SAD@D@D@D@D@D@ `R9EVuLжiy@khXSS #QA ۡ:(--`o.5;+WLKG-jyYi#7m#/w_8| (̶Usڏ.nw;cE }`~=pPHYᛓDGRD@D@D@D@D@D@:* "Fvu{[ȹ֚YnP*qxM%p68׆9wܷWد欵,3ZZ0h 6D쯟]:p6sBo镣!l[&,pVkƮvńV]`۷L2wHm*9bc&A[*-+=d/pI{e4sySXD@D@D@D@D@D@RĿtʸ=Ŀ݇[xhԶﯲY'[U^VSnb-ب>ܶ .ʵ}$N۫JPeq@'!;\k,iw;Ⱥe;1YR^cW\ǂ!+-tք[ZZB:cdl&~=\Vn?d~we+1ÔOl[ܶH8!j*6`c)"" " " " " " G@_]3XڍBԡ[0hw73wsn//n>Yam 8K;=@va;pvwWE1,dY rc-zХ¢=P'[]|3fb1wި^n?z[aSkƒ#6(׉>G2 "җ()zmhOx2;݇ݤ{d[(4 Fmٶ:sY8P~X9Xm|}1^yUQWcVء:6X$u7M`Xgt"a7gpǍǼ|e_0dV챹qʵ+g}$+ץEIWAD@D@D@D@D@D@:&qyjjj-YD fA[xXzE"g+((lCha7݄d}aB-s"Coopc=x= ~iYiw7:_NHdr׾stcb9H:Цi荸 Ծw0tb?hu^8Dpre[/笳1YQL[̍H_zc?BAN (^N@@_'^ۧ~j6lpmΝN;vm޼JJJ@D=D KOOo,B bϞ=֪rb1cچnLhcϛْ{Ȳ3NQiʪnd,+#&vϬpc'U4NfePlro1փ3uhuVcrgeXS]e5[6lF>lOMpƖA" " " " " " "$LZ^y+//wV~3f̰n͖/_neeev饗ʕ+mٲeN8[lW_m'O' "|O>Į:裏]tEvZZnӽ-{vv3&ajS:?a'beؙCz]Qsa}' ̉}+;aW^fY*j<zm^2dޚkmʰB'j#{:ADgO,cم;lf'T" W  UYYY< Y cZv=쳎|=zpbGv);a5joٶ`gاO9r޽XGܻwt.X믿ՆERQa9[+{]a\1ҹn+ {¶~gdsLچH[^Ugit!{ӭ=' ¬n@,]׾{PPhgW5ڞuV?+0 e-73ͮ׹sfNc@%XQJ@_ ,|`+VJs%\bNzwm̙֯_XKKK7ߴs=׉X~֭[w.9sXnn>C۴isζAqL7x G>o&+**r%n\{U<h_}c:i$wys\/ b, q/F,7n\H|`aaٷgS 1}Hm+ӧ:& nu;{3Ҭoaϲgn[) qn>b!K=w6 iOO-G'68]7=-dx7`z(pRD@D@D@D@D@D@㟸R[YV<Ľ#FجYl6|{5Ç*؀+na…tRc$۶mM=-^ \7p?֬Yc<sm._ڞ={eicWXXeE>Xa~|`ǘCDDܸq=裎5b%5!cѢE.Ύ.sgHy 60~p0g7~@5cm_.:|({6w;6o3ncV; o\<o.snw]8.Wl+v[~N_AvP 7[M]1Yꎉnb6sB!ztdJ;:g*_,fֱ[~M>Yqؔ)SE{grBGX1}hל.,n-ۘ3p <xC"tx.p`oÅ#GI@CWaÆ5Zb85|x"jE1o߂,cPжc} zuBa(pM\`ᨛQϮi7ϭI{8>3{δ=s>Xx._~=-̌ a}IAZl'/v\Ai,\K*U%V={?@K$d׊ XsL4D`~E3pku;}[Y1.X( j1$~B!ֈӦM3\."el@rs D=,ox" Ǿ}:?~3޵1xB8AV-Ӎwd%-wNd5OA={g^'VnC{8ʎ{k"j!+;Rk-a۶wtr^y:ABp ?on<UwU;?~c =_w~f}b|A{t. " " " " " " "Wq{뭷졇rәg,^{5g(D+-Xgfۘ1clX6gF"&nSan;/5uLGn֊i˘ \,7(+Yg`,,|;uT^r֐e q'+7)m,4em H-;m7٤GEcz٦}G7mҊ' 2f c=vU{Kmpze큋; Sۏ/aO~f+GXvQKسp{i.dseìᨈˇ;u 7#0fmCĹP{I@b݇O#  +3uVϜVx"!@a;߮]lNŠUC`l.Dc:r[qq=c^bpfr%K8Jv X1c0dzϽ`C,#$) N a=쬡6eHdܤq3nn—+Z'1 wu v";_Mwuም/Ϸ]26u{[tg :v9 ݸGRpY}lٶC-;bto>40|`,oA@_ #VyXamx/j,D U> }^ډx}UXz}X"2%~c؀E BbVVVXz$bq$6 oĉnfb&R8/X+GDA,y7/RrxZ "q<Nr3F9X,#DZoHQ /sgD8\1ȹ>vTe;j]h 6qPc{AnQg-8_^li33#{H̴]9O^͑vD@_ &/{9wFvvo޼yΒG."+WQF7c;y0/B!Gvb#&`V\\`1{|Gyk„ ڑroweǭ.3fXQQs~sb*~X buUW]ßxy%ܝ)a/еLXzXy1x{T<:f&b'舍|Gsd996\T$ W k5̙<q?Pb?Bb]-َȷi&7->L<Yb vʰrc6`$z̤Nċ"audwy%%%N2Nsε+V8‡s 2 V̎O:)Ϛ5Y&AD@D@D@D@D@D@D@M P^Q}bӜfrYJa(+Ba vw<<gyfΜ<>ƾc\:x IC***ﭷ~9A YE8՗1#q ~ۧ%+HDK;#yg"<?䙱9O>5Wgʌmۜ@5\(Nyʳ̬ӉR%mA͎xLKAD@D@D@D@D@D@D 5oN%cKOϰN3im<ZI `ƘBUKj':gB ]6BЧqe+"$VK]2\p͚5.ܸA*BS 0B! .ƍkUSqlĿ~H\*QK%8,N5H#Nzl2E\l{lG#F"Q8M[u\JID@D@D@D@D@D@D@D@DHk'VD@D@D@D@D@D@D@D@M@_v" *ZH4J_D@D@D@D@D@D@D@D@ډĿvhE@D@D@D@D@D@D@D@D /"@GE@D@D@D@D@D@D@RĿdʰ@86> " " " " " " " ' &V_@ڔdצXY'"@݈FD*Տc:ՏwMU#v,S#@sDN_+]hG7 X<E-Lѯ%2EY ~t+r_?c)O 8#Տ@<= Ŀ@0(„^>%AOЧOSWPyo/;wZ߾}--ʢѿ@JUP‰&М]xWj{YjMh{JKKm=UNj@'P]]meee /)?eZyy䨓K  F̂P[D8D@D@D@D@Ys&DWMYvIkPGnEuȴs-r͵`$GS~GbTZ" ]iʲõw^+((E׺w:UiÖB!0" " " "O Cc@e5ggF0O1!3._B[F0&!D$9S(WZ(rr󭦦39({]]P0䄿̔wSxi _"-L'>'Ň9qRl/fYGZ?g[yeeei\ʮ@8-j. ,HkTډ@ £o ) E+" " " " p}\hγH"c1&fֽ{au8`6o~ihԲ>-]l Sv/yFe\_')e#pZOI>N*@^V'!U-" " " -'-f ,`Lj  |ᆰ/޽_l9v:2`λrKv[% -XYoM_Y-#A`{6U+Z$p~$iA 6IVnVUi閝iN@0,RcE>~O!3Efƪ&lw:>WJQD@@[<LD@D@D@D@D@'Rn4jpgfYn,??;.v8Ŀp8lEEEG_l8:K <뭮]'y%(Q$& //&" " " " "bF+bq<MKNS;\VFIO4~QclF>Z Ttz:%VE@D@D@D@D@NH `(ƋOecc!JUtkn&D]dN!xVXXh[QQsss=_]]cSKݻ{@@8 rFiQ<Iv[DC9+\4srrEN~t!pTkt4?G5pXjIZpf.{};|%넉'رc].2{n>}mgv.woMM͛7ϥ?o={tnDZ}2q.|zb瞳k֥/[>K,qYbLx K@"9b44n_{+EZ|}v뭷޽{w9%iئLm'!PZZjomܸu,ƍg_~먭Yƾ wo@GN+oO'K/;˘U>P̙3&-E|Ƕnݺ8x8z /~5non=,1j]vm6!xa IDAT3<.~H:p!0 B`Ŷaۜ(+f{zjOKFy14ze~:cx~x^Yt]tEFlvWۦMUW]eK'?'|Ht̙=+ӎl޼ы/&M_rA<7;DF/ >k,<x {n E'}Oxjժ㞃)ȑ#O]:ZKG@#@?woxp5jT5z]5x44[ngy5]wq _gF@ ۷{15f߾}]'s8po@|gQwo:h:3"7Î;t6Њ";wK^ߎN}{l'N8A5k?x`c~w-rZѣ+hMt4X2q0 䎡 -)))|;Nh<Y+"Љ +t?^uYyVPG?5 "`G՝wey}v ?1]['m?' Q/C&VBdvyJ;F7B$t3V6l;s^̟? ?|<Ӯ\~"p:$=+o0MKC8Gƛ'Ǝ},9N!C$1zhYCW_O>uFd<(E{ߓ&LpFEPc'gq9뼝7сDm6o F1\:ƚ BF:ɼ߲eOl /ÛdޖSg 3E<&VM8yꉎ.4,(wΡ<-O'Dq76f{Gs1<8qOq/q}Cr<|ў6ߗ- q"llG{#7'~*uzG]>G؏xCۆia9XPpF`?iDA=Lj@;W}+ 1zA x>G8nDDgqD#K3 i{/ (}9 ?WU%/h/&O^ [Wfc%C\hhH5}tnq_RAڒĿD -rѸ$-oY[o,:qטƉF^XH$Аy)Z~-E Q>?3 c ~^~9>k?]]q%~q᱘Btd\DD :#%"QxzEǔ8e0A'N .oي+\bS M.oy{N'AvK= (\?1+k<@!r#y7 B8!`sNQ'x8$,vz)WG9uT馛 i!Q:񐼓Xr,<ؑ/ڨۭp bq(_ -OF@A ^"џASi#GDc?/j~?K[D3.\hsq?Ex&'ӎ74 R -!?tx ·+^sX%:mISq@@hkޠai 3rx`㡇F'xc1LرoZ\AM#S2=F:qԧ@G툂WW ""F у)ه~)$>ƓA󈰈肰ml@@ұ}嗝 (n-+2MñϠt o|Mg-cz XL=}@?3WGh'{{ { !z@C^\<imXS~v ^{͵Qj !; c?!qCub]˜L<0JuwJ H{J/x^t%5pEÐ}cy`?K^`@c-9, }.GxrKm1KM<h7"O‹^;\}x>/h?˲@_7ܼ_6uw*tt4< nC#I #Al3m4P7l<0-MZSI'@"t!E=h*Qx1McƌqbqTr>-y02Jo;oSӹ$ D} {d5灴<#Qb!H]7bXU4,8$5ue6 v<Lh"wop/r }~P<aUK{@!󰇸6>ċ@^! /PG9穓A}RcS h<M<?K'Jy6/@v,QO7z><p<?AyDzGN _7y+;$GyĵOqF[E߆h7/F;\ # Dy(cKvh-%EaFFYh|hh i$i)X%:6L<[aa+ '#Ac|#H :DNx :Fd(6!n1+np49,2Fm] ,FpA ]i[%.@yqAQ̃/EX~X`DcܯkXm1pw{Z|8| ̨l<Cf7NƯE{KVt- *g2R^`DW fq>-&`klgMx[|e9q / %PlMXA>CX!0x#[Nk<mS! Thl.E1pѤAuA@EaDXMoon+*! 0떂$u?qAL`\b'2'N B: \ \E|ǒ>N_trGDy[M^pw;ٸ qOq|'ip+8TC8nL=j>f;m ?XBq?t4㡊+?x:iI@0HcJ<c>];uzH:Xslj≍S]g׻6<<kx1-C$&p,B:bc; O&h3p'ch??/gI|#'}akG~?DFF;Kbڤؼtbv>!핂AUq@ZQ,|" vƌ-ŋ3xQ7ckrƕƌ@\cP:5D4 "hD1&dfYe0ӡm2MD<& PWxb:t8RoxMZ_|Eg%%Q#БxN$y!b>c谝N+X3b?#ufID^SN,b\l`Lgx80N$F=K)_h 81 {5VP`GdZCwn"v+GϹZuPiqG$g21޵|W]l ɱ3%qE.7(? >>П%>'|W{Oddo߾Y3~9CyQD,96!PHvv aO}hCP6%,( /[̥vxFj.% tt4XO&hy )Cn \;Xaف>&f^̈tyУDAC$C9vJ ],9'K<s>ޤSz58a!q?1ӼȇP=N=B!уfs00 /2<Q /:bcHD@A駟vRt1MZG6~k:~&mX"h@!poxƽhνP>sPgx}8ZBްZGpf\K7\Cmu|Ϥ__wh{YC'uvtROD ^0>WqZHg 蘭ǰ < 19cD8,6">O?gu].n)(<2^yr y?ɾo>Oc& n&9a\(S 7ae%Oh"bMAڊ@AW*V#"jQ:Pbh[DJ[ŲW'?Ez!2Ѐ+@2EABkiF@<AsR? M<t6 cɥx (\@8=,iPi&0eCe:}<Z&8-?x##~uy~#P/9׋:ESM{G[s3䇇ʦ҉ϛ~'?]|j-*%z9kR4Gw}yfG ?+3' ?G^xR?NOA]eq z;-f7/,9&96g?X~cǬXq` ȋV7v ^ƇG}ԉxLaE'2 jm !,|K.O~" n$mLZ܏:ՀL]IOϰŧɧ%ԃK(d$$p౗6PFƕ"FqZB5 M:MNB{ tRcEө<`)@skdꔏ7יv !EI&9ĴiӜF ~??O=X1+2#bog\ڦ;fr/}&m\|{A/>fsnl__y&]`cMZJĿpCE_3 8H X(7_B Jd 2>&F 7h hbE16V=9rΏs6EkNk*6~DRo]"p:NS XΎTVn2;KsM eIt^!}ƺoC0&pZ_$`nksyr#PD蠫sMGD@D@D@D@D@D@D@RiJtnRP!Y7՘vTW!DFD@D@D@D@D@D@D@R)(0Y:kβ`08 lפRt,pj@THuWmHu,E^t_D@D@D@D@D@D@D@D@:7S:7ND@D@D@D@D@D@D@D@RĿԿ*4I@_XQRLܷ_7RR"z|+r,-';?/ci tOt?RښE[U|@ԏUe8J"MZA 0QH(߭"Х ֏dv ·@u,: ֺ vpص~_eN1@4pж׆Bnn|:@}}}ccRT*":h_!HK<@ػwfnc@سgO)J"mHk׮6QQ@BܳۆF/LgUՆQUUeYYY+Q Տ乖,SUe޽%V\|;wT$?^0$<~ h{谶}*QRoCC{ "5ՏYhs@ dd4Yed}(>T?q%J8x_]*_?` "p<,![~W[ `v'?A@Ϟ=]XADkԉ+**X&Oԏ^z'zt:EꎺR6, {Zf~ч*,,/oH"aiYYf[wMtx[cYY @Ç'<I,E~2]m_fm=lP-hueԂ9=T3vZS6FQQQa+ViӦ9'YM端/$GnL(" " " " " " " "RTڑjVn#2,B,\wꕳ-8˽-kvd={8pC||Xap믿޽M"e˖ի{+ c̉+-ϟ? H5\@Afl7 |{#9hРSؗg{nܖ+/>ϖ``Y2)O|tJoYd{12K+af iuۿoXEV%n,x{=g ?3C=8 7/B3y͛7>l۷oR2e%`Iz^x7?ECb4}ŋ;X1H8nOZ~|{7}\-< qG8bmܲî";w++" " " " " " " O ĿV_[֥1˟k'7F,XɞxU-yƎw;޿Z #rI)0Yr,Vyݻw:K?"`"<ym"!^tEͦyA'ya/? 3g'3w\ɟ7Zaȸ$sO 5k(,h}i56)5J]DWD@D@D@D@D@D@D $-QZչz"CVZl_KK;,w,k{;Coz<~A|9r 8~xСCϺm gq"r 2$6*'bŹv9 ¦1`0}]wM4}@lXD = 7dܔz)'Ɵ-E<&{wvzz}pZ&YWD@D@D@D@D@D@D@D F2jVai[8BLѰc5e]Nrm;_ |RDرpӽ8|lh/},ٷdg=?|@{wܥv# DA qnQ2^[.\_ؚ pʞĿʴ@GH/oXڲμBEߴ u`7GJ-s`3.]=.k,}Y8%>|s}Wl֬YTL<sw5ƚ0vѢE~z'﮸ 7 al@,9> (" 2+.x11v(q IDATÕ(}e6̎貋?h^E=Z'EU~D@D@D@D@D@D@D@F )ĿHeX&uI0z1dU-~w,9ed2\q]j9m7jԨlf~qc-8sL[reD!X-X"Njo߾NMIxǤ f=қXYUc7XZ(x 1?񊥥,;;r7qh% VE@D@D@D@D@D@D@D$wdE*J,ؽ S<ZWiEci=]ǖK7,5?YqnJ8Ŀ}zҥKbaÆ56ܸHuť ۧ:⥷.??~:ZFF,㘫o|^)w#Gloi-n@Ɏ '&6H a/ZWemnYbe ,[dU]dy0gcHcٳ縱}<,.6{UUUtMDfQ-OAg3DLl8n;;k~#: !*N8(!ꢀh@W=6>ٜ۷~u2̓y<'Onʈ8QگhDNHU'IW?i֋vw<SޞΫ.-]׷cnn~˜ͽ+] W_uh z&?6m 诲^Ј>M՟(D`*" <SŒhjWqmz"$@w 6HӆҳBE}GȦJLT )64K֤sN\'^mmKmAӜSͺme"ʇl L^rTg:t~̱d2|A}$dzJ+c#e|lvX)2;>07Eׯu=|BH8+5wqǕ>{تUʷ 'ҥKwzU>Ǡw+Ů/-o)?яʋ^:׾V.raUk֬{zxhh(i|n(ZS_띬Rr핗o2:qJn!| >hO~RQy '_\]reyWN>/A߿tI Rk?ϫ|6ڌ{gY^#_}le˖ŵ~d(؏#CFω~'65S"0]@ݞ/5<@9^*mK9{- 7:b}wpȲ@"V>ܮ7^}Wm?]a?-<Ha<)(g [ &Ie{キyG]N9唺@%OW?2 v[3 :zjKߖguN"HN+-ک?My>'x%XsycY4^eg~c<7lP ?pͣ:j^<We.s!ԲuA;m y{!Kk~"/İ~_m#IO'|}SXHGSqM|Lcu=> 24/ǘyi/}7Dܷv;W|fe:-*cVOQ'DI?nϾp@C(85([_Ԕi3anDN h\w^g>󙝄WUַU˱qTG,o{۪+}ݐw駔n(V-A]W_V浾ܩ|^|w,P 0"[y%\Rs\urxUWUEo|*-(FԯZS< 9-R>D#< !*Y- ׿^ 4wo|S.S"0xzh'u 1̔_bEXs;DYƒ:Fse]7nsZ+&'{%@"J989,< (0ƛc9އ/jخ_jo80cGMoN>6Wr9 {׿uaYc$mX`>2搭s`Xp2x^W=ї@PС7-v`W_=A;s|70`sp[,=\<.Ȅ g~&SdM _뼗eޢܵ^[bέ@/<;sMyph|unB9Si{YgM_yw߽}dl@GE]T2ND+cX˽u]ծ1CH7CoӘqWot:̭aO;A'݅@w8RU>{q;&o|dsпyMT^$9j~;|}xJu]WR{[Z RѠՉ tvj b2d¦E4Z}CgCz'r]Ok pGvH?2Bps Ïc̾?P˔5\SW(6raڪ"/~ңH(s8 G>ZoDD?z_ TNpǓx(qe>yTH{G{^(C3 $f6x sV|(Ɯ  j 4Vm1tIьU4bOF8mDvNGtGn3%@"UeD%WL(#z-DxS͂&N=l{Ζ>>9H87iBOp6GW8 礣W8_8U/_^|K_'u5{ dr0Гl9 _b駟^6=,2WTl(A.Ed+igu 7Tg!"O6Y89Ȗ:ûpmU"cxNu|ot֏y?OWY0[oÖbPvh,]N\UX gfi&`wڭ0 kq_'Yȿ`dqy!{X2u']XP-/[{o)Rzڊӯux]~K#K;x509#DhuvpRD"&aA->~O}jA`B%34Hk DCA`bnOuSiӖfN0SA53mn<P5>SVx$^$ ^;ц?D)eq!1^JL1qAD8 ZylXTOd2)_ D~2 7W1Ǩg?[yO8$^PУn*sj15yM|1VV-kc Mz)V]D H.@maeтd<0{!(bOy- 7;#q/A [#.訫 y.6G<9sspԤv;Q9k&lBWWD hp`q +\xᅕW噳sD'k#i 97{T3M̃88$2cAys 'I7q/-;9(;!|({' =Xq[P4^%c7CC9GV9=t`ιo\/;1'4 dLt c[;*#݁@W8@1%?be_)C'7uH)oleݝox w;OJGGT!@% OA#&`%!@`$ν '1A!\V\Pʨ6no@{6u7?xGmqms OV|m{F<N,E%QP/Fq욲'#%9-b;( I(*<?t'!+*J<IyNBmi!ӮvD)#bZsd:h<&W&c׶L0zW>F`x&jV+jEutȄE 61r-s")CyB~3%@"tg#O[tG9vRGM䱟L]k s 1qW/t#M{D&c߱D<PQs66W0zQ2%'N$s혓rԉ@c y 9^?e"&Rqy[}%d /*Br~q6jɻMu}n `hIg~[ kdS^>`)iE&e{7,a1Bz#$1p< u" fᡍLݍ@8-9,8}e?2׷eSFW?Z={ O57me+޾=o'"o<o'LOh9(H 7xL' !j'9JW oj'%J?%+%Z=(ԢQr̖cV)Oud,^?aOeӦe'fmuU?)Q(fRkB3Y&5|z=uGWERT'7YV(7 U!?F)IjGߜGϙd14-ĸogt1(-E1!>f_+3.EQev' 43%@"t7ALƛ= ((1 ǼBɼpm)Kwaa~)b,ogEՠcz3›"t}ӧC{3@_sqx϶SȇzKyxk_[l3 #'h#imyMEŶ\ ??ǠN=O܋{pJMdS]=Po~c飈cܔq 0؆S, 修Dk:27e75_ede7_zzwT<oe])˼C+_;x&LU'KP4dCD"Q9#Y6dР/_U֮PC//z/|{c+W/>ҭW2 G|2KCI9g@*AGe@)k):wdR4"lѣurVϴǀ0q[uy=#jzqB0rHVoN"<9a#fM&cMr]]Cg=EN N)DZS$@"UJa %[EY| uvHNrDCVŢT8-G~褬=AQv2tiޢV:vm("1Yo!o}g]gΒ:N?x-eV8A65OFg*rȮ#2q/-zr*zc,7C|܄h,No}|4N51_`D6#~DdW :ųLavNl\G1=[yt) ]+=}eUz,pYw??2pԩW|9FWl}螲e`e;t3el" o北r:j/K5gnrۿ1 !xJHa I)SGFfK1ʣ@D9ysϞq{%< E*YUO zѶڭ($#c*3EőHy18$SLd1N? J@ޒgQƗ%<)J /rDs6[il@h?*o;Nyy-HD{? qQD3&}#}{_3@ފϗD:l8 K h5L-#hS$--yʔv'1aC" ZF;qj&4a[Eޙw'_կNv^̏|h9 ϜюKؑm_[ 6"giFt-ى1FMX=:;ڊI޻v{PVL#/lcXz'Zw968o~o{J' ?T=e=_%&Cc,YVN JPtٓA-Q928mofeGQ>חzEyy{)PNV U7{֞>snPN)X1S6"c }Q^:F=G*Xf1Jp<+>O(:>ȡb "jspM )` OhpZYz. ^0a,6Ż&R LO9xd(:2ExDrV[e42h$?^ tNfᬳΪ} $1Hو}1%(Q3T3{y}Ы =DͶa+w,֊@(g/3bWY_:ؾ5}EC '% EG$]Cl.G2>ce9<N06}86l-Ll&:ls7m䊳̫x:궟@rl y޼sb^DeW,%DFV s]Y2J9S>t+D_,cn5xN[x| hM}[W&FQ'݃@9c^Qey2'9UvB?һ`Vg^pD7U:e۾6UA4am?}(kDPIq7ׁ߾1V$A٦%pu!G6CYPG8"E[)YF:h3 du(\-F2"|)Q.N^Q[7@WC0IwYP@y L842y#/d?U8W+"*o);HnF6 }@g+a۰$3 ]c46I9-&윂H"8b -v:"5JW;4p<QT? c̔O#<5\1E8)#Fk}nceDҮ-9<ޤ?dH" ه:#}#MN]v{S>ʡ%~G&4n8W^:1bsrF*cKGäxFcg$DGK(}c!гzƝxYrK+sNZK{ _Po:lP~e||y'm?a LQ'et&UcO]! +FCEq~O uKu(eFDJ WխNɒ|wUiz(>KF D y B:Y;&8W9>Δ<Ya|\ 42Ce%甲icټdi 9hɒ:67>8C>$ }kt(qyM[(tK# {LOgtJ$4'*/R5xJOdyF3=߼̻?)7\[ez;B^C'Ne/ s_M msN6ݐ6(Ӿ{i(۾,<ʵ|T?d(ߤ٤WgIDATH :9C|Nfzs79Cl'xX0?P\|p}Kk#vF|"B\4cosPQ6cƾM4bvAM3DZ]OԮ+1?R!h1|(&/q4K*2!K?dJp]YlyD Hkty[ aoɏz~Sn].~v}m2:EyL<F$x|D4¾@Ӧj'582Q~e'*S^kAMMmi^o)Vmdw:eC|{NSgҟ=m3LW~ܦw37-׬@"$@`|Ӡ4"{?E|l 9]hmo6ݳaO3g0soϖD HD HD`&?V__oHݲ/)cx@+};Yn@)͛gm֯,<KEw"$v<ID HD H}o6,XX==p_ϕ'WXTz.,V";-*ۙkow)eӒg|LJٹD Hftd"$@"$@">嵗r];:Twfy{ݬ##eKN._pLxz(>HHxD HD HD )eoWcmN}@umR.;<pumx_L@"$;H,,HD HD H=ox?PVxj2?tv 4)LfN{UټpQ[3J?A"tydoD HD HD9Fsh^OO.k.<~euee|lW{GGG˪V%dTslK~ޱ2W˂ 6E1%\A;FGhn:Wf.Sc"$@"${ o ys)cl$οp`:iuΛWo+7%NE:zʖm2.cn ο+&@"$@"0K<?E9nZ8:98 :tu<Q]p@"u<Cx_ƲC"wOvM=l5#;҅tC.87R>fQd"~D<k;tG4 ŋڋg1Ʊe@Sg$Ii@)3}G7DM6U5DI1QȔ$;38=GNvgs l'_,n!w)J;z6wzA_ī7n;7wLy"lBW(Te_&";֯_7̶Y׭[7kM&p#B<ۙmp]vu;g:o@<,]YD HD HD HD`"<'ND HD HD HD H@ Sى@"$@"$@"$@"$lE eD HD HD HD H)Hev"$@"$@"$@"$@"0[Hl}rD HD HD HD HD` 7@$@"$@"$@"$@"V7[\;HD HD HD HD tMPf'@"$@"$@"$@"$t'ND HD HD HD H@ Sى@"$@"$@"$@"$lE eD HD HD HD H)Hev"$@"$@"$@"$@"0[[IENDB`
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-portal/src/main/resources/static/views/component/confirm-dialog.html
<div class="modal fade" id="{{dialogId}}" tabindex="-1" role="dialog"> <div class="modal-dialog" role="document"> <div class="modal-content"> <div class="modal-header panel-primary"> <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button> <h4 class="modal-title">{{title}}</h4> </div> <div class="modal-body {{extraClass}}" ng-bind-html="detailAsHtml"> </div> <div class="modal-footer"> <button type="button" class="btn btn-default" data-dismiss="modal" ng-show="showCancelBtn" ng-click="cancel()">{{'Common.Cancel' | translate }}</button> <button type="button" class="btn btn-danger" data-dismiss="modal" ng-click="confirm()"> {{confirmBtnText}} </button> </div> </div> </div> </div>
<div class="modal fade" id="{{dialogId}}" tabindex="-1" role="dialog"> <div class="modal-dialog" role="document"> <div class="modal-content"> <div class="modal-header panel-primary"> <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button> <h4 class="modal-title">{{title}}</h4> </div> <div class="modal-body {{extraClass}}" ng-bind-html="detailAsHtml"> </div> <div class="modal-footer"> <button type="button" class="btn btn-default" data-dismiss="modal" ng-show="showCancelBtn" ng-click="cancel()">{{'Common.Cancel' | translate }}</button> <button type="button" class="btn btn-danger" data-dismiss="modal" ng-click="confirm()"> {{confirmBtnText}} </button> </div> </div> </div> </div>
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-openapi/src/main/java/com/ctrip/framework/apollo/openapi/client/service/ItemOpenApiService.java
package com.ctrip.framework.apollo.openapi.client.service; import com.ctrip.framework.apollo.core.ConfigConsts; import com.ctrip.framework.apollo.openapi.client.exception.ApolloOpenApiException; import com.ctrip.framework.apollo.openapi.dto.OpenItemDTO; import com.google.common.base.Strings; import com.google.gson.Gson; import org.apache.http.client.methods.CloseableHttpResponse; import org.apache.http.impl.client.CloseableHttpClient; import org.apache.http.util.EntityUtils; public class ItemOpenApiService extends AbstractOpenApiService { public ItemOpenApiService(CloseableHttpClient client, String baseUrl, Gson gson) { super(client, baseUrl, gson); } public OpenItemDTO getItem(String appId, String env, String clusterName, String namespaceName, String key) { if (Strings.isNullOrEmpty(clusterName)) { clusterName = ConfigConsts.CLUSTER_NAME_DEFAULT; } if (Strings.isNullOrEmpty(namespaceName)) { namespaceName = ConfigConsts.NAMESPACE_APPLICATION; } checkNotEmpty(appId, "App id"); checkNotEmpty(env, "Env"); checkNotEmpty(key, "Item key"); String path = String.format("envs/%s/apps/%s/clusters/%s/namespaces/%s/items/%s", escapePath(env), escapePath(appId), escapePath(clusterName), escapePath(namespaceName), escapePath(key)); try (CloseableHttpResponse response = get(path)) { return gson.fromJson(EntityUtils.toString(response.getEntity()), OpenItemDTO.class); } catch (Throwable ex) { // return null if item doesn't exist if (ex instanceof ApolloOpenApiException && ((ApolloOpenApiException)ex).getStatus() == 404) { return null; } throw new RuntimeException(String .format("Get item: %s for appId: %s, cluster: %s, namespace: %s in env: %s failed", key, appId, clusterName, namespaceName, env), ex); } } public OpenItemDTO createItem(String appId, String env, String clusterName, String namespaceName, OpenItemDTO itemDTO) { if (Strings.isNullOrEmpty(clusterName)) { clusterName = ConfigConsts.CLUSTER_NAME_DEFAULT; } if (Strings.isNullOrEmpty(namespaceName)) { namespaceName = ConfigConsts.NAMESPACE_APPLICATION; } checkNotEmpty(appId, "App id"); checkNotEmpty(env, "Env"); checkNotEmpty(itemDTO.getKey(), "Item key"); checkNotEmpty(itemDTO.getDataChangeCreatedBy(), "Item created by"); String path = String.format("envs/%s/apps/%s/clusters/%s/namespaces/%s/items", escapePath(env), escapePath(appId), escapePath(clusterName), escapePath(namespaceName)); try (CloseableHttpResponse response = post(path, itemDTO)) { return gson.fromJson(EntityUtils.toString(response.getEntity()), OpenItemDTO.class); } catch (Throwable ex) { throw new RuntimeException(String .format("Create item: %s for appId: %s, cluster: %s, namespace: %s in env: %s failed", itemDTO.getKey(), appId, clusterName, namespaceName, env), ex); } } public void updateItem(String appId, String env, String clusterName, String namespaceName, OpenItemDTO itemDTO) { if (Strings.isNullOrEmpty(clusterName)) { clusterName = ConfigConsts.CLUSTER_NAME_DEFAULT; } if (Strings.isNullOrEmpty(namespaceName)) { namespaceName = ConfigConsts.NAMESPACE_APPLICATION; } checkNotEmpty(appId, "App id"); checkNotEmpty(env, "Env"); checkNotEmpty(itemDTO.getKey(), "Item key"); checkNotEmpty(itemDTO.getDataChangeLastModifiedBy(), "Item modified by"); String path = String.format("envs/%s/apps/%s/clusters/%s/namespaces/%s/items/%s", escapePath(env), escapePath(appId), escapePath(clusterName), escapePath(namespaceName), escapePath(itemDTO.getKey())); try (CloseableHttpResponse ignored = put(path, itemDTO)) { } catch (Throwable ex) { throw new RuntimeException(String .format("Update item: %s for appId: %s, cluster: %s, namespace: %s in env: %s failed", itemDTO.getKey(), appId, clusterName, namespaceName, env), ex); } } public void createOrUpdateItem(String appId, String env, String clusterName, String namespaceName, OpenItemDTO itemDTO) { if (Strings.isNullOrEmpty(clusterName)) { clusterName = ConfigConsts.CLUSTER_NAME_DEFAULT; } if (Strings.isNullOrEmpty(namespaceName)) { namespaceName = ConfigConsts.NAMESPACE_APPLICATION; } checkNotEmpty(appId, "App id"); checkNotEmpty(env, "Env"); checkNotEmpty(itemDTO.getKey(), "Item key"); checkNotEmpty(itemDTO.getDataChangeCreatedBy(), "Item created by"); if (Strings.isNullOrEmpty(itemDTO.getDataChangeLastModifiedBy())) { itemDTO.setDataChangeLastModifiedBy(itemDTO.getDataChangeCreatedBy()); } String path = String.format("envs/%s/apps/%s/clusters/%s/namespaces/%s/items/%s?createIfNotExists=true", escapePath(env), escapePath(appId), escapePath(clusterName), escapePath(namespaceName), escapePath(itemDTO.getKey())); try (CloseableHttpResponse ignored = put(path, itemDTO)) { } catch (Throwable ex) { throw new RuntimeException(String .format("CreateOrUpdate item: %s for appId: %s, cluster: %s, namespace: %s in env: %s failed", itemDTO.getKey(), appId, clusterName, namespaceName, env), ex); } } public void removeItem(String appId, String env, String clusterName, String namespaceName, String key, String operator) { if (Strings.isNullOrEmpty(clusterName)) { clusterName = ConfigConsts.CLUSTER_NAME_DEFAULT; } if (Strings.isNullOrEmpty(namespaceName)) { namespaceName = ConfigConsts.NAMESPACE_APPLICATION; } checkNotEmpty(appId, "App id"); checkNotEmpty(env, "Env"); checkNotEmpty(key, "Item key"); checkNotEmpty(operator, "Operator"); String path = String.format("envs/%s/apps/%s/clusters/%s/namespaces/%s/items/%s?operator=%s", escapePath(env), escapePath(appId), escapePath(clusterName), escapePath(namespaceName), escapePath(key), escapeParam(operator)); try (CloseableHttpResponse ignored = delete(path)) { } catch (Throwable ex) { throw new RuntimeException(String .format("Remove item: %s for appId: %s, cluster: %s, namespace: %s in env: %s failed", key, appId, clusterName, namespaceName, env), ex); } } }
package com.ctrip.framework.apollo.openapi.client.service; import com.ctrip.framework.apollo.core.ConfigConsts; import com.ctrip.framework.apollo.openapi.client.exception.ApolloOpenApiException; import com.ctrip.framework.apollo.openapi.dto.OpenItemDTO; import com.google.common.base.Strings; import com.google.gson.Gson; import org.apache.http.client.methods.CloseableHttpResponse; import org.apache.http.impl.client.CloseableHttpClient; import org.apache.http.util.EntityUtils; public class ItemOpenApiService extends AbstractOpenApiService { public ItemOpenApiService(CloseableHttpClient client, String baseUrl, Gson gson) { super(client, baseUrl, gson); } public OpenItemDTO getItem(String appId, String env, String clusterName, String namespaceName, String key) { if (Strings.isNullOrEmpty(clusterName)) { clusterName = ConfigConsts.CLUSTER_NAME_DEFAULT; } if (Strings.isNullOrEmpty(namespaceName)) { namespaceName = ConfigConsts.NAMESPACE_APPLICATION; } checkNotEmpty(appId, "App id"); checkNotEmpty(env, "Env"); checkNotEmpty(key, "Item key"); String path = String.format("envs/%s/apps/%s/clusters/%s/namespaces/%s/items/%s", escapePath(env), escapePath(appId), escapePath(clusterName), escapePath(namespaceName), escapePath(key)); try (CloseableHttpResponse response = get(path)) { return gson.fromJson(EntityUtils.toString(response.getEntity()), OpenItemDTO.class); } catch (Throwable ex) { // return null if item doesn't exist if (ex instanceof ApolloOpenApiException && ((ApolloOpenApiException)ex).getStatus() == 404) { return null; } throw new RuntimeException(String .format("Get item: %s for appId: %s, cluster: %s, namespace: %s in env: %s failed", key, appId, clusterName, namespaceName, env), ex); } } public OpenItemDTO createItem(String appId, String env, String clusterName, String namespaceName, OpenItemDTO itemDTO) { if (Strings.isNullOrEmpty(clusterName)) { clusterName = ConfigConsts.CLUSTER_NAME_DEFAULT; } if (Strings.isNullOrEmpty(namespaceName)) { namespaceName = ConfigConsts.NAMESPACE_APPLICATION; } checkNotEmpty(appId, "App id"); checkNotEmpty(env, "Env"); checkNotEmpty(itemDTO.getKey(), "Item key"); checkNotEmpty(itemDTO.getDataChangeCreatedBy(), "Item created by"); String path = String.format("envs/%s/apps/%s/clusters/%s/namespaces/%s/items", escapePath(env), escapePath(appId), escapePath(clusterName), escapePath(namespaceName)); try (CloseableHttpResponse response = post(path, itemDTO)) { return gson.fromJson(EntityUtils.toString(response.getEntity()), OpenItemDTO.class); } catch (Throwable ex) { throw new RuntimeException(String .format("Create item: %s for appId: %s, cluster: %s, namespace: %s in env: %s failed", itemDTO.getKey(), appId, clusterName, namespaceName, env), ex); } } public void updateItem(String appId, String env, String clusterName, String namespaceName, OpenItemDTO itemDTO) { if (Strings.isNullOrEmpty(clusterName)) { clusterName = ConfigConsts.CLUSTER_NAME_DEFAULT; } if (Strings.isNullOrEmpty(namespaceName)) { namespaceName = ConfigConsts.NAMESPACE_APPLICATION; } checkNotEmpty(appId, "App id"); checkNotEmpty(env, "Env"); checkNotEmpty(itemDTO.getKey(), "Item key"); checkNotEmpty(itemDTO.getDataChangeLastModifiedBy(), "Item modified by"); String path = String.format("envs/%s/apps/%s/clusters/%s/namespaces/%s/items/%s", escapePath(env), escapePath(appId), escapePath(clusterName), escapePath(namespaceName), escapePath(itemDTO.getKey())); try (CloseableHttpResponse ignored = put(path, itemDTO)) { } catch (Throwable ex) { throw new RuntimeException(String .format("Update item: %s for appId: %s, cluster: %s, namespace: %s in env: %s failed", itemDTO.getKey(), appId, clusterName, namespaceName, env), ex); } } public void createOrUpdateItem(String appId, String env, String clusterName, String namespaceName, OpenItemDTO itemDTO) { if (Strings.isNullOrEmpty(clusterName)) { clusterName = ConfigConsts.CLUSTER_NAME_DEFAULT; } if (Strings.isNullOrEmpty(namespaceName)) { namespaceName = ConfigConsts.NAMESPACE_APPLICATION; } checkNotEmpty(appId, "App id"); checkNotEmpty(env, "Env"); checkNotEmpty(itemDTO.getKey(), "Item key"); checkNotEmpty(itemDTO.getDataChangeCreatedBy(), "Item created by"); if (Strings.isNullOrEmpty(itemDTO.getDataChangeLastModifiedBy())) { itemDTO.setDataChangeLastModifiedBy(itemDTO.getDataChangeCreatedBy()); } String path = String.format("envs/%s/apps/%s/clusters/%s/namespaces/%s/items/%s?createIfNotExists=true", escapePath(env), escapePath(appId), escapePath(clusterName), escapePath(namespaceName), escapePath(itemDTO.getKey())); try (CloseableHttpResponse ignored = put(path, itemDTO)) { } catch (Throwable ex) { throw new RuntimeException(String .format("CreateOrUpdate item: %s for appId: %s, cluster: %s, namespace: %s in env: %s failed", itemDTO.getKey(), appId, clusterName, namespaceName, env), ex); } } public void removeItem(String appId, String env, String clusterName, String namespaceName, String key, String operator) { if (Strings.isNullOrEmpty(clusterName)) { clusterName = ConfigConsts.CLUSTER_NAME_DEFAULT; } if (Strings.isNullOrEmpty(namespaceName)) { namespaceName = ConfigConsts.NAMESPACE_APPLICATION; } checkNotEmpty(appId, "App id"); checkNotEmpty(env, "Env"); checkNotEmpty(key, "Item key"); checkNotEmpty(operator, "Operator"); String path = String.format("envs/%s/apps/%s/clusters/%s/namespaces/%s/items/%s?operator=%s", escapePath(env), escapePath(appId), escapePath(clusterName), escapePath(namespaceName), escapePath(key), escapeParam(operator)); try (CloseableHttpResponse ignored = delete(path)) { } catch (Throwable ex) { throw new RuntimeException(String .format("Remove item: %s for appId: %s, cluster: %s, namespace: %s in env: %s failed", key, appId, clusterName, namespaceName, env), ex); } } }
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./doc/images/create-cluster-detail.png
PNG  IHDRC IDATxweŝ,$ / @xI3c4;nLBњVLwK-0-p#;Ὡw=yu}MUoRɈsI<='όK)[sw.RJٺӜM( /!!!!!!!0/",^҆@@@@@@ y"a9O8B B B B B B 2c B B B B B B`DX$'/C B B B B B ",3B B B B B B @<Kˌy"a9O8B B B B B B 2c B B B B B B`,2O"{W{Z,Мkwy<e̙eV++\dpy>C7(,LYGw}wYxk=W^y^_<7,-\hz>^q +0[>`y뭷ꫯ^m-b@@@@@ *,k\r%eƌe6+g饗~B`uQec%N?Oƌ?I'?IenmҗKSN9=˲.;?;n{KYwu}or-^|+_)K-T^{(뭷^׾V\r@@@@@ 7*,r饗馛@9CYd ޿EYQ~ 6ؠ^#vZ/qy}yy_}յK/te󼭻[>lyꩧIXs9m-G_ho]yú?AI/b-'@@@@@@#0g]l$~BtᆳN-$aFlVe]v).h=/ D4=c eOyvm5p44X~֫OqN]u]unK{IT+&l.+w_;5p+[l1p,-?#kmtLx;;=8ʣ%Xց$y{}09!!!!!0t拰$;OV1C׿B+"f]wE,Q=X)7|><='PQX;NX]'nnKd ҚjX(+U*{m&Q3VP><yM6٤|߬Py{nATE5\Snƞeo\m^ۛozS_yUG’O.)UW]U5\eUVB$xx.=  (D6[[oMėg Bv-lQӟT=~w1T/'1j/>K!.r׸>؉Z*!GD<Z;~>A<XcZ B^yM%b}_~?!!!!!!LJp$*}c;f/.묳θ^VѶ]afzo~: Rz}N╴%GLp6<zx&_dJ̶zxTAA^7SnG}htLtEzĦ\ki3X>j]&̟&0ҳy<1vaOy 7PWb DZMW%\| m`M$,J^T=!Z =Wټ}ΛKX9gqwON;|#-:ݗ5VqMo݀ !>D9D];&^`paA믿z-F$Mկ~UtaU[ي#4-_|BS&,U7{g9gCLyUd?[9= ?≠3}B S<,_^%ohwyg.ۄ%ygV*4QB~p̫;7B\-]\b;ny: _ m V)K|6lSߡc,2m bճ_|NS", N;J‘@ y<>(rJHYu=K<^="Šq\}{QD+MfXH 5ORonX2ÛO$*=q>uHeHS~n=zJ~njaV_MʲN!~@@@@taSH=7y<a0C믿~}o$QwcOGJm}ml^Sl喫S]# 3jlĠg$M+L%<_I+j0!<(H?9B_bMGuT*kszT~> !!!!!!0 K!nxy ?*RnE!F=Cu&NJEʴXEwx D+blB(=bL-XM:ڪ27t*(ύSKm8ĥt!lrq f zՈۊ҈۞mtNMD{ջ?~@@@@@ /IVN!1{‚XUqCV'm iO?]EUM^!בfKl^r%>utSO=W|e2mE:^X'y#f_eʫ|!)sm!X&ܱҶr} ;ηZa4i#!0’( AE<K693&dڹzg+ɇ$&k#,lބ)fBN$oj,:s=UحjuʩWV9{U!mjvkgwږ4+qNicZWTejɳ r.,$Є9#J+4P;$f"Ĉ_U4yrme8lKۜx="G|M$([N7|6?{zʱRl %\/4˶ ',ŵhĩ",lC B B B B &&S gEXMf ~Xn y#m9:}[^MuO`ݼxA>ۚ9M= :){P~nq'>QY/m?=;6-OdW57Y-$껅B B B B B Bo²8[BB;T9Nl6ayO?o;u#Lu8[Z}s=1I"Ly1)Aybז+^sҍk*ߪ[ouڍ׿3ݘ@ K<{ggصnB@@@@@4$&3񱢫i$=by,y Mցxj8g7^;a'pP<^@BvN18(YKmZkjy]屴ZuWuαYڄD` &ܚ@y8uBi%齏oʖΫ+JqUu c=gI~dWt<f9^W^Vq|z_?0~@@@@pҴP6w]wۼnY]kV_}nOR}S@G 4&O&1צ܎'Ջ+oXAXŏZ}5}u,Vz߶-ؑ O<QV>!!!!!0滰E<{@!p&KgzKt)ë2nz'"s=W^Z'b7=+٭CT=#y)*, )~Vr;Nr!}^,ܣ΄'._{uu'?I}H]?kP= v1|<VBfv&#kĔ/W]uUD韼qSn rՇ9=']wݲ[eZ<hh#[}O<xhTG[) ksϫIv%!,S-,ⶺք}eGB@@@@@wae&*/xϬJYt! kN +޹ocNlAO ʳ(_=uiu f[H$r~ߘ-~dlZ!0= JkWlZ? s1 F[2'f.D%Hpn6uj-^-BH6z _B˶nʛnrPט:5xmB@@@@@waIP3OQwmՅw;=ǫ`"& 7ܰ<+;aI(O~'Z 1u衇ӳm=->jo~SFkhtLYĬi^r=ܳzr9LOz}-/wmi/>;c;z>I^^+ne'B B B B B`( 7a9!5ɓf 4<]D{0;⥻=أټx<C^}NUKm"fBym;ë<YgU.rWш )?KbײBʟkuwc:M$0߄xxB!`%޳D\Px*- .XcXYGPKD6kZik,YˣKoE$=,l[o]<_O۝Ѵp&>'|rwcPD'tRF{.'vi M wB@@@@@L)UM|L/R}$7(Xkyż.D:? HGDXU SY/p(g F Z2-UZ xVЖ8#2:RYO[&D{<m0+TKN|pM7-Kۭh孼{ ~aS]zzbi!!!!!A`J%ւXsXwKĵEv:"B3Vo̥g!Ͷx7W\qEs){Byr-BЇ!XAFP$8^E/뭷^=6'rv˶c=Vv1S}1S믿~6QN@@@@@TXFO}"%a3Z Lx㍫U4%3M'y7hY g:kxMEij,K\rLmSI[A[ʰD`P={w=YQт67/hqlVR:h-`~u]{S_q;Eտy%@@@@@hf\_JNRqkD@HlwGMg -/Xb#O4CW y" ߿7(nѧΣ=*_YqM1rxGǒGWsz<(~@@@@@ -\X- 65˳9f ,|i[ڮ(5B B B B B  S:vNDT SU!!!!! z\pژ@@@@@@L!)C B B B B B`DXC/!!!!!!0",na a9 6@@@@@B:B B B B B @0r!!!!!SH r &ic@@@@@L!)C B B B B B`DXC/!!!!!!0",na a9 6@@@@@B:B B B B B @0r!!!!!SH r &ic@@@@@L!)C B B B B B`DXC/!!!!!!0",na a9 6@@@@@B:B B B B B @0r!!!!!SH r &ic@@@@@L!)C B B B B B`DXC/!!!!!!0",na a9 6@@@@@B:B B B B B @0r!!!!!SH r &ic@@@@@L!)C B B B B B`,#ִ1B B B B B B` QyȌu 3FF"+,dr:<m &0cƌL$@@@@@@=sC-iB B B B B B z",{(!!!!!!07",Z҄@@@@@@DXPd'B B B B B B`nDX N@@@@@jI!!!!!!#aC!a97Ԓ&B B B B B BG ²";!!!!!!sC rn%M@@@@@@@eEvB B B B B B @PK@@@@@@ ˹4!!!!!!== sC-iB B B B B B z",{(!!!!!!07",Z҄@@@@@@DXPd'B B B B B B`nDX N@@@@@jI!!!!!!#aC!a97Ԓ&B B B B B BG ²";!!!!!!sC rn%M@@@@@@"LK###'(sOy饗6lS6xiYT*B B B B B`8 DXN~1cFӟT~ߖwy<Ss$,{rg7|s[޺eE2dd@@@@J *a2;Ƚe&}̙G~?tO?t9sˊ+Xx3[lfe嗯}W^ys}ݲꪫyg}v2V^yZ̯ꏡz-/݋/؋J+w0;!!!!!%r2믕_z)<Vf࿕;rBlw_Ko IDAT25l۫,6aI]tC.R^PP~VW|ﭷު,½vmUl;(<fgQۨ^gvm7nzN(믿>V[mUvuׁMou쮹暵ZkYƒ +-R:]vٲr>XӼ /Xce ?^Sme7[KQ^0ov*RLjvzF;,QhG;&q+\rtZj6/!!!!0 DXN'/ɧKYaRBn)QF3ˌ6+elE71x$2k"M~xˣgw-(w\5Z[s9Gʗ +?v?om[=]"__{FޟwU0%.vZ;{.W^ye9裫0k9B?i}VwilqW7H.iwફ*~xqgGO~Rnzk!z/V{ :ߵ:4n(;s?]\Kݪ<35]$ίYnzK:딏~Uwy5.?.+vXr-Ye?B B B >Pu9Rvج?Ws+#OU) _RV[mܒ kƮgkbːFaF1Xjplyxs ~umSMq Spl-4WJ ^㬾UIO/t5.š?lPob<s5<Ģq {X02|:~_2,fZ-CXwug߉Z.rGV;k׮S>e&Nоw}kA[yuQ$y6MY\#QkW#ObULyA;}/.n-rα",'RK֊ts{R]V-#[nqojn]1Aaz~F{3JSn`e2f-҄&V|x!ܦ̶ҿՠ_mf)[<^1B9?0f0Q;9 cڢ@ vc5}_rj1Z:u]Wyc}衇M7ݴF馛 o~sC^ƝLc=ꨣ*W_}}ULzzU$ a>W׃2Nb@AU#}3oʮvr/axwr!c*0!LڦNqƬ22uk7_p<mQ]=y]v٥+m[\Zi5#,Pk }e_/3:,fKY賟-e \67. kzB4c|a$|<],B|x΋o>G z^ξq@(i-8O0מ-cDZnaw}{#0HS]//08Yleo՗,!!ouh?݂]Yxm|JL~*xO}%82F:^诽޻>s%B ބO~=Q .ui+ݜqDqNZlM z{C˜UiƤ`ߘ&<]D2G>ƛ떸51.=oD]̄N",'7,s;bߖrf(2VM`hz,Q{ K^6“7+0V nPs|<Բ[-$5/$Cق+-Kĩ8</D<ZsLm?]\^Kv\bA>mu"u0a}<>_m/榲 X&k\OK_cGC+7D(@0NA@o'GwC }E0 tyAܨW&ouцrK<:G V1,Ѯ6~ZډlqLUbY0nyիM#oZ}Z!!! Mf-}ˌÏ,#'e)PFXu)b FF,4%ã&8s "Qİf8 ,p2y`e&0Z9<.3b4Gu5UR , &Z ?whb#|n_:SygJDnr;Zz&cc8S( (禃m7Kׄ(/5 ;b̹- |oSTo1ۇXuuu!ȟnӴ]:®"T9ztI:~I7qLmm.",''Z,_',կVf>dewf3 b!6W9C&"8YV5b7Wh`8^C()d~1☠mpP^L<i<Mhv)<Z y^ 6ub(@\~u5VΠ 걱Dc . }+AleKcߘʐke2w8+~ʕ_E[Sw=9z +J c \\kPB@@@LK>Xeu <2c&< (XD/D(L }`4C!|oږ!;Z0c CWki\^e [!Ny䫍<S[TA&qy\Hh[F'yJJkqa%tnq'ꎡ-kL6S8zsMGwNƴ1.>&B B B B`rcׇKX1ly,dBTy)<v)K ' i9ȫ5MhN3֥c4!PyƯxAS+QiaqbP|Z FT]þtDe<Dl+gVބ0Oe OX0s?_A-ܔ1XtcxЌtndyyٱŋɍװ*Xy\@@@8e0F`[#.1d*/xm`fD@{D7eon/_-Q*Hjà-k!M8Eɻ+*W"U\vhK- &m5 uG'Mc?8./VAӝ-B9Gp޵"V|-uqxJT*,ě۠7vkЭ,VmoZnzMن@@@$a9?iRchmBƴP+[M.s!>eK-Fތi*7Cv}syttF.>zy뮳dk'۳MӦ+cڊԙK4!)dP[yø 7\ڴƃӧtї僵isƍœPe42P7ױgs̞a$nu,m\+Ss-y׍'Z0xބ",A/0M5fQBϸ |Cqx Deqߚe,Pf[`z c4?[PiA˃cg"!ӄ/,Qڪ D6qxyoWGkSwĪ-#o}M74ei|Rq1ژ#c}ƢL^]4G|771`{=c}q >>sA8s rx\1hwo*$HkT3O@]/d7kA=ǫYSs͵70jSMxɼ&2 ]%qSaInɔ4J" Cy3yjG\A+/ixM__{P'-#TB%y|B<߯ăgшKe{*;SzuHkt .M2ۖqĆt^堮DE]Tֿm#Xy-qe2DrL<7@.CҦnKPoP%>OXׁ^#_"|9ӱ}vq:Fy0ozƸiۺdݸqx!ޤiyɵC^I{l۳n(+!B B B  CBMq#,oUAC1N0B4& n+ɿ</ #\ބgLJKDb><5& !oAՅ̧B}_P#uj( ~m|1?LanM=e]jgyf}ݫC;&Nµ^[n20ABl*9H\1264=k˕W^Yһ6]+Ę2x훨#<s]qU`L='fye56/A kAFW&v&^I!!!E rHe>*'W"1gdZTx,<#Akqxh_]%(1~}F3p2bRzi3֛XSq^xjMť?HGx.Qr衇DI/$^QB'4yaد?&fiɸtmz~V8&%;_)8cS{D"MTnֵ2P1u^V#8viuL|wYW?+z)_xᅵ u2=<v1:iHU%,15=((bG~r]!!!Ӆ`fnAΨxKx=h10}MXBt1ԃ<ZYDisNO1K2yzIVϴ7aў5 寮S.o)cxmuzf&_yuhr:/N: sym %̫תgo ?+X&?W~#|ן@t/7]cl Gu{Fcӿn(7Za '+TwyPʬJ#ڭ[w裏7Fc%..sLkm`Lj6fhF+C B B B`~_(`(2 H/#h,6@bT <C l}bW6ؾ Dhf-ChS[8'. 7oEQbx<lbMlS3GK 鶗$ l+B`z&'y&R>Į2y)[=[BUlAm pnƋ;oLk",?^!L߳POLmD!֕1yyHSMM9d2 O<Din4a8Zum,q2Zcg A5q8ѱcyv L4_i2ѴSoN0H!!!!0͇%"ݓ!T!n<H=tLuhuNilJ DX~}Pk<]Dd5BycxK'U5qv"$N@@@@122r})e6,1ͶX)BjVў+}΅@@@@@L:",'i2 "pÿ-9TmNcC B B B B B &@dL^!!!!!!0",LI3y@@@@@NOC B B B B B`2 DXN&!!!!!CH r;=M$a94W@@@@@ !!49B B B B B &@dL^!!!!!!0",LI3y@@@@@NOC B B B B B`2 DXN&!!!!!CH r;=M$a94W@@@@@ !!49B B B B B &@dL^!!!!!!0",LI3y@@@@@NOC B B B B B`2 DXN&!!!!!CH r;=M$a94W@@@@@ !!49B B B B B &@dL^!!!!!!0",LI3y@@@@@Xdۜ&@ [o_~7(3g+B B B B K,QYf36?r  !022R^|c{, /<<yϗ{eV+,2r0B`A%+z UVY,b2S~A+B B B &Jw-fqD<.뮻n#,'J4B`$'^JwLsF"HB B B B  bU[єgy e饗n.0gS:Si+Q>C#M @FvkQ2-vW%l$ !#`}r\yS|",l0!!!!0 &,">4=-DX6نp鯋/x2,in@@@@@YJK.Y<w ]!#k;<C47B B B B`؋mJO7d.!4;B B B &HًB *9CF`!Ð@@@@A`,1r p9!!!!!!0>%F@@@@@",ǀS!!!!!!Qb@@@@@@A r 89!!!!!!0>r|F>hyʊ+X?/le=Se饗.-\ Tg/kFrՉW_}<e%(,LYy{'v8ovyJ+TgwV2F+;C B B B B`A$01~AlަGyzꩅ0vmqW]wU97ʆn8!W\QxQE?*֮Z/K-T!4 ;cLmjc=*c%_|+{_|KU\+_}gO~o*߄,K@@@@ )oYFx*3XQ^D:Zo*k>袋VtWo̙3gF<wܱw_/7xcg⌌ Ս6ڨjx{4=X%tӄ4c .u_l _ye vWϯ%RqqCw}T_vfӴ-۪ IDATGIlYYWfkO?5>ET *‰#⬾%\Na%TZS%֚ؔ7)Ѧ+U*\oFz !xg;c|婼8%XMy{’x6U'W[q_~*&_yGxz{+GȦ&@@@@@J rV.3Zw-?Vy2cKYr1hUW]Up<tUO |>*"O9O߾lϮHyIX7tS*_Pބ\<?p9s(T/qCm[R^TXM>w)Os=+bѴX]SxիīN<"τ#z:.7礪x AAq7c?*SܱO۾|ocnSmJ'!!!!0] DXNy2УJyRZjeGe@5 5quuוn lYy݌gA O<aA8\ zbO^Zdʭ@xwW^/(*Ok,/>*h[}ԗ ^ߵ_~S*> {y<ׂOiWN-]sFX1<놃k|3&/r7x& //}ceY]wݵg7N7]?i#h'5]36X7W<|Wױ-Qqyv7@@@t$a9zeKY~Ry'_^)?SKb*/ˀе^[;>"F-cb?Cx6K K/z-=1UO#(Gh/D_l:een'!+_b䠃EXj!.ڦV6#< b>MϜKœQ`0va+_G>^!w]MsGq5l\{5Ծ7V {+?Ɔ oxWX7MXT&Px76 nחE,vqO9C B B > ",Q/j˲2 +-Re:dlM0͎`g23 .\$oޒ׭x)J$xe-$n ~4J)+PƷ/{i6lS>OZu<%>Zv!ҟqUd?!ө|bBݕ[T(!@vY|_ sF͋O>zy6dvX{ʏ~WW_| J7XQ #_;,[8c='mK.R9+7Jj̱xnr<Co:)இN8!c 2!!! ө,,\̑RVYUW=ƫtw<0liBStq nFn ߿TgM[yxrLPV뮻n5y S>JDQGUum-tEx>acDH򓟬O?zrMVB3G#<qx$o}[&C7Uþ0UZVD&qf>rMG ד1~!ԛ#Z76._ƽ袋M~hiO rus+JYx2?u7re̳JcR:WA+P<"]-Qnqy)o3b0$$/"1#^dhð7 չ3ve<'IHKTMldBhA$6F\oM%pMTτ9#`Cigͅڳn;Y[N7V5<}Ճ? ƺ%nFxcV[t%C=t n@@@t"a9zjTԓe~[Ys2+e'T[qC 2# ׶xEKL<S@m}9SB 4CBQqLƴ:s1Mt̳I5aQ]c^~'Fzꩺ/2 V~0'NA\⁐e]9hnB<O)MY X$G0-fOwW-R7[<E'<ʫj|zNn-ɠ|MϏZȸwsf==B B B B`Znݲe!"TX6ڲ մBb &Kx-3';s<y<<My&}7r/Sdǔ|74AxZmT|λx-(C} 1%XPr)a{z뭫U?uѼwœiMn)m8f< ֹη4uč }k%j:71xKUXyA 1 xvC(qa9N",So٦wΡd0lD o bp0o$&-yW3=/}h!,-ðƳ<U j"mW/qZy4 q,5TAEPKÃ{E4踶Uz% aηϴnb_ۖvکi M4򴛲-qe:4~n귛 6 Vަ[ huo;JR=я~WB@@@| >L-H]{D#3U@+ `ϱ 4ýg* tPyc&AƵlnƴD0s+ Ӟт"/h Db%|yZ^!<+h mg&kG$kRxwMusn(т8n J/UXYyRj,x~ִj>W3nݱ<^:i㫛xr>B B B  T޼: 3"8%L!mynߊ^%<քH'xм'5%оU2q j! 7#=BZyj _ ve<14HG͛)gxK8csM2Usg+eܴ 79 ٖ[n9;?y{`1`<[uXwa~ӟ-9:cmڸ8M`?B B B B`:N1u1ի9 ^he^ |yZ 8yr˶yZDeU5y<B3yh&ˇ)^CbbKJ8Zm{WyO_ORzNw'²b?>mb7x5Q&em?; ۹nF}ݶm}&WK/ cVY1ś+m͏6m'.qB B B B`:0Iu xe2Ʈ7&Cj+]{6<B]/Zq' </MGtǔ~6K*]W-Sאop0skkPWL>5 H -6!V>;&1>m<zjTq13Zcƃ^WfGۖ1׾*{I ɳ,i嚎D*8ѠƙkĸKSoSW;cسH ØMĝ~v2yyMxJb</'}aP7ڻ DZ$N8븼PK7$@9ABXuI"xN/w:ڴ/| %"|kmS&,[́vm71Kg,4&so'ai^n__1՟wcF955<'OZїM 7C B B B`:ν3u#LdGqg 8*"I-&> vءzxx.w}i"R姜3<kh@͠eODLK|B'k4!i%{zjy׺qZ{d0q<nn^?=7E<q3[}OpO{^ۮvSC >cd 6'{֘T_+vk v1~לEB B B BD [3f@eC9@l[ DxQSG7uִO_z5t"B ͋Gh~8`O?QyVl9餓곜#<V}B;/MM866<{k$,cܸqGGNa'5Ɖwj²{E:M76ac= lu8'|rbxҙ-nǵt~L r: Z xCT XI<C6<521Ga mMl""p}|H Zg\{O^*/ݠܖg=ZYV.C'9^]v٥׿SNc\ Vj5׏)̦NF0n*_y*qƓ(|7Uؼ袋d[dJ:k:8(AkLPIӃӟ<ƩA_|L r:֍0t] 靦{ER<ưwFnZ~yL H@/?7PO< zsΩ۶J˧mk $? <iMZ5 Jw|}Ջ{07Җ}Z?WP<SN6q3V d杷qfk ge㮰t_el.*FyLS4};FКz!!!&ޚ@]'^ihS A"Q<*{l5W9 a-.g1BS"}Hw}{QkBp'(i/>Ck=A" $zF+?|'xb\Zqմƺ@vS@M9֧-8om[v+~ksMnغ;?V03 U])dό:r_kεF\lijGpMn<DG=VUs.B B B ###חRvVJeB /mWLvġe =?ל#009ׄzSjhEWxP.n2XG>/&So7hƺ><Ǝh72<ޭole?B B B >pl3DKG x!²®y~ԽAM%HF`,aӭRX T&KK˃!!!6{֪7B B B B B B`oSP@@@@@,",~MB B B B B B`oSP@@@@@,",~MB B B B B B`oSP@@@@@,",~MB B B B B B`oSP@@@@@,",~MB B B B B B`oSP@@@@@,",~MB B B B B B`oSPL?,H\j!!!!0̜9̘1~~ ?K,Dyw{7ۏHSC B B B &@37,.htDXvid? /\[n[o^{mZ@@@@ ~en]!"cjZ<套^֧!!!!sB|l76$e7DXvid?b-V^{:72 in@@@hysϕ|eV*+lg\_Ji39!0̕˓O>YŚ"B4F@@@8؊Xcꪫb_ߖ;!CVX,u:+Rfii@@@@;,LY~嫽=ݏ~ 1݁I9!nsB+qC B B B B B f#a9sB+qC B B B B B f#a9sB+qC`H Xf;wzzzw몶<[|/yuIcu^ƫU>Ljx7562/{\ZShgm/n~~_4!0]dUGLc: /}KԔK/QwCle--Xe2>"+E_wߕ;SeW%?6X{o]p}p@=M(k%(GqWC` w^O~x} z땥ZjBu]}9CG? -ӟw~\rѢy\>_}xˆn8uQ^r%UHG-Z>Oڪ?lz2<,r婧*7tSe]zr_uUATf#<2~J`vKN  k[moxB8 <Hs3O?oq< 'F[o]Ӌg{v4+OkQN8Z^ }c{<C[n)u :ub(3WoWǕ.n6W\QB_,m{9|gʃ>8(n4L6@ GcNĮ*U>r :f(K>ʚh`X,6C!yy0~qebݠ>Σ7mVgTwmk-n{zu{vM@1Zh}kGqmsh?s-_;0Vz5:z0{k^Rmgci:nfc1O<Qûᄏwqe5%V]'z'7pCvmWó>[W_]_ױ nJviu5G}t>W}۶뮻&,}QVU3,A7ʔ9ZjHE{c_gǍ!ɚA<Pvcލ}Qkdn_NO>Ye}6ƵqAqӴﯿWuoJ+4ۘmMcTiA{ j+Ӯq  o~O?.(]u6ڨDqqO r-`1$$# ftl3Fz~j wMH` ʧ?j`8-آn& F mP7O?]x1DYnlDՉ)f`j>˨k?\`gc<+~6)`$co0`bLӸ7.mnek2ˀZwuk}2q;blͪǪDk]Վw_^ k6Ѧ. cu1 IDATNjΫGx oyn(wq8RWߍ}ZMOhcqҦ{B3a>2ҵ)q溑76 /Ck͡6VeK71hq|vy|[K{k^zi9czhl3kBiAG擭zi~>K{l&m٦Q\0``z=@їnuDnƇ>p~oWP_\Inz6}_;}q}<{Z!y}^׷ߗAcL{_/hf0ov_\s~+'2^=&!}g<m,s ]tQnm믇T|)ݜu'e؉o=%In<3o1th~Wf[#a9uls|*֌/pjQ1V RҦ˿KҝV tW]4`|wWÁA`Tf D1Z>sNMcA"/ ?3gحJ<A{ce2cKƾ5u`dcϜ7Ny2/-ďzc9/s 0ʘ΃H2xzd`/dhJ-`b@}<,~SLAc{PR:tvcr a"?SD cI ZDzptLoԱ /ѮAP5^us-rJ'.4ϽMi6z)&@s|,{パ~ Z:cƏ0hA=1۠^]a醍>;tR}ݷCz1`3[ojsMnZI&2lck8Ėx82UWnH#uo֮S]^.ظ«~}P(IZwЍA\u~_'39oD뮻y}/,hkV7^D om^b~_m/nWd?M}Z2OכH}[7/u륿@_X9nm_m]aigi7pck7k_ׄ!a95\k|;.)ŝ_a(3}qDdj?jv'/F~Q<=G#Ç"1u?LqeD #8oD1^?wbܨcDc|-7*ĉNƙx&C0&By1S// OEeQv(϶/yuQ#8;[6ASsŇmd0ğ<LvƬ;8e&y`,xg0>7V Km#(T=ҩ;M7pԑW1o: "Iq;:"k(O߸9䘴>8UwVvél?5Ս=h 1#5c|]<nC?"_2%~_{fk Ђ,פ  {e9O8ks1}.:î~5/DQfmuK ~KSW7^ơ:c,+pA}L}!D!-N ^mocA7v-gng,٠*v=~(ß^uƠlpo|9[⹙oxA gx~ߍƎ!ƙ1#h߶Fa+cvh!0O]<?r.cI\To?G?tNn3QAp?Js7E?%y1ΔM!c Z-H/-4{E1f0!]Q A`zι/(4N6CXˇXj}%-!ͩZvcܟ~wǼ<u>8y 0vƫscո"xy#Z%ȍ1׽~pxl= o@=Z`3b[~v*YFe`c,)ϼ1'+Ƙ1[0qQy6a,bz }Wg:cH11}@p+H zsc&`)ˍ)J?51e\qڍ+7?\0pom%l 6ۊwkGOګګ}ݺt_W-Qz |AKM}OeG۵Q'/ҽ( &65lfuoBKow] e \G_z67TeNVxt}~p"²I0~+_]b8qwvujl]ƫX.c1m3~V(]vrDXNZ~& P< cgٵ;^?M=j\yMO`ZO?,\bD2[>#y3wWdc]coя~T~[ߪm<˱[nel_aLB#@iߎ1D׿S=CZݤOaX?b@BA93=!57’qF7o3Lbh1(1~OWX: hX}q6R3D@w쵼8ĉU[U`ey1VF^b Y|g L7~V\60ʛGr߅:|ꨜB9ƀ=ؾ033ޝwޙsg=w;Ύ2N`1 2`""P}Tj.ԭ(UW'Nz+GXH u1I8'}pƽ' Ga̋ヵuB+(펴/"lgבq|߲@}p <p8菊~8BW\q &y);5  bvUFA$"0:E 9v_S;vg8~)Njxw1^~Oۭ7!2r|F*߸Wzm2&^yE jX h.E~ͼYLㅐ>Ѯ+ s\~ĴB`1vrRkܮ]{v"mq^x1 " #6빫G>UYoFy|90Ҟynzga1Z}ˋFO1&8VB;Lid12(3)22YgD(  4?d0hq@daYD I {H¤CP~-D%GXƘ ~y'n& ;F?p0b$E11vU] 1O!-'QQZNXѺLBM#?7=^_䅧_˲7L1rk]=KQ+,0vb#,0`K]s@|R䝲M0D1DicMZG\hң묳* Ge|O=6D OS#As<RA.+C^0 Gҡy-uئ]!<m, zQf^<y$?oyC:b|E="Bzee^Ãe@GŔr9L9PN2evA˜>?EZ^&$M0@Xw|eO}Ý[ 0_O_btF uYM[8Kd`<֋#h 8.l|?2Ɛ:*@1q63/ҖY\ LhsS;A|R~<m:1NZ^`G\c-K2f2P3 s8׹'qGm_^\LgΧF/8xf9aXb7 I}bei4ʃw譜 DFF.;1~8ȠdǐIÌ8p1 gbh0h18,qb,€2ar?'~pCF*q;d4vp'\C1a׿^uILM&0 ;i&kl=/?1\Gj\^Pc f+&43FHԈc@~#}!FH2sy%tmK_RݸaZG(;d=ab #bNۦGrb_?FGxq#66ZGd .v i//G7"]=y`W##aKSUve1`16~10wﰡ}+F:,~f\ X= gq (8'~`Î)W_h(c2",9qa|SV0ռ(m3K'I>V[wKc7G9j q4wvo98xJJD#|PΧo"}# @?ퟶD1﹐K<jÂWF̕M8#]4$ 909u6SXҧ(7}=)N;1Ў@Ѷe9k5$0A B ڹd`T.  D1R'>"<2~&AȤdBL/$}D o:#}³Jt\uL6< 0:yω\p3!0yMĄx0ZXQEyHiT2{V1Hp+~!w]v(Hو A7ZGZ8)QXQύa2ca/@ c.3IAW)7\jR?3"O\O ae/R&ҥ/a(3ZGeYGN{+0J~XTJc/׾ꐾ6<87. ?<ȅ0i9Ч9 868@yh p̶w]` 1u&}8kcaBhes# )aEqʎ8^K/mrvqϴ2 )9"@Xb|ѧ(sWFm eu G,GBDs‹r"raxXo*qn4n,퇲u˸Qܜ2sz)l=^v'~f&=cQ~{z?m<P^W3ewSv#˜G8H8wi3䕾0S:Z.e#9nC 'x)12:&` b&%"+j 0I1619A; \#]_0C^P4E3`1bֺ\'^&/u&̈́GcTp_ #91HĆaq֮kc0`цn <*e# 娝a7w0%4W_|Fhy$ǤOa^ҧac„66G3z#8 >9R0Y);'aEXEi䥼;A|_nxAG=atyRr v9ZGaΪ>#Q3 !,VP78iOkm~Af~x賵&|ߝH5XD|:7he7d$GFzǑ.>Mq++̨kBž7c_?ʖF7q2+/!x0K:a<h/=NC-;BXxÜ1rwSؕ6/zaC惲V 4bL /C!hGgahr\ċ#8Ӷ@!/xq†PH9im 8F73O!h܋1a\;Zm OH6s4mJF N`=@oKh/pGnCߪWucO@a9LQ@ɀ bH_&= &&RvYdgb„A 9`\3XILL|' degR-3)ce",M;X"_g~ !$ϊ/`YF슣Gv0vx1abŖ!1k¤puYuXXa`2(' ++,6${a@`1@)/&Ҩc׊\64<:xoʎQ+3Ax҆1D1pp\I\/1yRo K:IgMH i9,_7q!a 1ZA'HNS'm5ix0.ƒKf?.66>\ÀGGGv[CE8&Ä!B B8De."e>vtX,b\g,alU_xJ7cCy|څFQo|?2rg_?eEʎ"Z|OџuqD=);GW>}Kxώ1 Ip, B GL\/>.;2e./,,1CHc1']ƛa/uI` 6 R!=EC$hd˶8]"|2W2[Q%ɋn l]}( L9^rN|; #3'#FC&vpLW&AD 99΋@0&b9\sMa$7Fy,)/t0ĉ+)ϔ/x0R?3‡'"$aW<g `=E Y'Ne1yb`2beYg]|/%_Ypn9'0DX!Ή^H|ca|`N~ӱB FQW/vX!$ˎ87 P\2\'mر1.rѦ1:(\k$,i'-aH¸e^y/_ 2FFs qw0Y?#n .;PA:eG\wϔN/m2Hy&ㆡO~h1,#y/Bz}Fg fɕepQ09M~ag|a<d=Kg|!˲1ҩFKɅ9er䟺'< hs< npFx’`~ȶIX#^xgq')GXFY˾HfLq,<`~oF' NRz2 KHNfzHe\0fYe"6b(/~8A]eaɘVvp%qY^* #;|ǸnE,q/pcQ2;v/Ljo2.#4 LlL 윤)0 Z(N#\g7рLC$ns~W?qSE䙉?LfL|&ċB~!1Il1"D&%EoA8&(7Cid00Ԉ q;`PˁɞUZB?!2[# '|X쌣<\rb`3DR~b7& IDAT=!%ċccr饗abp#;4O"o׈l l Iz<;N{fxY-;lꍝ-F)<18%<u 7bX;0y-!fvB|zX.` 9aoE(N=Ga"iH?^0YI4)A.iGM\/䇺]!wF=@8D_D{X48Y&i=O7_a+3&?){/āw>_^e5e`\A/Q^XgÑqėB/佶oRf›> i—uq90=5X\n߅-01j5d!M퍾OO|,Rwu2./xr,""5peU>{XF?gg8s&M[N))NN>-ʆЦ~}8΢){Dyi,8_RwRꝟf"0o} #Y'sǎc H```de`"(;&iy1/':^7I:C0qwّy!>r\(;~5 0&" ]ّbq+|18 /~|VeaŖy(C"Ǒ{^v|\1(G^1hR}D'6>Sv𨝘 Oa1@ͮMDa#{Ðf$Eav<p3'F'|802N4 $;겾G{)y:B4hg?6io) /j~=ޙμ.mF:I11h7/ ceL,z?9}9nmvA{ 3m.=e@pE;ݑ0E:X5/uSq.?p:m>wEr2N_BHUx~1N]QʒK͌}A҇+O Ja|aBqN댥;Z7NFB}~HK=0Ý15>3.&"5A_WL-uFQqKE,\[I?#!*q9B=65K mq)1Kp.F ]_2oԊJ‰:fNX$!-YӎogX!A @I8Z/ưđ&m!@SsyjmZs^w.$ NIÄ;qI %WꙘYd{XLĉ0i0 Fil_b]vEXaa23ELL,L}{ # ?'I VJ141 2bt33""0\2gz0<7 L|[6ڒu+va01& K?C`dy40䍺,7&pbSp`?/p}?{q7.a1pT82ꏧb˂xࡼI\C(L:K9Í#8 TJ11l('m1A(3mqAQ qpK2DÞC}#1i?-H_LFP7\'oe/_M\' v8Q8w?: ꒺z!5qK=QVD q`K//Ӷ;`.&ui,NQn“&y~9/hgG!I "cB8h˴tG%zL)3b#L(c 4޹0AxSWGG}_/ie_>]Frї@"nD>YL`1N/~N6%fx""qq 2Q%m|@A8NO/{W)'mOrBі:}ee??Cø?y7w-iܧL=.oxv:uXIySxV5c" f#9|Ciz䓹{}>ͼB,:e~5 ]gh LxL$Lxc[!&t 䬸'AJǀWA?dDŽ]W;ch 3aNJ 1h+"%vISTO 1v(>#7yg 2BLIZ)`y'&`)*G#B0NS0bHc`c?]Lzǰ&H\#A$q>$<;qĉwL/꒶H\ s80 Wk™1"<a :Hvu 1G~9Ң`arߍ9[R/i/àFb5O~ER<w#SNjRŋٍ/QgG0@1", iѾbT#Y Y o)x1SP T.ܳ=fxW?36 >(+^ig\@/)-AN$ `,Fapϋh{bJڴtK(g`^Wّ_O{$@ G ,{/Q<@]h_e# mBbSǔ G=4bkPmtk1VҎ)cE9"7}䏼Sh{0&n u!>33}2BN_i,nP\'K \p0at!̵p"%9b iˈc( Jm,J2׎uk,Pr(#uM ?=E? tNn l=}( L`"0$pec"c# M113hj'b?Lt L5l0X[LneaXBHrS?M8b+OXLVa䓎4(+4~0XM%#__'¯sùBA_&4aKy&|w=@ٳL\ _^#9u?DyQq(//qR4u\9N/J~V6k9PG}8 mgG\}A71E",TY?z1B?F$m5eȦ6ak[5";e~a AIߠ=7uD!' `de&.ܼ}()(-A_e1ws_/_;P 6 ,B 29P#?mazWƗ웙V{m("*lo|`K<Q_/!cReG}_sZ6l'#c啎YȤ-1Ǯrvc]JW幻6`3N,BDy'5)y]sT3J@F͎:+ {LL>q7H[ob .'rga)+\!}&QayULaԍ-]$v4c.},(-+ezm{: Pz}8}$ NT0߸|'):ٍM2-⦯Wpd9_);c?'oYKɤˮuE Wa3~Ǘ$1qi=a▨y9pTE&a_C=B ;gZؖq},Np]~]S,RX6J`^&mokOt㬀 ^./ YkYx]|h /%b{9" G9S"ςⓅîWZ,H8~K}v"[ H@D8O8<G9MUO[ǎ>sr|EV²x\$  H@O`/V$  H@$$ &5Z H@$  H@B@a*5m9%  H@$  4²I`V$  H@@PXJM[N H@$  H@M"lX$  H@$*RӖS$  H@@(,h%  H@$  eԴ唀$  H@$$ &5Z H@$  H@B@a*5m9%  H@$  4²I`V$  H@@PXJM[N H@$  H@M"lX$  H@$*RӖS$  H@@(,h%  H@$  eԴ唀$  H@$$ &5Z H@$  H@B@a*5m9%  H@$  4²I`V$  H@@PXJM[N H@$  H@M"lX$  H@$*RӖS$  H@@(,h%  H@$  eԴ唀$  H@$$ &5Z H@$  H@B@a*5m9%  H@$  4²I`V$  H@@hZN H`[^)Jmm1[$-,~@T.YDCu*`L<9,X0mf%  H@B@a*5m9%PCݟiӦ: wj5{6͟$  He (,[-xH,$  H@f1h$  H@Z²k߲K@$  H@ 1h$  H@Z²k߲K@$  H@ 1h$  H@Z²k߲K@$  H@ 1h$  H@Z²k߲K@$  H@ 1h$  H@Z²k߲K@$  H@ 1h$  H@Z²k߲K@$  H@cQ3V)SɓիRٳc`` ng}6k/wqGľ[e\vڸ뮻2#<rUx'8b޼y$  H@$P²> {k68cڴieY~}x㍱t8s-DSO='tҨ[āpXAs . ,X=k֬)o___Nܵ_n)im%,|/Y{+,GU;z$  H@xm 6D#f̈!Do77n믿>}XbElذ!wӋ\cӦMloob8vd" y`7q=Üs9~x~[7EN:5ϟsOQ;Cwq[ dzCIJe J`.,ob2{!ą^Xw8. H@$ V%5ߪa<o{oGD7Kvwbw݅hzbͅ8O<!*}PG?m/S񙣵/R!s3g,E=8;Bg)eƍ?0cƌ#{;|p0"-d8qą~燽][(qt $  H@$0L@a9b||wIElX.bٲ.}6*1kVÌ".\Xo|1҇z(8co/M^)±!C^({4v=\qdt֬Y}Yd':xk_[JDUW]UAr4BDn _ҟ4iRq%\RH>_zWEZ) Sv)F|'hѢXn]!O=bQ#KJk.g H@$  28KcX!b"ohǶ{,7)~;'pBq"@"wn"96p}٧K?5\S<q@C<rd?y-o׿ɧ~ήܹsI;c~__yWR8R duQ^{m?8ڊFR'B1L>_!9jK="oG)_ܣNh o!/H@$  H`&OjuQFxGC9(De̛10]aIC%b 1CkW^ye!<>Pb×w+"Fy`W_]ۿ[!(O\3<3ou2n/yMa[8 .~@"Ge`]YdP""̑WHn/)NI' M3iZjmb7ͧ?EeWdiPh['|y7%  H@PX &w\bʿ_5$"I뀽k_ʉ'Gtu:SN9hVrED. \ Ov-dWw`gqF TX)ęFkCMܙ>K!C R"eG^^~({= C;uđksReXl5_] }ۧ䎈gV}+qJtLG}p/3;|ehc,оXyX<9]uA}e??avܹ79e+Hoۼs{^_rO^$  H@@@a <(E7wE Xj]Tz&*g;<a5w Hz{<0H(j:g.+Ip2-;<i?q!o`PgQ5,B'r7MG^,Y7pC"cW]uUaAo~ ?&kmvvAɐ;vbaXEG|lChtuRG5jJ㸶;eƫl3gNўio .?,q?oSB)zEX?*qgQ7Xw0uOf^Z^$  H@;B@a#^,#vE׈[of/~Ƌ"fl v8WqCa"xa.EF)B !.wUCXt.>Xx%~sD߯~°& v09ya'Qb: 3.dCp9w@09Ky",yc̿K>˜~j|jbqJW[}ꥈoSJ GOo i#7 E;+6 >$횣eG;f1ȑ\Wbq vEgsݓ\ƿ%  H@PX(&oΝ[<-oD,\/>cY;>P^*v`׉Q1idA8wGyNv1o{XƘE3˫^#øFH,!ʎ(:y% kCbا//9q#1I ?eG~a"rcw=CZ; uoDW"*?GWêqМ ,1P$]{őq:-?v>?le??rVX'ʟAQzY$  Nakb ~R'F* O. k0 IDAT%[{LX( w8,' !(M5TXv$s+K.-KSai<D?-r .(Ǯ7\" 캲QYD'B򰢃>8wv~x Of(/~Q0Woeї~`m1ϨƦu[mĪϬ8h>@h }ߑ袋9 -qxEc~N|Gȸ|$  H@#PXDgk0>فCadk;aqd|/##Rb"X1`᏿{&qOJOLD#y੗3 B` Br_(cu]G+CY~P]VCzƬ)[j?G=xx`ݭ@{s7bM{Q:: *x21;Ew삲ý ttjꀾB?I@$ fPX68"Ҹ? 1Ʊ9bEL}g}vBƲ 41/;5~4_u8jcwK/t|%fL<o/ }0Ph}{@|8tnG,"PluP Kϐ: #l]ӆy;qgaNa {qq[ $  H@  ˱8A`= Z1Uι"׿u!x*,Oa#ӈX*q<('3c$Gaya0sgC,"+8㵯}mi /08{i {aG[VadㇼGuI<1|WG?.9U+/n&.= 2;оʎM#QmSM9/qXs_3|$  H@@(,Evŋ!.$G>9=餓%(/brLKv8_!6eMGԤ<` "om]k^S[?Zx·.a]Mْ;GN\^+"F qr``0;:}JQ_ڸk`L61;}vő;s\6;eQU2’ s%GcpN$  4²Ydwc>v 1^j_ h_~A׾%kb"nFo:"8t>rcMa."I/O> trWO<u4!1bx#8)?~)3;BZ6aR.c̴E۩nEφp} Θ]iٚCh\/%,heGgᅾĩS~EZ,"R%  H@B +D8RHpetiN<VHM.JP,% b0޹F>9&(f<;1]GX6Dv^;<wb'${B{-lUϞꗶ=)?0ԆmGUbjX;)Nܒ"{{KX’pWb O&nNp % I8& H@v@kn qaOn#!Šص@Dq$1ϑu]Ch*;+ܷEcu'>'d'QSB8v#$?\q=82OܼɮcE1`>4KvQv8ˎq^&@9xq=qc}o[1?>tƔ9=?!~p9kN츽Ӟ~OOivBm{ӛR;N$  4"lDf^@8=<Ao!Q葎k9{DTÇW?*JXy$b"btH;rr<aF>8W!"w;c([pc7~JvHy,(W2Nc`:yxX3tGwųkz[wo1)LiVm/߲!ںDwWXOk=G*SO=.]Ps1Qo?'xb,yM$  )ܽ!0&Hdx= 9HeG0||Ǯc# ccv93)KNSQ/?ˀiS JvKqPvz٩E !vV)3;]@'VbCtUm'̈?<;Nٿgׯ'_쌽fcxPntM{K_(,m/.efaivi[N Rva+KK8ZhQ$  H`W (,w8 |׻w#1V/N N^> `^-CrX K~#((*i8ZOg::!Z^;r,GR. s`"FW\<H!0)3Gu{@%*{:n\ǙL-kz1n^23g̈-?r=턇<qFhIю;]:/K>_}ѵ’#fpwN$  4²ل_1LyH;kGGBk]%Nq}{*oA-w3rĕF>o/ipcY._!8\v4r|{gL<9_^ֶ8f܋}nDWWgC}#tY&,qʎ "d$߳ÑX<Q9. H@v@ZJ$Z=/TC Nʍaŵsfķ;_茩ӦGGн(m\Tem9DhH|E\8}$  H@u,z鼎/I@(pvs#K ;o3O7Ƈ:L3fLQTFLgGCiM#Wצ%$  &+A4$ ZD@`II1c׬1cZ!63΍8pu!yQ$  w,[-vԮ+Nk#"Mԡo'qawW`u<WopHTO'Ooo H@$ D@a9j˼J`F%jT5Wё-JwG%qGͫ>I9͆$  H@qҗ$P@Oވj l#너=rzWĔ^( H@$0U_V^uϼ H@$ &=Mk$  H@Z²j2J@$  H@h"e$  H@$ V lZ$  H@H@aDF- H@$  H(,[-$  H@$ &PX6QK@$  H@h Ve( H@$  HMk$  H@Z²j2J@$  H@h"e$  H@$ V lZ$  H@H@aDF- H@$  H(,[-$  H@$ &PX6QK@$  H@h Ve( H@$  HMk$  H@Z²j2J@$  H@h"e$  H@$ V lZ$  H@H@aDF- H@$  H(,[-$  H@$ &PX6QK@$  H@h Ve( H@$  HMk$  H@Z²j2J@$  H@h"e$  H@$ V lZ$  H@H@aDF- H@$  H(,[-$  H@$ &PX6QK@$  H@h Ve( H@$  HMk$  H@Z²j2J@$  H@h"e$  H@$ V lZ$  H@H@aDF- H@$  H(,[-$  H@$ &PX6QK@$  H@h Ve( H@$  HMk$  H@Z²j2J@$  H@h"e$  H@$ V  ,]!n}X s/K`!PFtu!fi9v8xQf )$  H`O"PVwD{R,$0zոg~tW<bcEuـ:R~{MO^rb1۵, H@&Ha9+K`vg3_U Fפvd.ځQ}):۪ O\r|uMK@LrϬXK%Qxv~rO7ӦG[D%ٷs "*mm>iJtM߻XQՋ$  H@D#h5f~%0F6շ<w><&OmlaƎ@m1iڌxvmƞߘ$  H@8!'a6$Jw>BLνfA[{Gtuw=KVĚ=Jx%  H@n#mMX@_`<ºhoJ{*u#] /ƞ%c$  H`7PX&&+M`Zu6GV+XR_ 67-c$  H@r7@7I H@$  H@{TE$  H@n MR$  H@D@a'զe$  H@$(,wt$  H@$'PXIiY$  H@$   $%  H@$  I{RmZ H@$  H@@nH$% #PF `mV"CV-:ڢl"$  H(,[-^qiq!bٓ○{Rss@񾽌E:cygcђUq/Dwg{ H@$ $A`zv`5wzo?.tǪˊ9S⭧suon^G7IuHXGFwg[ߌ5vS_V H@$ (,GW@PΝUD։FT#=5>~aFZ7=.~qBr #iq>ㄅ}폮c5$  H@ (,:m V Jm@mRWO{BvvTbr+iy1oFp|Fs[]K|יsp {ևV~g4]$  0e WE@3 p-*mD$n*ѸB/{C}AQw,cYg?.8~~ TE{{mԑb; H@$zWXM'DW{{, yqмi'Wo+7`3"04P|}O<|}Lj/a@erRbp<<hڇkZ@_CQ$  H@-As< }_p6N|vm?^<{M^],9bmO͏^ӻ)Ŏй{O/z&~dM`<~xǙ 㶇WĔ-Br36E{?[&* H@%ܖW$ ]${bI͝Rʍ7]WI}'Voco0-'ᅰ_ϬO-XD1ըT#f8V^p~qӊ0o:iXlC\g AW6K@$ L@a9kϼK`T<P<C_"|qۣ qSZ̘>3:J;CM+;XgF>0 >{}qOA=OYϟN }UeV$  H` (,w% `r57ڴy _RwЩE';d'q?ɝswH!$7ĕ?{(n^b̒zs߾+>;?5>{+Ni$  H@[/ H` ڶ>V:}RG{Ǹr]o?#1xvMO Fww6 sƟ\px\rE9fƭ ޓŪDLklqokW˿y㗋E'۟: H@$ QPX% !0^<$VSħ.:*GKxtד?>:+qo:&NX8-])v8zygO|KWw,Y!x|Uy^aN|θu( H@Z²E+bKߌ89CU"NX8sup6/]ڢ'HIM}۞,Dlj gE'SigSo㔃1گx%OL~I/+ip  H@Z²+"K8zYkG735i8ɍ[SfqFٴ8ʃ{*Qi:bRg[VcݦQyg%?ܺXeIo=6yn}|qSswǟ\td?"bw]ԯxxb"sw=jp  H@$= { H` F6oz} @=߻ci|wqYg_p<rcw'.w?:GW WJ%^A@(sý/#ϯ/@t妘:Gg{9(O/8*V9Z1>uᑱﬡʼq}/)j}okw?&V- *! H@$А²!v@G[%|bU\pxzxfx ]𼰦'g =9fM5{ Sdqׁ~GkE_@ح=]CF'뎝 N_~|v1ǖbg uvŪuE5l ' H@Z²jJ ^[\~Bsܸ*CS;┃qxi`tWE͍EJ"v1+UvE_^}o|qsySō}t<q[$  H@;K( T#AZS]O4W~rrW[IV6%;{1ؑql(ݯY=}+$  H@ c9zVƐs1 f1=;x~uBUZe'="^!:jv(3KHDɶW*qS~6Z/;}A`Fo,;$  H@'lIDAT=+}J@c@8~ZBDNDBF<†. D8{ˮecE&mm[N/<lV?er=m,D,39wF|}ϯ]WT<bc3a1g$  HlյV-$dIeGĖ\@5^>q{Wdu~!s]g-,Å{O+^spX;tuD''IϚOq86=k{_+Ϭ{hRđ(^:|n<sɪ   H@C@a@~- 8k\v]Hb⩫>И ?=>>qqi6ş2_><&>#⠽ŬE|7ŵw?Wxv"<h.Y!GI)d'>|Ƀѽe4]$  H>e}.^v/n+v5}u6v#+{?Ssxqsc֔a>'ŲkzXzS,_9x-o<+<?3jq|6ϊl鏇[W<]'pxt".Vx5gJ@$ "l궰xe wo:; v'xVv"{6-h<怙1kRg;gO\9~؊Woz,u恱fq/D(A}R771X1>wy'8;?.nz`yxL$  H`djzGD>74׾wߍI}ʌ>o::h+| i4Vv8y0O[ەUOY1H:䩲SoknukV[㸅CiF& H@vEX>,=BC|e=?,"_l;+&q"L:Sg H@$ m Է H@$  H@@] ˺X( H@$  H@%-)I@$  H@@] ˺X( H@$  H@%-)I@$  H@@] ˺X( H@$  H@%-)I@$  H@@] ˺X( H@$  H@%-)I@$  H@@] ˺X(=@[&wEZݭ%qS'uFgn $  H)pH%0 tu!ΈV't/?(f^$  !KhG澨ED[88{zǜivKLT$  4²t[@WG{;z6ވrlލbٓs)cI@$ q@@a9*,H`w7;ڢw-bvADq`KyTҳ#t%  H@@S TqzSS1r H`~*tݽQi&w/w҆{Ϛ䄸_@ ) H@&Ha9+I!a^>~uX kc HImq>3s[;3*3 $  H`PXN2$  H@+Eymf|I@$  H@8'd$  H@$  w ^CO$  H@8'd$  H@$  w ^CO$  H@8'd$  H@$  w ^CO$  H@8'd$  H@$  w ^CO$  H@8'd$  H@$  w ^CO$  H@8'd$  H@$  w ^CO$  H@8'd$  H@$  w ^CO$  H@8'd$  H@$  w ^CO$  H@8'E8ϧٓ$  H@$ I`Һ^IENDB`
PNG  IHDRC IDATxweŝ,$ / @xI3c4;nLBњVLwK-0-p#;Ὡw=yu}MUoRɈsI<='όK)[sw.RJٺӜM( /!!!!!!!0/",^҆@@@@@@ y"a9O8B B B B B B 2c B B B B B B`DX$'/C B B B B B ",3B B B B B B @<Kˌy"a9O8B B B B B B 2c B B B B B B`,2O"{W{Z,Мkwy<e̙eV++\dpy>C7(,LYGw}wYxk=W^y^_<7,-\hz>^q +0[>`y뭷ꫯ^m-b@@@@@ *,k\r%eƌe6+g饗~B`uQec%N?Oƌ?I'?IenmҗKSN9=˲.;?;n{KYwu}or-^|+_)K-T^{(뭷^׾V\r@@@@@ 7*,r饗馛@9CYd ޿EYQ~ 6ؠ^#vZ/qy}yy_}յK/te󼭻[>lyꩧIXs9m-G_ho]yú?AI/b-'@@@@@@#0g]l$~BtᆳN-$aFlVe]v).h=/ D4=c eOyvm5p44X~֫OqN]u]unK{IT+&l.+w_;5p+[l1p,-?#kmtLx;;=8ʣ%Xց$y{}09!!!!!0t拰$;OV1C׿B+"f]wE,Q=X)7|><='PQX;NX]'nnKd ҚjX(+U*{m&Q3VP><yM6٤|߬Py{nATE5\Snƞeo\m^ۛozS_yUG’O.)UW]U5\eUVB$xx.=  (D6[[oMėg Bv-lQӟT=~w1T/'1j/>K!.r׸>؉Z*!GD<Z;~>A<XcZ B^yM%b}_~?!!!!!!LJp$*}c;f/.묳θ^VѶ]afzo~: Rz}N╴%GLp6<zx&_dJ̶zxTAA^7SnG}htLtEzĦ\ki3X>j]&̟&0ҳy<1vaOy 7PWb DZMW%\| m`M$,J^T=!Z =Wټ}ΛKX9gqwON;|#-:ݗ5VqMo݀ !>D9D];&^`paA믿z-F$Mկ~UtaU[ي#4-_|BS&,U7{g9gCLyUd?[9= ?≠3}B S<,_^%ohwyg.ۄ%ygV*4QB~p̫;7B\-]\b;ny: _ m V)K|6lSߡc,2m bճ_|NS", N;J‘@ y<>(rJHYu=K<^="Šq\}{QD+MfXH 5ORonX2ÛO$*=q>uHeHS~n=zJ~njaV_MʲN!~@@@@taSH=7y<a0C믿~}o$QwcOGJm}ml^Sl喫S]# 3jlĠg$M+L%<_I+j0!<(H?9B_bMGuT*kszT~> !!!!!!0 K!nxy ?*RnE!F=Cu&NJEʴXEwx D+blB(=bL-XM:ڪ27t*(ύSKm8ĥt!lrq f zՈۊ҈۞mtNMD{ջ?~@@@@@ /IVN!1{‚XUqCV'm iO?]EUM^!בfKl^r%>utSO=W|e2mE:^X'y#f_eʫ|!)sm!X&ܱҶr} ;ηZa4i#!0’( AE<K693&dڹzg+ɇ$&k#,lބ)fBN$oj,:s=UحjuʩWV9{U!mjvkgwږ4+qNicZWTejɳ r.,$Є9#J+4P;$f"Ĉ_U4yrme8lKۜx="G|M$([N7|6?{zʱRl %\/4˶ ',ŵhĩ",lC B B B B &&S gEXMf ~Xn y#m9:}[^MuO`ݼxA>ۚ9M= :){P~nq'>QY/m?=;6-OdW57Y-$껅B B B B B Bo²8[BB;T9Nl6ayO?o;u#Lu8[Z}s=1I"Ly1)Aybז+^sҍk*ߪ[ouڍ׿3ݘ@ K<{ggصnB@@@@@4$&3񱢫i$=by,y Mցxj8g7^;a'pP<^@BvN18(YKmZkjy]屴ZuWuαYڄD` &ܚ@y8uBi%齏oʖΫ+JqUu c=gI~dWt<f9^W^Vq|z_?0~@@@@pҴP6w]wۼnY]kV_}nOR}S@G 4&O&1צ܎'Ջ+oXAXŏZ}5}u,Vz߶-ؑ O<QV>!!!!!0滰E<{@!p&KgzKt)ë2nz'"s=W^Z'b7=+٭CT=#y)*, )~Vr;Nr!}^,ܣ΄'._{uu'?I}H]?kP= v1|<VBfv&#kĔ/W]uUD韼qSn rՇ9=']wݲ[eZ<hh#[}O<xhTG[) ksϫIv%!,S-,ⶺք}eGB@@@@@wae&*/xϬJYt! kN +޹ocNlAO ʳ(_=uiu f[H$r~ߘ-~dlZ!0= JkWlZ? s1 F[2'f.D%Hpn6uj-^-BH6z _B˶nʛnrPט:5xmB@@@@@waIP3OQwmՅw;=ǫ`"& 7ܰ<+;aI(O~'Z 1u衇ӳm=->jo~SFkhtLYĬi^r=ܳzr9LOz}-/wmi/>;c;z>I^^+ne'B B B B B`( 7a9!5ɓf 4<]D{0;⥻=أټx<C^}NUKm"fBym;ë<YgU.rWш )?KbײBʟkuwc:M$0߄xxB!`%޳D\Px*- .XcXYGPKD6kZik,YˣKoE$=,l[o]<_O۝Ѵp&>'|rwcPD'tRF{.'vi M wB@@@@@L)UM|L/R}$7(Xkyż.D:? HGDXU SY/p(g F Z2-UZ xVЖ8#2:RYO[&D{<m0+TKN|pM7-Kۭh孼{ ~aS]zzbi!!!!!A`J%ւXsXwKĵEv:"B3Vo̥g!Ͷx7W\qEs){Byr-BЇ!XAFP$8^E/뭷^=6'rv˶c=Vv1S}1S믿~6QN@@@@@TXFO}"%a3Z Lx㍫U4%3M'y7hY g:kxMEij,K\rLmSI[A[ʰD`P={w=YQт67/hqlVR:h-`~u]{S_q;Eտy%@@@@@hf\_JNRqkD@HlwGMg -/Xb#O4CW y" ߿7(nѧΣ=*_YqM1rxGǒGWsz<(~@@@@@ -\X- 65˳9f ,|i[ڮ(5B B B B B  S:vNDT SU!!!!! z\pژ@@@@@@L!)C B B B B B`DXC/!!!!!!0",na a9 6@@@@@B:B B B B B @0r!!!!!SH r &ic@@@@@L!)C B B B B B`DXC/!!!!!!0",na a9 6@@@@@B:B B B B B @0r!!!!!SH r &ic@@@@@L!)C B B B B B`DXC/!!!!!!0",na a9 6@@@@@B:B B B B B @0r!!!!!SH r &ic@@@@@L!)C B B B B B`DXC/!!!!!!0",na a9 6@@@@@B:B B B B B @0r!!!!!SH r &ic@@@@@L!)C B B B B B`,#ִ1B B B B B B` QyȌu 3FF"+,dr:<m &0cƌL$@@@@@@=sC-iB B B B B B z",{(!!!!!!07",Z҄@@@@@@DXPd'B B B B B B`nDX N@@@@@jI!!!!!!#aC!a97Ԓ&B B B B B BG ²";!!!!!!sC rn%M@@@@@@@eEvB B B B B B @PK@@@@@@ ˹4!!!!!!== sC-iB B B B B B z",{(!!!!!!07",Z҄@@@@@@DXPd'B B B B B B`nDX N@@@@@jI!!!!!!#aC!a97Ԓ&B B B B B BG ²";!!!!!!sC rn%M@@@@@@"LK###'(sOy饗6lS6xiYT*B B B B B`8 DXN~1cFӟT~ߖwy<Ss$,{rg7|s[޺eE2dd@@@@J *a2;Ƚe&}̙G~?tO?t9sˊ+Xx3[lfe嗯}W^ys}ݲꪫyg}v2V^yZ̯ꏡz-/݋/؋J+w0;!!!!!%r2믕_z)<Vf࿕;rBlw_Ko IDAT25l۫,6aI]tC.R^PP~VW|ﭷު,½vmUl;(<fgQۨ^gvm7nzN(믿>V[mUvuׁMou쮹暵ZkYƒ +-R:]vٲr>XӼ /Xce ?^Sme7[KQ^0ov*RLjvzF;,QhG;&q+\rtZj6/!!!!0 DXN'/ɧKYaRBn)QF3ˌ6+elE71x$2k"M~xˣgw-(w\5Z[s9Gʗ +?v?om[=]"__{FޟwU0%.vZ;{.W^ye9裫0k9B?i}VwilqW7H.iwફ*~xqgGO~Rnzk!z/V{ :ߵ:4n(;s?]\Kݪ<35]$ίYnzK:딏~Uwy5.?.+vXr-Ye?B B B >Pu9Rvج?Ws+#OU) _RV[mܒ kƮgkbːFaF1Xjplyxs ~umSMq Spl-4WJ ^㬾UIO/t5.š?lPob<s5<Ģq {X02|:~_2,fZ-CXwug߉Z.rGV;k׮S>e&Nоw}kA[yuQ$y6MY\#QkW#ObULyA;}/.n-rα",'RK֊ts{R]V-#[nqojn]1Aaz~F{3JSn`e2f-҄&V|x!ܦ̶ҿՠ_mf)[<^1B9?0f0Q;9 cڢ@ vc5}_rj1Z:u]Wyc}衇M7ݴF馛 o~sC^ƝLc=ꨣ*W_}}ULzzU$ a>W׃2Nb@AU#}3oʮvr/axwr!c*0!LڦNqƬ22uk7_p<mQ]=y]v٥+m[\Zi5#,Pk }e_/3:,fKY賟-e \67. kzB4c|a$|<],B|x΋o>G z^ξq@(i-8O0מ-cDZnaw}{#0HS]//08Yleo՗,!!ouh?݂]Yxm|JL~*xO}%82F:^诽޻>s%B ބO~=Q .ui+ݜqDqNZlM z{C˜UiƤ`ߘ&<]D2G>ƛ떸51.=oD]̄N",'7,s;bߖrf(2VM`hz,Q{ K^6“7+0V nPs|<Բ[-$5/$Cق+-Kĩ8</D<ZsLm?]\^Kv\bA>mu"u0a}<>_m/榲 X&k\OK_cGC+7D(@0NA@o'GwC }E0 tyAܨW&ouцrK<:G V1,Ѯ6~ZډlqLUbY0nyիM#oZ}Z!!! Mf-}ˌÏ,#'e)PFXu)b FF,4%ã&8s "Qİf8 ,p2y`e&0Z9<.3b4Gu5UR , &Z ?whb#|n_:SygJDnr;Zz&cc8S( (禃m7Kׄ(/5 ;b̹- |oSTo1ۇXuuu!ȟnӴ]:®"T9ztI:~I7qLmm.",''Z,_',կVf>dewf3 b!6W9C&"8YV5b7Wh`8^C()d~1☠mpP^L<i<Mhv)<Z y^ 6ub(@\~u5VΠ 걱Dc . }+AleKcߘʐke2w8+~ʕ_E[Sw=9z +J c \\kPB@@@LK>Xeu <2c&< (XD/D(L }`4C!|oږ!;Z0c CWki\^e [!Ny䫍<S[TA&qy\Hh[F'yJJkqa%tnq'ꎡ-kL6S8zsMGwNƴ1.>&B B B B`rcׇKX1ly,dBTy)<v)K ' i9ȫ5MhN3֥c4!PyƯxAS+QiaqbP|Z FT]þtDe<Dl+gVބ0Oe OX0s?_A-ܔ1XtcxЌtndyyٱŋɍװ*Xy\@@@8e0F`[#.1d*/xm`fD@{D7eon/_-Q*Hjà-k!M8Eɻ+*W"U\vhK- &m5 uG'Mc?8./VAӝ-B9Gp޵"V|-uqxJT*,ě۠7vkЭ,VmoZnzMن@@@$a9?iRchmBƴP+[M.s!>eK-Fތi*7Cv}syttF.>zy뮳dk'۳MӦ+cڊԙK4!)dP[yø 7\ڴƃӧtї僵isƍœPe42P7ױgs̞a$nu,m\+Ss-y׍'Z0xބ",A/0M5fQBϸ |Cqx Deqߚe,Pf[`z c4?[PiA˃cg"!ӄ/,Qڪ D6qxyoWGkSwĪ-#o}M74ei|Rq1ژ#c}ƢL^]4G|771`{=c}q >>sA8s rx\1hwo*$HkT3O@]/d7kA=ǫYSs͵70jSMxɼ&2 ]%qSaInɔ4J" Cy3yjG\A+/ixM__{P'-#TB%y|B<߯ăgшKe{*;SzuHkt .M2ۖqĆt^堮DE]Tֿm#Xy-qe2DrL<7@.CҦnKPoP%>OXׁ^#_"|9ӱ}vq:Fy0ozƸiۺdݸqx!ޤiyɵC^I{l۳n(+!B B B  CBMq#,oUAC1N0B4& n+ɿ</ #\ބgLJKDb><5& !oAՅ̧B}_P#uj( ~m|1?LanM=e]jgyf}ݫC;&Nµ^[n20ABl*9H\1264=k˕W^Yһ6]+Ę2x훨#<s]qU`L='fye56/A kAFW&v&^I!!!E rHe>*'W"1gdZTx,<#Akqxh_]%(1~}F3p2bRzi3֛XSq^xjMť?HGx.Qr衇DI/$^QB'4yaد?&fiɸtmz~V8&%;_)8cS{D"MTnֵ2P1u^V#8viuL|wYW?+z)_xᅵ u2=<v1:iHU%,15=((bG~r]!!!Ӆ`fnAΨxKx=h10}MXBt1ԃ<ZYDisNO1K2yzIVϴ7aў5 寮S.o)cxmuzf&_yuhr:/N: sym %̫תgo ?+X&?W~#|ן@t/7]cl Gu{Fcӿn(7Za '+TwyPʬJ#ڭ[w裏7Fc%..sLkm`Lj6fhF+C B B B`~_(`(2 H/#h,6@bT <C l}bW6ؾ Dhf-ChS[8'. 7oEQbx<lbMlS3GK 鶗$ l+B`z&'y&R>Į2y)[=[BUlAm pnƋ;oLk",?^!L߳POLmD!֕1yyHSMM9d2 O<Din4a8Zum,q2Zcg A5q8ѱcyv L4_i2ѴSoN0H!!!!0͇%"ݓ!T!n<H=tLuhuNilJ DX~}Pk<]Dd5BycxK'U5qv"$N@@@@122r})e6,1ͶX)BjVў+}΅@@@@@L:",'i2 "pÿ-9TmNcC B B B B B &@dL^!!!!!!0",LI3y@@@@@NOC B B B B B`2 DXN&!!!!!CH r;=M$a94W@@@@@ !!49B B B B B &@dL^!!!!!!0",LI3y@@@@@NOC B B B B B`2 DXN&!!!!!CH r;=M$a94W@@@@@ !!49B B B B B &@dL^!!!!!!0",LI3y@@@@@NOC B B B B B`2 DXN&!!!!!CH r;=M$a94W@@@@@ !!49B B B B B &@dL^!!!!!!0",LI3y@@@@@Xdۜ&@ [o_~7(3g+B B B B K,QYf36?r  !022R^|c{, /<<yϗ{eV+,2r0B`A%+z UVY,b2S~A+B B B &Jw-fqD<.뮻n#,'J4B`$'^JwLsF"HB B B B  bU[єgy e饗n.0gS:Si+Q>C#M @FvkQ2-vW%l$ !#`}r\yS|",l0!!!!0 &,">4=-DX6نp鯋/x2,in@@@@@YJK.Y<w ]!#k;<C47B B B B`؋mJO7d.!4;B B B &HًB *9CF`!Ð@@@@A`,1r p9!!!!!!0>%F@@@@@",ǀS!!!!!!Qb@@@@@@A r 89!!!!!!0>r|F>hyʊ+X?/le=Se饗.-\ Tg/kFrՉW_}<e%(,LYy{'v8ovyJ+TgwV2F+;C B B B B`A$01~AlަGyzꩅ0vmqW]wU97ʆn8!W\QxQE?*֮Z/K-T!4 ;cLmjc=*c%_|+{_|KU\+_}gO~o*߄,K@@@@ )oYFx*3XQ^D:Zo*k>袋VtWo̙3gF<wܱw_/7xcg⌌ Ս6ڨjx{4=X%tӄ4c .u_l _ye vWϯ%RqqCw}T_vfӴ-۪ IDATGIlYYWfkO?5>ET *‰#⬾%\Na%TZS%֚ؔ7)Ѧ+U*\oFz !xg;c|婼8%XMy{’x6U'W[q_~*&_yGxz{+GȦ&@@@@@J rV.3Zw-?Vy2cKYr1hUW]Up<tUO |>*"O9O߾lϮHyIX7tS*_Pބ\<?p9s(T/qCm[R^TXM>w)Os=+bѴX]SxիīN<"τ#z:.7礪x AAq7c?*SܱO۾|ocnSmJ'!!!!0] DXNy2УJyRZjeGe@5 5quuוn lYy݌gA O<aA8\ zbO^Zdʭ@xwW^/(*Ok,/>*h[}ԗ ^ߵ_~S*> {y<ׂOiWN-]sFX1<놃k|3&/r7x& //}ceY]wݵg7N7]?i#h'5]36X7W<|Wױ-Qqyv7@@@t$a9zeKY~Ry'_^)?SKb*/ˀе^[;>"F-cb?Cx6K K/z-=1UO#(Gh/D_l:een'!+_b䠃EXj!.ڦV6#< b>MϜKœQ`0va+_G>^!w]MsGq5l\{5Ծ7V {+?Ɔ oxWX7MXT&Px76 nחE,vqO9C B B > ",Q/j˲2 +-Re:dlM0͎`g23 .\$oޒ׭x)J$xe-$n ~4J)+PƷ/{i6lS>OZu<%>Zv!ҟqUd?!ө|bBݕ[T(!@vY|_ sF͋O>zy6dvX{ʏ~WW_| J7XQ #_;,[8c='mK.R9+7Jj̱xnr<Co:)இN8!c 2!!! ө,,\̑RVYUW=ƫtw<0liBStq nFn ߿TgM[yxrLPV뮻n5y S>JDQGUum-tEx>acDH򓟬O?zrMVB3G#<qx$o}[&C7Uþ0UZVD&qf>rMG ד1~!ԛ#Z76._ƽ袋M~hiO rus+JYx2?u7re̳JcR:WA+P<"]-Qnqy)o3b0$$/"1#^dhð7 չ3ve<'IHKTMldBhA$6F\oM%pMTτ9#`Cigͅڳn;Y[N7V5<}Ճ? ƺ%nFxcV[t%C=t n@@@t"a9zjTԓe~[Ys2+e'T[qC 2# ׶xEKL<S@m}9SB 4CBQqLƴ:s1Mt̳I5aQ]c^~'Fzꩺ/2 V~0'NA\⁐e]9hnB<O)MY X$G0-fOwW-R7[<E'<ʫj|zNn-ɠ|MϏZȸwsf==B B B B`Znݲe!"TX6ڲ մBb &Kx-3';s<y<<My&}7r/Sdǔ|74AxZmT|λx-(C} 1%XPr)a{z뭫U?uѼwœiMn)m8f< ֹη4uč }k%j:71xKUXyA 1 xvC(qa9N",So٦wΡd0lD o bp0o$&-yW3=/}h!,-ðƳ<U j"mW/qZy4 q,5TAEPKÃ{E4踶Uz% aηϴnb_ۖvکi M4򴛲-qe:4~n귛 6 Vަ[ huo;JR=я~WB@@@| >L-H]{D#3U@+ `ϱ 4ýg* tPyc&AƵlnƴD0s+ Ӟт"/h Db%|yZ^!<+h mg&kG$kRxwMusn(т8n J/UXYyRj,x~ִj>W3nݱ<^:i㫛xr>B B B  T޼: 3"8%L!mynߊ^%<քH'xм'5%оU2q j! 7#=BZyj _ ve<14HG͛)gxK8csM2Usg+eܴ 79 ٖ[n9;?y{`1`<[uXwa~ӟ-9:cmڸ8M`?B B B B`:N1u1ի9 ^he^ |yZ 8yr˶yZDeU5y<B3yh&ˇ)^CbbKJ8Zm{WyO_ORzNw'²b?>mb7x5Q&em?; ۹nF}ݶm}&WK/ cVY1ś+m͏6m'.qB B B B`:0Iu xe2Ʈ7&Cj+]{6<B]/Zq' </MGtǔ~6K*]W-Sאop0skkPWL>5 H -6!V>;&1>m<zjTq13Zcƃ^WfGۖ1׾*{I ɳ,i嚎D*8ѠƙkĸKSoSW;cسH ØMĝ~v2yyMxJb</'}aP7ڻ DZ$N8븼PK7$@9ABXuI"xN/w:ڴ/| %"|kmS&,[́vm71Kg,4&so'ai^n__1՟wcF955<'OZїM 7C B B B`:ν3u#LdGqg 8*"I-&> vءzxx.w}i"R姜3<kh@͠eODLK|B'k4!i%{zjy׺qZ{d0q<nn^?=7E<q3[}OpO{^ۮvSC >cd 6'{֘T_+vk v1~לEB B B BD [3f@eC9@l[ DxQSG7uִO_z5t"B ͋Gh~8`O?QyVl9餓곜#<V}B;/MM866<{k$,cܸqGGNa'5Ɖwj²{E:M76ac= lu8'|rbxҙ-nǵt~L r: Z xCT XI<C6<521Ga mMl""p}|H Zg\{O^*/ݠܖg=ZYV.C'9^]v٥׿SNc\ Vj5׏)̦NF0n*_y*qƓ(|7Uؼ袋d[dJ:k:8(AkLPIӃӟ<ƩA_|L r:֍0t] 靦{ER<ưwFnZ~yL H@/?7PO< zsΩ۶J˧mk $? <iMZ5 Jw|}Ջ{07Җ}Z?WP<SN6q3V d杷qfk ge㮰t_el.*FyLS4};FКz!!!&ޚ@]'^ihS A"Q<*{l5W9 a-.g1BS"}Hw}{QkBp'(i/>Ck=A" $zF+?|'xb\Zqմƺ@vS@M9֧-8om[v+~ksMnغ;?V03 U])dό:r_kεF\lijGpMn<DG=VUs.B B B ###חRvVJeB /mWLvġe =?ל#009ׄzSjhEWxP.n2XG>/&So7hƺ><Ǝh72<ޭole?B B B >pl3DKG x!²®y~ԽAM%HF`,aӭRX T&KK˃!!!6{֪7B B B B B B`oSP@@@@@,",~MB B B B B B`oSP@@@@@,",~MB B B B B B`oSP@@@@@,",~MB B B B B B`oSP@@@@@,",~MB B B B B B`oSP@@@@@,",~MB B B B B B`oSPL?,H\j!!!!0̜9̘1~~ ?K,Dyw{7ۏHSC B B B &@37,.htDXvid? /\[n[o^{mZ@@@@ ~en]!"cjZ<套^֧!!!!sB|l76$e7DXvid?b-V^{:72 in@@@hysϕ|eV*+lg\_Ji39!0̕˓O>YŚ"B4F@@@8؊Xcꪫb_ߖ;!CVX,u:+Rfii@@@@;,LY~嫽=ݏ~ 1݁I9!nsB+qC B B B B B f#a9sB+qC B B B B B f#a9sB+qC`H Xf;wzzzw몶<[|/yuIcu^ƫU>Ljx7562/{\ZShgm/n~~_4!0]dUGLc: /}KԔK/QwCle--Xe2>"+E_wߕ;SeW%?6X{o]p}p@=M(k%(GqWC` w^O~x} z땥ZjBu]}9CG? -ӟw~\rѢy\>_}xˆn8uQ^r%UHG-Z>Oڪ?lz2<,r婧*7tSe]zr_uUATf#<2~J`vKN  k[moxB8 <Hs3O?oq< 'F[o]Ӌg{v4+OkQN8Z^ }c{<C[n)u :ub(3WoWǕ.n6W\QB_,m{9|gʃ>8(n4L6@ GcNĮ*U>r :f(K>ʚh`X,6C!yy0~qebݠ>Σ7mVgTwmk-n{zu{vM@1Zh}kGqmsh?s-_;0Vz5:z0{k^Rmgci:nfc1O<Qûᄏwqe5%V]'z'7pCvmWó>[W_]_ױ nJviu5G}t>W}۶뮻&,}QVU3,A7ʔ9ZjHE{c_gǍ!ɚA<Pvcލ}Qkdn_NO>Ye}6ƵqAqӴﯿWuoJ+4ۘmMcTiA{ j+Ӯq  o~O?.(]u6ڨDqqO r-`1$$# ftl3Fz~j wMH` ʧ?j`8-آn& F mP7O?]x1DYnlDՉ)f`j>˨k?\`gc<+~6)`$co0`bLӸ7.mnek2ˀZwuk}2q;blͪǪDk]Վw_^ k6Ѧ. cu1 IDATNjΫGx oyn(wq8RWߍ}ZMOhcqҦ{B3a>2ҵ)q溑76 /Ck͡6VeK71hq|vy|[K{k^zi9czhl3kBiAG擭zi~>K{l&m٦Q\0``z=@їnuDnƇ>p~oWP_\Inz6}_;}q}<{Z!y}^׷ߗAcL{_/hf0ov_\s~+'2^=&!}g<m,s ]tQnm믇T|)ݜu'e؉o=%In<3o1th~Wf[#a9uls|*֌/pjQ1V RҦ˿KҝV tW]4`|wWÁA`Tf D1Z>sNMcA"/ ?3gحJ<A{ce2cKƾ5u`dcϜ7Ny2/-ďzc9/s 0ʘ΃H2xzd`/dhJ-`b@}<,~SLAc{PR:tvcr a"?SD cI ZDzptLoԱ /ѮAP5^us-rJ'.4ϽMi6z)&@s|,{パ~ Z:cƏ0hA=1۠^]a醍>;tR}ݷCz1`3[ojsMnZI&2lck8Ėx82UWnH#uo֮S]^.ظ«~}P(IZwЍA\u~_'39oD뮻y}/,hkV7^D om^b~_m/nWd?M}Z2OכH}[7/u륿@_X9nm_m]aigi7pck7k_ׄ!a95\k|;.)ŝ_a(3}qDdj?jv'/F~Q<=G#Ç"1u?LqeD #8oD1^?wbܨcDc|-7*ĉNƙx&C0&By1S// OEeQv(϶/yuQ#8;[6ASsŇmd0ğ<LvƬ;8e&y`,xg0>7V Km#(T=ҩ;M7pԑW1o: "Iq;:"k(O߸9䘴>8UwVvél?5Ս=h 1#5c|]<nC?"_2%~_{fk Ђ,פ  {e9O8ks1}.:î~5/DQfmuK ~KSW7^ơ:c,+pA}L}!D!-N ^mocA7v-gng,٠*v=~(ß^uƠlpo|9[⹙oxA gx~ߍƎ!ƙ1#h߶Fa+cvh!0O]<?r.cI\To?G?tNn3QAp?Js7E?%y1ΔM!c Z-H/-4{E1f0!]Q A`zι/(4N6CXˇXj}%-!ͩZvcܟ~wǼ<u>8y 0vƫscո"xy#Z%ȍ1׽~pxl= o@=Z`3b[~v*YFe`c,)ϼ1'+Ƙ1[0qQy6a,bz }Wg:cH11}@p+H zsc&`)ˍ)J?51e\qڍ+7?\0pom%l 6ۊwkGOګګ}ݺt_W-Qz |AKM}OeG۵Q'/ҽ( &65lfuoBKow] e \G_z67TeNVxt}~p"²I0~+_]b8qwvujl]ƫX.c1m3~V(]vrDXNZ~& P< cgٵ;^?M=j\yMO`ZO?,\bD2[>#y3wWdc]coя~T~[ߪm<˱[nel_aLB#@iߎ1D׿S=CZݤOaX?b@BA93=!57’qF7o3Lbh1(1~OWX: hX}q6R3D@w쵼8ĉU[U`ey1VF^b Y|g L7~V\60ʛGr߅:|ꨜB9ƀ=ؾ033ޝwޙsg=w;Ύ2N`1 2`""P}Tj.ԭ(UW'Nz+GXH u1I8'}pƽ' Ga̋ヵuB+(펴/"lgבq|߲@}p <p8菊~8BW\q &y);5  bvUFA$"0:E 9v_S;vg8~)Njxw1^~Oۭ7!2r|F*߸Wzm2&^yE jX h.E~ͼYLㅐ>Ѯ+ s\~ĴB`1vrRkܮ]{v"mq^x1 " #6빫G>UYoFy|90Ҟynzga1Z}ˋFO1&8VB;Lid12(3)22YgD(  4?d0hq@daYD I {H¤CP~-D%GXƘ ~y'n& ;F?p0b$E11vU] 1O!-'QQZNXѺLBM#?7=^_䅧_˲7L1rk]=KQ+,0vb#,0`K]s@|R䝲M0D1DicMZG\hң묳* Ge|O=6D OS#As<RA.+C^0 Gҡy-uئ]!<m, zQf^<y$?oyC:b|E="Bzee^Ãe@GŔr9L9PN2evA˜>?EZ^&$M0@Xw|eO}Ý[ 0_O_btF uYM[8Kd`<֋#h 8.l|?2Ɛ:*@1q63/ҖY\ LhsS;A|R~<m:1NZ^`G\c-K2f2P3 s8׹'qGm_^\LgΧF/8xf9aXb7 I}bei4ʃw譜 DFF.;1~8ȠdǐIÌ8p1 gbh0h18,qb,€2ar?'~pCF*q;d4vp'\C1a׿^uILM&0 ;i&kl=/?1\Gj\^Pc f+&43FHԈc@~#}!FH2sy%tmK_RݸaZG(;d=ab #bNۦGrb_?FGxq#66ZGd .v i//G7"]=y`W##aKSUve1`16~10wﰡ}+F:,~f\ X= gq (8'~`Î)W_h(c2",9qa|SV0ռ(m3K'I>V[wKc7G9j q4wvo98xJJD#|PΧo"}# @?ퟶD1﹐K<jÂWF̕M8#]4$ 909u6SXҧ(7}=)N;1Ў@Ѷe9k5$0A B ڹd`T.  D1R'>"<2~&AȤdBL/$}D o:#}³Jt\uL6< 0:yω\p3!0yMĄx0ZXQEyHiT2{V1Hp+~!w]v(Hو A7ZGZ8)QXQύa2ca/@ c.3IAW)7\jR?3"O\O ae/R&ҥ/a(3ZGeYGN{+0J~XTJc/׾ꐾ6<87. ?<ȅ0i9Ч9 868@yh p̶w]` 1u&}8kcaBhes# )aEqʎ8^K/mrvqϴ2 )9"@Xb|ѧ(sWFm eu G,GBDs‹r"raxXo*qn4n,퇲u˸Qܜ2sz)l=^v'~f&=cQ~{z?m<P^W3ewSv#˜G8H8wi3䕾0S:Z.e#9nC 'x)12:&` b&%"+j 0I1619A; \#]_0C^P4E3`1bֺ\'^&/u&̈́GcTp_ #91HĆaq֮kc0`цn <*e# 娝a7w0%4W_|Fhy$ǤOa^ҧac„66G3z#8 >9R0Y);'aEXEi䥼;A|_nxAG=atyRr v9ZGaΪ>#Q3 !,VP78iOkm~Af~x賵&|ߝH5XD|:7he7d$GFzǑ.>Mq++̨kBž7c_?ʖF7q2+/!x0K:a<h/=NC-;BXxÜ1rwSؕ6/zaC惲V 4bL /C!hGgahr\ċ#8Ӷ@!/xq†PH9im 8F73O!h܋1a\;Zm OH6s4mJF N`=@oKh/pGnCߪWucO@a9LQ@ɀ bH_&= &&RvYdgb„A 9`\3XILL|' degR-3)ce",M;X"_g~ !$ϊ/`YF슣Gv0vx1abŖ!1k¤puYuXXa`2(' ++,6${a@`1@)/&Ҩc׊\64<:xoʎQ+3Ax҆1D1pp\I\/1yRo K:IgMH i9,_7q!a 1ZA'HNS'm5ix0.ƒKf?.66>\ÀGGGv[CE8&Ä!B B8De."e>vtX,b\g,alU_xJ7cCy|څFQo|?2rg_?eEʎ"Z|OџuqD=);GW>}Kxώ1 Ip, B GL\/>.;2e./,,1CHc1']ƛa/uI` 6 R!=EC$hd˶8]"|2W2[Q%ɋn l]}( L9^rN|; #3'#FC&vpLW&AD 99΋@0&b9\sMa$7Fy,)/t0ĉ+)ϔ/x0R?3‡'"$aW<g `=E Y'Ne1yb`2beYg]|/%_Ypn9'0DX!Ή^H|ca|`N~ӱB FQW/vX!$ˎ87 P\2\'mر1.rѦ1:(\k$,i'-aH¸e^y/_ 2FFs qw0Y?#n .;PA:eG\wϔN/m2Hy&ㆡO~h1,#y/Bz}Fg fɕepQ09M~ag|a<d=Kg|!˲1ҩFKɅ9er䟺'< hs< npFx’`~ȶIX#^xgq')GXFY˾HfLq,<`~oF' NRz2 KHNfzHe\0fYe"6b(/~8A]eaɘVvp%qY^* #;|ǸnE,q/pcQ2;v/Ljo2.#4 LlL 윤)0 Z(N#\g7рLC$ns~W?qSE䙉?LfL|&ċB~!1Il1"D&%EoA8&(7Cid00Ԉ q;`PˁɞUZB?!2[# '|X쌣<\rb`3DR~b7& IDAT=!%ċccr饗abp#;4O"o׈l l Iz<;N{fxY-;lꍝ-F)<18%<u 7bX;0y-!fvB|zX.` 9aoE(N=Ga"iH?^0YI4)A.iGM\/䇺]!wF=@8D_D{X48Y&i=O7_a+3&?){/āw>_^e5e`\A/Q^XgÑqėB/佶oRf›> i—uq90=5X\n߅-01j5d!M퍾OO|,Rwu2./xr,""5peU>{XF?gg8s&M[N))NN>-ʆЦ~}8΢){Dyi,8_RwRꝟf"0o} #Y'sǎc H```de`"(;&iy1/':^7I:C0qwّy!>r\(;~5 0&" ]ّbq+|18 /~|VeaŖy(C"Ǒ{^v|\1(G^1hR}D'6>Sv𨝘 Oa1@ͮMDa#{Ðf$Eav<p3'F'|802N4 $;겾G{)y:B4hg?6io) /j~=ޙμ.mF:I11h7/ ceL,z?9}9nmvA{ 3m.=e@pE;ݑ0E:X5/uSq.?p:m>wEr2N_BHUx~1N]QʒK͌}A҇+O Ja|aBqN댥;Z7NFB}~HK=0Ý15>3.&"5A_WL-uFQqKE,\[I?#!*q9B=65K mq)1Kp.F ]_2oԊJ‰:fNX$!-YӎogX!A @I8Z/ưđ&m!@SsyjmZs^w.$ NIÄ;qI %WꙘYd{XLĉ0i0 Fil_b]vEXaa23ELL,L}{ # ?'I VJ141 2bt33""0\2gz0<7 L|[6ڒu+va01& K?C`dy40䍺,7&pbSp`?/p}?{q7.a1pT82ꏧb˂xࡼI\C(L:K9Í#8 TJ11l('m1A(3mqAQ qpK2DÞC}#1i?-H_LFP7\'oe/_M\' v8Q8w?: ꒺z!5qK=QVD q`K//Ӷ;`.&ui,NQn“&y~9/hgG!I "cB8h˴tG%zL)3b#L(c 4޹0AxSWGG}_/ie_>]Frї@"nD>YL`1N/~N6%fx""qq 2Q%m|@A8NO/{W)'mOrBі:}ee??Cø?y7w-iܧL=.oxv:uXIySxV5c" f#9|Ciz䓹{}>ͼB,:e~5 ]gh LxL$Lxc[!&t 䬸'AJǀWA?dDŽ]W;ch 3aNJ 1h+"%vISTO 1v(>#7yg 2BLIZ)`y'&`)*G#B0NS0bHc`c?]Lzǰ&H\#A$q>$<;qĉwL/꒶H\ s80 Wk™1"<a :Hvu 1G~9Ң`arߍ9[R/i/àFb5O~ER<w#SNjRŋٍ/QgG0@1", iѾbT#Y Y o)x1SP T.ܳ=fxW?36 >(+^ig\@/)-AN$ `,Fapϋh{bJڴtK(g`^Wّ_O{$@ G ,{/Q<@]h_e# mBbSǔ G=4bkPmtk1VҎ)cE9"7}䏼Sh{0&n u!>33}2BN_i,nP\'K \p0at!̵p"%9b iˈc( Jm,J2׎uk,Pr(#uM ?=E? tNn l=}( L`"0$pec"c# M113hj'b?Lt L5l0X[LneaXBHrS?M8b+OXLVa䓎4(+4~0XM%#__'¯sùBA_&4aKy&|w=@ٳL\ _^#9u?DyQq(//qR4u\9N/J~V6k9PG}8 mgG\}A71E",TY?z1B?F$m5eȦ6ak[5";e~a AIߠ=7uD!' `de&.ܼ}()(-A_e1ws_/_;P 6 ,B 29P#?mazWƗ웙V{m("*lo|`K<Q_/!cReG}_sZ6l'#c啎YȤ-1Ǯrvc]JW幻6`3N,BDy'5)y]sT3J@F͎:+ {LL>q7H[ob .'rga)+\!}&QayULaԍ-]$v4c.},(-+ezm{: Pz}8}$ NT0߸|'):ٍM2-⦯Wpd9_);c?'oYKɤˮuE Wa3~Ǘ$1qi=a▨y9pTE&a_C=B ;gZؖq},Np]~]S,RX6J`^&mokOt㬀 ^./ YkYx]|h /%b{9" G9S"ςⓅîWZ,H8~K}v"[ H@D8O8<G9MUO[ǎ>sr|EV²x\$  H@O`/V$  H@$$ &5Z H@$  H@B@a*5m9%  H@$  4²I`V$  H@@PXJM[N H@$  H@M"lX$  H@$*RӖS$  H@@(,h%  H@$  eԴ唀$  H@$$ &5Z H@$  H@B@a*5m9%  H@$  4²I`V$  H@@PXJM[N H@$  H@M"lX$  H@$*RӖS$  H@@(,h%  H@$  eԴ唀$  H@$$ &5Z H@$  H@B@a*5m9%  H@$  4²I`V$  H@@PXJM[N H@$  H@M"lX$  H@$*RӖS$  H@@(,h%  H@$  eԴ唀$  H@$$ &5Z H@$  H@B@a*5m9%  H@$  4²I`V$  H@@hZN H`[^)Jmm1[$-,~@T.YDCu*`L<9,X0mf%  H@B@a*5m9%PCݟiӦ: wj5{6͟$  He (,[-xH,$  H@f1h$  H@Z²k߲K@$  H@ 1h$  H@Z²k߲K@$  H@ 1h$  H@Z²k߲K@$  H@ 1h$  H@Z²k߲K@$  H@ 1h$  H@Z²k߲K@$  H@ 1h$  H@Z²k߲K@$  H@cQ3V)SɓիRٳc`` ng}6k/wqGľ[e\vڸ뮻2#<rUx'8b޼y$  H@$P²> {k68cڴieY~}x㍱t8s-DSO='tҨ[āpXAs . ,X=k֬)o___Nܵ_n)im%,|/Y{+,GU;z$  H@xm 6D#f̈!Do77n믿>}XbElذ!wӋ\cӦMloob8vd" y`7q=Üs9~x~[7EN:5ϟsOQ;Cwq[ dzCIJe J`.,ob2{!ą^Xw8. H@$ V%5ߪa<o{oGD7Kvwbw݅hzbͅ8O<!*}PG?m/S񙣵/R!s3g,E=8;Bg)eƍ?0cƌ#{;|p0"-d8qą~燽][(qt $  H@$0L@a9b||wIElX.bٲ.}6*1kVÌ".\Xo|1҇z(8co/M^)±!C^({4v=\qdt֬Y}Yd':xk_[JDUW]UAr4BDn _ҟ4iRq%\RH>_zWEZ) Sv)F|'hѢXn]!O=bQ#KJk.g H@$  28KcX!b"ohǶ{,7)~;'pBq"@"wn"96p}٧K?5\S<q@C<rd?y-o׿ɧ~ήܹsI;c~__yWR8R duQ^{m?8ڊFR'B1L>_!9jK="oG)_ܣNh o!/H@$  H`&OjuQFxGC9(De̛10]aIC%b 1CkW^ye!<>Pb×w+"Fy`W_]ۿ[!(O\3<3ou2n/yMa[8 .~@"Ge`]YdP""̑WHn/)NI' M3iZjmb7ͧ?EeWdiPh['|y7%  H@PX &w\bʿ_5$"I뀽k_ʉ'Gtu:SN9hVrED. \ Ov-dWw`gqF TX)ęFkCMܙ>K!C R"eG^^~({= C;uđksReXl5_] }ۧ䎈gV}+qJtLG}p/3;|ehc,оXyX<9]uA}e??avܹ79e+Hoۼs{^_rO^$  H@@@a <(E7wE Xj]Tz&*g;<a5w Hz{<0H(j:g.+Ip2-;<i?q!o`PgQ5,B'r7MG^,Y7pC"cW]uUaAo~ ?&kmvvAɐ;vbaXEG|lChtuRG5jJ㸶;eƫl3gNўio .?,q?oSB)zEX?*qgQ7Xw0uOf^Z^$  H@;B@a#^,#vE׈[of/~Ƌ"fl v8WqCa"xa.EF)B !.wUCXt.>Xx%~sD߯~°& v09ya'Qb: 3.dCp9w@09Ky",yc̿K>˜~j|jbqJW[}ꥈoSJ GOo i#7 E;+6 >$횣eG;f1ȑ\Wbq vEgsݓ\ƿ%  H@PX(&oΝ[<-oD,\/>cY;>P^*v`׉Q1idA8wGyNv1o{XƘE3˫^#øFH,!ʎ(:y% kCbا//9q#1I ?eG~a"rcw=CZ; uoDW"*?GWêqМ ,1P$]{őq:-?v>?le??rVX'ʟAQzY$  Nakb ~R'F* O. k0 IDAT%[{LX( w8,' !(M5TXv$s+K.-KSai<D?-r .(Ǯ7\" 캲QYD'B򰢃>8wv~x Of(/~Q0Woeї~`m1ϨƦu[mĪϬ8h>@h }ߑ袋9 -qxEc~N|Gȸ|$  H@#PXDgk0>فCadk;aqd|/##Rb"X1`᏿{&qOJOLD#y੗3 B` Br_(cu]G+CY~P]VCzƬ)[j?G=xx`ݭ@{s7bM{Q:: *x21;Ew삲ý ttjꀾB?I@$ fPX68"Ҹ? 1Ʊ9bEL}g}vBƲ 41/;5~4_u8jcwK/t|%fL<o/ }0Ph}{@|8tnG,"PluP Kϐ: #l]ӆy;qgaNa {qq[ $  H@  ˱8A`= Z1Uι"׿u!x*,Oa#ӈX*q<('3c$Gaya0sgC,"+8㵯}mi /08{i {aG[VadㇼGuI<1|WG?.9U+/n&.= 2;оʎM#QmSM9/qXs_3|$  H@@(,Evŋ!.$G>9=餓%(/brLKv8_!6eMGԤ<` "om]k^S[?Zx·.a]Mْ;GN\^+"F qr``0;:}JQ_ڸk`L61;}vő;s\6;eQU2’ s%GcpN$  4²Ydwc>v 1^j_ h_~A׾%kb"nFo:"8t>rcMa."I/O> trWO<u4!1bx#8)?~)3;BZ6aR.c̴E۩nEφp} Θ]iٚCh\/%,heGgᅾĩS~EZ,"R%  H@B +D8RHpetiN<VHM.JP,% b0޹F>9&(f<;1]GX6Dv^;<wb'${B{-lUϞꗶ=)?0ԆmGUbjX;)Nܒ"{{KX’pWb O&nNp % I8& H@v@kn qaOn#!Šص@Dq$1ϑu]Ch*;+ܷEcu'>'d'QSB8v#$?\q=82OܼɮcE1`>4KvQv8ˎq^&@9xq=qc}o[1?>tƔ9=?!~p9kN츽Ӟ~OOivBm{ӛR;N$  4"lDf^@8=<Ao!Q葎k9{DTÇW?*JXy$b"btH;rr<aF>8W!"w;c([pc7~JvHy,(W2Nc`:yxX3tGwųkz[wo1)LiVm/߲!ںDwWXOk=G*SO=.]Ps1Qo?'xb,yM$  )ܽ!0&Hdx= 9HeG0||Ǯc# ccv93)KNSQ/?ˀiS JvKqPvz٩E !vV)3;]@'VbCtUm'̈?<;Nٿgׯ'_쌽fcxPntM{K_(,m/.efaivi[N Rva+KK8ZhQ$  H`W (,w8 |׻w#1V/N N^> `^-CrX K~#((*i8ZOg::!Z^;r,GR. s`"FW\<H!0)3Gu{@%*{:n\ǙL-kz1n^23g̈-?r=턇<qFhIю;]:/K>_}ѵ’#fpwN$  4²ل_1LyH;kGGBk]%Nq}{*oA-w3rĕF>o/ipcY._!8\v4r|{gL<9_^ֶ8f܋}nDWWgC}#tY&,qʎ "d$߳ÑX<Q9. H@v@ZJ$Z=/TC Nʍaŵsfķ;_茩ӦGGн(m\Tem9DhH|E\8}$  H@u,z鼎/I@(pvs#K ;o3O7Ƈ:L3fLQTFLgGCiM#Wצ%$  &+A4$ ZD@`II1c׬1cZ!63΍8pu!yQ$  w,[-vԮ+Nk#"Mԡo'qawW`u<WopHTO'Ooo H@$ D@a9j˼J`F%jT5Wё-JwG%qGͫ>I9͆$  H@qҗ$P@Oވj l#너=rzWĔ^( H@$0U_V^uϼ H@$ &=Mk$  H@Z²j2J@$  H@h"e$  H@$ V lZ$  H@H@aDF- H@$  H(,[-$  H@$ &PX6QK@$  H@h Ve( H@$  HMk$  H@Z²j2J@$  H@h"e$  H@$ V lZ$  H@H@aDF- H@$  H(,[-$  H@$ &PX6QK@$  H@h Ve( H@$  HMk$  H@Z²j2J@$  H@h"e$  H@$ V lZ$  H@H@aDF- H@$  H(,[-$  H@$ &PX6QK@$  H@h Ve( H@$  HMk$  H@Z²j2J@$  H@h"e$  H@$ V lZ$  H@H@aDF- H@$  H(,[-$  H@$ &PX6QK@$  H@h Ve( H@$  HMk$  H@Z²j2J@$  H@h"e$  H@$ V lZ$  H@H@aDF- H@$  H(,[-$  H@$ &PX6QK@$  H@h Ve( H@$  HMk$  H@Z²j2J@$  H@h"e$  H@$ V  ,]!n}X s/K`!PFtu!fi9v8xQf )$  H`O"PVwD{R,$0zոg~tW<bcEuـ:R~{MO^rb1۵, H@&Ha9+K`vg3_U Fפvd.ځQ}):۪ O\r|uMK@LrϬXK%Qxv~rO7ӦG[D%ٷs "*mm>iJtM߻XQՋ$  H@D#h5f~%0F6շ<w><&OmlaƎ@m1iڌxvmƞߘ$  H@8!'a6$Jw>BLνfA[{Gtuw=KVĚ=Jx%  H@n#mMX@_`<ºhoJ{*u#] /ƞ%c$  H`7PX&&+M`Zu6GV+XR_ 67-c$  H@r7@7I H@$  H@{TE$  H@n MR$  H@D@a'զe$  H@$(,wt$  H@$'PXIiY$  H@$   $%  H@$  I{RmZ H@$  H@@nH$% #PF `mV"CV-:ڢl"$  H(,[-^qiq!bٓ○{Rss@񾽌E:cygcђUq/Dwg{ H@$ $A`zv`5wzo?.tǪˊ9S⭧suon^G7IuHXGFwg[ߌ5vS_V H@$ (,GW@PΝUD։FT#=5>~aFZ7=.~qBr #iq>ㄅ}폮c5$  H@ (,:m V Jm@mRWO{BvvTbr+iy1oFp|Fs[]K|יsp {ևV~g4]$  0e WE@3 p-*mD$n*ѸB/{C}AQw,cYg?.8~~ TE{{mԑb; H@$zWXM'DW{{, yqмi'Wo+7`3"04P|}O<|}Lj/a@erRbp<<hڇkZ@_CQ$  H@-As< }_p6N|vm?^<{M^],9bmO͏^ӻ)Ŏй{O/z&~dM`<~xǙ 㶇WĔ-Br36E{?[&* H@%ܖW$ ]${bI͝Rʍ7]WI}'Voco0-'ᅰ_ϬO-XD1ըT#f8V^p~qӊ0o:iXlC\g AW6K@$ L@a9kϼK`T<P<C_"|qۣ qSZ̘>3:J;CM+;XgF>0 >{}qOA=OYϟN }UeV$  H` (,w% `r57ڴy _RwЩE';d'q?ɝswH!$7ĕ?{(n^b̒zs߾+>;?5>{+Ni$  H@[/ H` ڶ>V:}RG{Ǹr]o?#1xvMO Fww6 sƟ\px\rE9fƭ ޓŪDLklqokW˿y㗋E'۟: H@$ QPX% !0^<$VSħ.:*GKxtד?>:+qo:&NX8-])v8zygO|KWw,Y!x|Uy^aN|θu( H@Z²E+bKߌ89CU"NX8sup6/]ڢ'HIM}۞,Dlj gE'SigSo㔃1گx%OL~I/+ip  H@Z²+"K8zYkG735i8ɍ[SfqFٴ8ʃ{*Qi:bRg[VcݦQyg%?ܺXeIo=6yn}|qSswǟ\td?"bw]ԯxxb"sw=jp  H@$= { H` F6oz} @=߻ci|wqYg_p<rcw'.w?:GW WJ%^A@(sý/#ϯ/@t妘:Gg{9(O/8*V9Z1>uᑱﬡʼq}/)j}okw?&V- *! H@$А²!v@G[%|bU\pxzxfx ]𼰦'g =9fM5{ Sdqׁ~GkE_@ح=]CF'뎝 N_~|v1ǖbg uvŪuE5l ' H@Z²jJ ^[\~Bsܸ*CS;┃qxi`tWE͍EJ"v1+UvE_^}o|qsySō}t<q[$  H@;K( T#AZS]O4W~rrW[IV6%;{1ؑql(ݯY=}+$  H@ c9zVƐs1 f1=;x~uBUZe'="^!:jv(3KHDɶW*qS~6Z/;}A`Fo,;$  H@'lIDAT=+}J@c@8~ZBDNDBF<†. D8{ˮecE&mm[N/<lV?er=m,D,39wF|}ϯ]WT<bc3a1g$  HlյV-$dIeGĖ\@5^>q{Wdu~!s]g-,Å{O+^spX;tuD''IϚOq86=k{_+Ϭ{hRđ(^:|n<sɪ   H@C@a@~- 8k\v]Hb⩫>И ?=>>qqi6ş2_><&>#⠽ŬE|7ŵw?Wxv"<h.Y!GI)d'>|Ƀѽe4]$  H>e}.^v/n+v5}u6v#+{?Ssxqsc֔a>'ŲkzXzS,_9x-o<+<?3jq|6ϊl鏇[W<]'pxt".Vx5gJ@$ "l궰xe wo:; v'xVv"{6-h<怙1kRg;gO\9~؊Woz,u恱fq/D(A}R771X1>wy'8;?.nz`yxL$  H`djzGD>74׾wߍI}ʌ>o::h+| i4Vv8y0O[ەUOY1H:䩲SoknukV[㸅CiF& H@vEX>,=BC|e=?,"_l;+&q"L:Sg H@$ m Է H@$  H@@] ˺X( H@$  H@%-)I@$  H@@] ˺X( H@$  H@%-)I@$  H@@] ˺X( H@$  H@%-)I@$  H@@] ˺X( H@$  H@%-)I@$  H@@] ˺X(=@[&wEZݭ%qS'uFgn $  H)pH%0 tu!ΈV't/?(f^$  !KhG澨ED[88{zǜivKLT$  4²t[@WG{;z6ވrlލbٓs)cI@$ q@@a9*,H`w7;ڢw-bvADq`KyTҳ#t%  H@@S TqzSS1r H`~*tݽQi&w/w҆{Ϛ䄸_@ ) H@&Ha9+I!a^>~uX kc HImq>3s[;3*3 $  H`PXN2$  H@+Eymf|I@$  H@8'd$  H@$  w ^CO$  H@8'd$  H@$  w ^CO$  H@8'd$  H@$  w ^CO$  H@8'd$  H@$  w ^CO$  H@8'd$  H@$  w ^CO$  H@8'd$  H@$  w ^CO$  H@8'd$  H@$  w ^CO$  H@8'd$  H@$  w ^CO$  H@8'E8ϧٓ$  H@$ I`Һ^IENDB`
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-core/src/test/java/com/ctrip/framework/apollo/core/signature/HmacSha1UtilsTest.java
package com.ctrip.framework.apollo.core.signature; import static org.junit.Assert.assertEquals; import org.junit.Test; /** * @author nisiyong */ public class HmacSha1UtilsTest { @Test public void testSignString() { String stringToSign = "1576478257344\n/configs/100004458/default/application?ip=10.0.0.1"; String accessKeySecret = "df23df3f59884980844ff3dada30fa97"; String actualSignature = HmacSha1Utils.signString(stringToSign, accessKeySecret); String expectedSignature = "EoKyziXvKqzHgwx+ijDJwgVTDgE="; assertEquals(expectedSignature, actualSignature); } }
package com.ctrip.framework.apollo.core.signature; import static org.junit.Assert.assertEquals; import org.junit.Test; /** * @author nisiyong */ public class HmacSha1UtilsTest { @Test public void testSignString() { String stringToSign = "1576478257344\n/configs/100004458/default/application?ip=10.0.0.1"; String accessKeySecret = "df23df3f59884980844ff3dada30fa97"; String actualSignature = HmacSha1Utils.signString(stringToSign, accessKeySecret); String expectedSignature = "EoKyziXvKqzHgwx+ijDJwgVTDgE="; assertEquals(expectedSignature, actualSignature); } }
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-portal/src/main/resources/static/scripts/services/ClusterService.js
appService.service('ClusterService', ['$resource', '$q', function ($resource, $q) { var cluster_resource = $resource('', {}, { create_cluster: { method: 'POST', url: 'apps/:appId/envs/:env/clusters' }, load_cluster: { method: 'GET', url: 'apps/:appId/envs/:env/clusters/:clusterName' }, delete_cluster: { method: 'DELETE', url: 'apps/:appId/envs/:env/clusters/:clusterName' } }); return { create_cluster: function (appId, env, cluster) { var d = $q.defer(); cluster_resource.create_cluster({ appId: appId, env: env }, cluster, function (result) { d.resolve(result); }, function (result) { d.reject(result); }); return d.promise; }, load_cluster: function (appId, env, clusterName) { var d = $q.defer(); cluster_resource.load_cluster({ appId: appId, env: env, clusterName: clusterName }, function (result) { d.resolve(result); }, function (result) { d.reject(result); }); return d.promise; }, delete_cluster: function (appId, env, clusterName) { var d = $q.defer(); cluster_resource.delete_cluster({ appId: appId, env: env, clusterName: clusterName }, function (result) { d.resolve(result); }, function (result) { d.reject(result); }); return d.promise; } } }]);
appService.service('ClusterService', ['$resource', '$q', function ($resource, $q) { var cluster_resource = $resource('', {}, { create_cluster: { method: 'POST', url: 'apps/:appId/envs/:env/clusters' }, load_cluster: { method: 'GET', url: 'apps/:appId/envs/:env/clusters/:clusterName' }, delete_cluster: { method: 'DELETE', url: 'apps/:appId/envs/:env/clusters/:clusterName' } }); return { create_cluster: function (appId, env, cluster) { var d = $q.defer(); cluster_resource.create_cluster({ appId: appId, env: env }, cluster, function (result) { d.resolve(result); }, function (result) { d.reject(result); }); return d.promise; }, load_cluster: function (appId, env, clusterName) { var d = $q.defer(); cluster_resource.load_cluster({ appId: appId, env: env, clusterName: clusterName }, function (result) { d.resolve(result); }, function (result) { d.reject(result); }); return d.promise; }, delete_cluster: function (appId, env, clusterName) { var d = $q.defer(); cluster_resource.delete_cluster({ appId: appId, env: env, clusterName: clusterName }, function (result) { d.resolve(result); }, function (result) { d.reject(result); }); return d.promise; } } }]);
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./doc/images/local-development/apollo-demo-overview.png
PNG  IHDRZ+ iCCPICC ProfileHWXS[R -)wH H! JbG\ *]Qp-@Eee],Pyo9sNΝlFU|IL#2Fl('**@.nB[(l$u*'DAqr >@zYy<Kp kJp [Kmb f@t$tGIN 'ͅ>99+!6OO|dǰ,l3[rţkFGKby `*GA|ϕK qp~#9 PeA1C#lt.G#!r*̍G r?2x!' I@ + =T ㉞)G@q(+&L>aQ_ĨP-l 4a`ƅrҵ`-``\,'J 8`\ N -[%ǪyAѲ<cE1s{. *V GA8 İ\ -l$kFg$HGhlt ˘ViB,\=pd总nʣ`b bΆMF{NE07n# BO^V33dʣK>GmpS =!g#alNP=Coq= ,,R~1}#.~Ėa)"vkL֊u`$xH+ath),?jc`o%fH^ܼ9B~zF<fcktw@˶7 鞍0.} *ӿFy 7kX8 e:v 3ԁF` "A,H3`3@< A)(zl;Apen{. 0ށaAH #Z>bX!+ H4 #%H9RlFv ȯrF H?b(UGuQStah,:MG"]nDkнh3z @{0E`6+EbX&`eX%V5bmw`Gq&nk39x>_of ~ A`Ep' YRB%a70,|oD"hFte18D<I&>&H$-ɓIb HM>"Y@$'br%y8*yXAED]!R0Ga.6+ } UœKɤ,l4RRS(***)NQ+.Rܨ_bGՒGFSWRk'woh4)EKViiiJJ!J\JUJJW^*+(((P.RT>|Ey@EATO@J-!Ujj =ULԸj%j;N=ct#C_BE?KS'gSTPӘ1[JFc2BٌUOt[>qq5k4yeM74?i1hh=Ƶ-hҮ>=0^}xAu,uu ݤ{Zw@[w\__BӇ<416046433,6l2|`D1r5J3Zgn4ho<xq]W &Mޛ&.5m1}nibVd`vߜfmo^c~݂hjeբt̰bZ9[Zu[ݬ5ַl6>66 6 pbۗ'$OX3vNvv٫ه۷ٿvt8T9\w9:.tlu|5j"obNtNKڝ88 ]]R\rUwr]zGwgyxdyx>loҮI= =ٞ;<{^)^۽z 5ޏXF,.k7뙏O^vBþ;6< 4 Ll r t2&Vn'>d0%t~0jXLGk'ߏ0DDȐȵ̢~B5jhyc13cļ]{/<N?->}BEBOIɤCS7iZ鴛ͦϞ~qf*d<BHIHٓɮanIq6p^pYu~',3"yg ʌ3UfpYYY# M9䜔#5AL^<Ҽ|0n".j-Pǜ'qoWaUYV-1r9ϊ~mg0o>w,@.h_hdaߢEu)^lW\QvI’ݒE% TTXzkmeeoZ[vܮ ΊK?瑕i+;W9^M\-X}s Պk'm^\W/VNܶAgcMƛVo9c*ߪ-:[oyj5qmƴr'qgΧwڻwEםwߣgU n;mo>}6;M~?~M恰]6290pY3<y%5H6ÿV{h1cS9QtbdɁSlw:3St ;{\}ΟyEG.^j|éNtlr˭{RWO]vz7"ntߌyִ[=ɾn{=PyPPa?,s׿Q̣{9_<=WϏw1y/JTsKb18Jj7ZojN|>5]λe>}txS§gó>>obk#9##yl![z`Cx] - (^RAdE) gRq@"6cYutkr9:|Q ad.6GF|d'"<o Q k pHYs%%IR$@IDATxypT7B-!}ߐ"f-vlO7Ln5u5Un[ykf*7dc8`0"$B}AB-%tP4},9i9<߁ (@ P(@ P(@ P(4wfN P(@ P(@ P(@  ܱ!P(@ P(@ P(@ P`0p .@ P(@ P(@ P(@(@ P(@ P(@ P( [E(@ P(@ P(@ Pwl(@ P(@ P(@ PX -"P(@ P(@ P(@ P; P(@ P(@ P(@ ,E`(@ P(@ P(@ P((@ P(@ P(@ PePai <Q(@ P(@ ,GX,(@E`Ef6(@ P(@ P(@ PK=Y!KrXL P(@ P(B#+f P3&Sr}JjjP(@ P(@gK`|l٪0kK PK钆;(@ P(@ P(@ P(x -5s(@ P(@ P(@ PK\p(@ P(@ P(@ POųfN(@ P(@ P(@ Pp)(@ P(@ P(}f1==i[s=Uz5u.+[de_?,F P(@ P(@ ,#i|75)Vyd333z1 jOd({|o(@ P(@ P(@7^v}7U~~dj;[Ǐq=OÇXk f["b3+ P`QnQL(@ P(@ P(@]@ D.)) 7nIׇY.{Ob`;)S^`%X!"BS`x,53(@ P(@K`j1Vš5k䠝<Iob{5-rvH`~:<-੮?{=՗w Abz6b?N 0؂}xc!LbpeƐl?!?7qb)ڒĕ>*lbz6"D۳-x:[̸lD:JsŽ#Jg&5Yī0L(@ P(เT۰aŐRW*(,, #7"%;!Fiy0<sq5BϯzkzuNJ^enW?>$.[%gn ,r{u|ë?¤ [-<Tξ^ԥ}_GTv}<.@8)EAv&ƒfgF*|kD(G%(!e2|6!&%hGm>*`8y`-?7u>KɺrqK*ɤb$@hmu z :{x<ۡT5#jwI82m\ ˤC18G{K4g-(@ P(@e.௛NaE JY^y r!iu2jubB\z2"֑f}RYk' IsوTl@K۱w:,8sD`B&LL+ei¾/5G ֬ J'#`kD7R4b Gɾx_QѫNe{{9h'T7%` YHEVw\\mzWaGfI"`x%_b˃9]]e,&> rWܜW<65@|"?S(@ PsI3yDO;_S*zwы,)b1E$bHJǢE9"<RzޟvplLz^A;D~CXn' y|QwvT^R Exp7~n2(9._ npwZ{0dFpxR27=2w`\l po0=JA7m(_[D1F6vٍV6 >! JD9e?k(17 h+s48}yg8݉ KU}U@ 6D2dcgaULN P(@ PX"–P{Pm4vlFZv)K{óeaK{Rg<@边K˰d/G0\3#bq' 9gT;pqy?/7Ld&:-(gtW*N++*5; "pgUQEȒ'#%=)g$!DN۟폱%;۫qhzu,Uܝwh;b1_-94֦߮YA;[>rwBP} {BQrG{X[z3(@ P(@ <n1;*Ef#'Eɶ4\+>8_{ˏiݳ|Q촓\:˞\sx<~fZ iƅx-p' s>كg#75 '&cz;PYo6H5 rϒzt"$q!4Wک[kiFm\}mi&FZ.֡>ܮǀZ{ mv iU:OB+bSr.b@qhF!b{44A2 !1`bGjn"CE=3 uA}spdP)_.I g&6ӣhiвzš !b.@Sm\ {׍x75-/8ߛʟ)C\}[±)G"'"h /co%|.Z m㓐+ߕY⅔ùB[v8 ` [xjn3٢>T؊Vg=bEO{-r^]Fkuɩptzڡ-=%[P{V=L[q;>J,:(@ P(@ P`q\WfTEf!Kb5@{=,9RĨ:⹤x&92WL[$ujZ yS}v)Gσ-]hV|;?'8N<UObdn8_K&c{aQ<q,ŧ!1Lz5VmWdfofCBz'=l; 5,RlZݤxdd {`=څ}߿q"aL ڕ\X7>)l 9TQ/w(qMX/ lpѤc#Q##Jbň].|*O44މt/N(Cyi}}պ# Z$pq=Jʑtzb\:1N B[Ӎ)m<*]e| *Nz \91tŌ/"rypz t#cR!-;6n[6덕d;McW:sCxH i\E/ڜzE>["6co7 ck.6?yucz)ޡ ?Esn&Zu/!<>H3]uok(ߎK8ZqSõ.j{KA;xps)EF, S[#òpgpMU{3u|sdMփS0Ī|/ڮE<ʓ*? 3ZRR4xPSΎ4yoxNVZ]0w.G\)\E{V;(@ P(@ ,?e9}PW"s ǀ5ܩQu*MM`ka:ؽgN|!U<ajU"ⱞX8TIWJP}Wħ{^-_l_0$qZP[KN34ܲWo{It`_ނ3DAu8ƗYKt $HuuPfC9FRx*C3>Hzx6xp}òw{X\l{pվ7tΕ |tڠ<Fen/6p~/NkۨOkZgI7jt^>J^.v3Mљx?@.puevC#7;h$/zzIJ^oLqk8%񞍗x;KJT8SoQ]VWu,g[M։W z_w=N Ƕ?|ovN96g+sj$C{- tHCl~5㠝|HsK?ƋE"hda2 m]Jp))Ym-^EO(u?RguO 3i}ìR\*=#G áeHF] t@fkx(hg?;UmA;iÔ/|<Ӵܓ` H P(@ PZ@ ,{'>oYl/bpPtAaN>Ԕ}o-+<1h'xZ{*r}bOsq9 vK`o(+-JAA%cA{N;U>i7>sH;oZaՁ$፿+׶<yx~.&eUƄmm&|rt>!"Y*=$::>x;TR|qs!y_6g?Z}ZeuJg.>]-E9[PGjZϗ餳P$l &mvp6ٮ<90DȞT5bMz1//G)yYH"{H-UTC1lJy^ Db4وQk{xڄgo 9hj1 Zģu+`ADAJu}βPyL%j[&e!z>%eg V̩L_ەT{SYTpPRV/r^FMFk_#.^)|d|݉l{y Kԣm+)5> ttMZiĀ$MJAhy,+ih;.\AChqb(k, O߁]%8 ~ͣ8Nx_TP26x`H1;A\Amc#IƦ(˳3G8iO/_ '8yg".9iǽQӴb *TacB.$J;pkft#;Ԟ_NkROS(@ PA@tgKgV>niEWW7Zܝ*z\Aƥg;=Q'ԊyQAņ^LŸ϶,yZB^o'\3WQ]_/wg;`pti:1eg]ơ&:w{%F&@Rp=R[8՛E"QT gnž *C%qv拟[# n}^:SJ[E%jŏֈ!y7X[2jjrO_]gUd-Rۺ};vYJQ?z8lP;#h$RwÁaIȰk q<?xIJ=41^8%cݨ;;ņoŗUEh:ǁb/g>=Rswy%-tSR\çwEcJSϢ["TDw{xw/]CS pQ\^tۿۻ_N/_Cb5Zm Of%26~tk294No'~*0$:g\y7q\؅9R>#JM4p}>L]CgAHRYb-[ R5MUf %>f<ԊJwFh&rѝ<kz?R`X^p_҆>1XaEsspMzmgM{oL+RFqP1cz͏ޓrZVY s4Fi]O⾘h>4{n~FqNnWWDRb/Ζ)D_*s^Wl\(@ P(@ P`E <'JrrAwAK+.TT!խ0&Ku=ag=#xʔO19WS{c,yXۉ1gZ8y+}ׁk{AQUؗ[Wq\/8_j(>}iۍujA;%N1ڋE,%RfSCGIq1`^Oݽ{u$;C x8` x St~{sCE{;7t7x^ޜ(wr:iNvd"c5;Sz||L⓯/]MexGt8>#~/^_ )ZnaZ>Ԩ]a<XzШF0,EK(Ғ)qjA;83R6"fW|W4vnyϧET֓ȡ4AHJCپ#(1&5h?xO>Sx0{Qvb8J]N'zLuڼs1+!H…ԏ6J1YNZFѬZ=%5v\]p)n\S?ljOԾ"c?l닝"y-h˲S @|;Db :m_o\5nW1Ѵ|X ^h"޽jeB P(@ PXD?5_;/d`{\8mCu1xF.FYRRFR;|0h'~RZ;q9tSjjW 㐔h HGߨQQQqM{֮zuiۍbxUPUX/FpCT{(~+b*ǿ2c`T1}!AwՕZN)xt.TR|u"S_sհUY|9}!1퓥紼%8 )bjSO j{s͝'OηED&m=knh] ||Dh cjB`` @ N<f{v,~v s& S50$WlE0P Гh,jG.>/7q!& FTT<([#ytW4λ:3Z$$z  -װZܦ%VlN1Ӹ=ڵJEC/fKԍgݒl$p5wб;S@Xf2CP%+ ].lDK6$ȽZ>y/v~rLhӺOkc&ׇ~Pz%7B3~UlK}* (@ P(@ <ezuQ>oӐXD$:L# öe9>8]?jC.cZ1"g<UI!R>/]Joyۉ+dž%]j}cҨѶqغf!-f[#ҷEw{s;<OݽЏ6UR?aqOy'Qv^ץ/ڛX=ЕIr8s*.:;HlFsk'K&2dn5 ~jxޒ'eKI$rƁ/A 5e74GgI'U_ L/Һm>T<sQ^̸&;bSEwMؖv#)?qNώA>66Iur if/AB&mه[£"8{O HM|^mҋGjfk\ ,^jg1#E`VD\\Oi~~0c^ }]^aܽ'#)&+%/ވZɝ^}z"Ký(@ P(@,bnJeO&!=9D5R1T]=*$~C+#I} B:g xNf'-8G5Uy`X[.+jbJxn_Ɔmi)[,h~_V̳l_ާsmQ]..o^?5'gzZyp8Rw "p' .S?L;8-T_ MJ9o_?}6.n\ ^ہIr(x^zFeSx<I01,<y{އ{0XS#љjꭌz!n㍗A|Rܹ>y+ 6HBY&& 99<؇Gλi(KOEŔ iJ;WKI3-k?m "c֡smX`~}޶D1oϣe(Oo"[@s! Zqc5V]5=wzVVu (@ P( T..TWK=W]>R<xqHLM;y1yKl')DۦP SH̷,sD|>.Ȉ 9vαm1Sb 4ybO߼ZEhUѼ| ={!uLy[7L6 n! ,+ql~7SN,ln/M/¥hv-͝?Ԣ?r|s'Ɗt&)57]Yy))؟=_ꪭYú Pf#|􄢮*:g3ޡ>7aC|$dnU.bUKW0D ]8,#Opq8{pF^Tt\;+힗C-hVF 2]+bT(;immcQՎ{}J‚ۿow+R P(@ Px,M1 k.{ ԟAez:K9[WI,m;q]:?uFDeďcA,$++XZk񒖰d$&"5#ކ(zsQ0LOm9^_S$Du`6:y.]1jyKCa2)q ;NҶQij8)% KIȰϮvv!Ӟ!/9ix-D >M/^+,psNT"Ƃ#/2cxH)w4R \&RE.\V;±i~ڽKc{Iœ O5瑋3,=E.~)re1P)wa;7 V7mK62rH0jN~?Gڤ‘.3^ܯHgd"3I 7zݺ[hP8 N,꜉"mFRRx!tl,> *dkl#sԗZ?7* %xq,M`$w}y={L(@ P|!HTwNMwR/(zA4y$G\||u>/e;FC2!`a)6.v3ʆPDE醔ǩbeЌK8pY9R=)\,~JIwS]^=;SW]G]D_]?}H֞]eVⳑĐ^H!9>׷A%&<MNYzn3g;gNӘPpM!o, ;\4&</j"fz;gg/^ʗQz?O?zۓ+3;"Wb֢ObAJWzۍbxи!ewsZu M݆R#ے[ b[_|?;xO^ܗ+[$Iʉ}hՒQwڔ[\8p^nGYz[\Ak{;\ΩtGC]CrxxVSVBXQ?ˡg VOH|ҟ8dn=WwC1Aۻ4C zMrү9(@ P(@ |SeA * kv)vJ-TzYs: W=y^-Z}ASOZvcʥ.y='َ-{oz v(x?O8"?>Ldߢvk"7*rx_TjSk9y*t ŁJLFJJ"Bl= |uZuI)݉=qdTgN*Z^CS-iJي}q3ӊfyiuD<?\:NMP嶜o!z#&f6< :骺<{@+'\Es}#%3aLp=Z]+~4nἐڵ&l΋tBSҏyMhǸ^#`2ĭM!n'gJ*{?UѧA>&%9v 1{kP\9o=D[6 1-ʗ0nҴ]:K~Cw"C OAnzko(?eHC^P-ϓuV]4l %6y&F$~"IQ"\/hs[Σ= ;Rl'`OF4DmOx<v 0ϟuu^ZA+.<(@ PʺFl)= K~/(݈smHA~~Ow/?/}z.Wjd4µ ۞y'm~n4V Ct}0طM[庆a[ 40iY؞<ϱ7ǃj$)ŏ_3}x Xțjf1q, _96$]DSB5<_]"R`Dc[?EtM-ڇzdnފ$%"B7k]Ugۛŏ,ҿڂ-. q _N\AԡE{Dl߫:}iQt;l1I"$'!~.I7Y@ۚߠ 142[p"+?BRf2,X'N:𙆮ƘZӎ'b[A;mWg*p_&\ۅg. ]Hc%-~sUWmA&)Ax,z6 "CJ ed\KSܩpY"ۑazoq)`vO5S>y!<EKĵ,1(!Oj.f@{QW1ds$b IM.}L݉Fą'qeVx_JI~s[)V~eu'u P(@ PxjSB23_Wg7{gS"^.嗧x)9>_U]yۉa,G3\F<ϫkqú;l>j7."%cN K_/}EmWpQɶR߂;J%_P^3ŸOme k!dدiFA2S.| G=I>WVIluGk/Bݱ^u~t ܸ;ERFUjZX'E_Kb޺u>D휮t/kwM.{p #&&D+;ϓx&xvv&C|p^?؈MjEвvvV_Zg2>էժ<|^I v:=GNj_xޚF 8~& ݀0o^_V)}yuGNQ4CZâůFypuNCkG'ZNUjE_%<<\7tzT/Z|#|[kiJkQ[wH\.I~҅S_U7^;qopHv*2|H0j˓EYf/Ce]層Ol{p8ryфO?>=-/e=vT|_SP7ۿt<=s(@ P??[XѣG>XlOo|ioD}\,h^LJ@{;B^UCg>{/Brv{ ytL9ѯ7qb޻tƥӟ+jUCw5~뿢vjuȌwRپފĝImq/'^kzaFḎ? ur`E}c~ORyN >0ٰ]~ȡ$h#* NCe/ޟ{~LHF RVt*'|xpO<`\ī|iV Z'o^؍023U3 K>t[tnXMIF601ԃ!e,"ZE5xh@iQ+D?^~a25zm}s(|vy%pd&` L/֊>18%>ŗ;f]D9{Ycuǖ3<^Y: P(@ P.ơgjZ n333Cpp?22w]c(pWm|Qeq. ,eĸ ,dkXdy 18O ?-v/u1BVF`B|#<y+Bt8"agr\w$h}hGWO_]?i:zaSn {!oOW2ώz+3؃zZ}fԊJ[z۽\>4R/ QE,WFSxyrxRݘ?;v-'Db&{N@tLڿZv]rs(@ P& \t]tuuauHHVC ^7b([[Q-^K,eVUȖP~FK)lډìnNJ}wTkA=i.EO]~T;Woq?!,A;XpkvR)Ϳv8o<!&ېyx㇁)zwZzm83Pm7Ҏ(@ P(@ P`''a}!}5BDS wҸ>/Qcl]Id>Ycİ"hqɌ1YQmԆ%*]*8GX`0{~7{+2Wi+siU.!0tx<S0Ťax.}pM]H P(@ PxżC ,,r8i7iN1xDD~1#rNtgg&ݽ9rL/å'f)⓰y[ +1TӋ?J䲛Noc{2ܹ,18P1"8FE]2( 4B[ ᳫ+7ooo)B P(@ P+Wsܹv&N8O|'upcbA.+S;-!'ʊ1;AK?nܪŹ l}P` Dn? Xv q /A5[toet( E :"SVz@(cRe"Q(@ PxFKCY9{Nt255iE-vm` {EbJx8T3uYY P` B P(@ P4ulx'R.v⽦`B ,S4a2W P(@ P(@ P(@ xC;o(2 P(@ P(@ P(@ x(<(@ P(@ P(@ P`L(@ P(@ P(@ P | 3ҖA)X P(@ P(@ P(@O=K P(@ P(@ P(@/ ǝ "V5۵AkuP(@ P(@ SX(@ 0pSKx̉(@ P(@ P(@ BCeBiR(@ P(@ P(@ PM(@ P(@ P(@ PwPe(@ P(@ P(@ PpS;7x8(@ P(@ P(@ P|!/T&(@ P(@ P(@ P`M0N P(@ P(@ P(@_0p UI P(@ P(@ P(@7sS(@ P(@ P(@ P BiR(@ P(@ P(@ PM(@ P(@ P(@ PwPe(@ P(@ P(@ PpS;7x8(@ P(@ P(@ P|!/T&(@ P(@ P(@ P`M0N P(@ P(@ P(@_0p UI P(@ P(@ P(@7sS(@ P(@ P(@ P BiR(@ P(@ P(@ PM(@ P(@ P(@ PwPe(@ Po@IDAT(@ P(@ PpS;7x8(@ P(@ P(@ P|!Аx X9aN+C7> (@ P(@ P( w@ P(@ P(@ P(@XwJ"i.>s]W)%spuھjt3g P(@ P(@gS`Iw |ex=ud )@ P(@ P(@ Pp[`Iw_3h5 +\@aJugSPW7ϑήc(@ P(@ P(@8ǝf<(@ P(@ P(@ P^`L(@ P(@ P(@ P 0pϠ(@ P(@ P(@ P: F@/'%Gb*(@ P(@ P(@g[`PXDث2~+r3k#6i`lgnޕK$> ƯO6-Zḧ(@ P(@ P(@EXс\ؔuFRVDfv/mi7;Jbm#䠝t@Dzq<ӗ(@ P(@ P(@ <u+4pQ61!-/GPqs!h7X M?V16{P.4% o3V,}Y (@ P(@ P(@ x ,I@ҾCݝ>_P0#tۀ[0P=Y둨~>?V{}EL(F|ӱl{:;יv Y1& P(@ P(@ PV 8:嗷ѣ 'o߀;r|a{w ٪cA=tU}jW'gS63#&3\]C) o07b[T8ք>q K4rqH P(@ P(@ Pϐ=ZFa6's;wp F"/f Dvn,bЉl٩F s}ǥe$#>2D""dB坻)ШHZ5 -%kʰ"uX+tܮ cKv$׊^i33Cjvw*ՔZ/DW])8 1Ar"#Rc11 :\@oC5pƆPXШ(d'a?&1<8aC7PGS$<Y2t>XP%Qze["p$Y /+оD !aٖΤë?A0XjqB[` P(@ P(@ P ]hV26*A;;-)HE|:DEHƀ(2%r(vdz#\mFfe/n_db: M(·';., a>b[r<k{=Dvx Ram/7bߎ$y}mGZoԡ+ {rqj2.-6]#gۏxԹzi:Ck KPdEBYQ*.T=}6#yjRy}R\_[)H{DQ0dl.T?r 9j&J6==e/ߔ /2|Sy-F|G \(@ P(@ P(@ ^`E=\XP9۾2+.eԕnCZ)n&|s>9 3u\l7>]l5E'Ó^6rG[2HwPލ뷋Cmĸ;MԽӎ03A+cVrcN_ ħie0rx; `CaCon^E >g.֖P{-KZbmd%J=ݤ%z*m[t__N}S(@ P(@ P(`XQp[Wg.Cv\<vqaE/*M =w -7;/ j.zs/lD8< ٘-Yf|uG)+ $dlZuŘs#'lHN}^lFeqR~&tLDŽRZ6vbž%GF(4^\=\s𚽎sRcu.o$q \q p7Z[ˋá}pSK>ouDkbO P(@ P(@ P^XQikKڶX$* ]Cy`gNh'قoyb^jQqx 8ygb:p؂gkub<iNHWFY sbxKZn|%^"YqEiVwR{ F7f{ZAhf>TOk[Y뫫F(?On $vF!_^-M"Wѭn_ EnI6`p9~h蚡^n#jF RyH -XpOh\,8&[z8 dDLaѠ"#?6gW=FCQ5QM⚮ujo>Y-,>QX?q '0ہz,U *wzŧ!1L*o5l޽%[^tMH=` }(&ˬ}=(@ P(@ P( "J궧|%pnA/}ů7#Wp$E=K{.h=o3 (;El5~Cb78Va/U-ڪ><ji7D=wn;3 Q َr`5p3 =A;%kˍ+Z-9tTv9/Ѵ{pJ>:}MIn{FK"w޳ | xNsT:3._r܂_W{oe˱|/ľ!>hVkKTa}H>j$Y ֦Z.4މt!?Q^ڄs_AA'[0zIt`_g,9+Hnt[֫sk>Gx}_) աquT>쨿ow葫;(@ P(@ P < [*֋H{8`SYURo-j(mYCRsY/|Ô:i!?. B pW_ B-lʿ{}pz +(.~!4-Z.aKmsO&d/7T GgzQ!͘UېP"?<G8s_TiR|Z.wrҸXd8Zc>RA;F{YB\omjZc+}]a?hP{e-Ԭх134+Ȳm@V+&Rڐ_7f?=̅(@ P(@ PX^+*p3͇W=ts}24g#EWyͯ:=oїeJFr/RƋQJlܨڦϵb6 xA̹JܔIC(nݾ;sD<Dd6|zE< -.}"zc1ia=┹c>v֞[8WQ1 ȍE#UA$`,zމy8d$١Q%ɶjm1{rN544b*p-nQ}u;К"0'zfx2{flܑ[P 5Թ˸؃qKz;TVzNyixxyQY ډ{C!c˶awMؓ\sb(@ P(@ P ܵybEB;Ѳzk>&;8||̆tЉ.@i=nt;m5LXz>cL2!9Z-E[wb>4o,{s$4$9Q4+qJF^~/o_"pe?&wk6-MߏhFw~t6#MS_ߨsYF|]KPP.ߗOÝvw"01 ,3-VCKk .NLP;;(oŗ UgXH.OĆP\EPCD{Lm/fz/^gDw>մN|)!Q{wQ"N@7ñ(@ P(@ P,1}:hB!,)[6],y&^[3Qz?%\΄(1w(S_a<4>l JږuS>CAdL:|Zȇi?s'cW_!Fb\FW5F"-A+\e-: HV#uHIHVS̙.y(Ғ-8aƷUuh7zV<373%&ej哆ɴ4hRgqi5ډt8>#~/^FÏZnL㐔h JuQsٰTT\S*y^i.OO]իrZeړG[qTv/3(@ P(@ P (!,e>Ѕ[)ȓva(ޒs N '7uƽsO?HN¥uP%(/1d瑬y,ho" فNÙ[M}2`OvhJω7g{ Ov9.;>+T.>Z>S|ԣI $Y//TGO1 ^ Ģj.F1_FR7lS`f47u"r.S?L搸y2g7Ph cjB`` PGp.Gh/&e4؉n/a5{KMn٬xN<sZ: s.{/twsб (@ P(@ P,>z]ܸӇ1rq#S;v K3ՠƺq玭\[ʓlAY(EE֛Nj;ak*]%rC( K{TͅxqȨtSD1<_vE7-/LF E-b8L%uk.=NⱷXQ9R{ jү7kڅTڵF8ô~#RdF.+A 9ՔuIŦ"mNh$-P;uT6ݢ.S&ӊf]>l5zl/ŻOw]<j_Ɔmi)[,h~_V<93(@ P(@ Pf r6jRb=eQu]GX+@nfC躚6ګsԞ{w!Jl3V!#/Jo1LطvĠ|L/36 Do 0IAtTP4NT%Kܚ9yo"'+DcXo> j`(cZ*,=N1Ѡ>}z_# y<ZVsJ*~Ԯzp4g9 `B8?[ 5k˲龅֞=NeA0Cf46Z'w\g࠘PfeSN`/ )qs#smPC.ɭɝzi\kOһ<p>1ZڊQHG_26##&8ڵp(@ P(@ PX+.p<7Ze( غC\6UWMp|vH D,d pܣ ˟|E.<e 38_D DSi*ؖ,^ۻ}~}޾zUwZ^ْiI3E$DDD$NL1tI>3tmؓanaj(3OAW=cnSS:HPةO%ͽ\LcMg?\Ƙh6ơ*ٿZSgEyEytʴ/$IjPY@OpAُѱCs= JC F oDf /VJeG8Ő)bA ҳqss:2ͫ;Z[lzA\]6,Ϫ뮹/Y٭rvݰ'% @l`.f6kK!05r8ªL*axISti-@iC vD<EKXQ(@ P(@ Pp s0}>M.<޹kU;~k֤XC|v>57X}*ǖa'̉HIzKE]4̋'1\8}҈ g _\?~t65׾~]j9,qϢ^lUo3_^lFMçX'? /ڦ2O>>EєfKyr2ߩFZ (;o鄣ʰsdffWåӵcX<;4#@jљR P4Ĉ:DfiZ"|AJP]0VRS&^It%km5PnN/ƑLsC8X6|"GDewvdF;qta_9(,ѯskxee7>::nZ8pxy*rD$EYr66Ў{w~n+Sn P(@ P(@ P`EYr>{7ܽ[-(ȏGB,̈mݰϠ@\o0}>K_D`s {HTi"^KM5Gr4 4%N_:u72t$z֔ҋCY"uR+La)J{]=WJJ"avR1bڢ֎wہP$3&5t )<kJM(>j3_x27FK!:ԙz4ޗ҉9V=p!.Z hc{!N3k-q*c5)[ZzNv `ߋWJ8b1~~Ghiڃ ɘ=8duz9E$dA l#'{=Ke ]Wl8&~prֹ_Wc6ErY ԛ(ͳ5/(;;OxfP\C P(@ P(@ R`U7ܙ`&(^(MBD2aϚoW/֓TyX>=~hi۞θ'X_n*ۿGo}۵˨CM G#no@4B£`H38۪-4#]%(/p?Nچijc}2Y?fuEUVƽȗ{XYHDѶm02Eu[ܹŜ~ ͷ!qϳ,JW204ڙ-vۦ]fK—.=-!&0T6`hvP{P͓< >Ascog[=a_bg|Z.z >~qJ-:8G=x4&z)!j4c.4E(/L7b >/R(@ P(@ P~X w~[)`0 _o~=;<#s-l~-Lxep?~ |(SƢ7x9@zG1l')#~넯|<v͒6jُ S GMǺ'h;x3D,2(}:}quzlj^>܍U76s#_[6s*Fˇܹsϙ{E:4Xr4wIˑ[ HUVE*TO%ye,U`!Fn`:ɎWn8<qp2sN{ƣtϳeᾚ/Do<c~;.(@ P(@ PVV (ݘ+$03mzYXX6J rrI`fQIԴ$!?+:&ݞ<83q-MchAQOO؆jq8w>G AQH<$˼hO(Oibv[+jrj7!Q,=F1m1c=b`HD/7%XavCf-[ . ` 6s*11 $*E)>9]ĈUNCf A:^g199ݹ_r$JqUwH܍riBzڄ|hn2v vyzx+(XQј*OʰRp(@ P(@ P(́G\i!16ןfs:K-iKo^S;T3J{4X-cEh{؁n'kDT b079̍ FGgdFhQ[??RX9D~9PL<D׀y_6Y66KgŐA}$}\fwG'&|<0|'7: 7\qSKqh,܍kQ,z_ϊPCq84Mqyj 7(@ P(@ PS*5b9. sӏAtlFC(,4ܭM;*pJ2?~aۇ3sa8*Ŀuy*(@ P(@ PX-|jSKs|d ҋ(@gy֦PT^=bxd`Gv}M>o[2RqS(@ P(@ P p9(xwq qP[xJsO]Ņ6tG P(@ P(@ <]l{7KK Pk/G1u8և*\gy-+k*"P(@ P(@ P%6ܹō)@ P@+UsoWtb c079`ru=M9]](@ P(@ PXCl[C;E(/H/Nw=(@ P(@ P]~J&\\w۸xːjźp!ֲHZ<1=6 8C 8%=x\i5\wzL A P(@ P(@!k~qƺQ1Y jD@Rp^q5JFD P(@ P(@ 7Qj3fjOOg)@ P(@ P(@ P F$.-= P(@ P(@ P(@ <l{*v3 I P(@ P(@ P(n )Jd(@ P(@ P(@ P(@\|<|=\&{y(@ P(@ P(@ P^`Ý(@ P(@ P(@ P<`Ý O P(@ P(@ P(@/ (@ P(@ P(@ P SA(@ P(@ P(@ PpDFA P(@ P(@ P(@Op S(@ P(@ P(@ P l"(@ P(@ P(@ PlT)@ P(@ P(@ P(6yQP(@ P(@ P(@ PSF(r+S(@ P(@ P(@CsksGa(@ P(@ P(@ P(e2((e%(@ P(@ P('hdgy!^uwlqqOܜ^1rr0S(@ P(@ P(@ P`ؘ('nxt xzO R(@ P(@ P(@ (ROh_mffRo7OR,o`hYZ6}6-K (@ P(@ P(@ P n 7/p_~MW|I;i@6.b(@ P(@ P(@ Pi'M3h'I7=3#ʍwLdž9(@ P(@ P(@ PX-Nk ) S0? P(@ P(@ P(@ xA w^@d(@ P(@ P(@ PT w 2<(@ P(@ P(@ P ;/ 2 P(@ P(@ P(@ x*;[D$%F.g P{Q%D(@ P{:+]1& ^lj(@ PXjrMNxeR bB 6Toy1((@ x[E|a"⑆ y;K؂lDG L}\h\>m8~b"0{.WNG#:iz [#Ͽqg;G#5(ΩaZ;9҇Nݼ{/]轿0#8Zdn qy<Gwc#&\/{d'c(@ PORp_B!<ݗ?[[Q8ڷp0e=N,͘!7Ik Pxp/23:Yb&(@ P"9#Sn83 Zzθ5:\jt DVH$eg#Vdl*Ȱrgb7#Ř(6EwxcÝt^ۏEQa1blv4W]e#<O&!_\Ȁ#.ڴl;k\u<ߑ垥fX5ؾ)G^Uʳ.d`,X-Hƣ9{`:>olW P(@pEH w]HnAad%k&4XiKGF;)O}r' K9G Pn D,By<ߋ™W16L(om;&h*S3J񬔀%I_2GH!7S ǢWW_EO]x#JzEjG+qelEFZ\Xf 8Zdޗ%bq1­Ʊ%Ǫ8 ADaB\0(^5=7 P(@  Qri㷠"j4WiM{g>GlBUhf䌋V@xt< R1eg74?|{e 5)X=h\U w PkJq4UHW [;029痩= ȡ>|tVs?5oUlFn ޫEYSTk186uHFV7 W^)ə#<NZ0+-KwP وdutRtĞ5.^[o1 P(@oζ%8]ܳ ]i{p+ǃ0((@ '0`ij3Kv=\Jv FǞ5lg P)p|YFilSoq檩QNYV{({񯱷+XTTpgt{>2rlJ|14)OX5ڍ\go9*`<y9pZS_=P%>;EQ-ۼ&'_HOWtxsl3(@ P-p w9'-w}a*"Z$l AP:qg,z;p]'D'bX33օnkBX&9,sːrs8]][9"f .ڔkDS$ 3<LBXћs7^\\F J KaHig'Uw iO7i)Vb,xbHDhhwiljI鎠MӜߌ[asR,6,Π>[Li;sLGrzZ.ǹ1_E|[N T[Ҿ\eZiqVt oj=Udҗp#S ?;O.,=hy2L到.ǢܘM.u>-%Q)9Ɉ ݀u}4յz߁uϫߴSD}6UELt.*٩X/6Ksolfn&`^/C)i8~OݲM}N~ָ_Yq[,Kqzp<Ą8͎au玥sb,GRǗhYؒ9CfҺvvJKY$:qawQ<>پ;y޵ &>Gn-BPc>(swm7Ug@QDP4)Cj Ί_Z?8YnZ&DvKwa[O!~׈iisoEγ\=8:%ίLW9hx6:I?-:ۂ= {v?mi.(@ PXh%5'q8(~"J :@F #tqpO.}چH7}M9XR~qj<_w9;4EͰ9=ط4+z.؇AC=[WNw/ŜZ< t\g_ᢍ%U!sc&'unr+ -=4Lg3]qcP` Fpsp[2ycI҆ݏĵ<z%mN?[ˎ~hyfu ?Rެp@Li;GK8)W{f qSÝhD;|<$tY冲CqO- v V 9Nm9N"ʹ͇NlAz<kh_^݃ awlg(؏-eBY]| 'ʍG x}9{q??ʇǒHMI!MQN7꯻n /uzWyj@9WN~d&ʟm}"T^J;c%K߃U f[!y7?A:>zjO~^,4qLR3uՌʵT=V96}p7ȭE4{W$'_rl$"!U8t*=j$0r)! w?Xw'J~o?׊xa;n~XN)&IJgp)*0}mA>cZS(@ O&A ljJndl)pܣ.BojlH4כR_whg>ܐ?3k+!gzVʫAK2i;hgEǏ_4_y]2>7ˏl׬4EJ2x?^yM+W_܉=7ˏ7 _k7ڙ҉@NKxh({oh* Ƴ0G:X3<R>F;Ӗq"}=EԻ][2^yF2Y7I/7~"zܘCTQcCN"\<ԟ촸L95oN874ڙrT( }Mb{{/S/]٩2En hhFLHIo2"UV5$+!&Evu%둚L m$W\t׽ͅ7m:=o^9Fq<-av]RD>=<8;,OΉEL?o7phfl{-T}4r/ǧݝzjGN皟6Uttt7AFc[m<myOҋ$:ބJ!6>zW \ii$V:v Hφ;[]=lj{zvIF;i:`L nDJ7ĝoW|(@ P\q'-<JAmP樝kDx8mWJk};!.v{*-mG Py6"Nѳ78zN.GNģlR/T%Y\rUb bl [JJfmpܭߎ|oD)bMd"ߍCGKd똼8b*1bȲx%=OHuD x( {+&ܼv bH6l.z.*'l=CpQrknk+W( (nV(u;bsa_y3i.)ɩSxA\FӰb+XEQYQ(,wv; A#r~cYqgۺ۸X?pуbNsZufwoAK7C7Vթ"n߹-Dc{ G҃GZ;󒖎Z*Uy_=`aCT1<a(ۃB^ 44CfŎb?<t'iZto_c]ԛsٲ(:*C`5cy$HHN(ѳC*CC0wb1tjn\lB|lHk||@ߜ 7yh\\jZG*uzͺ\|^n2krz%uЙn1gK]F}Vjfv|NclK'&;Jtue^)Z=h2ymƵ>i4("VK7bPp <q뤠˷ZʏYzw:j&zZ, 6CF.]*< GC(j4M*C…_j1'̿%Cz2*;S_ٞi@IDATijF '/kǹgj M P(}i05-( wҵ"|&ɖ)j wċ4k&pe:dmn?iM` }5}+ܹ4[J\ ?±<SB7++z=ʖb{|nYzb)p䊆 e w7)ThSNPuct0vWfg1gpEh3Ҿ.6ک{3P0.*MHO`*\ / wa<T^dP >Lڤ=&^bavZ47ƻ_4Qyg>w )"-pN#63:=DMd&;u.~kVX .=/ZSKhy8WyQ zuW8qxOnP3l^Px<v{u.jRqC~,ӋUӵ7ޛxWE՝is? _fh(.wǤj#>拋qYd%1H h17@fg2=ҞõzT|/<jK*N._)Ql?cO̼}e_\v>[؋ǗWֹ?E♥n ^ull^"S=x`lM'SM3>~ttei4'XgCWa$#DCw1rm>7;ʋr<`WO[-]i>Eʗ%yt#C{=)7IcŚ'([71eCwߡ;Y_~{H7M'<R;ν_q(@ P4u~Pzjoz.ׁ,UhGuky쪾_x}iS"5,5K64YmjW?󎜞vD]MK&ׯqS*pnׯSo)DLZrm4ο ӟdpv⃏>wN>ϒ4(@nRS?Yf*o\ݻ7P-^wpMUԋ%P@PTvzFbQshR/ ֢4)>εR^>5FF;5+ۥ~LIq{}/x]4)ٙߣGGP곸xhGJc|{W]RQS ?)o 9r@&LJshAZx.\{)د_)eq Hg-vBqڍwcD],ϸ_x%N~.5_q\48yo$/qÅҳYѪ~ߏ]xFv:pr^[uӳNɻx\iP,{.)iFc}eߡn;8A]Q Bx8~U  P(@k[C0.GA,%eb8 s~(W.N|{RPb܌p 4xBBIja<^so!kb|JSzZ9jəK.p:DsvӅ]xoփ~twݺ9qwŐK+)@6aFq'<UU:*\;_YnnMUhk8nyQIR?7U ݚqn%fy{1ա{!Jwɽ<]ĵ 8ґH!t6ߩXe&Q?~wv`s+8fTIJ PswniNt*{ )ћ2[<8HK@XxΝ^W?1r'8~:'dM̳ N⸺X4ڝ\twDoƃz^q:lPJWf )CZe{Ǘ4^zI 7p=%YY0lNEXgo2}aoϵߧK'gǧux'i~azDσ{uX>7o*Ca%kIzr`YX>y76in`gB^U&Vr{zlVq%QLLH7x^<x8~uՇS(@ @@5Ii&z-D7g}(O'K!)4tërMNe_=^H ءaN)X9NJi8R3ų&īL++VCZΝr1 (<3lEU27g~.<8GWuev%N_m;3=8'xl^81/嗩Q^^lyNsWCJQe8WyzK}Pu1s~FMP? `/x1m+ch;LJ%]9y_ݩ+ýYWbǺR8|XQ%rrFTK/m޲ ;j i⹱5UvV ;wԆλ[OMM-0jt)Gr>yeycA6oθS.5>|z޺uړ6j=͇K`cKxÐ8|وSi+"1%C,{ZӞ:2<(@ PpWϿ?puUUA߳oۀ=(:dĽQ4&l5RSwESScCYE#3|j+?ƋB<)A)BJr"RNbD(gMWwi,(CܻaT&\-dΔH x\*z43F9eFlN `<<߫HKa~Fd XŔyM>1)F$'&[Յ1` S{a %^av709vA,~[&` :;D,r>*iXwzgɸWZ Z^N0OҐ-Zxt|.+T&2PM0<iKTBD MGQjm:%GH@<?أ|x7o4h~hDmRjHׁЕD5N~W~c(@ P` Q&WűZTÝVQ݌rp'}X(ýqeSlh]s _B#)v|N+HD<##Ե{?.Ί4E I-@iA+$vD IipNr1 N<*ÙpR%/05,1D#L`2*}?^y]z-bSdb<́f21,\QM"n"1Լjx^S/ыw~d # !bw"=,ۋL17 bh ux.ExM>VǧU"7'_OSOl5[}~us6l)=7&75IWBwanFH4>F[Do3á"EƮ2.S)Ƭ PFgN3m'#~s{9u'˥ɿOm6=OofVD Ԙ-KlG_C~bݷ?FE-JV! fF4ϧ=gOzᏳ-]<(@ P?=\\ ZdƻNJ!/Mmdk.vDX-οoh$LV z00"hd |;ˇ zR~D$I3vܻs w]Y,.oVC gsOD/!4 #~jq;_+?Elӂa%聛'-әR"˨\0}ڗm]F5[)7Ś6LG?Β\J cոm]ܡnw2[ŕ<S\J: % 1N=m2}J+EFvuu;:WQ/S *m>VmE}O-Ν9AS]68 ~uƣ1'ΓbqwmܨVqy6?>~wP%=x0 vk\?>R[/\ېY ;3?ŻwOqA2yeKkzp4(.QP\^4cxbS4NJc?tb`@ )O)7H=]%Lt8cKU͍ZGWgYŬ3* P(@Nd\hd{zuڻu)R$DG"bhb qL'Xb$u<_j{nӍLGRdl]O~Co+D۠93|Ͽ+(7,s|<hkmW08C[8C=M<&>tpg%\Zη#G=[P&(qX5׿ |[^9ۻo{>EYPn(I-&Js'Z{*oSuN+i*.l|of8OƟױN<4]ܔm~(;(Z;̍bHK3.C >9W9x_*izz]i7ochkt ?On =ԝf>gz-%xa|gm?Bw)H9{}ͲTQSChHR"mpQZEuMokKy^'jkՄb NߠǾv5U<χT6v`ڜ ~ω^NM0Ň^gn_RvxyfW/s0: P(&̟%Cm(\i@2=-݉(?. ]Ƹ4"L,+-.Gq MJBNQ2Mс!՚ͤw^r:!j4c.4E(/T ÇɻN*㻐*ǔԠql[,.<m۱E''Q9(؊s"xPK﫸&NºXd呡h{۳::j'vkHC;Ψ-Ϧxd(4F;/r}^3aƽx[یI1:gTh 5k˔ s߫yXF#P]8#JՆ[/T}'¶RsLÁo7$VFqG$ -9iJ/PQkXS4mUzUc=xe$h64*|bp,[Rʎ >0uzj]i7[QݼȒ%C{ JːS*+>csA8_JD_7Ԣ4lFzN1ʍbYoCRKvrtwif$ިPszt,犿?8%WqͅHƧ[~]Nى5Bbܢ<o\C9kȇRƏQR`~6-yX!߮N%ވ}/a+OH"+F:GO󏭆ju+Iy}Wo0> P(p̴E{f1X,&twCs^u(?48rXIGa=Z>><מG2d?ru:] W͉_z 9' i(x |`iAu76l4:wv 8C xO>x FyƸ[Sxp,*gu!NcO"MGe MW?ĵ l˝?ylMtׇALF<bw LԊ sSnpgn͔%;SƎGuf ?(/_jg*Gj*Qxܫ.ڈƥU.>Q'gHe N OIWu7ipu2T4׭^4-vqhb]U>>>̩Koy?1MYx<Gܒăɗ:JQq;4. cFl$ME`t>[G uơzazc Kt) .5Ér8ZM3[gWOG.|M8 rSP/:Σ6Y0oŵ+ ])a^GrIpW^[!EKo6Z߶ܼ!0S ١#p?`ݫ`Gq<Z<[VJn IQ10(7n*m+®؍/%aI\?%ʭЏDw P(@X-(Mͪ`(y݀6 lT4eɜ:,`øu t d6S_[Y(Л_w)sO&EO 6t`'jXGh7q]GhO.&޾,]3Ojv+waj7?}M%ww 4=X֩(-|EE]VQo=n|8sZx?BkMQ w¹vyveآE?1+8RhmV<!4ڙrb@Fkr7ŷI~r)oA󽢬+0|iV6Mj-[ǖ˼6&gW;w=C0ɖX]/hŷl)+x~.Kf4s#^< yfyv\<ݲՖjuƶnb:2\WY}4BJDL9NݯJһ[W Ǖ9\iz8JO|h+i4M 7jl?1?k^F}YoN[oe+/>-{Ǽ4ohe ]?s:>_R.Ӹ$hպh䴳5Zsol\eGFnK Ivhmŷ^Ĉ~fqw^=[ϙ#Vo)G|EwaW^&żDgm&1ۄK?w\Re<~u(@ P$́Gt%?CC0H+mg1'nw}Ԃ%[.mJAknr|qvY 4+yXaΏ+S/P-44kQJGvj,&'$ǓaǦ^pXC{]^H.ۥF#N\>>f̓^ëKF7_ G}<ЎA'p'!c >}N\u'$hS#="_~ֳt|lWJ8|ċN4w(Y9}zȔ|dAt7t[hZzٹ77(s+\O^.k]2g@,ńcqZ-Q6!1s3ᤌy%%<“>l>{7QᣡBpWu4 p9(@ PK:H1Ҍx=ΈWM̟ɬG 4I/䧫 p=/oLn|n8b P#N˓\NͷhrVŦRi]_}J?eŒ젨ze_ݮ+;~ײ;P곒Qz)s}5&OG zv|Xuɼ^ZnN.J>L m}o,3_RwfSR'yORՂ3(@ P|ÝÒȊrV8(@ P(@ p_3i&m}X-ؒc晵*P(@ P`U nU.fք@PZ ?nV g(SLw΁UZ.ӻx^qpl\;V[(@ PM w~c9)@ A ωĉQz&IXݷcHX[Nk\է{ۏcmJKE}mܼ|3p (@ P] w? PX{=wpQ8Q`U ݶ3z.\Nk\է~K8-^ HL""t3n=D P(@o ۢ(@ P(@ L vBzq(@ PZuf(@ P(@ P(@ PS,Ss_~1(@ P(@ P(@ P pm L>3fܓ˟m8T?S(@ P(@ P(@ 8-01I 񘙝u:/7DcbкuǓ96қqS(@ P(@ P(@ Y`Q4ڍ!6&Zn szU0T&{Y;~(* rWE>I P(@ P(@ Px a֯ BC$46LaF(@ P(@ P(@ PzM̬@p;Y(@Csr; P(@ P(@ PXeVY~] P(@ P(@ P(@ I6ܭBQ(@ P(@ P(@ 66ܭ=R(@ P(@ P(@ I6ܭBQ(@ P(@ P(@ 66ܭ=R(@ P(@ P(@ I6ܭBQ(@ P(@ P(@ 66ܭ=R(@ P(@ P(@ I6ܭBQ(@ P(@ P(@ 66ܭ=R(@ P(@ P(@ I6ܭBQ(@ P(@ P(@ 66ܭ=R(@ P(@ P(@ I6ܭBQ(@ P(@ P(@ 66ܭ=R(@ P(@ P(@ I6ܭBQ(@ P(@ P(@ 66ܭ=R(@ P(@ P(@ I6ܭBQ(@ P(@ P(@ 66ܭ=R(@ P(@ P(@ I6ܭBQ(@ P(@ P(@ 66ܭ=R(@ P(@ P(@ I6ܭBQ(@ P(@ P(@ 66ܭ=R(@ P(@ P(@ IkT,(@5*PFKbQ(@ P(@ PMee9wA P(@ P(@ P(@A=2RkNw]Q(@ P(@ P`8gAHp0c:[\\ē'sx27jlpjv3J PZ`cFD P(@ P(@ P33)ؘ('nxt yH: (@ P(@ P(@ PROh_mffRo7OR,o`hYZ6}6-K (@ P(@ P(@ P n 7/p_~MW|I;i@6.b(@ P(@ P(@ Pi'M3h'I7=cSy}1(@ P(@ P(@ P`RO;-2l4tfO@d(@ P(@ P(@ P(6yQP(@ P(@ P(@ PS6y*(@ P(@ P(@ Pi^QP(@ P(@ P(@ P@Oœ/-xهxG Ew7|D$%F2M P(@ P(@ P({yZ|za'Exed(|D[Z)'LՑ#疯?Gp95UzNb#BE``l '.kVVąaaA C-ut>8(@ P(y%OEⷆRјt BhLI9w`Ô`nuh NKȏƒ}cuI({[8SPY]'îҌr,%^A;sI K Gqcl>`4ዺvVplLG(VKI-l@xSV|; ]{WmVr}5hq*݊$QWlT޸][6  vPcp:>r6ZN*3@ P(@ P5O`A4'KDcRhL_Ze[~ R7*n55ڙ„lF򋊑&L?u m3Ko`k G~7;=v9,za6Y<8G 8ADhs{"0DG!-g v63z[*+͙;(p\Yoه`t߾sh{a?9[>g[ɪ0SKcI; ~]hJʹW"W?G=AK-W ~Otxaֱ`qĈ^|omJuE(@ P(pzVy`y~[kҹ RsY r־)Zu^%ULKWV SUtCdt,RM%=`{g>GlBGUhۈ(@ ԩ҉VGPnNT/؆o.ooFYݰ3kW "*q9+agvʧ^I/<u|eV}KuȪn?#Fg0Us}i _6ڍwZLCؙ(oTx|4wlz};}mQ8O P(@ P4?^iGmS' e\D1BP}գnF 6eq[ɂ₸\w{nʅlk?Ǡ4/ߍ%5QWD޷P5d1?59)svͦG#ۭ\ΙީoJOU뭽_~l{5bDMiq&rvnFKeڱk - {mu=:aVy1D]=P(@ Py6]e=ڽKK얯~l[qjz5ijώe{bxi{ xkP)qzi0j*_"!턉yh1,dF0,>DNFzl06cJK-FĀO-{"rE:63c]hː;˰6 i"AD9wzuK)A+<T"fFZ!T(VD`}|Kk >BSA|<8`3vچ3Uvoڜ|c"6mƺuD8.m81:2EY(Ώq wRD^Ic,b4;1*9^oąiR )QHQQq 'e*چ(v4mސ8#abZH?7}9dd刴_: {ߔVKOtDNq|ng*72&HRhsgs^4xv\밨oz,<.}U9$g!39a`f=btVKk>K"P;,vvuL"ת2 +ԣƝKvw?Q$w %qhKS(@ PS@WpZ PcnhkG3 C"}KrJ/)Om+5DJlǤxAK@MG+xӻٴ]{s[59 _ٮ\l~pv\ .֨-q?/T ,2w? w9x#>?iwTo&Rw9;4E`ߎZk/L-DteX/M@G5|%FKp3BPer5rpC`TuW6rqv UJ#RdCf*z(޲\C%o- uGK,=DL1blOpA Hك"-zir4߾ܷ__PTo>UUMq܋νKpO<yYsKA(ǶxdY,-{0b6s A3BWDÝ1֍o=>csbٻ;__bGX@ $FKlNı=L{3STݺU[5zg*778NlE-E$k# $$!XDsN9}n{\lsn1j/qY鬀l:kQ!ܫAuqc}vvp6jgWkӊq`sHFrUKp z_.Q?rh=[`F*ؾK| .R7ELϚguTyQ xM'j[5 P(@ PX^O\T~4syԍiwԽ@tF+ԮJiFGP;)'\dɳd0jǠ7l谩EZ.fNΠ׾Ũ9uqt]|g[zLi}\_[LߑޱFX.>oڦ7_ i;) 咉_FiQ+Z(mnA ' !4G;+vvf}} vZA;SX|{2+؋>d;hgS+>?m涹A;c;#svyemǁ4eS~˛Io?|,/[4v9m䢂Ћ(9NS}/ւ|l&{bR͛vY 2'4Y!A;c],܋w"ΥG.qA1WĬmxY|6KmҎv(Rj+i6~C7>>f>$5-]b.V{Ǝnu (5,pJJ P(@ PN'o 75"dKQdd%z:3ߒ<gH=nF4We 8^-OS5ߺ4%C Ξuz@LyYmJADfcO}<-j:յ[QXE=/FG]9w ]U@x.3n3`ҩ߃sWQ]W'((َʳb5i5^nWQzqQ((ۊk-<\!iIX ]=9X&=:j >ܸpC<ߴ]1CZqȍ䉀RxK@-O!QP M_FQY NhF!ecn5V\A4-rh fQi۱kd /s}ct2nWҽQn\("QL}9{j-l+)EvqLxflp6lD^hw*/icsȗiʗ_ p/'sMLټ /o3ؿ$N}nsh_<? # -b_C_ko11uh{ܭ(ݞiBMrQ{^s6Vԟcáaё6^Cm >tڲsa jp^1i^~Lm#FZZp?nm9l#ӍoGWŨa$&-.Biy7ҲQxK͉rv=gwb~f=j` D$[3Rq]P׭Q 6U<1:<],R(@ Pgּv0Qs|1|<g!ޯh5M-p0$gz4hyiShkAI1\-EΠ=Bd)eŝޡMz.wϏI*<-~_z/UnZ'Ӏ_;a=CaY/V)9'3455>CչG箸T|kUﹷ- 1vg_`YtkխDNR)u~(ƧM.InnT  ;]=x!?3Q_pi@d7M.Ƽy6~ߙ+Ү h} @nu( e}pf? 74fvV@ׇM÷*?'M?ye8.^͈cҍ"x%?gV쾉?<Հw0>*89hS ?C3B\F0/C+w.f;+آ{uNӻ+"YF;?gө0ڟ݃7 3{t>t&k4Mӏh Z x FjzպstMȵXDNvJ J=1Js^'ŨhQS\Z6̴bh/^P?Sj+?Gb^)HS_9R(@ PWLTcT[z>a"[ʻR9;ڻhxytUTqN $"ԔVf<_?<w{ʰEA<k)yؕ^n  wd +(&IIjv<'j+wј$\{&:ڈJMNٍ+DAA&V,cl5A;sejn]4E ΉǫhZ ID֞: qƢDZ} }4$7l. P`FFU ׻~oȤӮ W mi}W4A;pw jk1 b̙@JTqySv3%wr/*G59W>CsSZ2H.xSę?!HC3.CsN&exȻGzy7?'r_@IDATڜ &ͱDs;(N 2J$6I\9s~RiΦʋYՎ?3%JI7EY9βs4ˆZ1ֲyڵ=#(6W?`OhB63F/aۋs͹1z(8[5AdJZ5 imU(]Bߪ9ܤ(@ P(@ z%9[?wZpBdqhEoؾӶܧrcML͕&nQIƫik;Znݽ+°)oU$#or{X#>0@S߃6S"I7mVG9dm`sivogf&Ւ+tμ4?V}6:Z;ۋΎv#%YňC=jojwpp$^zfJD[iG_Jo/ԑǣCb- kC/ k,SS嬎5Q*wabAAʝ>,^ܸRfڽ[쬶rӺuh9hB7Y'uSwVa+.^Ƌ:lnSm3BeO)mbh4H TH;lE4Un1 EΦ-VϵOnY߀g|!~X~G'}IBzЍ>݉Wcoao RvCw+Zz`X$ں =ѣ٪z_|n))@ P(@ P'*#T$&rW)B/;i$>466@[X f iXiwjč'Z+H:1eXϺzX&k67J*2J,`QGAffہ1*ϟlg%ydJvg]WIk 'V%CBJcj@Ӎۨ8QTpM/` "%2R G* _BYqVV}>Oa {(~#t(5}Q75gS89nQmĬo3":γdtGFt>˟9itr 񯡅gϭH^Z1t.(jY:#%gpYY}ʜKJ6m[:sv8s,5AK_f˜g/`l/)FCqT$fտq-[X̀),t6](@ P(Y'19ClHȲۨvW4MW28zvƛ_VcѱCmD$1=uL&SZܷ;"ͺd㽁4D<+;qYJ['ܰ9OksT(&l%I.$thv.ڿj<է~(ވ($Dra#=68ZZ QRo9[PZsN 7yBݼ ` LN`'I=hw01a&L?D{娱]xl]||\Cxl7 i( C˥ڥ tتr՟)[- ΦsTbx|#m/i YE8Ԟ?&>ĊqPlێ"G,puilPH!+i#UX$I%=CS<NSI%>j\T?_n8(@ P(@q?Dj5j?0 QvcO˺О?hi.A4.l1ԮQܯ#\\o6aI6elBuHWF­:\,[z'FyסV!锰8l  Yiz3SvӉy>[ʶARa)dML䧙:&7Ъy+3-( n6T3;Ϲg}ArӾHK5^Aյ*ܷ-## @ bm:5S_V>C%/߷y_9DLy`3àx܂oAIn1?} fʌe% qIc4 ߕe Szy])VZ[緰tg[ݷ6q:bnΦ[,}NsskghnYسxíHArjrSLQ9+6h4l4V0Y ' aD:s\߼ F:7҄(tcB<T4 IOo|y(@ P<-qC~c/by_ptt\>6SçZoxRz--M됱9G%ywTn9K1x5Tw/1o05*)ebg@GxFl~ZSڷ[qoى͙ljw_h(t6q >5^իED٭ (JfEؿhhlu)8&mgOZ9OB5#;#|@|l#HJK3Ѯg7eI;ōhW-G6Y,*_ĆQHM[Xĉi*R[]R]A/ətgص!F:K7 mY2)s$_w^" wS | 5oqx^OHg5u6޻j&_g)ֶၒ&j2 kR@=ʪxtp(@ PK@Vǀa=c(ĭi|Q:h]'8][ӌyH67/8v )1aHRlqV9ZZڰ4/wt|rSJJv#39K<ŹmaTLYmS"F9^meߊk}Pٿᴃ@C-L/y۳79ʳ׺[$(XH..!(({[e*ĸ ܨfL*C7#"8gnsĢlN`1߆}(JSchlUsv,m(Eer-i_e,FE96Ŋϵ_: vNKPܡǵvb]au?:[oL^@oq3ďGOibAWq[g b|;gҩXYl?ow`G}WP==~@SGZinFW~)حsz ~ko߼a˿sO/>zߙr_zϲ6n{"Sr(MiƭHʐN"e;jJόrlVsՁᕞD P(@ PRU9tТogǿ·[u`HHiūwS =4E,߃[":\ޛ//@2Mk@<n(r);x15h826#Iw77m5[Ry=n`X OǶ\5u;#'Ԣ³J!Z&0 !+nJİAFUCw& \Mؖ(5sab3$wg""gf`ހuScpהAHܓoP'D& K@Na8Bn$1,FƅnDQ)!eM̓0jo>?rQ(;=D}/iyHToH8edtg!Fm>"pW&9N8ebͿA۸3҆Ld&(Pw?Uò؂xq Rpwdܜh3l:m\ϘD;|;'iY_l?x7r/njBQ;OvBccF&e>G49tcdxL ><C;v}CJZ&ԑc赚ҩ6OjlŃ0`|NJ}\W̜&Uԍ.lD^v6Ĕo33*HQwy=]0P(@ P ofqCrB׮ē m/F*^{i+zΑQ->㺣5_xIqAdSvQk"8kQMc8rtoC`6a6iW8D02`h< iP׌{/aHJ;1[drn_* }\$Ky{.x XL ,?ק}nV!`K9TPW7v hSl1m7 ww1Sh56;E[˕&P+|Ú]@7:ݫ$.Fz6[1n_[5w~v~/ۿZmAArK7v)̫v?{!/@琭I>v;||rȁ>|8ꄇTgi+y619n_l?}/ սhH٘ MZKqYž~dۯmX?Rq Rv-!~*wh<&<#8upit(2>pn=ݷq+/_Ɨx4MrT&2O4::s[4z~p(@ PT`UPVNB]bU/m{'ޒZZ=4E{N43mJ6:=fZZA0gԚPeĄ9Ƈ1*,T6;q_eמ[_ZM幇{{Lˣp2>I22%&4.b)e|<ASa&''ԺuD65mz\9GcW]7iW_T- (3a5_ St՞'g>`,nJ?㟞ӡi.smw.[z_C#gtüOfn?KVC4'%_ʳl2A|H ډF/n<)s{5ZeZ&dRVv_kE<L5 * ='Ρ[ ^,JY.:N>d ʟ1錩ԟn#sx~"ޗKˋ_KeyۯThzu? ~aE _5V-6o w'Heixel;#&];\GCb6{~M. P(@ PBպp¼KӤU+E#&yL=s%۳64ى[S>4-ůofkc*1-RR}h)j<"Z'/RoMo}[g_vhc"(=~nQu13V@fz3KL'"@⃉=lLgWpo6h_7KI?}u:Lwr4]XdćbztTLC6[o)"MNxl eɿFFF?+q[7NF;ޟ-@"w1>Ol}p"kNl:syϵEE[H{~D`ctxw0Mvۼ:Ad"rb.~"(hh3VXdΨlQE֊׾;NOׯ_)@ P(@ PiqhSJ׆GCqfY?ꗲٙlvLސY+\HUq2뙡쵃DYܲ"D޷*Mw.DC")~P[email protected]#hlp0daϵokGqy:[jk[u'OnL_p֞2=N[~^ُpfY\oj+yugjxR'Μ(@ P(@%Xw gB(@ PJXsMΟ(@ P(@ PPF==g3g-<Vf.3<Rh>W?+*I%X1!>v-l%`(@ P(@ P<6#TߚDÝ]/RxZqqY:uS(~|tCύt6SS(@ P(@ Pgyy3y -zsEpBp(@+z?\(T,a$vtN$(@ P(@ PK(h P(@ P(@ P(@lNN@ P(@ P(@ P( ^e ~ן#w^@ P(@ P(@ P(3rVBP]SS^>qLknS(@ P(@ P(@ 8-0 ffgp:R&v"z519Rzl P(@ P(@ P(@ ̊ݣAօ;?5ne҈GCfLw׎[V@fzh'I P(@ P(@ <OL񚓞4"p%$4!(@ P(@ P(@ P` H#W xA&PpVEMs(@ P(@ Pr10 -.˦(,(@ P(@ PV{NVI P(@ P(@ P(@ X 0pgM P(@ P(@ P(@ xB;ON P(@ P(@ P(@ X 0pgM P(@ P(@ P(@ xB;ON P(@ P(@ P(@ X 0pgM P(@ P(@ P(@ xB;ON P(@ P(@ P(@ X 0pgM P(@ P(@ P(@ xB;ON P(@ P(@ P(@ X 0pgM P(@ P(@ P(@ xBN PX@fz22(@ P(@ P(@7 44Dw(@ P(@ P(@ P&PpUdqU)@ P(@ P(@w ؛lժU󃟟/VرYLNNarj]0pĬ-M,(@ P(@ PqGDn]x(|/$ vo}zޤöP(@ P(@ P(@ 8FE3bn^QAA?&[?w1(@ P(@ P(@ P=9h7==އo%]#^Ixz`t/+(@ P(@ P(@ PpL;i𪠝&iظqzOi䝷/ yb(@ P(@ P(@ P vZ.eNiLo_.Q(@ P(@ P(@ P  ܹEP(@ P(@ P(@ P` -V)@ P(@ P(@ P(P(@ P(@ P(@ P-C/{>?qrexSqMWm(@ P(@ P(@ Pxf8<q P(@ P(@ P(tK?o+Á(P)[4~b8 P_s![(@ P(@ P(@ P+^Á;? t@]J"Uə[vS(X ,s'^~}v+|Q8R(@ P(@ P< nQ;gnx8phd{Z[:q$()"gZ67LJi^W PuH4\(@ P(@ P(@ PT[8UwW]ȍĒu ExR.L̪gglO (@ P(@ P(@ P<͹/o݊ynו=;_1t‘B_!E2}b#鹉LhCP(sj5|MU.D|DHc<4><ֺj:dl߈H$ 㣃hoFhNXB*6BVZ KDh 8LR+s."QqxM5痞2y.j%Ӆ-mm!K4N:(&d4Fo]Ux9\ Q!kuVmn/cr0U7QoCP1.L@z+>Fj'!51@aEJB P(@ P(@ P;'p'j^V)2|yjQ0s!#r[$M%u2ܻ\!w]55eݕ7y|)awF K +JQf<WF ՚p#*{BT=N{"3UlZ 9V 8Znsku-=1k+͒}c|bcU)͛4uA53ߖQ\*N:s4͢=u(J-Ai$ڔNO n*ߏ,;~JsJ>}zs1bkE:b><.ݜC^ KCqV, ?sVǹI P(@ P(@ PϦ'N.;:!<W\7?+}kɜsLKbA~cOgæu:sWٻeY4[[!]ݞxvkonjbE7Ж]VMYDkG! 5MBn9 =ć}Wbܥʢ .&js.kbG]<_t")hў{,C7'˯̣fť>x͗<8ŨN'n',xL<2MRC}Ts(@ P(@ P(@+&p tx"ƃWsM] ¸ϸiv=i'Ŕ۶4+^NQ=%q&jڠ]#NNDF[JPbcd/ۙXEAjܺ@2۟+AIEL _p aOnpZ \y MHZ{ ppa\sKh~!SQ"Gi$]sϡ9HkZG]Eu]>Q;6ak |!O) \9w ]"M}s BIͷ6v=.yy(mӨo כZNL!knaxz$Mg9(@ P(@ P(@ PYX?=͉s&#9x|gy~ 9$+OSGo -Ni4Jߕ$%G]|hR;pZ 6^l z)LRo cx؝L~;19ֶ6HO{'46_;@ԠB3zO?R4Ԝi?4'#8`rj#3ESpϪ8Gni};:g5}GR*;k13 ]G{#+u']*RQ_i:*>56+- 04#<4d }sFխ5ɛn\A;%݇Ja)X#E&0}vt_Mov=V P(@ P(@ PF`3=na2D$Cj|D -3*hk3nMuefBjvC]U5f+'j+wr/&bZ{"IL͚K6WT\Gv>sOjcNQͳL]=yrI@-66A;刡{R hPvJ^ K)=w>߹w}HMV3mk{ O-^-w5A;s^5p.&VPn4bpf4{}W[HD&^{(j=c׊l:(@ P(@ P(@ PPjmeU~|'ԁ'Vtxy0p9#L3Ҕ]2_X2 xI9gԩJ"9v l17G,S,4yɱ !0~_ZhZ]9^ݖ+Fð ^ɱnF;g,h=33׮hs>M3zlȑig=hAo=(;G|u8(@ P(@ P(@ <{'*#T8N RJ_E xi?^36n'&53X0=Kn>G2Y۲0/ɂj<-lQjKu[jc(mʤ4vrFϊs u_D\^ڪ|A 8؀QqA` (@ P(@ P(@oxRܼ~bCb涵㷿&'R+=;OIͯ^Ax׸%'439fj1sNń[$\pbΕ~'<-t|Џiў L!%^y֟u^.˙kĄ6g>$`zЀ5hKڬ>{4/DIFEiT. ˑy)@ P(@ P(@ PL".?O?AdyV:MF i=-C u| [:4uت$:x9Ph$Gtk]7lh_*6evuXuMf̅?8scK^w#o{ITGO?'G?pgD9[Cu|)~%,*Y|!3fUhfoY$R(@ P(@ P %aЃ#(H󍎎}uKJVR+X!GW{M;}}}>ڥ@T\$R2ț%!Y)JMLFtszzLt+Hّo(z:f$h'uOEvNmAJpD'#Q, >zj3BCPu }zܪ±O~WXu+(@ P(@ P(@ @0 㣣MMOOǤ4A'p8--mj)%x>S$%4mnAf[UC;FM3{/mcvgwdR,erJְDX71*{))< ]yDYRfrwcsIhUS--jv<J{#~^>Bzkk)g`'έzʯ%/~?alKIA P(@ P(@ PXUuhѷ_o>؋i^I$sD+C7CLM-ZGHR#qY]kpכQfLyKJ:Fg 3U&FĎ xo#F'f9j`ѲqZ.ҽ  "R߽+´GĚbR2-7#xncxثhd {!q-sFxV 9CT^BtJ1toQߋuHݔmYʔ6-4;CF+x$ 8(@ P(@ P(@ Pԉ`,n5 tZL<"hɽ{<pZtSн)rMMEed#OůpyC~'JLbVD99sKu}Uam [Şl+¢>yc ۫lQC<lM6芩c>q˯rxܭ#J[/WJ97 u͸B6)y%r`޹.˙)iLH?s멻 J@,& F>7+P(@ P(@ P i\+YM4T3qr21eYcTOEǨ3OM7وӟG.6hwk;q_*q=w==xzUg>1Mzlvb$#G?CӚ]-rJ)a5ULZf%kE wucOEA]%>=Y̚kK꪿]EL{L|OˣpӠ+h +Q}M-Kx_+gsv7 f R(@ P(@ PKu0hFRTK깝qxSW{Exd'ccY)C:4Ȱ(9,!%q<^]8@2RJIkbr&B|'0%}M q\(yi.U{(@>bKdQ?Fc` Fu EhCCup]L)6EѼ'Ϛ(*lhjAPpKa6 P(@ P(@ P >Tڐ5cH?,k^9#?_R6;n1r i:N6 ڵu^8D¯y|HͦH6=I36]]g4'YEztH.(@ P(@ P(@ ,sѵ[L)HbF=:{᫋DҦLfm#bJݩSϠSTLD P(@ P(@ PXʈ"<컎]Yrj]|JŏͥNnw(@w(@ P(@ P(@,W(~=ԋ\l977붟673GIBwW(@ P(@ P(gҭV/]ks xEccY<D(s+9)Wc)@ P(@ P(@ PpV;g4 }~,ݗכQ(@ P(@ PJ-U++l<(@ P(@ P(@ P^e ~Tq;l(@ P(@ P(@ PX3rVBP]SS^>qLknS(@ P(@ P(@ 8-0 ffgp:R&v"z519Rzl P(@ P(@ P(@ ̊ݣAօ;?5ne҈GCfLw׎[V@fzh'I P(@ P(@ <OL񚓞4"p%$4!(@ P(@ P(@ P` H#W xA&PpVEMs(@ P(@ Pr10 -.˦(,(@ P(@ PV{NVI P(@ P(@ P(@ X 0pgM P(@ P(@ P(@ xB;ON P(@ P(@ P(@ X 0pgM P(@ P(@ P(@ xB;ON P(@ P(@ P(@ X 0pgM P(@ P(@ P(@ xB;ON P(@ P(@ P(@ X 0pgM P(@ P(@ P(@ xB;ON P(@ P(@ P(@ X 0pgM P(@ P(@ P(@ xBN PX@fz22(@ P(@ P( M-^FG \jի=?vlvvSrl:W]6(@ P(@ P(@ <?[ ?_ =IAfff (y (@ P(@ P{3mlR;#1m||h7O/Ҩ t歟yw yg* P(@ P(@ PiqiW9h7==އol'v<FLz9x'Mf2p^:)@ P(@ P(@ P6MzOLxUNj4ol|ktr;I (@ P(@ P(@ PS+u7B+vJSgz-vA(@ P(@ P(@ Q`%`NWzv pLz4 P(@ P(@ P(q{?[l w+(@ P(@ P(@ POwOP(@ P(@ P(@ HVec)@ P(@ P(@ P6>i< P(@ P(@ P(BlzV8W@?4 QֳsyC $#C-ъg|ÔuP(@ P(@e;w"yX]8rΩ;V_T8o$* tF2i?r}N PO@\nޛ/h_Tvn!87!q=qXnQ(@ P(@wx划2Ǒ_ vi2 Z3CsX] o}A"*>9ц@IDATͦfWBtOKFfp䛉RȬU>{}5뢑"* vPwOy{amo;/Ed0ukl6yDoBaxxG\y v}{S\'tخdѡ83rY: 7$g#2Qy糛bi>|mwbS6 B$0<oNfo9(@ P(@ P<ô:i⑔ u%,7"DRE2$fҍci2j'iU,3}<6fN7:(h'̌2m;,s'^~}v+|Qiv\ X("j''# HL+C|beub~;n'.s&h6;kgխ#K΅|Rk2ⶖaq-Zd);ۿꘝ(@ P(@KgYgY[_؀~ˣ4 se'6rMh%aOZlSx뭓f" >Cj;Z;$l">??w0 xD :NC-0R]6V_U0Hrt]7vTsl ԟ tOR(;qm kB!9gRs!МŪHȍpXd(@ P(@ xP-iv /V5E!1~ž8d={ q=UVJ'=#VyOΘoΈs@XcsF+,ttRzvZ>eLziz;?_G\;4)@ P(@ Pxt^+Z;Џ,pQHx]ňG-32CQߠ 31]OLG_pUU[P);& ס}(y9׉2Vck(´ 1o2WVyZ(Q~<%ݸMJCHqB{u&c[FD(1qr|tMh%bC4!8ZēX?!o0o4go`CTuݸ{n 1_gOEFN*dd3ŵ">%oN ؛~܇zܑ+dŮQf㞧\ $Jܮoٞ%]:!tQmS4!yH =Ecm`cf4'u6k$~X}TK˂۵ĎkcӰ)9 kZivV|>SF^ Иy hU¿1bt)q^o~g=CQ lVQяZE?_MFBh(s z Gv|dSi|N-E.DiTvʞ8>[U#4^{G C8H=R? ?q|13ԃz-U⤃k؍[P:G6q&(@ P(@ PheBy0l=D,)n'E  7b6$DnP"{z)/sYZtf9-GTR .W3׭|e+Qb` 5e68xqya>4xyF.mu(J-A~rJ3KPZx'ܲ}.{{w+]t;O6Pls!ʿ%S"jdkq⼝vt]w>W'qnn`+,S<hH\KQ2Mbe”=H)2wz%]owWǛsuW6ݭӢ r<gʀ3W,[email protected]+Kol6oAnBZB+pfq}Z ܎D=륬ΟFEÀzh}6:R`&h9pvI,cH݆fβ ۷Qk\8r^ Mתph.0,s9f̰[pIԋ@ό}x<Ƣ]:r#Grš_b{>'mi%7C9D¦Q$ukӊq`sH,^.x{y)WFOWڡvؿmTy\V;SnGiDGnƮ<ǗŒyJ{"ؘa][h>Gg>gt(@ P(@&g;|RDLBEC7(Ϸ3R qtIP2m-Rv:l*y?vKҷZ}3vSAӲ6h7LSqMQzw3f-MLezo ڙog I;Y.-;{vR҅ myX4uţb6$Ǐް36V/'7gOf^k1!L$oPno2q(-*–=xRׇ{ZszRn22h76&VjLچ(k\^!A;9Qp,| LN?BˠgjVv,c,fﻯ!Ci+Y_L/ދk֢NK;lLm˯ylUAbs>όCxVT]Ԭ{vB}+L+/3.o7~pvXF02  p:_Lٻ_3ﭲo`O`)ccs#ھgsί-w}η))@ P(@ PXq'<Ax)7Y">6Ҹ>ڇW_b\H^ u&ͮ.[OTg_:행mPelCdF9ǑJ@Q`^u7ua:0bKG{Hi'>ÉG+箢ORQP;L 7MȲ-(/oPЉh1jkY SLt?;vdSµ @x(9Q82's}͞w.v0vj4?|()/GibsϡMF}*VL9"bbc<w ]Urvɴs BEC{=5-EJtb1U-aIH7 mӣ^INLjNbss=M\bN2k W(E @LXZ6/R툙(k9'v74cSn))EidW~6C4ڛڃ@LeR*YǸMKn\;bO1[Zqg X,]dcn3ZqFLG-.Bgޣ:|"("E@Ai4-~邏Lwk7kYs֙άYkoߚ3k;ӝNIc:MBkx *""( (r1gWծUTUŭ^ڵ}^"<.7݉ekf;.kb<Z{*_(ߪ]<YQKN Ix{Mo{xw:̯m޶EWN2N{j?j^KO{p}}tOMr~È7~XciTu*۸I PC>)Ƿj$̌U]KoڬC*7p=]UQxXf́,"籩n6   >q羦Ӟhj536i'}y>wkrt]J*4i{N)\;Nde߫F{VֿE{׻w:m_n~c|ʳeiF}iw^~b9Nɖ'^]*_5576h$`;dDZ:eϻΘ~Sz`w%삑?l]'D:$L}VηUfAd(\Y.rvڶZRB%wj58$q7|4ܟ~@Eܯ\Y 1njDTsfLmQj}’]ޚ4۴sYulg@>/L©&ig'CU}#LԦ +u[Eu':ֵ^*r5 ak6*pZ֚Wk\j&q2tu~zuUj{]ķcYmJܻ:t~~ܿu_z~IzS,YA'L]OxoV{I>lW{;6K`%EYݵ&q^iчiNqɻݮPs}pOQ} v8Wr[w|[j+ڻ5pUXTOꫢVuȧ-UWjU}wwM-Vc8(q ijm|;|G@@@@`6 L{N}jدU=3m2A}JLk^$M=;]srLV$2<Ӈz/)2eeoǿ&cTjwTGVM-&*6I{L;sӎ/oni5+̴Vڳߕ'TQ_W{*9ߗޣ}:pऊ<CJB{0߾&yЗ6&}rJ(sȲftvcG|I;߉:|og+k}ԍ޳UV;'ϵ\a5dzgS67ŠI55[ du.X<;zb6 <Z.}L1/L2o>J:M}Ave,M㥚Jˣ]PIY:Υc2f+9y› s6\i7;W/cV_5VX%4\M-ɰ"B=g׳U2h_|qJk| c<ߢqq23}KEߟEUmчn6#i-p̘*2sϴ]*w0#qډ:~}2    *q羜ῡKާhSIܙ%+Ͳ9+L<If]ݥ%&QnH*0g4Y]K~ycOTBOr3-dvUg\poG9^sf=`vJ9`ЂDVyޫfXBYSE[Y=-QI3v!kg:MO1"uMMOI#Yq79;vNp;I.Ե re26NN5ACtóZ`eVIZgO;`^u|,uܩ˗t%EZ5U뱵y/yxgy[\z&1%K.4?w8?E|axb<jjU_MylORoÎ;kJt< =e4ge[je5]t7 } sܚKak`"k/ēnBת7iIYpxGQcǙ>XOu{(   >ojg:VԮ{df-QN'fɬﳣkv,PZ\b^2mvAGffln_Y' {Rv;WxLߗB|Ym2k澁nC//ڵ1]2J˭)lsoDf15o\c? 0;+\.ӹLfӹA6}FU]?1<^=֟ZXBXUON_-Lo9G9Y^oKA(Fঊkkw[蒾Wbf P/yLk [:>3qvU.;cc|=8yv2׺eiKe-H~[zlh,ۄى%>8 ?Qys   @$Uɓ{ܹq!䪚t;ӗFZ|26YR+ɔUT.{FUZCkfa50|@BluuTs!Ϝ Z02:/aYW{! 5+ }'`J3&1\|-c5QC[3&e:=苇Y+`KmfORa—B&JeV}.4C[ mf0T.OMr_|$´ݝu;;!aFztÜl6&ѿٰJm+׭p{p@C Z?V^4q$ʽh<f)JY8?ƣ(MK4c1(&Dj}oށGΔa<؎$ z<Ou{6   D [:ϯtNɤ L~F%kMceJRZ^6꨿f{jNtVYy#Wu:4yd;uK=A+sɿu;*|[*uL{Qf{DRee+49NSzVV0"uWF .h,z?pg+*|)\pK:⚒֧suuڞSlET䙰dp},8owZGgԇ[sɬ8ƖNӮ5'),_XϹT.VY1t߼~YwW5A6Y]\&#s Зt= ~o!]Ωi,!jRvBz{B,U9D9[U2֘zN <(4pףsaIub&dB+3]162dϽsaj)z<Ou{G@@@K p]>y<Nﻰi/d+m9*]oM2[e5~9׬ 6ȓjܪ9uV+ȖN l Z=Zk־OLZɳ=-`Gs_;toZ_3hSKIBQ¸[-/kȺbyy]T0d%澉y'UMWT,y;W^+|$K r30.8/@ۊUZ3RW gOw#;C9Zs΂/ӆvK֫d]dP&+hI1YͩۿԾ9v˲RCY 7n`l84?R~Qm1naluz?1:L-YiJϖmS_Jiǘt^UkLF,ؖ]Uv`f&VYv^t]Bl ZJzaЗ">0NP>%8zN JFWb۪}}菦&YCIqi}t8<9pE@@@Y-7KT`ػZ[3e )ߵion= kh}1\c wfoqNSgI~ݐ v'B$&fpm)NiI~IÒ]OLX>oMN/}[|3Ի?<qsFl!zdV]Lq|칬VgNx;:w22`דnk&w-^'{^y>;Ryv-?XV[ XlSo7_ l=?Տ^yE??֞9 nx}/EV3{)pw~G7?=<scK1;EYJK]ɑ̟!HK*%z`146zYuv l4OTl1vo:wǸ*o>K[sp;Z,/p8u|/_f4Xdq64<Wlڡ|YmO)ڳmrWjժ\-O^k(8|ǿ]>0ސ+Uj}y(z<Ou{B<G@@@)07nڪ6e`#rŗpsyzv>ޤ0j9˼KV>uJ]JDnժ4~<>ceiz~[UO빮nsԗx0g׉"Uqwnսo,͝tzaRt{Z4:]-PɦM_Wѓn\=TU:-Z *Yi_.=}qKL]Ҵ?UTܣyZSRMjΜqƀwzd5vj<Nx;פ7ycv5Zo;܄>i:w.Of@Jfx \[,;]15:Uר[;oW|cVupuM]Nնg_£gTکaTfʽ3{n×0TU<?VӺ~]je:˵:w&pOcK8^+fU+l=hZ5_Ԋڶa7 |43vz9WOK<u^vIKsa:o[k'\:mg zeecWo*!1Uk6+fM1M`g:X ֏}n/1ScEvߛ.UZ}zTuv88:e<T?Q}KSku:j9gDqŐg%ڬ ]_5KW[ktqz$1cG;h<   FIܩMڴ13[HRܼIUh'خ %+?RKHJ]Z?z{+O_9P(SMm|)sѧyҜEѮ4<k<XiYʵsY`cN/RyX J-Ngb0~'k'ץqIo}RH\t :IIz(WǢlLU6*쭮׹G=dPyK&qgfGqUlZmSe …,XNw>o>"O&9$MON8/ /hU^Ϭe*ݺ1yxB\)OV3+ؼ_ꨝ`IpTf7ָ"slVpG0[g~J뗀u>} 5W]nc.kGͽZr^MU4 }FPAs}v+G`@jVxYimgMkt~Fyj}tWĝ{PGX)|X=ް]=V>{DGalU=`OHєo7=C:>!   ^Y*ӊ7Uϼ/$_sK饖dz ӫ*i7Uo}^=qS='OCn#c :ڻXC%SIs֦^55ߙ/MF[_;&}ym~[{ƚgkf\}M~\<lrw'?܌&5sIVεw垒挸A}K_бPZDԛ;v1KUV5n>êr~ηԡ:ٻǝ-~[ǽӞt_nСxo8?pUqEx}xRo{֥n3S1`0}X͞~W7MZ5dt{hs6Dn>}Uy7{yC}[g/Bm7|A=>ҤO;/_EQuZouyo_M{^o<lǎ#oWaniu0h:O>:<1qg9ݜCO{   ޯ'<vwu)x$B"99^ʤ$onPEytl22\i۝/~r]:QenO ,3Pf*u;|}M3u\פ$]j"6Hf"c<nݸH3˳ ]5Ox{{fFg{Uc:5+*t|,t+2=Wt5VÞgL%eZ2_slƜ93pSW.5I3S=,%Mc5 e6d$[zS5oEڈ8XSP٩Ѹ͹s[Mi+hx d"{78x5w%kdctӗ|e|dzg>իž+~/%EM vӯ{&h~5dŦ'׹\?N(W\st1{+6h BlڟtC   3S[r~gbq"ϵ7d_p|/1es/d%&;O6wf}m1?}~&w7Oo̪zvXUǘhj~O5wo'-`u;ri5TRZ#IکNgH#/UXn՜; ݺ`~bں.Li\19^ׅQ3"ǥ3"9o\׍s$9ǿᮡ~F%WÓ3nLƋ~3:Q9X=1;pibty;"(>Gyn ܙ     03-qN5%c#Ͳ&,+2}GI:YפWZv6m^g!9xTiI)^{Jj<]u !v^VFєJgCof9+cn_4{5w2)5֔RQS>Mf>@@@WiK+ȬUzyzWsNN}q*Jn+YxзuRǾ}^`nX~:.2 nGDEiWYR/V%gj ]>R,3߭ҭlS0 e@@@@x<n*Co}ڵTkWn]'TӃ'BߣmYA}҂úpVm!6b+ Ug˺} {p=zWQu~t{>%#IUҥF}ufH&fV~4T8'hBY@@@^piKG(Zu󓖑K4t-n){lc?8p{](f~8N5RQm~g++=U&T29Icsb&5o~b٦a'A@@@G`=Շ|uw]_ M 3YD2 i6@@@@q )I׮߈<Qs=Z0lhp(b  `*C@@@@@*8mmܹĹ\[AϛꃮI&&̙a k@{      i3՞^-]J%&ufy^,GWP@@@@@@ 0gݾ=.%͟sFyhhXLHYh,7C@@@@@@@i`yp$Ɓǩ t +*i@@@@@lSMËBH      31@f@o .    3SMWnr&q79ԊL'@@@@@)3       q      L5@@@@@@ A@@@@@@Vz      AHe       S+@nji @@@@@@$p@@@@@@ q7޴      @PwAY8      ̝h @`<Ks:"    &uu"3       ā3" @@@@@`B v=h^bjΜ;v iphh>tb@@@@@@f@I-]Ĺzw=zqOF      5nْ4͝3֭Yݦ{f-\@%lݘD@@@@@@%4+i7<<+]C׮PVrWZ3ޗ͜F       D X[qbfݼuu%\;q88     xi4Ό-#wAC@@@@@@`HM"U       0^w|@@@@@@&@ R       q`j23Rc=N@@@@@sg`r^cJ6t?U91Z(9TVG7k     5Ӝ3?֦ICc'j^yoSXE'ULڒQc(ߵ>R&_Fg|=?9@@@@@B`wҼiJ6S׬kco5 oܼ I<i/mzaZ%?|wMS$섏AiH,X@@@@@iσjm̲~sHM9A-XZS-RҖ*7ݚC&u&&ڇg#mV\F:     ӞFՠ}ܧxiჳgFW<KGo;#!ӿ23k6"     @$&ha}HUQikj<ߢKГIt4Ɇ5$oki eF2Q]I,fv2ۢaOʶnPd3wぱ|r2Zn]Vc15zj=ECYRĐbb[zt޴oy[FiYUՇ0aչ2#EnQe=Z$9{2 ri[MNU:;.Lv%RZ:yJpu]j֑&_!^`CP[Qr$)m9߭ړc[6k\Gz})Sa^Wf,1a@@@@@*?;#lw+R̍3\k>OVym%pgF-z "mG~ib7`sCMR=-1>#32C*ޡ4_uw*Z(cػK羨yDo-ю dywTݬAz[Ƚ ЖmT^]ީ__@/Oqmcz|?`AC*(wz kjg\4uyb6 t5K;o#wb]yomî7؇齣M^ w +L=h޿+G\}HZN/ٚ7ԫlmO@@@@@f5%>hv&y|2+Pk9K)ӎ /sVhɳJUIImj<.28۞·|7h*>8+II;wZqU?-5~[us}ϴ?:i~/K+uSc^JQsgx'먑Am/θƃrK sU~m8w;x 1cU'h]&][{Y/s܏KKO'xU.=o :=Y^-;3/g     0qg"0:vKڴ>=P}IʵmWz=ӫZgw`5'GE:03+<_ _d^9II t,c|6GtZN,uv\NlWM}z/ud$'v(b]Yv8Zk6 zf6lXP_mgi1_a+p xpDޟ#ѥҒ bW%V;ӣy&Yf!omN3|L6-Z7IfLDg /KO\RWqU~.˼SOƸt}jnPcjbEZ{lo>>u--Mi2%ОJ}i=w+jIr噗g     ğseէ zo]lU[So|KG@}V>mF,u^~/ioU\q%Lp2汸pY}b;f_jlGZeuV:o?o~ԽciF}iwnخ*[zЕD3&7ZO?O+^n'竭hoSm~v}'RU/eZ#Pef&W͡_(r\5gVz;0;1jxQҒda4d< !"=^B`ѮIڝT~z^cXݣ_j+yR%ש*d}b?yqݴI~:όDgY `zILV{cKzv@@@@@kIܹ5*igLO}ګ+@IDATSwڑZM-6/IlUIN$s-Ug-7Αz*hNPawzK9;^JMΕUI9)~_M{/w<qEۦZ;igPIzx܇SUo$viR>9zJOedY'b폙\:ZNЫ'CW{]ϸ=GB =^B`ODX/ikZG*ZdͿf Z%bs$X%y%*JmyGꣷUe{l;zMMA5 ߉<A@@@@@ .(q׫g/7o+!!A: :v I.t5L2] !tl$NOr/<_VYskFB%|b뷯q._p"GҴrӓzfE2 oǴ3񐚣l&+)ik^R+ex_1N_Gm4Kvĝ]5nsc׿٤, f^6Cm-j t_$M@@@@@8]E}>ҊSv*LJN8-ٯZB7 խ0RvIlD| S71+u\Uɷh3ӳ\$ u<lyyٱޞ:e[ab2Sz63h |TVm*[P:b_V{&#9     @ [W?/h<OnnN`5Qɋt,4zȉsnB/l_Cqަg&' 5ӫXNܧ1G]6}vnJHSAfq71톹H}ݏ hUݱPQZ9+22N4[Tz_Q@@@@@ n-A+!.~һ4֌ Oj{u/\#+]Z5_hY>JӖܾN[,UvZzL vs!د# gwIrF; ZjսV?y˵Y񷏻hĴd; vg<_nxdw_X[ZFVuڸ&]$L~(7>@@@@@Y pkfx gMuLj4T{ <uziRwWt[uZ_`:2) ~u+KeG<c%&cKg'<c=񐛮 2G&3vs aMp]KZv]^Pf/&:~XSel>;     6ʕv43zn>:5GNnViI=`zQΆ pQqg{ vԞ9=-_O=Û4oa\;g54yvygG̺fk=O?yX%NXnݱw ڽh>pi)ZfO-KQ+6OXixjj>rL¶cbz?F뒩WH~Gv<֯P5U:#MN|<A@@@@@ 'qRB.r;McNk҃ś*;?)mJe*u%+?T*5v+a߻UY\cU~q듖'M6xGJ/]ӼETPA%+u J7,K+&{@͇U3v{xhfP&SWV]w`Yʶm&`'q"Mߠ4;n5dL{ljf`yX~)j-M;_s%qRuMJZµ%ھN vTRjv?UfY(7$^g@@@@@&0;D4:!Gt™<snZoIh ^<,q<mzkGJ~QK]Z˳__0(vThPsT&'Jy!r+Mqaj+F[]s{_ vSx%kgC?yfեvYcHz]ʨ7~rvτMF΃A v <Ik㎇̏A~{f60E]PyhS9     {܍۷E<0|Bqڠڋ^gr>!oC#s"[^TYki7Uo}>zH 1O9mYok::rw_ӫWۇ4f<d+josmz^ $rt^} 5[{cjr߮BX5*=r?}kg`]O*^qy/_S^-w5aVgtGVSSO@@@@@`F s{&.eU_%)D 5G%yK4t-Poη΀ߡ ӯ Otet:fL'4ݶ뛔NCEN)s̒ `v3 &-nLf({4`>5cF7Ύ^tcX+U!     ~O8eko~"ijJNd|'bъ@_jϬ:Mϔo&Y1卺li=Cr*Bv;&-g @@@@@Q`wo븼q      ē.0@@@@@@w̘KN      (x*Ą      p .9F@@@@@GwxU @@@@@@`BN o2+!q7ԍ     rW$%]O-Xkhp( hn#      sGs<]"=uR˹v&0g58DnR@@@@@@`z՞^-]J%&.ހZf^3`Lf\<"3A 3}L@@@@@.}{P]J?_s&Me I; ] A@@@@@f5[3q98D*u5ҢC@@@@asfX       q7+/+B@@@@@i$f#^@@@@@@Y)@nV^V:      0Hʹ+F      Rݬt @@@@@@` iWx@@@@@@fYyY      L q7Ӯ"     Jw)@@@@@@&@n]1E@@@@@$feS      3MLbċ      0+HJ@@@@@@fvň@@@@@@`V N!     4w3/       q7+/+B@@@@@i$f#^@@@@@@Y)@nV^V:      0Hʹ+F      Rݬt @@@@@@` iWx@@@@@@fYyY      L q7Ӯ"     Jw)@@@@@@&@n]1E@@@@@$feS      3MLbċ      0+HJ@@@@@@fvň@@@@@@`V N!     4w3/       q7+/+B@@@@@i$f#^@@@@@@Y)@nV^V:      0Hʹ+F      Rݬt @@@@@@` iWx@@@@@@fYyY      L q7Ӯ"     JWt KΝE*yB%o1N7@@@@Vs Ok,sGCCCP,f;[G@` 1I,-\`EM     0Ѽyqۥ%Ktuuv]c08wT8ıy󔗳Bs&믿mݺ}[wFF8jBC@@@@"`M(X`n޼n]ـ 4<-NI1ߥUv13}#qW@ٙ݀I]jP@ "    '~=ĝIu]홼Y[uIbu?"M1- &,kƝ!mIM,!    l50`\l1 xH">@!j*o47W:Be@@@@v+yw+i43V$u@ x"EÆ     0M$wckQ@@@@@@I329aNg'"Q-      $@.      ܵ$KO@@@@@@I]<] bA@@@@@kHݵ#     ēx X@&^;fuZ,K@@@@@`R+ 0$'lmܲ}FM     l`]<^R=D'Q*u:1$ߌu([e;RaGyojdcSM_'+:~Lk]5<vdZ%ՆGi'}%,@@@@]`wzeYz:_Wb[xYO[nJu_BGZ8a&5J7 =goѮo,5EK3z1<LTn\ ?OHEj:AQdgD@@@@`Ls.QI ӤdiɒZhE9A4/3Ƞ4 |dFv`N[^سVIsume嗴WO,=22b 5qZ;;m4hOyCP㴇>    .0͉;}!oMWjB(MfiIfyen*;:oD8@@@@@J`N\EC0S`pγwg<_ұ̻D     @>.#<!oM 2d&VZ.1 ZW[wuYgVy141]Vc 50*-wJVgjq<%$> RT7 #VPIiu?+oPI%$/HeԘ3-P+&jA{KNUѺ%Z`i__odh=:A|k <b]u1qP~,uO5Xߏ;J2(uVoÑTY+Ѫ\>\f`5zt9he3ϘjpVUa]|-yR}j'DI0Z> d*qkTRjJLfَ1V90%"}Ϙ3`z"uoۋ}׵h3sǯo<A@@@@ f_.L=CWKw>S '*Zen=p*2 g۩gޣ VP͗G'x4uyb6 |<ߥu7u,0AK mO/=_آG]9*ފg`Qsmcz|?pAC*(w7{ k<yzlt|W→ZGfkT O{wzc^1=؏m`OHFdnܥ:RshvV$`TݬAz[(me.WWw*ڍ*v<ioN9^1_|ߦ^:jr޵ʼ)Szh{:} \B}ilUGnn2!3p;4D/":<>;.`xܱ#    ɏ~ܜ9[_1;SNeKe;/=ퟴWj*ݥqĽW~b𤝫Dr*S=5WI;w*-b} GϽI;OmYzVɱzǾ4i*aLxzbއu)"huVJ=3ڒ1<;_L7я<r%F'ks3qNuVٽ짮XgWRy,i)Pdl7{ͱjj޳9 eGccX'Z;˵eCz慝xP9c%b{4өno\3ӫX     4<;`ܼySAfձY5h׽Zkۤ>=lfs5 Mi2%ОJ}jJ $i}ZyLWn(eyvTG߯o}Z*tb< of|ѿ};9UKםafwmݢS:1:Zdkr]ajIu5KCi53??VZd6U<U$k3m,Xy;tXZaU wgzb&l 7zBǪjx{6mOwo[;tSXz7۠ik,%Cn߮^\v\[_s㘔z^UBӏp}*^'Nh{0Z]v8Zk6~3K=`Z䞩{\ͥn6^k1p_MO1i1~.5K}Z\yiYRs97Y@x     &mL>PT1w}UIuLNrt>G<}@")l;;z/ZF0Pe Us>#c^G&y?!oZkqWuE&qg6jxQ4cti0IY1}oX.~}#Ustj._ӟ!w(m6nRvbg_+Q2jЭvZ[s7ݶ9VoԧD۝L^(ϋ*DYoVOSSCKK7Ks%z~9}3"Dv/TYB]N4ųQ:[o'O+R_?IjWL5%[ӯM_"mjVw5vB?Z/b9zmol!ih?g;T7Y? '    .pˣ*Yo+pLk̳J$0ws$x䕨(M'mUyK;*̷/igS*}u(#+<3J5ǎvua%ΖƋWFﶜ<WO>n=ٮg\Q16)x\u:Hy_k=͛=pJ3˓<VfrcKt:㎤]E]&qgbTVb7e]_vv{U*5;W/+W-g7~>HO]7ig{[kN:mR~/Cyv }_{OTњ<2/Lx>ί^SSbߠN<&b!ϙcoL}{{#_L!   ć;wd-';7|nY"Ӿ25R3䱾٤!<J_U/uZѡ56}H uҴrӓzfC`M,ii1gjig_PGSsTd%%SR|KJTbb9'6)!t]l T&qYYt~Wೣ:cnZ4E%:S.7۳>OVٝZʊ G4kyP_W]Ko4߮z_lTy;grI|9dj~sf8ڋ22:tA멏Z>\|    t DdݲD}='qyfĎ}cozoEVy-YŮ-#:iUW闬qVn-s8쬈a孷[-!*𖇟מ}͋X]b=R[Χ7us$}2Y;<c>M 8GЭnHȈ=賔mf_@x5{K1C/;uq2w~Ӊtx_Mj}98`bާmodY{gMѼ#{t o?wΫ    %0֒w52%a6 i03u7TavVΊ _#4[T.}ަ; <kFhtEZ7uYwcd^[ o mLc:6bݘ;$[EIEK("j;A*UdUeeY@ (os|B+<O aԩՂ"mi1qW-%=ᒟͼho??7 h=J]uM%윋 6݁]^2v^/)oϙ/SrLzڗ\h,^|D(v#i4[[N֝MlR*zӇ=;}wTi2_ݡ>N{^N!   vCf!2mރ{2,AgE*.<UmQ=pu1/kj:ӫO{4]ÏF͢0WRԼxDO|e 24 ֭=Nn z?ם@/8`sqʚyV E%NBqkU nf^O'E]OU52ΰS"gͫ2;ٙt˹Ljh\Ubkӽ\ncT{=]m_jWEw=YO3oGUN5dY'pU-@@@@T ِmL5^9Lυӥ߶U^ȳU?zM5zd&_[_";ZehR׃0C#+mj7/kHǝMU%S:g??C}]X[`w{S?V|Nj|%I(-BEe^sJFG.=phqI=Ԃk;0c_?F_OuMҦm:e7/Z2fxլZ=6ŭs枌>}{1\'Gg\{vf;L]lWuG@@@@}sȴ+;iph.ν_}{K1Z?S}>$^b'<dϹξDgdWdO|^_cq/c{Mm> 4fO>';uR1{c>m .p+W.SjUsF1=cGaqN=QjӏyڽzOo|cu,t}e̵e$7;}=ӫϼry׶^vt>2Uߧ] ۷L\>Oz3~{Ɯu8}2.̮. ơ    {"`:D yCeJ/Wϝgz-TPT^=~&RK/ܮC}D s~|g*{5zqϞ4sC/k\kKjU]V]=t;jZ7x=.oW~Wf ֭JOUnm,u{B{wbpRPM-Զ/DAy[ʺ^|O gYu^>/z_\7U}>2Ϭhf:de8=|z7z#5]i=yc/'3ok\?L7s:kݪhAzHM}urOyH]n}^2¸7uk=ཤw=̨f1륁gwȍA h]}Ϙ3Ne=ex}?1K    =d|0xarܙU{p0G4/ůW#=?_ ?@Ӄo^Ǎ_{Q?=݀OU#0ŷGOU/SYu{Fa ̥'uƥc~0ru=U'{@KA6yQY;uz⽝g{mO~Yٟn=$խ< `ֿ@(WЮFusi#G|P]LgyRg3=CnrP+F IdZ>=Uwn>~TŖ㚮. I@Qbe-- 0r3g[@f{\b~Xgfx'm4!,!fM,dRP$2l/'y@@@@rXW/åN|`5'_Wя6]C}yW_Wn3^'[. ?n8fF0=r[?W?yWwzڀkfM~9i-Gݰ~3{^~Z5hzn/WwEt]=/pTU'Y_66_ոa"Ӯg0_?ҭ'hmbF;i .+W[v~3vW_1 }?o<w3zsd}mrkYR r?:$,&Hl&5ֵbȰ~sw_3v/Lzm8?›9k \mZۮMwr]5v~~LLdQV}4\#    p@'~ソgvJ9]zK54cj= :\#M% EUBsoLC;Y^nҘwSt;{UQbB+ZY3ڹj.8O?t!X?_#(m?ݭMkyrH)]O+wWmZgms_Y,fYeXn5[tܪ1E3wd^☹V Z@СOD3>MCrٚ|E.{vsL(^.~S>3Uɵ!~7&{@@@@'PW[yNUV{\ud#2S==gR_I5 M&8b^i-#n^{̛tk/Z;KEhnT¨ۭ]O+Q.lvVwOˠ}~-|JNatgfxٲ_f]Yur    i `.͚p(19@@@@@,seX73۫#{'Y    =r)NA*4UZ=:&A=+-A9@@@@@`/&i_̋7g@@@@@=9#J`oP"    M찕"      pƤ*      Wm;J      @^ n@8RG@@@@@ c`[[ oaGP _VVZ=L@@@@@'`u(.. V| |Q@@X ڵ45shXC@@@@b d=G=qZ[_ٟ rP @ 1hWYi;OjJdm-4f؃    @aAezoT<j{$Gn\I7+H742&?: #    Y`u<O dvA0eD,wUUY`WC    [UZ>TUsQX@ V`naA֋@@@@@ *P@@@@@@߆@@@@@@;H@@@@@@߆@@@@@@;H@@@@@@߆@@@@@@;H@@@@@@߆@@@@@@;H@@@@@@߆@@@@@@:P@ T^^R؍    (??_Ӵ"ͭ-kvn^9XaIai)ʉ!gt*).NlNA@@@@)$4*-..jrڗ=l&F.Gb! y<:%f~1-@@@@Ȟ@qGEE X^^)gzrVVTkxt<Y'),TAhuzfZFBDv) Y}tqߥ#    W'NTw&hg=Q%%Vjfv.RBbךּlnn|nΓR@@*ʂ|zM͘nQ@@@@ʊF'#yg漳1Z=j0f>Ӌmyy%7^.Y 5<U\,fLp8^kk;mJ-@@@@ȆLquuME^gkO+h`0/eً<P Y|?^ i L Z7Yͩ.    d*0:kwbig-Vwk;{^A]/r(      E;f[;k%K낔@@@@@@= p$      @2|@@@@@@@        T@@@@@@w{H      d*@.SAG@@@@@@`"I       L9@@@@@@=(؃4H@;Nڒ_*)W귟</LCyLeuJ }6XԜ-GQeuy'em% ߢ?G{*Rk]J<jtgNhmqRwF|$~E.Sj(5 ˗v`_R}kCv'b   pr8pת~zJ} E[/|RgƘ4;;kg v>9P!GSVs-,,^>g.K1yIDAT/ ~1if>pW^殓5%[}+|{L]TWZqݸqO$ԛm^mJy>ݸ>$CM*/L<20a/JdD-'[XWR451T:zOVY ̿)|N*Sn5keeB<gڲ䄉AxmB]K˛Sp.5r;OΙ`zyqump*&C|UT{Uj 1?v爜Z-j+^+/E}k=;{uDkݻ}K)V@@@"9KMdoPUJJYUں.?R9I(!gk Q܄̓lMd)UV/oꅟ@Wǒz<&h\TRӓL0s#`|ēUTᗟ_ dZ㥉YǫSjJ ^+=j;sVk*y7-{jKSZ֮Jy+uV#ShiL }1K䭩WKô *{+dut2FZȽMekbvZ1Z]I,6`֏6 ӻʶI=LO^b{|ۺoA.GK}ec_9{Er=lbjVMG^l܍\S؈   '}!HEӲPOSHP>)[/^2ϒ,y[wP6#GA P$|yU-kY|[?>'կ?ߢv;>=!w˽jIS,z57{C),kh2M-*w' ]vnln 51ӒCYZUc^ZN^w4R66zt,vX/OIke3ktj9#sE8am8a^D^J*ʂ*OEN_4Cqtl7t[Ϩڙ lmKhҺr(1˧[7jz=L긏&i?"QOc<-jQTe.2!  ${ZEvzi y%=?wyv~a|D̛*oדNizWuu/"9 PC 75b&K}K* LL$Zh<n34fdY1p/U{A].\VUyUTu,V׹NnTkuօט4+Mn!)0;7P[K:"&N-o<\}Yu󷲝wKw',4ou.ލ @ԄO-&pg^cSɇx;   F s$~싟׃i\) أ_=iL\OLć &5\M<^ԫ &t͘`esP|5؇|`NZ[c=*Olg* g'V43>Wo%Y[CMLN2c ̠S7Ɣ11AΔ*e5-`oʌF gpY/!S  FuΌ/> KKs1!Cˊ E\јMQVtpC%pU6?<24PL4-NhmQ[jYӳ1_ZZ47ig[=MN;FX&ãjU=lf&҃:ku*,PUu Ks*ʪLPV,Ӊ&Z^Zиf+Qպ֖|[U+ x\7jBavp7d9?Hn3ZC޿͍U-Nj.MVykTY v,e}.UՔ[#3nBVx5g^[\oKQMU.-R~͗}߮p;I}=e+/ ^+vr15<W6siksb61'.jn~XQQq F](1i@@@ ^Lg ܅zEb>Tu^cY|@vߓSן׏}Gwҵ_\ը/wCN"X y=v<^u<:9wDWi}`W-h^wbkyX{wO;͗{1 szz N_~/CRCXܛN'RԸod~‚|q O[5q_wǬfe N)m0p[&`2rz:&mmJCw" P%ܰM L @{MҺ5˳hCk#OPbKFHq܇ѧl̨o(lmsjc{cV yUs5ߠ^N<uO;[T=nUߧ{wc ,ohֹ௬4i-/mR#+~i7Aa{ (<v9U5u!nio_Q}~ܮm2lKu1xTݦfm?٨;4չ]EZ0%C+O8tfz۾5M:wC7]~bs.|dC۵uJiMjZߗ]wRك  nϫm׎ۮ߸?x䎀l)wJ%٩=NZ^?'yD^~>;O$= qu3҉Mmh|˥O6zoNz(tKDW۟x]H̿)tֈzޙxL^~ s١I5K&Ί_c#f8hړYH 0mbUa%*3Y(xe[HibilYZ^Q&VPs)ML|f0:);C*.NȺDjLPڼ4=k?oqڅ/TmKvE>8;[vsDN,zVE2I )1sEN4t; +qWw^K|:~v~V nApkLw=t]*Q^ucl<\Uߖ *QiVy8OVŔ*#_L r>o['v?GΩ\7 K}~@@@`wHL ~2HI䁗q$DN5E^5''??EMUzH.@C+`zΨ{Y;z R+MUeI+7CK>z 6T^~\WW=6;/SzѭyscZzH#&Fo }cj &ߥKOF`_6`>=L>Rn3ZS.1u/+_t=ezV :YzMzSj[Ɩ<%^560fa\/iiۺ孩Ӵ nqiIIֹ&y-,-88r{i:>6loD773*Y -ܬ𪥦 O6NxZ<  [U(eLyY_|mѹ6h_ktp\SlP5 jmkQ5h9>3`eazDCSޑ5&|YV|}Q,g9?wfTM3^iQ.q/.ܺ_F*QSNymqZF&*4tK UFMf'5/hވWURߠS=y4x5oFS^&݆pUji%"Mu%WqZu_mE0çyKݖ@@833zg?z3Gn?U2e]Ǭ\s.={G~;[7\pV]i/Y-e:;GUFuxA;G58sf8Gg+өw{M_g#s-,iVKFkݚyP0=>ڒnVwqp>"}áaMuv}q&X6G"I˽cf^0;iRȎgf|+mr5Mb5W|+ccnݿSi<&a^rv}YsKO2KbDg}x>mq/ӣHyFGgo/U5\ŁF"/ieWL6i`ZU3 nYӽHι[fR=`[Rp|ahxR37_e~Og"}CV ZK$W_M.ފO7^̜}7sVՉ=ӪZj#jq\o^oW0Wtsj~PXf| 05pF—԰ wyt[.ULc+d_T;N}2mߝ_7kZY35y#p^cp  a~ΟMyLk7owc+(P]U$bl[Ͻ#øŷTYb:$ɫ [ tZQ4-;_E[iPWc^so.77֛gwdը_k#%,\Є Y0Yޛ@voͬ?2#쓕1RG $6` bu9٤ʸEa̰U5z%.L{KqB]E`ܵpoR`QiRCĸ7I՛]0WfͿeb;sd*kKf.7:Вj pT.?qj (Z~DruY~~!BEsvҭ鞙o#+1ìxT嵯 9A;E3NY߿柿e}L$h<gտ,if6`-eٯtF5ge.m{ԧDol^\7ZY1D ])I @@&%k?D&[7,aEv˭WK\ӝcrGĦ؍֧]}-q3[@*PRrOlj>t6^</vfL8?:oRH&zRhYǞʊUbfaJΙyB+ÕY̐f>OqMU=--K1xWjͳ5d[&Fۮwύ)+[ 3RyyJchej1!_vSj&Ie)kTw^eb3CZ˿,ofYZ+u0=e,SbS`"y3&ꌮf`a5 i37V{3:se%vw?ݹl%Q0|\7Ū4s$v[=cR)pܯ;D^MP6zW&SLwա{s8)c~s@@2HuL>{fRu:WkA~iMl nꜧѽj=ttkbpDzGc=v'DZ#oڣvCug4IۥZ%jom2sɹI//vx"] i˪^+|`Fu j 4h lTӴOftR;mzY8-f70gu%453ӝ=X ,kaoݷ<3@X,-f~a34NdY_HK̫ؔfjͶK>H-?3j%rkt[;XjsSrqU^'oTQt5R.nnC   4da"o_/cpv=#a'h^y?zpqC&p0?cv%?=  4 <3|6Bgbhd|:|Mnkt c0YD}Ue$b|څ*}`fj'7Blh˴o~V7 ;;qMD94ylΝi ;WazfV]:4(q<rAwcpyC=::I'^:џk _ Z,xۖymhD-]ۗGY1A<+hd%Ҿv/! 5)Cs^~ء>NVٽ|wi}v8?eS>|7Mtykүe@@<Cdvk"tcj}rr y=7t`'o{%v.W!,PC`pQ5f>mͷW3 X;u ڍxI|zk:w[׷L@mIqDSu@U* AaLr^mΏ}e^ZZg2w)ۗ$эGLH]Xѳ-͛9{zoX#sn h\4D+krOi7Ai%<-k}ISO|SxqI'͹doi)#W`{USG44:]n"3~lk˾y~RͯB⯜Pcoh< 'pUvi}R=?YƖ~@6"ʵ&be:D  /l6Df|O;[dʻoųS̟~Iӿ,xCKM$ꕻ^>mgHXAߓChv^ φ4k - 9&~Y-Uc͵;Գ?Iߒ0*j]lvs= _ psHaʝ)<-(ܮd:DgȦ,Kե63vK~Ty!f.&+3m&$;cJ܀E-G,QUM(NYjØZ{L{:Mpn02iLz3x՘dͺZ7ܷvv~&HjɺMW{UeGLUuQ1Ǚ4"<砮8?fZL7Vpmucߥf[,   ֐##TB*xV*UW)=n5FibogHKd)nC-s_>; s$@C.`'c:DS3 K<\y9rD.ye=nrgм>Ύp1rmݏ]y_rӵ'fTN]:Bwvg'sX};ۯ@TIzijjׅ@;[!YE-\O>|xMkg/9]jTte ;Wp.]?GO-Or-kll<m>?j3tgk69jiU[ul0L؁9߼hbJVRTB:y=!gaK 53팤m&_TJvR_햜sֶ-]yuwڧ{v 1fVw3F?9)27u1eC׍XQ`]nC@@t!3766tL~N4⪃ϭZ?5\:#߽ȧWWCo\_N\񻂟D[s^q^һzLm̃y4lD@m:=͛q'Uk? V2k?4z?ثzgX)^?~ѭ 䛑Zi3j|fvV`ýJya >:K?s'L[;<,#DU<R n/vɘp`SI RtnZw4GP'V5~c8roNs}(d@/|lRӳ`P+Tu jA0iirVSd2>=pj\zff4k\z9jjU^-ʷR uVգ+Pe\S518]6Ǵ,j48:&sAf8uƌVlge391)9&,[zlҧ*(PCs]$SY<f=@bWT jaJN\uz~Ӛ1_t+c=ȭklT6Z.MN.|݄2s_.)S"o\iGMP|m}J0L볔a5w1]XsoT*Z7vw^7s^Y $xwh@@̜p \N}_]ُ<+kգ2xǹOnoUTh/WuCn#trίҙsG z5:pWT"FP.䠀%۫S=$^^>K^t%s9$nӌ./ܫۦGIE܁.oW/pnWCd@n;yPg-UDžG;Ϗ]) V2桬 и$~ӶVĖ0س)gm Xf(߹b74\Ÿ'?dg6/^8iaY&JWgqUS9^ k`_#.6'/yXm]h:؝_wlB6'Mpp>cJއe@acWW]qZOFvhWm']wVfu{`mL7C`ml gУ*m ?}]+*GiQwUtCbH=63FҮ(Q'%q-=~|s>Ocj/cM {k/}"   ^|)8a&W5I+Mq)Ŧ=fI_DVWSmV/GMԍۑ8uz=Ɏ] @.lE%+M@3c.AyCWX^xc5V/ѫ?WfC1|' wmlVϾt%Ѝf.c| 5z>gXddD3/Zu]sfxʄBg5s+2EvdV}úrgヰQ/kr_\BX]{KSr&X{KqEJK<)e]#\vցt1fI74]d@R;9#OWohh]~eѧoΨ?n[nIT^\]oj>8vn]ל}yFb3Yԭ -%&%ߘ|펦0B&.[˕la&V9O͵~sGyk&<xׄ|b&~\#3u\7}7/spVi&k}w@r}2m{t{x:^NSk~zD7k i<&^!|םSN@@@Nֻߛߢ_VS{+^yZ󔷹i@+ jé A l5\hnaQ9Y=fخ _EEZޔ VM$_+f(C;4GN^B2kiœ7E2SU<ӴX}EvW6u|S+&v{4/++f2k֐'9|\fLʼ(QZ_7y'km53h1tL5EZ7Cejkմ-JWTɓ-ӗmcm~NP̠~sw"XrW&8dmcyI ) ̶K+0÷Isoл5% _k0ǥeBL'-1?e}'ioo:}uSzFڪ=ݒe  Iʌ5ϊg||jUgҶ[YQ.뵰h?ye/˿?q2G4H_YYם^qY@ ;cm^M3ust2Lf[CZ6l8f-2òul5|l^.-K=3|mm,X42esݘW,YzgXa>Sn̜uIv~͑  9 /۴0_Ǵ$@M7RZLOʑl;|h@jߩ(K&h7rx~q@bd  $ X.(lA@xt;o]'MSGC,w"Rzd#+ ph֖5:nz==84 GA@@@ ,pGϹ(  @ Le4fW! kX-3;Kq)pm@`Kq-v}'   D X. " WijJ@@@@ ڒSp@@@@@@#ԘT@@@@@@ ;mG@@@@@@#ԘT@@@@@@ ;mG@@@@@@#ԘT@@@@@T /hNu~4~ђw.2@Z@@@@rF8Xͭfޞ3M 'NPIi>k)qD`Y^Jd:f+v_2#Q@@@@82OsEkUYA5iye%= ڙ dyFuwf8~6㮾ZSYwG    {'`Zeˑ@17;`𮰰|2BJVA2q ,@72S*.*Rkcͯb7(    W l^3?ťȣ^1\]]ӄf=o,(ȏٗgV D@ 442`W@@@@H&`Fǂ#zcz%e@W<wUUY`/@@@@@z"0wC Ȓ‚      @ n(      Gikj      rq(       pw|ښ"     n      p|      9,@.!     wǧ)      @ ơh      Gikj      rq(       pw|ښ"     n      p|      9,@.!     wǧ)      @ ơh      Gikj      rq(      к\L@IENDB`
PNG  IHDRZ+ iCCPICC ProfileHWXS[R -)wH H! JbG\ *]Qp-@Eee],Pyo9sNΝlFU|IL#2Fl('**@.nB[(l$u*'DAqr >@zYy<Kp kJp [Kmb f@t$tGIN 'ͅ>99+!6OO|dǰ,l3[rţkFGKby `*GA|ϕK qp~#9 PeA1C#lt.G#!r*̍G r?2x!' I@ + =T ㉞)G@q(+&L>aQ_ĨP-l 4a`ƅrҵ`-``\,'J 8`\ N -[%ǪyAѲ<cE1s{. *V GA8 İ\ -l$kFg$HGhlt ˘ViB,\=pd总nʣ`b bΆMF{NE07n# BO^V33dʣK>GmpS =!g#alNP=Coq= ,,R~1}#.~Ėa)"vkL֊u`$xH+ath),?jc`o%fH^ܼ9B~zF<fcktw@˶7 鞍0.} *ӿFy 7kX8 e:v 3ԁF` "A,H3`3@< A)(zl;Apen{. 0ށaAH #Z>bX!+ H4 #%H9RlFv ȯrF H?b(UGuQStah,:MG"]nDkнh3z @{0E`6+EbX&`eX%V5bmw`Gq&nk39x>_of ~ A`Ep' YRB%a70,|oD"hFte18D<I&>&H$-ɓIb HM>"Y@$'br%y8*yXAED]!R0Ga.6+ } UœKɤ,l4RRS(***)NQ+.Rܨ_bGՒGFSWRk'woh4)EKViiiJJ!J\JUJJW^*+(((P.RT>|Ey@EATO@J-!Ujj =ULԸj%j;N=ct#C_BE?KS'gSTPӘ1[JFc2BٌUOt[>qq5k4yeM74?i1hh=Ƶ-hҮ>=0^}xAu,uu ݤ{Zw@[w\__BӇ<416046433,6l2|`D1r5J3Zgn4ho<xq]W &Mޛ&.5m1}nibVd`vߜfmo^c~݂hjeբt̰bZ9[Zu[ݬ5ַl6>66 6 pbۗ'$OX3vNvv٫ه۷ٿvt8T9\w9:.tlu|5j"obNtNKڝ88 ]]R\rUwr]zGwgyxdyx>loҮI= =ٞ;<{^)^۽z 5ޏXF,.k7뙏O^vBþ;6< 4 Ll r t2&Vn'>d0%t~0jXLGk'ߏ0DDȐȵ̢~B5jhyc13cļ]{/<N?->}BEBOIɤCS7iZ鴛ͦϞ~qf*d<BHIHٓɮanIq6p^pYu~',3"yg ʌ3UfpYYY# M9䜔#5AL^<Ҽ|0n".j-Pǜ'qoWaUYV-1r9ϊ~mg0o>w,@.h_hdaߢEu)^lW\QvI’ݒE% TTXzkmeeoZ[vܮ ΊK?瑕i+;W9^M\-X}s Պk'm^\W/VNܶAgcMƛVo9c*ߪ-:[oyj5qmƴr'qgΧwڻwEםwߣgU n;mo>}6;M~?~M恰]6290pY3<y%5H6ÿV{h1cS9QtbdɁSlw:3St ;{\}ΟyEG.^j|éNtlr˭{RWO]vz7"ntߌyִ[=ɾn{=PyPPa?,s׿Q̣{9_<=WϏw1y/JTsKb18Jj7ZojN|>5]λe>}txS§gó>>obk#9##yl![z`Cx] - (^RAdE) gRq@"6cYutkr9:|Q ad.6GF|d'"<o Q k pHYs%%IR$@IDATxypT7B-!}ߐ"f-vlO7Ln5u5Un[ykf*7dc8`0"$B}AB-%tP4},9i9<߁ (@ P(@ P(@ P(4wfN P(@ P(@ P(@  ܱ!P(@ P(@ P(@ P`0p .@ P(@ P(@ P(@(@ P(@ P(@ P( [E(@ P(@ P(@ Pwl(@ P(@ P(@ PX -"P(@ P(@ P(@ P; P(@ P(@ P(@ ,E`(@ P(@ P(@ P((@ P(@ P(@ PePai <Q(@ P(@ ,GX,(@E`Ef6(@ P(@ P(@ PK=Y!KrXL P(@ P(B#+f P3&Sr}JjjP(@ P(@gK`|l٪0kK PK钆;(@ P(@ P(@ P(x -5s(@ P(@ P(@ PK\p(@ P(@ P(@ POųfN(@ P(@ P(@ Pp)(@ P(@ P(}f1==i[s=Uz5u.+[de_?,F P(@ P(@ ,#i|75)Vyd333z1 jOd({|o(@ P(@ P(@7^v}7U~~dj;[Ǐq=OÇXk f["b3+ P`QnQL(@ P(@ P(@]@ D.)) 7nIׇY.{Ob`;)S^`%X!"BS`x,53(@ P(@K`j1Vš5k䠝<Iob{5-rvH`~:<-੮?{=՗w Abz6b?N 0؂}xc!LbpeƐl?!?7qb)ڒĕ>*lbz6"D۳-x:[̸lD:JsŽ#Jg&5Yī0L(@ P(เT۰aŐRW*(,, #7"%;!Fiy0<sq5BϯzkzuNJ^enW?>$.[%gn ,r{u|ë?¤ [-<Tξ^ԥ}_GTv}<.@8)EAv&ƒfgF*|kD(G%(!e2|6!&%hGm>*`8y`-?7u>KɺrqK*ɤb$@hmu z :{x<ۡT5#jwI82m\ ˤC18G{K4g-(@ P(@e.௛NaE JY^y r!iu2jubB\z2"֑f}RYk' IsوTl@K۱w:,8sD`B&LL+ei¾/5G ֬ J'#`kD7R4b Gɾx_QѫNe{{9h'T7%` YHEVw\\mzWaGfI"`x%_b˃9]]e,&> rWܜW<65@|"?S(@ PsI3yDO;_S*zwы,)b1E$bHJǢE9"<RzޟvplLz^A;D~CXn' y|QwvT^R Exp7~n2(9._ npwZ{0dFpxR27=2w`\l po0=JA7m(_[D1F6vٍV6 >! JD9e?k(17 h+s48}yg8݉ KU}U@ 6D2dcgaULN P(@ PX"–P{Pm4vlFZv)K{óeaK{Rg<@边K˰d/G0\3#bq' 9gT;pqy?/7Ld&:-(gtW*N++*5; "pgUQEȒ'#%=)g$!DN۟폱%;۫qhzu,Uܝwh;b1_-94֦߮YA;[>rwBP} {BQrG{X[z3(@ P(@ <n1;*Ef#'Eɶ4\+>8_{ˏiݳ|Q촓\:˞\sx<~fZ iƅx-p' s>كg#75 '&cz;PYo6H5 rϒzt"$q!4Wک[kiFm\}mi&FZ.֡>ܮǀZ{ mv iU:OB+bSr.b@qhF!b{44A2 !1`bGjn"CE=3 uA}spdP)_.I g&6ӣhiвzš !b.@Sm\ {׍x75-/8ߛʟ)C\}[±)G"'"h /co%|.Z m㓐+ߕY⅔ùB[v8 ` [xjn3٢>T؊Vg=bEO{-r^]Fkuɩptzڡ-=%[P{V=L[q;>J,:(@ P(@ P`q\WfTEf!Kb5@{=,9RĨ:⹤x&92WL[$ujZ yS}v)Gσ-]hV|;?'8N<UObdn8_K&c{aQ<q,ŧ!1Lz5VmWdfofCBz'=l; 5,RlZݤxdd {`=څ}߿q"aL ڕ\X7>)l 9TQ/w(qMX/ lpѤc#Q##Jbň].|*O44މt/N(Cyi}}պ# Z$pq=Jʑtzb\:1N B[Ӎ)m<*]e| *Nz \91tŌ/"rypz t#cR!-;6n[6덕d;McW:sCxH i\E/ڜzE>["6co7 ck.6?yucz)ޡ ?Esn&Zu/!<>H3]uok(ߎK8ZqSõ.j{KA;xps)EF, S[#òpgpMU{3u|sdMփS0Ī|/ڮE<ʓ*? 3ZRR4xPSΎ4yoxNVZ]0w.G\)\E{V;(@ P(@ ,?e9}PW"s ǀ5ܩQu*MM`ka:ؽgN|!U<ajU"ⱞX8TIWJP}Wħ{^-_l_0$qZP[KN34ܲWo{It`_ނ3DAu8ƗYKt $HuuPfC9FRx*C3>Hzx6xp}òw{X\l{pվ7tΕ |tڠ<Fen/6p~/NkۨOkZgI7jt^>J^.v3Mљx?@.puevC#7;h$/zzIJ^oLqk8%񞍗x;KJT8SoQ]VWu,g[M։W z_w=N Ƕ?|ovN96g+sj$C{- tHCl~5㠝|HsK?ƋE"hda2 m]Jp))Ym-^EO(u?RguO 3i}ìR\*=#G áeHF] t@fkx(hg?;UmA;iÔ/|<Ӵܓ` H P(@ PZ@ ,{'>oYl/bpPtAaN>Ԕ}o-+<1h'xZ{*r}bOsq9 vK`o(+-JAA%cA{N;U>i7>sH;oZaՁ$፿+׶<yx~.&eUƄmm&|rt>!"Y*=$::>x;TR|qs!y_6g?Z}ZeuJg.>]-E9[PGjZϗ餳P$l &mvp6ٮ<90DȞT5bMz1//G)yYH"{H-UTC1lJy^ Db4وQk{xڄgo 9hj1 Zģu+`ADAJu}βPyL%j[&e!z>%eg V̩L_ەT{SYTpPRV/r^FMFk_#.^)|d|݉l{y Kԣm+)5> ttMZiĀ$MJAhy,+ih;.\AChqb(k, O߁]%8 ~ͣ8Nx_TP26x`H1;A\Amc#IƦ(˳3G8iO/_ '8yg".9iǽQӴb *TacB.$J;pkft#;Ԟ_NkROS(@ PA@tgKgV>niEWW7Zܝ*z\Aƥg;=Q'ԊyQAņ^LŸ϶,yZB^o'\3WQ]_/wg;`pti:1eg]ơ&:w{%F&@Rp=R[8՛E"QT gnž *C%qv拟[# n}^:SJ[E%jŏֈ!y7X[2jjrO_]gUd-Rۺ};vYJQ?z8lP;#h$RwÁaIȰk q<?xIJ=41^8%cݨ;;ņoŗUEh:ǁb/g>=Rswy%-tSR\çwEcJSϢ["TDw{xw/]CS pQ\^tۿۻ_N/_Cb5Zm Of%26~tk294No'~*0$:g\y7q\؅9R>#JM4p}>L]CgAHRYb-[ R5MUf %>f<ԊJwFh&rѝ<kz?R`X^p_҆>1XaEsspMzmgM{oL+RFqP1cz͏ޓrZVY s4Fi]O⾘h>4{n~FqNnWWDRb/Ζ)D_*s^Wl\(@ P(@ P`E <'JrrAwAK+.TT!խ0&Ku=ag=#xʔO19WS{c,yXۉ1gZ8y+}ׁk{AQUؗ[Wq\/8_j(>}iۍujA;%N1ڋE,%RfSCGIq1`^Oݽ{u$;C x8` x St~{sCE{;7t7x^ޜ(wr:iNvd"c5;Sz||L⓯/]MexGt8>#~/^_ )ZnaZ>Ԩ]a<XzШF0,EK(Ғ)qjA;83R6"fW|W4vnyϧET֓ȡ4AHJCپ#(1&5h?xO>Sx0{Qvb8J]N'zLuڼs1+!H…ԏ6J1YNZFѬZ=%5v\]p)n\S?ljOԾ"c?l닝"y-h˲S @|;Db :m_o\5nW1Ѵ|X ^h"޽jeB P(@ PXD?5_;/d`{\8mCu1xF.FYRRFR;|0h'~RZ;q9tSjjW 㐔h HGߨQQQqM{֮zuiۍbxUPUX/FpCT{(~+b*ǿ2c`T1}!AwՕZN)xt.TR|u"S_sհUY|9}!1퓥紼%8 )bjSO j{s͝'OηED&m=knh] ||Dh cjB`` @ N<f{v,~v s& S50$WlE0P Гh,jG.>/7q!& FTT<([#ytW4λ:3Z$$z  -װZܦ%VlN1Ӹ=ڵJEC/fKԍgݒl$p5wб;S@Xf2CP%+ ].lDK6$ȽZ>y/v~rLhӺOkc&ׇ~Pz%7B3~UlK}* (@ P(@ <ezuQ>oӐXD$:L# öe9>8]?jC.cZ1"g<UI!R>/]Joyۉ+dž%]j}cҨѶqغf!-f[#ҷEw{s;<OݽЏ6UR?aqOy'Qv^ץ/ڛX=ЕIr8s*.:;HlFsk'K&2dn5 ~jxޒ'eKI$rƁ/A 5e74GgI'U_ L/Һm>T<sQ^̸&;bSEwMؖv#)?qNώA>66Iur if/AB&mه[£"8{O HM|^mҋGjfk\ ,^jg1#E`VD\\Oi~~0c^ }]^aܽ'#)&+%/ވZɝ^}z"Ký(@ P(@,bnJeO&!=9D5R1T]=*$~C+#I} B:g xNf'-8G5Uy`X[.+jbJxn_Ɔmi)[,h~_V̳l_ާsmQ]..o^?5'gzZyp8Rw "p' .S?L;8-T_ MJ9o_?}6.n\ ^ہIr(x^zFeSx<I01,<y{އ{0XS#љjꭌz!n㍗A|Rܹ>y+ 6HBY&& 99<؇Gλi(KOEŔ iJ;WKI3-k?m "c֡smX`~}޶D1oϣe(Oo"[@s! Zqc5V]5=wzVVu (@ P( T..TWK=W]>R<xqHLM;y1yKl')DۦP SH̷,sD|>.Ȉ 9vαm1Sb 4ybO߼ZEhUѼ| ={!uLy[7L6 n! ,+ql~7SN,ln/M/¥hv-͝?Ԣ?r|s'Ɗt&)57]Yy))؟=_ꪭYú Pf#|􄢮*:g3ޡ>7aC|$dnU.bUKW0D ]8,#Opq8{pF^Tt\;+힗C-hVF 2]+bT(;immcQՎ{}J‚ۿow+R P(@ Px,M1 k.{ ԟAez:K9[WI,m;q]:?uFDeďcA,$++XZk񒖰d$&"5#ކ(zsQ0LOm9^_S$Du`6:y.]1jyKCa2)q ;NҶQij8)% KIȰϮvv!Ӟ!/9ix-D >M/^+,psNT"Ƃ#/2cxH)w4R \&RE.\V;±i~ڽKc{Iœ O5瑋3,=E.~)re1P)wa;7 V7mK62rH0jN~?Gڤ‘.3^ܯHgd"3I 7zݺ[hP8 N,꜉"mFRRx!tl,> *dkl#sԗZ?7* %xq,M`$w}y={L(@ P|!HTwNMwR/(zA4y$G\||u>/e;FC2!`a)6.v3ʆPDE醔ǩbeЌK8pY9R=)\,~JIwS]^=;SW]G]D_]?}H֞]eVⳑĐ^H!9>׷A%&<MNYzn3g;gNӘPpM!o, ;\4&</j"fz;gg/^ʗQz?O?zۓ+3;"Wb֢ObAJWzۍbxи!ewsZu M݆R#ے[ b[_|?;xO^ܗ+[$Iʉ}hՒQwڔ[\8p^nGYz[\Ak{;\ΩtGC]CrxxVSVBXQ?ˡg VOH|ҟ8dn=WwC1Aۻ4C zMrү9(@ P(@ |SeA * kv)vJ-TzYs: W=y^-Z}ASOZvcʥ.y='َ-{oz v(x?O8"?>Ldߢvk"7*rx_TjSk9y*t ŁJLFJJ"Bl= |uZuI)݉=qdTgN*Z^CS-iJي}q3ӊfyiuD<?\:NMP嶜o!z#&f6< :骺<{@+'\Es}#%3aLp=Z]+~4nἐڵ&l΋tBSҏyMhǸ^#`2ĭM!n'gJ*{?UѧA>&%9v 1{kP\9o=D[6 1-ʗ0nҴ]:K~Cw"C OAnzko(?eHC^P-ϓuV]4l %6y&F$~"IQ"\/hs[Σ= ;Rl'`OF4DmOx<v 0ϟuu^ZA+.<(@ PʺFl)= K~/(݈smHA~~Ow/?/}z.Wjd4µ ۞y'm~n4V Ct}0طM[庆a[ 40iY؞<ϱ7ǃj$)ŏ_3}x Xțjf1q, _96$]DSB5<_]"R`Dc[?EtM-ڇzdnފ$%"B7k]Ugۛŏ,ҿڂ-. q _N\AԡE{Dl߫:}iQt;l1I"$'!~.I7Y@ۚߠ 142[p"+?BRf2,X'N:𙆮ƘZӎ'b[A;mWg*p_&\ۅg. ]Hc%-~sUWmA&)Ax,z6 "CJ ed\KSܩpY"ۑazoq)`vO5S>y!<EKĵ,1(!Oj.f@{QW1ds$b IM.}L݉Fą'qeVx_JI~s[)V~eu'u P(@ PxjSB23_Wg7{gS"^.嗧x)9>_U]yۉa,G3\F<ϫkqú;l>j7."%cN K_/}EmWpQɶR߂;J%_P^3ŸOme k!dدiFA2S.| G=I>WVIluGk/Bݱ^u~t ܸ;ERFUjZX'E_Kb޺u>D휮t/kwM.{p #&&D+;ϓx&xvv&C|p^?؈MjEвvvV_Zg2>էժ<|^I v:=GNj_xޚF 8~& ݀0o^_V)}yuGNQ4CZâůFypuNCkG'ZNUjE_%<<\7tzT/Z|#|[kiJkQ[wH\.I~҅S_U7^;qopHv*2|H0j˓EYf/Ce]層Ol{p8ryфO?>=-/e=vT|_SP7ۿt<=s(@ P??[XѣG>XlOo|ioD}\,h^LJ@{;B^UCg>{/Brv{ ytL9ѯ7qb޻tƥӟ+jUCw5~뿢vjuȌwRپފĝImq/'^kzaFḎ? ur`E}c~ORyN >0ٰ]~ȡ$h#* NCe/ޟ{~LHF RVt*'|xpO<`\ī|iV Z'o^؍023U3 K>t[tnXMIF601ԃ!e,"ZE5xh@iQ+D?^~a25zm}s(|vy%pd&` L/֊>18%>ŗ;f]D9{Ycuǖ3<^Y: P(@ P.ơgjZ n333Cpp?22w]c(pWm|Qeq. ,eĸ ,dkXdy 18O ?-v/u1BVF`B|#<y+Bt8"agr\w$h}hGWO_]?i:zaSn {!oOW2ώz+3؃zZ}fԊJ[z۽\>4R/ QE,WFSxyrxRݘ?;v-'Db&{N@tLڿZv]rs(@ P& \t]tuuauHHVC ^7b([[Q-^K,eVUȖP~FK)lډìnNJ}wTkA=i.EO]~T;Woq?!,A;XpkvR)Ϳv8o<!&ېyx㇁)zwZzm83Pm7Ҏ(@ P(@ P`''a}!}5BDS wҸ>/Qcl]Id>Ycİ"hqɌ1YQmԆ%*]*8GX`0{~7{+2Wi+siU.!0tx<S0Ťax.}pM]H P(@ PxżC ,,r8i7iN1xDD~1#rNtgg&ݽ9rL/å'f)⓰y[ +1TӋ?J䲛Noc{2ܹ,18P1"8FE]2( 4B[ ᳫ+7ooo)B P(@ P+Wsܹv&N8O|'upcbA.+S;-!'ʊ1;AK?nܪŹ l}P` Dn? Xv q /A5[toet( E :"SVz@(cRe"Q(@ PxFKCY9{Nt255iE-vm` {EbJx8T3uYY P` B P(@ P4ulx'R.v⽦`B ,S4a2W P(@ P(@ P(@ xC;o(2 P(@ P(@ P(@ x(<(@ P(@ P(@ P`L(@ P(@ P(@ P | 3ҖA)X P(@ P(@ P(@O=K P(@ P(@ P(@/ ǝ "V5۵AkuP(@ P(@ SX(@ 0pSKx̉(@ P(@ P(@ BCeBiR(@ P(@ P(@ PM(@ P(@ P(@ PwPe(@ P(@ P(@ PpS;7x8(@ P(@ P(@ P|!/T&(@ P(@ P(@ P`M0N P(@ P(@ P(@_0p UI P(@ P(@ P(@7sS(@ P(@ P(@ P BiR(@ P(@ P(@ PM(@ P(@ P(@ PwPe(@ P(@ P(@ PpS;7x8(@ P(@ P(@ P|!/T&(@ P(@ P(@ P`M0N P(@ P(@ P(@_0p UI P(@ P(@ P(@7sS(@ P(@ P(@ P BiR(@ P(@ P(@ PM(@ P(@ P(@ PwPe(@ Po@IDAT(@ P(@ PpS;7x8(@ P(@ P(@ P|!Аx X9aN+C7> (@ P(@ P( w@ P(@ P(@ P(@XwJ"i.>s]W)%spuھjt3g P(@ P(@gS`Iw |ex=ud )@ P(@ P(@ Pp[`Iw_3h5 +\@aJugSPW7ϑήc(@ P(@ P(@8ǝf<(@ P(@ P(@ P^`L(@ P(@ P(@ P 0pϠ(@ P(@ P(@ P: F@/'%Gb*(@ P(@ P(@g[`PXDث2~+r3k#6i`lgnޕK$> ƯO6-Zḧ(@ P(@ P(@EXс\ؔuFRVDfv/mi7;Jbm#䠝t@Dzq<ӗ(@ P(@ P(@ <u+4pQ61!-/GPqs!h7X M?V16{P.4% o3V,}Y (@ P(@ P(@ x ,I@ҾCݝ>_P0#tۀ[0P=Y둨~>?V{}EL(F|ӱl{:;יv Y1& P(@ P(@ PV 8:嗷ѣ 'o߀;r|a{w ٪cA=tU}jW'gS63#&3\]C) o07b[T8ք>q K4rqH P(@ P(@ Pϐ=ZFa6's;wp F"/f Dvn,bЉl٩F s}ǥe$#>2D""dB坻)ШHZ5 -%kʰ"uX+tܮ cKv$׊^i33Cjvw*ՔZ/DW])8 1Ar"#Rc11 :\@oC5pƆPXШ(d'a?&1<8aC7PGS$<Y2t>XP%Qze["p$Y /+оD !aٖΤë?A0XjqB[` P(@ P(@ P ]hV26*A;;-)HE|:DEHƀ(2%r(vdz#\mFfe/n_db: M(·';., a>b[r<k{=Dvx Ram/7bߎ$y}mGZoԡ+ {rqj2.-6]#gۏxԹzi:Ck KPdEBYQ*.T=}6#yjRy}R\_[)H{DQ0dl.T?r 9j&J6==e/ߔ /2|Sy-F|G \(@ P(@ P(@ ^`E=\XP9۾2+.eԕnCZ)n&|s>9 3u\l7>]l5E'Ó^6rG[2HwPލ뷋Cmĸ;MԽӎ03A+cVrcN_ ħie0rx; `CaCon^E >g.֖P{-KZbmd%J=ݤ%z*m[t__N}S(@ P(@ P(`XQp[Wg.Cv\<vqaE/*M =w -7;/ j.zs/lD8< ٘-Yf|uG)+ $dlZuŘs#'lHN}^lFeqR~&tLDŽRZ6vbž%GF(4^\=\s𚽎sRcu.o$q \q p7Z[ˋá}pSK>ouDkbO P(@ P(@ P^XQikKڶX$* ]Cy`gNh'قoyb^jQqx 8ygb:p؂gkub<iNHWFY sbxKZn|%^"YqEiVwR{ F7f{ZAhf>TOk[Y뫫F(?On $vF!_^-M"Wѭn_ EnI6`p9~h蚡^n#jF RyH -XpOh\,8&[z8 dDLaѠ"#?6gW=FCQ5QM⚮ujo>Y-,>QX?q '0ہz,U *wzŧ!1L*o5l޽%[^tMH=` }(&ˬ}=(@ P(@ P( "J궧|%pnA/}ů7#Wp$E=K{.h=o3 (;El5~Cb78Va/U-ڪ><ji7D=wn;3 Q َr`5p3 =A;%kˍ+Z-9tTv9/Ѵ{pJ>:}MIn{FK"w޳ | xNsT:3._r܂_W{oe˱|/ľ!>hVkKTa}H>j$Y ֦Z.4މt!?Q^ڄs_AA'[0zIt`_g,9+Hnt[֫sk>Gx}_) աquT>쨿ow葫;(@ P(@ P < [*֋H{8`SYURo-j(mYCRsY/|Ô:i!?. B pW_ B-lʿ{}pz +(.~!4-Z.aKmsO&d/7T GgzQ!͘UېP"?<G8s_TiR|Z.wrҸXd8Zc>RA;F{YB\omjZc+}]a?hP{e-Ԭх134+Ȳm@V+&Rڐ_7f?=̅(@ P(@ PX^+*p3͇W=ts}24g#EWyͯ:=oїeJFr/RƋQJlܨڦϵb6 xA̹JܔIC(nݾ;sD<Dd6|zE< -.}"zc1ia=┹c>v֞[8WQ1 ȍE#UA$`,zމy8d$١Q%ɶjm1{rN544b*p-nQ}u;К"0'zfx2{flܑ[P 5Թ˸؃qKz;TVzNyixxyQY ډ{C!c˶awMؓ\sb(@ P(@ P ܵybEB;Ѳzk>&;8||̆tЉ.@i=nt;m5LXz>cL2!9Z-E[wb>4o,{s$4$9Q4+qJF^~/o_"pe?&wk6-MߏhFw~t6#MS_ߨsYF|]KPP.ߗOÝvw"01 ,3-VCKk .NLP;;(oŗ UgXH.OĆP\EPCD{Lm/fz/^gDw>մN|)!Q{wQ"N@7ñ(@ P(@ P,1}:hB!,)[6],y&^[3Qz?%\΄(1w(S_a<4>l JږuS>CAdL:|Zȇi?s'cW_!Fb\FW5F"-A+\e-: HV#uHIHVS̙.y(Ғ-8aƷUuh7zV<373%&ej哆ɴ4hRgqi5ډt8>#~/^FÏZnL㐔h JuQsٰTT\S*y^i.OO]իrZeړG[qTv/3(@ P(@ P (!,e>Ѕ[)ȓva(ޒs N '7uƽsO?HN¥uP%(/1d瑬y,ho" فNÙ[M}2`OvhJω7g{ Ov9.;>+T.>Z>S|ԣI $Y//TGO1 ^ Ģj.F1_FR7lS`f47u"r.S?L搸y2g7Ph cjB`` PGp.Gh/&e4؉n/a5{KMn٬xN<sZ: s.{/twsб (@ P(@ P,>z]ܸӇ1rq#S;v K3ՠƺq玭\[ʓlAY(EE֛Nj;ak*]%rC( K{TͅxqȨtSD1<_vE7-/LF E-b8L%uk.=NⱷXQ9R{ jү7kڅTڵF8ô~#RdF.+A 9ՔuIŦ"mNh$-P;uT6ݢ.S&ӊf]>l5zl/ŻOw]<j_Ɔmi)[,h~_V<93(@ P(@ Pf r6jRb=eQu]GX+@nfC躚6ګsԞ{w!Jl3V!#/Jo1LطvĠ|L/36 Do 0IAtTP4NT%Kܚ9yo"'+DcXo> j`(cZ*,=N1Ѡ>}z_# y<ZVsJ*~Ԯzp4g9 `B8?[ 5k˲龅֞=NeA0Cf46Z'w\g࠘PfeSN`/ )qs#smPC.ɭɝzi\kOһ<p>1ZڊQHG_26##&8ڵp(@ P(@ PX+.p<7Ze( غC\6UWMp|vH D,d pܣ ˟|E.<e 38_D DSi*ؖ,^ۻ}~}޾zUwZ^ْiI3E$DDD$NL1tI>3tmؓanaj(3OAW=cnSS:HPةO%ͽ\LcMg?\Ƙh6ơ*ٿZSgEyEytʴ/$IjPY@OpAُѱCs= JC F oDf /VJeG8Ő)bA ҳqss:2ͫ;Z[lzA\]6,Ϫ뮹/Y٭rvݰ'% @l`.f6kK!05r8ªL*axISti-@iC vD<EKXQ(@ P(@ Pp s0}>M.<޹kU;~k֤XC|v>57X}*ǖa'̉HIzKE]4̋'1\8}҈ g _\?~t65׾~]j9,qϢ^lUo3_^lFMçX'? /ڦ2O>>EєfKyr2ߩFZ (;o鄣ʰsdffWåӵcX<;4#@jљR P4Ĉ:DfiZ"|AJP]0VRS&^It%km5PnN/ƑLsC8X6|"GDewvdF;qta_9(,ѯskxee7>::nZ8pxy*rD$EYr66Ў{w~n+Sn P(@ P(@ P`EYr>{7ܽ[-(ȏGB,̈mݰϠ@\o0}>K_D`s {HTi"^KM5Gr4 4%N_:u72t$z֔ҋCY"uR+La)J{]=WJJ"avR1bڢ֎wہP$3&5t )<kJM(>j3_x27FK!:ԙz4ޗ҉9V=p!.Z hc{!N3k-q*c5)[ZzNv `ߋWJ8b1~~Ghiڃ ɘ=8duz9E$dA l#'{=Ke ]Wl8&~prֹ_Wc6ErY ԛ(ͳ5/(;;OxfP\C P(@ P(@ R`U7ܙ`&(^(MBD2aϚoW/֓TyX>=~hi۞θ'X_n*ۿGo}۵˨CM G#no@4B£`H38۪-4#]%(/p?Nچijc}2Y?fuEUVƽȗ{XYHDѶm02Eu[ܹŜ~ ͷ!qϳ,JW204ڙ-vۦ]fK—.=-!&0T6`hvP{P͓< >Ascog[=a_bg|Z.z >~qJ-:8G=x4&z)!j4c.4E(/L7b >/R(@ P(@ P~X w~[)`0 _o~=;<#s-l~-Lxep?~ |(SƢ7x9@zG1l')#~넯|<v͒6jُ S GMǺ'h;x3D,2(}:}quzlj^>܍U76s#_[6s*Fˇܹsϙ{E:4Xr4wIˑ[ HUVE*TO%ye,U`!Fn`:ɎWn8<qp2sN{ƣtϳeᾚ/Do<c~;.(@ P(@ PVV (ݘ+$03mzYXX6J rrI`fQIԴ$!?+:&ݞ<83q-MchAQOO؆jq8w>G AQH<$˼hO(Oibv[+jrj7!Q,=F1m1c=b`HD/7%XavCf-[ . ` 6s*11 $*E)>9]ĈUNCf A:^g199ݹ_r$JqUwH܍riBzڄ|hn2v vyzx+(XQј*OʰRp(@ P(@ P(́G\i!16ןfs:K-iKo^S;T3J{4X-cEh{؁n'kDT b079̍ FGgdFhQ[??RX9D~9PL<D׀y_6Y66KgŐA}$}\fwG'&|<0|'7: 7\qSKqh,܍kQ,z_ϊPCq84Mqyj 7(@ P(@ PS*5b9. sӏAtlFC(,4ܭM;*pJ2?~aۇ3sa8*Ŀuy*(@ P(@ PX-|jSKs|d ҋ(@gy֦PT^=bxd`Gv}M>o[2RqS(@ P(@ P p9(xwq qP[xJsO]Ņ6tG P(@ P(@ <]l{7KK Pk/G1u8և*\gy-+k*"P(@ P(@ P%6ܹō)@ P@+UsoWtb c079`ru=M9]](@ P(@ PXCl[C;E(/H/Nw=(@ P(@ P]~J&\\w۸xːjźp!ֲHZ<1=6 8C 8%=x\i5\wzL A P(@ P(@!k~qƺQ1Y jD@Rp^q5JFD P(@ P(@ 7Qj3fjOOg)@ P(@ P(@ P F$.-= P(@ P(@ P(@ <l{*v3 I P(@ P(@ P(n )Jd(@ P(@ P(@ P(@\|<|=\&{y(@ P(@ P(@ P^`Ý(@ P(@ P(@ P<`Ý O P(@ P(@ P(@/ (@ P(@ P(@ P SA(@ P(@ P(@ PpDFA P(@ P(@ P(@Op S(@ P(@ P(@ P l"(@ P(@ P(@ PlT)@ P(@ P(@ P(6yQP(@ P(@ P(@ PSF(r+S(@ P(@ P(@CsksGa(@ P(@ P(@ P(e2((e%(@ P(@ P('hdgy!^uwlqqOܜ^1rr0S(@ P(@ P(@ P`ؘ('nxt xzO R(@ P(@ P(@ (ROh_mffRo7OR,o`hYZ6}6-K (@ P(@ P(@ P n 7/p_~MW|I;i@6.b(@ P(@ P(@ Pi'M3h'I7=3#ʍwLdž9(@ P(@ P(@ PX-Nk ) S0? P(@ P(@ P(@ xA w^@d(@ P(@ P(@ PT w 2<(@ P(@ P(@ P ;/ 2 P(@ P(@ P(@ x*;[D$%F.g P{Q%D(@ P{:+]1& ^lj(@ PXjrMNxeR bB 6Toy1((@ x[E|a"⑆ y;K؂lDG L}\h\>m8~b"0{.WNG#:iz [#Ͽqg;G#5(ΩaZ;9҇Nݼ{/]轿0#8Zdn qy<Gwc#&\/{d'c(@ PORp_B!<ݗ?[[Q8ڷp0e=N,͘!7Ik Pxp/23:Yb&(@ P"9#Sn83 Zzθ5:\jt DVH$eg#Vdl*Ȱrgb7#Ř(6EwxcÝt^ۏEQa1blv4W]e#<O&!_\Ȁ#.ڴl;k\u<ߑ垥fX5ؾ)G^Uʳ.d`,X-Hƣ9{`:>olW P(@pEH w]HnAad%k&4XiKGF;)O}r' K9G Pn D,By<ߋ™W16L(om;&h*S3J񬔀%I_2GH!7S ǢWW_EO]x#JzEjG+qelEFZ\Xf 8Zdޗ%bq1­Ʊ%Ǫ8 ADaB\0(^5=7 P(@  Qri㷠"j4WiM{g>GlBUhf䌋V@xt< R1eg74?|{e 5)X=h\U w PkJq4UHW [;029痩= ȡ>|tVs?5oUlFn ޫEYSTk186uHFV7 W^)ə#<NZ0+-KwP وdutRtĞ5.^[o1 P(@oζ%8]ܳ ]i{p+ǃ0((@ '0`ij3Kv=\Jv FǞ5lg P)p|YFilSoq檩QNYV{({񯱷+XTTpgt{>2rlJ|14)OX5ڍ\go9*`<y9pZS_=P%>;EQ-ۼ&'_HOWtxsl3(@ P-p w9'-w}a*"Z$l AP:qg,z;p]'D'bX33օnkBX&9,sːrs8]][9"f .ڔkDS$ 3<LBXћs7^\\F J KaHig'Uw iO7i)Vb,xbHDhhwiljI鎠MӜߌ[asR,6,Π>[Li;sLGrzZ.ǹ1_E|[N T[Ҿ\eZiqVt oj=Udҗp#S ?;O.,=hy2L到.ǢܘM.u>-%Q)9Ɉ ݀u}4յz߁uϫߴSD}6UELt.*٩X/6Ksolfn&`^/C)i8~OݲM}N~ָ_Yq[,Kqzp<Ą8͎au玥sb,GRǗhYؒ9CfҺvvJKY$:qawQ<>پ;y޵ &>Gn-BPc>(swm7Ug@QDP4)Cj Ί_Z?8YnZ&DvKwa[O!~׈iisoEγ\=8:%ίLW9hx6:I?-:ۂ= {v?mi.(@ PXh%5'q8(~"J :@F #tqpO.}چH7}M9XR~qj<_w9;4EͰ9=ط4+z.؇AC=[WNw/ŜZ< t\g_ᢍ%U!sc&'unr+ -=4Lg3]qcP` Fpsp[2ycI҆ݏĵ<z%mN?[ˎ~hyfu ?Rެp@Li;GK8)W{f qSÝhD;|<$tY冲CqO- v V 9Nm9N"ʹ͇NlAz<kh_^݃ awlg(؏-eBY]| 'ʍG x}9{q??ʇǒHMI!MQN7꯻n /uzWyj@9WN~d&ʟm}"T^J;c%K߃U f[!y7?A:>zjO~^,4qLR3uՌʵT=V96}p7ȭE4{W$'_rl$"!U8t*=j$0r)! w?Xw'J~o?׊xa;n~XN)&IJgp)*0}mA>cZS(@ O&A ljJndl)pܣ.BojlH4כR_whg>ܐ?3k+!gzVʫAK2i;hgEǏ_4_y]2>7ˏl׬4EJ2x?^yM+W_܉=7ˏ7 _k7ڙ҉@NKxh({oh* Ƴ0G:X3<R>F;Ӗq"}=EԻ][2^yF2Y7I/7~"zܘCTQcCN"\<ԟ촸L95oN874ڙrT( }Mb{{/S/]٩2En hhFLHIo2"UV5$+!&Evu%둚L m$W\t׽ͅ7m:=o^9Fq<-av]RD>=<8;,OΉEL?o7phfl{-T}4r/ǧݝzjGN皟6Uttt7AFc[m<myOҋ$:ބJ!6>zW \ii$V:v Hφ;[]=lj{zvIF;i:`L nDJ7ĝoW|(@ P\q'-<JAmP樝kDx8mWJk};!.v{*-mG Py6"Nѳ78zN.GNģlR/T%Y\rUb bl [JJfmpܭߎ|oD)bMd"ߍCGKd똼8b*1bȲx%=OHuD x( {+&ܼv bH6l.z.*'l=CpQrknk+W( (nV(u;bsa_y3i.)ɩSxA\FӰb+XEQYQ(,wv; A#r~cYqgۺ۸X?pуbNsZufwoAK7C7Vթ"n߹-Dc{ G҃GZ;󒖎Z*Uy_=`aCT1<a(ۃB^ 44CfŎb?<t'iZto_c]ԛsٲ(:*C`5cy$HHN(ѳC*CC0wb1tjn\lB|lHk||@ߜ 7yh\\jZG*uzͺ\|^n2krz%uЙn1gK]F}Vjfv|NclK'&;Jtue^)Z=h2ymƵ>i4("VK7bPp <q뤠˷ZʏYzw:j&zZ, 6CF.]*< GC(j4M*C…_j1'̿%Cz2*;S_ٞi@IDATijF '/kǹgj M P(}i05-( wҵ"|&ɖ)j wċ4k&pe:dmn?iM` }5}+ܹ4[J\ ?±<SB7++z=ʖb{|nYzb)p䊆 e w7)ThSNPuct0vWfg1gpEh3Ҿ.6ک{3P0.*MHO`*\ / wa<T^dP >Lڤ=&^bavZ47ƻ_4Qyg>w )"-pN#63:=DMd&;u.~kVX .=/ZSKhy8WyQ zuW8qxOnP3l^Px<v{u.jRqC~,ӋUӵ7ޛxWE՝is? _fh(.wǤj#>拋qYd%1H h17@fg2=ҞõzT|/<jK*N._)Ql?cO̼}e_\v>[؋ǗWֹ?E♥n ^ull^"S=x`lM'SM3>~ttei4'XgCWa$#DCw1rm>7;ʋr<`WO[-]i>Eʗ%yt#C{=)7IcŚ'([71eCwߡ;Y_~{H7M'<R;ν_q(@ P4u~Pzjoz.ׁ,UhGuky쪾_x}iS"5,5K64YmjW?󎜞vD]MK&ׯqS*pnׯSo)DLZrm4ο ӟdpv⃏>wN>ϒ4(@nRS?Yf*o\ݻ7P-^wpMUԋ%P@PTvzFbQshR/ ֢4)>εR^>5FF;5+ۥ~LIq{}/x]4)ٙߣGGP곸xhGJc|{W]RQS ?)o 9r@&LJshAZx.\{)د_)eq Hg-vBqڍwcD],ϸ_x%N~.5_q\48yo$/qÅҳYѪ~ߏ]xFv:pr^[uӳNɻx\iP,{.)iFc}eߡn;8A]Q Bx8~U  P(@k[C0.GA,%eb8 s~(W.N|{RPb܌p 4xBBIja<^so!kb|JSzZ9jəK.p:DsvӅ]xoփ~twݺ9qwŐK+)@6aFq'<UU:*\;_YnnMUhk8nyQIR?7U ݚqn%fy{1ա{!Jwɽ<]ĵ 8ґH!t6ߩXe&Q?~wv`s+8fTIJ PswniNt*{ )ћ2[<8HK@XxΝ^W?1r'8~:'dM̳ N⸺X4ڝ\twDoƃz^q:lPJWf )CZe{Ǘ4^zI 7p=%YY0lNEXgo2}aoϵߧK'gǧux'i~azDσ{uX>7o*Ca%kIzr`YX>y76in`gB^U&Vr{zlVq%QLLH7x^<x8~uՇS(@ @@5Ii&z-D7g}(O'K!)4tërMNe_=^H ءaN)X9NJi8R3ų&īL++VCZΝr1 (<3lEU27g~.<8GWuev%N_m;3=8'xl^81/嗩Q^^lyNsWCJQe8WyzK}Pu1s~FMP? `/x1m+ch;LJ%]9y_ݩ+ýYWbǺR8|XQ%rrFTK/m޲ ;j i⹱5UvV ;wԆλ[OMM-0jt)Gr>yeycA6oθS.5>|z޺uړ6j=͇K`cKxÐ8|وSi+"1%C,{ZӞ:2<(@ PpWϿ?puUUA߳oۀ=(:dĽQ4&l5RSwESScCYE#3|j+?ƋB<)A)BJr"RNbD(gMWwi,(CܻaT&\-dΔH x\*z43F9eFlN `<<߫HKa~Fd XŔyM>1)F$'&[Յ1` S{a %^av709vA,~[&` :;D,r>*iXwzgɸWZ Z^N0OҐ-Zxt|.+T&2PM0<iKTBD MGQjm:%GH@<?أ|x7o4h~hDmRjHׁЕD5N~W~c(@ P` Q&WűZTÝVQ݌rp'}X(ýqeSlh]s _B#)v|N+HD<##Ե{?.Ί4E I-@iA+$vD IipNr1 N<*ÙpR%/05,1D#L`2*}?^y]z-bSdb<́f21,\QM"n"1Լjx^S/ыw~d # !bw"=,ۋL17 bh ux.ExM>VǧU"7'_OSOl5[}~us6l)=7&75IWBwanFH4>F[Do3á"EƮ2.S)Ƭ PFgN3m'#~s{9u'˥ɿOm6=OofVD Ԙ-KlG_C~bݷ?FE-JV! fF4ϧ=gOzᏳ-]<(@ P?=\\ ZdƻNJ!/Mmdk.vDX-οoh$LV z00"hd |;ˇ zR~D$I3vܻs w]Y,.oVC gsOD/!4 #~jq;_+?Elӂa%聛'-әR"˨\0}ڗm]F5[)7Ś6LG?Β\J cոm]ܡnw2[ŕ<S\J: % 1N=m2}J+EFvuu;:WQ/S *m>VmE}O-Ν9AS]68 ~uƣ1'ΓbqwmܨVqy6?>~wP%=x0 vk\?>R[/\ېY ;3?ŻwOqA2yeKkzp4(.QP\^4cxbS4NJc?tb`@ )O)7H=]%Lt8cKU͍ZGWgYŬ3* P(@Nd\hd{zuڻu)R$DG"bhb qL'Xb$u<_j{nӍLGRdl]O~Co+D۠93|Ͽ+(7,s|<hkmW08C[8C=M<&>tpg%\Zη#G=[P&(qX5׿ |[^9ۻo{>EYPn(I-&Js'Z{*oSuN+i*.l|of8OƟױN<4]ܔm~(;(Z;̍bHK3.C >9W9x_*izz]i7ochkt ?On =ԝf>gz-%xa|gm?Bw)H9{}ͲTQSChHR"mpQZEuMokKy^'jkՄb NߠǾv5U<χT6v`ڜ ~ω^NM0Ň^gn_RvxyfW/s0: P(&̟%Cm(\i@2=-݉(?. ]Ƹ4"L,+-.Gq MJBNQ2Mс!՚ͤw^r:!j4c.4E(/T ÇɻN*㻐*ǔԠql[,.<m۱E''Q9(؊s"xPK﫸&NºXd呡h{۳::j'vkHC;Ψ-Ϧxd(4F;/r}^3aƽx[یI1:gTh 5k˔ s߫yXF#P]8#JՆ[/T}'¶RsLÁo7$VFqG$ -9iJ/PQkXS4mUzUc=xe$h64*|bp,[Rʎ >0uzj]i7[QݼȒ%C{ JːS*+>csA8_JD_7Ԣ4lFzN1ʍbYoCRKvrtwif$ިPszt,犿?8%WqͅHƧ[~]Nى5Bbܢ<o\C9kȇRƏQR`~6-yX!߮N%ވ}/a+OH"+F:GO󏭆ju+Iy}Wo0> P(p̴E{f1X,&twCs^u(?48rXIGa=Z>><מG2d?ru:] W͉_z 9' i(x |`iAu76l4:wv 8C xO>x FyƸ[Sxp,*gu!NcO"MGe MW?ĵ l˝?ylMtׇALF<bw LԊ sSnpgn͔%;SƎGuf ?(/_jg*Gj*Qxܫ.ڈƥU.>Q'gHe N OIWu7ipu2T4׭^4-vqhb]U>>>̩Koy?1MYx<Gܒăɗ:JQq;4. cFl$ME`t>[G uơzazc Kt) .5Ér8ZM3[gWOG.|M8 rSP/:Σ6Y0oŵ+ ])a^GrIpW^[!EKo6Z߶ܼ!0S ١#p?`ݫ`Gq<Z<[VJn IQ10(7n*m+®؍/%aI\?%ʭЏDw P(@X-(Mͪ`(y݀6 lT4eɜ:,`øu t d6S_[Y(Л_w)sO&EO 6t`'jXGh7q]GhO.&޾,]3Ojv+waj7?}M%ww 4=X֩(-|EE]VQo=n|8sZx?BkMQ w¹vyveآE?1+8RhmV<!4ڙrb@Fkr7ŷI~r)oA󽢬+0|iV6Mj-[ǖ˼6&gW;w=C0ɖX]/hŷl)+x~.Kf4s#^< yfyv\<ݲՖjuƶnb:2\WY}4BJDL9NݯJһ[W Ǖ9\iz8JO|h+i4M 7jl?1?k^F}YoN[oe+/>-{Ǽ4ohe ]?s:>_R.Ӹ$hպh䴳5Zsol\eGFnK Ivhmŷ^Ĉ~fqw^=[ϙ#Vo)G|EwaW^&żDgm&1ۄK?w\Re<~u(@ P$́Gt%?CC0H+mg1'nw}Ԃ%[.mJAknr|qvY 4+yXaΏ+S/P-44kQJGvj,&'$ǓaǦ^pXC{]^H.ۥF#N\>>f̓^ëKF7_ G}<ЎA'p'!c >}N\u'$hS#="_~ֳt|lWJ8|ċN4w(Y9}zȔ|dAt7t[hZzٹ77(s+\O^.k]2g@,ńcqZ-Q6!1s3ᤌy%%<“>l>{7QᣡBpWu4 p9(@ PK:H1Ҍx=ΈWM̟ɬG 4I/䧫 p=/oLn|n8b P#N˓\NͷhrVŦRi]_}J?eŒ젨ze_ݮ+;~ײ;P곒Qz)s}5&OG zv|Xuɼ^ZnN.J>L m}o,3_RwfSR'yORՂ3(@ P|ÝÒȊrV8(@ P(@ p_3i&m}X-ؒc晵*P(@ P`U nU.fք@PZ ?nV g(SLw΁UZ.ӻx^qpl\;V[(@ PM w~c9)@ A ωĉQz&IXݷcHX[Nk\է{ۏcmJKE}mܼ|3p (@ P] w? PX{=wpQ8Q`U ݶ3z.\Nk\է~K8-^ HL""t3n=D P(@o ۢ(@ P(@ L vBzq(@ PZuf(@ P(@ P(@ PS,Ss_~1(@ P(@ P(@ P pm L>3fܓ˟m8T?S(@ P(@ P(@ 8-01I 񘙝u:/7DcbкuǓ96қqS(@ P(@ P(@ Y`Q4ڍ!6&Zn szU0T&{Y;~(* rWE>I P(@ P(@ Px a֯ BC$46LaF(@ P(@ P(@ PzM̬@p;Y(@Csr; P(@ P(@ PXeVY~] P(@ P(@ P(@ I6ܭBQ(@ P(@ P(@ 66ܭ=R(@ P(@ P(@ I6ܭBQ(@ P(@ P(@ 66ܭ=R(@ P(@ P(@ I6ܭBQ(@ P(@ P(@ 66ܭ=R(@ P(@ P(@ I6ܭBQ(@ P(@ P(@ 66ܭ=R(@ P(@ P(@ I6ܭBQ(@ P(@ P(@ 66ܭ=R(@ P(@ P(@ I6ܭBQ(@ P(@ P(@ 66ܭ=R(@ P(@ P(@ I6ܭBQ(@ P(@ P(@ 66ܭ=R(@ P(@ P(@ I6ܭBQ(@ P(@ P(@ 66ܭ=R(@ P(@ P(@ I6ܭBQ(@ P(@ P(@ 66ܭ=R(@ P(@ P(@ I6ܭBQ(@ P(@ P(@ 66ܭ=R(@ P(@ P(@ IkT,(@5*PFKbQ(@ P(@ PMee9wA P(@ P(@ P(@A=2RkNw]Q(@ P(@ P`8gAHp0c:[\\ē'sx27jlpjv3J PZ`cFD P(@ P(@ P33)ؘ('nxt yH: (@ P(@ P(@ PROh_mffRo7OR,o`hYZ6}6-K (@ P(@ P(@ P n 7/p_~MW|I;i@6.b(@ P(@ P(@ Pi'M3h'I7=cSy}1(@ P(@ P(@ P`RO;-2l4tfO@d(@ P(@ P(@ P(6yQP(@ P(@ P(@ PS6y*(@ P(@ P(@ Pi^QP(@ P(@ P(@ P@Oœ/-xهxG Ew7|D$%F2M P(@ P(@ P({yZ|za'Exed(|D[Z)'LՑ#疯?Gp95UzNb#BE``l '.kVVąaaA C-ut>8(@ P(y%OEⷆRјt BhLI9w`Ô`nuh NKȏƒ}cuI({[8SPY]'îҌr,%^A;sI K Gqcl>`4ዺvVplLG(VKI-l@xSV|; ]{WmVr}5hq*݊$QWlT޸][6  vPcp:>r6ZN*3@ P(@ P5O`A4'KDcRhL_Ze[~ R7*n55ڙ„lF򋊑&L?u m3Ko`k G~7;=v9,za6Y<8G 8ADhs{"0DG!-g v63z[*+͙;(p\Yoه`t߾sh{a?9[>g[ɪ0SKcI; ~]hJʹW"W?G=AK-W ~Otxaֱ`qĈ^|omJuE(@ P(pzVy`y~[kҹ RsY r־)Zu^%ULKWV SUtCdt,RM%=`{g>GlBGUhۈ(@ ԩ҉VGPnNT/؆o.ooFYݰ3kW "*q9+agvʧ^I/<u|eV}KuȪn?#Fg0Us}i _6ڍwZLCؙ(oTx|4wlz};}mQ8O P(@ P4?^iGmS' e\D1BP}գnF 6eq[ɂ₸\w{nʅlk?Ǡ4/ߍ%5QWD޷P5d1?59)svͦG#ۭ\ΙީoJOU뭽_~l{5bDMiq&rvnFKeڱk - {mu=:aVy1D]=P(@ Py6]e=ڽKK얯~l[qjz5ijώe{bxi{ xkP)qzi0j*_"!턉yh1,dF0,>DNFzl06cJK-FĀO-{"rE:63c]hː;˰6 i"AD9wzuK)A+<T"fFZ!T(VD`}|Kk >BSA|<8`3vچ3Uvoڜ|c"6mƺuD8.m81:2EY(Ώq wRD^Ic,b4;1*9^oąiR )QHQQq 'e*چ(v4mސ8#abZH?7}9dd刴_: {ߔVKOtDNq|ng*72&HRhsgs^4xv\밨oz,<.}U9$g!39a`f=btVKk>K"P;,vvuL"ת2 +ԣƝKvw?Q$w %qhKS(@ PS@WpZ PcnhkG3 C"}KrJ/)Om+5DJlǤxAK@MG+xӻٴ]{s[59 _ٮ\l~pv\ .֨-q?/T ,2w? w9x#>?iwTo&Rw9;4E`ߎZk/L-DteX/M@G5|%FKp3BPer5rpC`TuW6rqv UJ#RdCf*z(޲\C%o- uGK,=DL1blOpA Hك"-zir4߾ܷ__PTo>UUMq܋νKpO<yYsKA(ǶxdY,-{0b6s A3BWDÝ1֍o=>csbٻ;__bGX@ $FKlNı=L{3STݺU[5zg*778NlE-E$k# $$!XDsN9}n{\lsn1j/qY鬀l:kQ!ܫAuqc}vvp6jgWkӊq`sHFrUKp z_.Q?rh=[`F*ؾK| .R7ELϚguTyQ xM'j[5 P(@ PX^O\T~4syԍiwԽ@tF+ԮJiFGP;)'\dɳd0jǠ7l谩EZ.fNΠ׾Ũ9uqt]|g[zLi}\_[LߑޱFX.>oڦ7_ i;) 咉_FiQ+Z(mnA ' !4G;+vvf}} vZA;SX|{2+؋>d;hgS+>?m涹A;c;#svyemǁ4eS~˛Io?|,/[4v9m䢂Ћ(9NS}/ւ|l&{bR͛vY 2'4Y!A;c],܋w"ΥG.qA1WĬmxY|6KmҎv(Rj+i6~C7>>f>$5-]b.V{Ǝnu (5,pJJ P(@ PN'o 75"dKQdd%z:3ߒ<gH=nF4We 8^-OS5ߺ4%C Ξuz@LyYmJADfcO}<-j:յ[QXE=/FG]9w ]U@x.3n3`ҩ߃sWQ]W'((َʳb5i5^nWQzqQ((ۊk-<\!iIX ]=9X&=:j >ܸpC<ߴ]1CZqȍ䉀RxK@-O!QP M_FQY NhF!ecn5V\A4-rh fQi۱kd /s}ct2nWҽQn\("QL}9{j-l+)EvqLxflp6lD^hw*/icsȗiʗ_ p/'sMLټ /o3ؿ$N}nsh_<? # -b_C_ko11uh{ܭ(ݞiBMrQ{^s6Vԟcáaё6^Cm >tڲsa jp^1i^~Lm#FZZp?nm9l#ӍoGWŨa$&-.Biy7ҲQxK͉rv=gwb~f=j` D$[3Rq]P׭Q 6U<1:<],R(@ Pgּv0Qs|1|<g!ޯh5M-p0$gz4hyiShkAI1\-EΠ=Bd)eŝޡMz.wϏI*<-~_z/UnZ'Ӏ_;a=CaY/V)9'3455>CչG箸T|kUﹷ- 1vg_`YtkխDNR)u~(ƧM.InnT  ;]=x!?3Q_pi@d7M.Ƽy6~ߙ+Ү h} @nu( e}pf? 74fvV@ׇM÷*?'M?ye8.^͈cҍ"x%?gV쾉?<Հw0>*89hS ?C3B\F0/C+w.f;+آ{uNӻ+"YF;?gө0ڟ݃7 3{t>t&k4Mӏh Z x FjzպstMȵXDNvJ J=1Js^'ŨhQS\Z6̴bh/^P?Sj+?Gb^)HS_9R(@ PWLTcT[z>a"[ʻR9;ڻhxytUTqN $"ԔVf<_?<w{ʰEA<k)yؕ^n  wd +(&IIjv<'j+wј$\{&:ڈJMNٍ+DAA&V,cl5A;sejn]4E ΉǫhZ ID֞: qƢDZ} }4$7l. P`FFU ׻~oȤӮ W mi}W4A;pw jk1 b̙@JTqySv3%wr/*G59W>CsSZ2H.xSę?!HC3.CsN&exȻGzy7?'r_@IDATڜ &ͱDs;(N 2J$6I\9s~RiΦʋYՎ?3%JI7EY9βs4ˆZ1ֲyڵ=#(6W?`OhB63F/aۋs͹1z(8[5AdJZ5 imU(]Bߪ9ܤ(@ P(@ z%9[?wZpBdqhEoؾӶܧrcML͕&nQIƫik;Znݽ+°)oU$#or{X#>0@S߃6S"I7mVG9dm`sivogf&Ւ+tμ4?V}6:Z;ۋΎv#%YňC=jojwpp$^zfJD[iG_Jo/ԑǣCb- kC/ k,SS嬎5Q*wabAAʝ>,^ܸRfڽ[쬶rӺuh9hB7Y'uSwVa+.^Ƌ:lnSm3BeO)mbh4H TH;lE4Un1 EΦ-VϵOnY߀g|!~X~G'}IBzЍ>݉Wcoao RvCw+Zz`X$ں =ѣ٪z_|n))@ P(@ P'*#T$&rW)B/;i$>466@[X f iXiwjč'Z+H:1eXϺzX&k67J*2J,`QGAffہ1*ϟlg%ydJvg]WIk 'V%CBJcj@Ӎۨ8QTpM/` "%2R G* _BYqVV}>Oa {(~#t(5}Q75gS89nQmĬo3":γdtGFt>˟9itr 񯡅gϭH^Z1t.(jY:#%gpYY}ʜKJ6m[:sv8s,5AK_f˜g/`l/)FCqT$fտq-[X̀),t6](@ P(Y'19ClHȲۨvW4MW28zvƛ_VcѱCmD$1=uL&SZܷ;"ͺd㽁4D<+;qYJ['ܰ9OksT(&l%I.$thv.ڿj<է~(ވ($Dra#=68ZZ QRo9[PZsN 7yBݼ ` LN`'I=hw01a&L?D{娱]xl]||\Cxl7 i( C˥ڥ tتr՟)[- ΦsTbx|#m/i YE8Ԟ?&>ĊqPlێ"G,puilPH!+i#UX$I%=CS<NSI%>j\T?_n8(@ P(@q?Dj5j?0 QvcO˺О?hi.A4.l1ԮQܯ#\\o6aI6elBuHWF­:\,[z'FyסV!锰8l  Yiz3SvӉy>[ʶARa)dML䧙:&7Ъy+3-( n6T3;Ϲg}ArӾHK5^Aյ*ܷ-## @ bm:5S_V>C%/߷y_9DLy`3àx܂oAIn1?} fʌe% qIc4 ߕe Szy])VZ[緰tg[ݷ6q:bnΦ[,}NsskghnYسxíHArjrSLQ9+6h4l4V0Y ' aD:s\߼ F:7҄(tcB<T4 IOo|y(@ P<-qC~c/by_ptt\>6SçZoxRz--M됱9G%ywTn9K1x5Tw/1o05*)ebg@GxFl~ZSڷ[qoى͙ljw_h(t6q >5^իED٭ (JfEؿhhlu)8&mgOZ9OB5#;#|@|l#HJK3Ѯg7eI;ōhW-G6Y,*_ĆQHM[Xĉi*R[]R]A/ətgص!F:K7 mY2)s$_w^" wS | 5oqx^OHg5u6޻j&_g)ֶၒ&j2 kR@=ʪxtp(@ PK@Vǀa=c(ĭi|Q:h]'8][ӌyH67/8v )1aHRlqV9ZZڰ4/wt|rSJJv#39K<ŹmaTLYmS"F9^meߊk}Pٿᴃ@C-L/y۳79ʳ׺[$(XH..!(({[e*ĸ ܨfL*C7#"8gnsĢlN`1߆}(JSchlUsv,m(Eer-i_e,FE96Ŋϵ_: vNKPܡǵvb]au?:[oL^@oq3ďGOibAWq[g b|;gҩXYl?ow`G}WP==~@SGZinFW~)حsz ~ko߼a˿sO/>zߙr_zϲ6n{"Sr(MiƭHʐN"e;jJόrlVsՁᕞD P(@ PRU9tТogǿ·[u`HHiūwS =4E,߃[":\ޛ//@2Mk@<n(r);x15h826#Iw77m5[Ry=n`X OǶ\5u;#'Ԣ³J!Z&0 !+nJİAFUCw& \Mؖ(5sab3$wg""gf`ހuScpהAHܓoP'D& K@Na8Bn$1,FƅnDQ)!eM̓0jo>?rQ(;=D}/iyHToH8edtg!Fm>"pW&9N8ebͿA۸3҆Ld&(Pw?Uò؂xq Rpwdܜh3l:m\ϘD;|;'iY_l?x7r/njBQ;OvBccF&e>G49tcdxL ><C;v}CJZ&ԑc赚ҩ6OjlŃ0`|NJ}\W̜&Uԍ.lD^v6Ĕo33*HQwy=]0P(@ P ofqCrB׮ē m/F*^{i+zΑQ->㺣5_xIqAdSvQk"8kQMc8rtoC`6a6iW8D02`h< iP׌{/aHJ;1[drn_* }\$Ky{.x XL ,?ק}nV!`K9TPW7v hSl1m7 ww1Sh56;E[˕&P+|Ú]@7:ݫ$.Fz6[1n_[5w~v~/ۿZmAArK7v)̫v?{!/@琭I>v;||rȁ>|8ꄇTgi+y619n_l?}/ սhH٘ MZKqYž~dۯmX?Rq Rv-!~*wh<&<#8upit(2>pn=ݷq+/_Ɨx4MrT&2O4::s[4z~p(@ PT`UPVNB]bU/m{'ޒZZ=4E{N43mJ6:=fZZA0gԚPeĄ9Ƈ1*,T6;q_eמ[_ZM幇{{Lˣp2>I22%&4.b)e|<ASa&''ԺuD65mz\9GcW]7iW_T- (3a5_ St՞'g>`,nJ?㟞ӡi.smw.[z_C#gtüOfn?KVC4'%_ʳl2A|H ډF/n<)s{5ZeZ&dRVv_kE<L5 * ='Ρ[ ^,JY.:N>d ʟ1錩ԟn#sx~"ޗKˋ_KeyۯThzu? ~aE _5V-6o w'Heixel;#&];\GCb6{~M. P(@ PBպp¼KӤU+E#&yL=s%۳64ى[S>4-ůofkc*1-RR}h)j<"Z'/RoMo}[g_vhc"(=~nQu13V@fz3KL'"@⃉=lLgWpo6h_7KI?}u:Lwr4]XdćbztTLC6[o)"MNxl eɿFFF?+q[7NF;ޟ-@"w1>Ol}p"kNl:syϵEE[H{~D`ctxw0Mvۼ:Ad"rb.~"(hh3VXdΨlQE֊׾;NOׯ_)@ P(@ PiqhSJ׆GCqfY?ꗲٙlvLސY+\HUq2뙡쵃DYܲ"D޷*Mw.DC")~P[email protected]#hlp0daϵokGqy:[jk[u'OnL_p֞2=N[~^ُpfY\oj+yugjxR'Μ(@ P(@%Xw gB(@ PJXsMΟ(@ P(@ PPF==g3g-<Vf.3<Rh>W?+*I%X1!>v-l%`(@ P(@ P<6#TߚDÝ]/RxZqqY:uS(~|tCύt6SS(@ P(@ Pgyy3y -zsEpBp(@+z?\(T,a$vtN$(@ P(@ PK(h P(@ P(@ P(@lNN@ P(@ P(@ P( ^e ~ן#w^@ P(@ P(@ P(3rVBP]SS^>qLknS(@ P(@ P(@ 8-0 ffgp:R&v"z519Rzl P(@ P(@ P(@ ̊ݣAօ;?5ne҈GCfLw׎[V@fzh'I P(@ P(@ <OL񚓞4"p%$4!(@ P(@ P(@ P` H#W xA&PpVEMs(@ P(@ Pr10 -.˦(,(@ P(@ PV{NVI P(@ P(@ P(@ X 0pgM P(@ P(@ P(@ xB;ON P(@ P(@ P(@ X 0pgM P(@ P(@ P(@ xB;ON P(@ P(@ P(@ X 0pgM P(@ P(@ P(@ xB;ON P(@ P(@ P(@ X 0pgM P(@ P(@ P(@ xB;ON P(@ P(@ P(@ X 0pgM P(@ P(@ P(@ xBN PX@fz22(@ P(@ P(@7 44Dw(@ P(@ P(@ P&PpUdqU)@ P(@ P(@w ؛lժU󃟟/VرYLNNarj]0pĬ-M,(@ P(@ PqGDn]x(|/$ vo}zޤöP(@ P(@ P(@ 8FE3bn^QAA?&[?w1(@ P(@ P(@ P=9h7==އo%]#^Ixz`t/+(@ P(@ P(@ PpL;i𪠝&iظqzOi䝷/ yb(@ P(@ P(@ P vZ.eNiLo_.Q(@ P(@ P(@ P  ܹEP(@ P(@ P(@ P` -V)@ P(@ P(@ P(P(@ P(@ P(@ P-C/{>?qrexSqMWm(@ P(@ P(@ Pxf8<q P(@ P(@ P(tK?o+Á(P)[4~b8 P_s![(@ P(@ P(@ P+^Á;? t@]J"Uə[vS(X ,s'^~}v+|Q8R(@ P(@ P< nQ;gnx8phd{Z[:q$()"gZ67LJi^W PuH4\(@ P(@ P(@ PT[8UwW]ȍĒu ExR.L̪gglO (@ P(@ P(@ P<͹/o݊ynו=;_1t‘B_!E2}b#鹉LhCP(sj5|MU.D|DHc<4><ֺj:dl߈H$ 㣃hoFhNXB*6BVZ KDh 8LR+s."QqxM5痞2y.j%Ӆ-mm!K4N:(&d4Fo]Ux9\ Q!kuVmn/cr0U7QoCP1.L@z+>Fj'!51@aEJB P(@ P(@ P;'p'j^V)2|yjQ0s!#r[$M%u2ܻ\!w]55eݕ7y|)awF K +JQf<WF ՚p#*{BT=N{"3UlZ 9V 8Znsku-=1k+͒}c|bcU)͛4uA53ߖQ\*N:s4͢=u(J-Ai$ڔNO n*ߏ,;~JsJ>}zs1bkE:b><.ݜC^ KCqV, ?sVǹI P(@ P(@ PϦ'N.;:!<W\7?+}kɜsLKbA~cOgæu:sWٻeY4[[!]ݞxvkonjbE7Ж]VMYDkG! 5MBn9 =ć}Wbܥʢ .&js.kbG]<_t")hў{,C7'˯̣fť>x͗<8ŨN'n',xL<2MRC}Ts(@ P(@ P(@+&p tx"ƃWsM] ¸ϸiv=i'Ŕ۶4+^NQ=%q&jڠ]#NNDF[JPbcd/ۙXEAjܺ@2۟+AIEL _p aOnpZ \y MHZ{ ppa\sKh~!SQ"Gi$]sϡ9HkZG]Eu]>Q;6ak |!O) \9w ]"M}s BIͷ6v=.yy(mӨo כZNL!knaxz$Mg9(@ P(@ P(@ PYX?=͉s&#9x|gy~ 9$+OSGo -Ni4Jߕ$%G]|hR;pZ 6^l z)LRo cx؝L~;19ֶ6HO{'46_;@ԠB3zO?R4Ԝi?4'#8`rj#3ESpϪ8Gni};:g5}GR*;k13 ]G{#+u']*RQ_i:*>56+- 04#<4d }sFխ5ɛn\A;%݇Ja)X#E&0}vt_Mov=V P(@ P(@ PF`3=na2D$Cj|D -3*hk3nMuefBjvC]U5f+'j+wr/&bZ{"IL͚K6WT\Gv>sOjcNQͳL]=yrI@-66A;刡{R hPvJ^ K)=w>߹w}HMV3mk{ O-^-w5A;s^5p.&VPn4bpf4{}W[HD&^{(j=c׊l:(@ P(@ P(@ PPjmeU~|'ԁ'Vtxy0p9#L3Ҕ]2_X2 xI9gԩJ"9v l17G,S,4yɱ !0~_ZhZ]9^ݖ+Fð ^ɱnF;g,h=33׮hs>M3zlȑig=hAo=(;G|u8(@ P(@ P(@ <{'*#T8N RJ_E xi?^36n'&53X0=Kn>G2Y۲0/ɂj<-lQjKu[jc(mʤ4vrFϊs u_D\^ڪ|A 8؀QqA` (@ P(@ P(@oxRܼ~bCb涵㷿&'R+=;OIͯ^Ax׸%'439fj1sNń[$\pbΕ~'<-t|Џiў L!%^y֟u^.˙kĄ6g>$`zЀ5hKڬ>{4/DIFEiT. ˑy)@ P(@ P(@ PL".?O?AdyV:MF i=-C u| [:4uت$:x9Ph$Gtk]7lh_*6evuXuMf̅?8scK^w#o{ITGO?'G?pgD9[Cu|)~%,*Y|!3fUhfoY$R(@ P(@ P %aЃ#(H󍎎}uKJVR+X!GW{M;}}}>ڥ@T\$R2ț%!Y)JMLFtszzLt+Hّo(z:f$h'uOEvNmAJpD'#Q, >zj3BCPu }zܪ±O~WXu+(@ P(@ P(@ @0 㣣MMOOǤ4A'p8--mj)%x>S$%4mnAf[UC;FM3{/mcvgwdR,erJְDX71*{))< ]yDYRfrwcsIhUS--jv<J{#~^>Bzkk)g`'έzʯ%/~?alKIA P(@ P(@ PXUuhѷ_o>؋i^I$sD+C7CLM-ZGHR#qY]kpכQfLyKJ:Fg 3U&FĎ xo#F'f9j`ѲqZ.ҽ  "R߽+´GĚbR2-7#xncxثhd {!q-sFxV 9CT^BtJ1toQߋuHݔmYʔ6-4;CF+x$ 8(@ P(@ P(@ Pԉ`,n5 tZL<"hɽ{<pZtSн)rMMEed#OůpyC~'JLbVD99sKu}Uam [Şl+¢>yc ۫lQC<lM6芩c>q˯rxܭ#J[/WJ97 u͸B6)y%r`޹.˙)iLH?s멻 J@,& F>7+P(@ P(@ P i\+YM4T3qr21eYcTOEǨ3OM7وӟG.6hwk;q_*q=w==xzUg>1Mzlvb$#G?CӚ]-rJ)a5ULZf%kE wucOEA]%>=Y̚kK꪿]EL{L|OˣpӠ+h +Q}M-Kx_+gsv7 f R(@ P(@ PKu0hFRTK깝qxSW{Exd'ccY)C:4Ȱ(9,!%q<^]8@2RJIkbr&B|'0%}M q\(yi.U{(@>bKdQ?Fc` Fu EhCCup]L)6EѼ'Ϛ(*lhjAPpKa6 P(@ P(@ P >Tڐ5cH?,k^9#?_R6;n1r i:N6 ڵu^8D¯y|HͦH6=I36]]g4'YEztH.(@ P(@ P(@ ,sѵ[L)HbF=:{᫋DҦLfm#bJݩSϠSTLD P(@ P(@ PXʈ"<컎]Yrj]|JŏͥNnw(@w(@ P(@ P(@,W(~=ԋ\l977붟673GIBwW(@ P(@ P(gҭV/]ks xEccY<D(s+9)Wc)@ P(@ P(@ PpV;g4 }~,ݗכQ(@ P(@ PJ-U++l<(@ P(@ P(@ P^e ~Tq;l(@ P(@ P(@ PX3rVBP]SS^>qLknS(@ P(@ P(@ 8-0 ffgp:R&v"z519Rzl P(@ P(@ P(@ ̊ݣAօ;?5ne҈GCfLw׎[V@fzh'I P(@ P(@ <OL񚓞4"p%$4!(@ P(@ P(@ P` H#W xA&PpVEMs(@ P(@ Pr10 -.˦(,(@ P(@ PV{NVI P(@ P(@ P(@ X 0pgM P(@ P(@ P(@ xB;ON P(@ P(@ P(@ X 0pgM P(@ P(@ P(@ xB;ON P(@ P(@ P(@ X 0pgM P(@ P(@ P(@ xB;ON P(@ P(@ P(@ X 0pgM P(@ P(@ P(@ xB;ON P(@ P(@ P(@ X 0pgM P(@ P(@ P(@ xBN PX@fz22(@ P(@ P( M-^FG \jի=?vlvvSrl:W]6(@ P(@ P(@ <?[ ?_ =IAfff (y (@ P(@ P{3mlR;#1m||h7O/Ҩ t歟yw yg* P(@ P(@ PiqiW9h7==އol'v<FLz9x'Mf2p^:)@ P(@ P(@ P6MzOLxUNj4ol|ktr;I (@ P(@ P(@ PS+u7B+vJSgz-vA(@ P(@ P(@ Q`%`NWzv pLz4 P(@ P(@ P(q{?[l w+(@ P(@ P(@ POwOP(@ P(@ P(@ HVec)@ P(@ P(@ P6>i< P(@ P(@ P(BlzV8W@?4 QֳsyC $#C-ъg|ÔuP(@ P(@e;w"yX]8rΩ;V_T8o$* tF2i?r}N PO@\nޛ/h_Tvn!87!q=qXnQ(@ P(@wx划2Ǒ_ vi2 Z3CsX] o}A"*>9ц@IDATͦfWBtOKFfp䛉RȬU>{}5뢑"* vPwOy{amo;/Ed0ukl6yDoBaxxG\y v}{S\'tخdѡ83rY: 7$g#2Qy糛bi>|mwbS6 B$0<oNfo9(@ P(@ P<ô:i⑔ u%,7"DRE2$fҍci2j'iU,3}<6fN7:(h'̌2m;,s'^~}v+|Qiv\ X("j''# HL+C|beub~;n'.s&h6;kgխ#K΅|Rk2ⶖaq-Zd);ۿꘝ(@ P(@KgYgY[_؀~ˣ4 se'6rMh%aOZlSx뭓f" >Cj;Z;$l">??w0 xD :NC-0R]6V_U0Hrt]7vTsl ԟ tOR(;qm kB!9gRs!МŪHȍpXd(@ P(@ xP-iv /V5E!1~ž8d={ q=UVJ'=#VyOΘoΈs@XcsF+,ttRzvZ>eLziz;?_G\;4)@ P(@ Pxt^+Z;Џ,pQHx]ňG-32CQߠ 31]OLG_pUU[P);& ס}(y9׉2Vck(´ 1o2WVyZ(Q~<%ݸMJCHqB{u&c[FD(1qr|tMh%bC4!8ZēX?!o0o4go`CTuݸ{n 1_gOEFN*dd3ŵ">%oN ؛~܇zܑ+dŮQf㞧\ $Jܮoٞ%]:!tQmS4!yH =Ecm`cf4'u6k$~X}TK˂۵ĎkcӰ)9 kZivV|>SF^ Иy hU¿1bt)q^o~g=CQ lVQяZE?_MFBh(s z Gv|dSi|N-E.DiTvʞ8>[U#4^{G C8H=R? ?q|13ԃz-U⤃k؍[P:G6q&(@ P(@ PheBy0l=D,)n'E  7b6$DnP"{z)/sYZtf9-GTR .W3׭|e+Qb` 5e68xqya>4xyF.mu(J-A~rJ3KPZx'ܲ}.{{w+]t;O6Pls!ʿ%S"jdkq⼝vt]w>W'qnn`+,S<hH\KQ2Mbe”=H)2wz%]owWǛsuW6ݭӢ r<gʀ3W,[email protected]+Kol6oAnBZB+pfq}Z ܎D=륬ΟFEÀzh}6:R`&h9pvI,cH݆fβ ۷Qk\8r^ Mתph.0,s9f̰[pIԋ@ό}x<Ƣ]:r#Grš_b{>'mi%7C9D¦Q$ukӊq`sH,^.x{y)WFOWڡvؿmTy\V;SnGiDGnƮ<ǗŒyJ{"ؘa][h>Gg>gt(@ P(@&g;|RDLBEC7(Ϸ3R qtIP2m-Rv:l*y?vKҷZ}3vSAӲ6h7LSqMQzw3f-MLezo ڙog I;Y.-;{vR҅ myX4uţb6$Ǐް36V/'7gOf^k1!L$oPno2q(-*–=xRׇ{ZszRn22h76&VjLچ(k\^!A;9Qp,| LN?BˠgjVv,c,fﻯ!Ci+Y_L/ދk֢NK;lLm˯ylUAbs>όCxVT]Ԭ{vB}+L+/3.o7~pvXF02  p:_Lٻ_3ﭲo`O`)ccs#ھgsί-w}η))@ P(@ PXq'<Ax)7Y">6Ҹ>ڇW_b\H^ u&ͮ.[OTg_:행mPelCdF9ǑJ@Q`^u7ua:0bKG{Hi'>ÉG+箢ORQP;L 7MȲ-(/oPЉh1jkY SLt?;vdSµ @x(9Q82's}͞w.v0vj4?|()/GibsϡMF}*VL9"bbc<w ]Urvɴs BEC{=5-EJtb1U-aIH7 mӣ^INLjNbss=M\bN2k W(E @LXZ6/R툙(k9'v74cSn))EidW~6C4ڛڃ@LeR*YǸMKn\;bO1[Zqg X,]dcn3ZqFLG-.Bgޣ:|"("E@Ai4-~邏Lwk7kYs֙άYkoߚ3k;ӝNIc:MBkx *""( (r1gWծUTUŭ^ڵ}^"<.7݉ekf;.kb<Z{*_(ߪ]<YQKN Ix{Mo{xw:̯m޶EWN2N{j?j^KO{p}}tOMr~È7~XciTu*۸I PC>)Ƿj$̌U]KoڬC*7p=]UQxXf́,"籩n6   >q羦Ӟhj536i'}y>wkrt]J*4i{N)\;Nde߫F{VֿE{׻w:m_n~c|ʳeiF}iw^~b9Nɖ'^]*_5576h$`;dDZ:eϻΘ~Sz`w%삑?l]'D:$L}VηUfAd(\Y.rvڶZRB%wj58$q7|4ܟ~@Eܯ\Y 1njDTsfLmQj}’]ޚ4۴sYulg@>/L©&ig'CU}#LԦ +u[Eu':ֵ^*r5 ak6*pZ֚Wk\j&q2tu~zuUj{]ķcYmJܻ:t~~ܿu_z~IzS,YA'L]OxoV{I>lW{;6K`%EYݵ&q^iчiNqɻݮPs}pOQ} v8Wr[w|[j+ڻ5pUXTOꫢVuȧ-UWjU}wwM-Vc8(q ijm|;|G@@@@`6 L{N}jدU=3m2A}JLk^$M=;]srLV$2<Ӈz/)2eeoǿ&cTjwTGVM-&*6I{L;sӎ/oni5+̴Vڳߕ'TQ_W{*9ߗޣ}:pऊ<CJB{0߾&yЗ6&}rJ(sȲftvcG|I;߉:|og+k}ԍ޳UV;'ϵ\a5dzgS67ŠI55[ du.X<;zb6 <Z.}L1/L2o>J:M}Ave,M㥚Jˣ]PIY:Υc2f+9y› s6\i7;W/cV_5VX%4\M-ɰ"B=g׳U2h_|qJk| c<ߢqq23}KEߟEUmчn6#i-p̘*2sϴ]*w0#qډ:~}2    *q羜ῡKާhSIܙ%+Ͳ9+L<If]ݥ%&QnH*0g4Y]K~ycOTBOr3-dvUg\poG9^sf=`vJ9`ЂDVyޫfXBYSE[Y=-QI3v!kg:MO1"uMMOI#Yq79;vNp;I.Ե re26NN5ACtóZ`eVIZgO;`^u|,uܩ˗t%EZ5U뱵y/yxgy[\z&1%K.4?w8?E|axb<jjU_MylORoÎ;kJt< =e4ge[je5]t7 } sܚKak`"k/ēnBת7iIYpxGQcǙ>XOu{(   >ojg:VԮ{df-QN'fɬﳣkv,PZ\b^2mvAGffln_Y' {Rv;WxLߗB|Ym2k澁nC//ڵ1]2J˭)lsoDf15o\c? 0;+\.ӹLfӹA6}FU]?1<^=֟ZXBXUON_-Lo9G9Y^oKA(Fঊkkw[蒾Wbf P/yLk [:>3qvU.;cc|=8yv2׺eiKe-H~[zlh,ۄى%>8 ?Qys   @$Uɓ{ܹq!䪚t;ӗFZ|26YR+ɔUT.{FUZCkfa50|@BluuTs!Ϝ Z02:/aYW{! 5+ }'`J3&1\|-c5QC[3&e:=苇Y+`KmfORa—B&JeV}.4C[ mf0T.OMr_|$´ݝu;;!aFztÜl6&ѿٰJm+׭p{p@C Z?V^4q$ʽh<f)JY8?ƣ(MK4c1(&Dj}oށGΔa<؎$ z<Ou{6   D [:ϯtNɤ L~F%kMceJRZ^6꨿f{jNtVYy#Wu:4yd;uK=A+sɿu;*|[*uL{Qf{DRee+49NSzVV0"uWF .h,z?pg+*|)\pK:⚒֧suuڞSlET䙰dp},8owZGgԇ[sɬ8ƖNӮ5'),_XϹT.VY1t߼~YwW5A6Y]\&#s Зt= ~o!]Ωi,!jRvBz{B,U9D9[U2֘zN <(4pףsaIub&dB+3]162dϽsaj)z<Ou{G@@@K p]>y<Nﻰi/d+m9*]oM2[e5~9׬ 6ȓjܪ9uV+ȖN l Z=Zk־OLZɳ=-`Gs_;toZ_3hSKIBQ¸[-/kȺbyy]T0d%澉y'UMWT,y;W^+|$K r30.8/@ۊUZ3RW gOw#;C9Zs΂/ӆvK֫d]dP&+hI1YͩۿԾ9v˲RCY 7n`l84?R~Qm1naluz?1:L-YiJϖmS_Jiǘt^UkLF,ؖ]Uv`f&VYv^t]Bl ZJzaЗ">0NP>%8zN JFWb۪}}菦&YCIqi}t8<9pE@@@Y-7KT`ػZ[3e )ߵion= kh}1\c wfoqNSgI~ݐ v'B$&fpm)NiI~IÒ]OLX>oMN/}[|3Ի?<qsFl!zdV]Lq|칬VgNx;:w22`דnk&w-^'{^y>;Ryv-?XV[ XlSo7_ l=?Տ^yE??֞9 nx}/EV3{)pw~G7?=<scK1;EYJK]ɑ̟!HK*%z`146zYuv l4OTl1vo:wǸ*o>K[sp;Z,/p8u|/_f4Xdq64<Wlڡ|YmO)ڳmrWjժ\-O^k(8|ǿ]>0ސ+Uj}y(z<Ou{B<G@@@)07nڪ6e`#rŗpsyzv>ޤ0j9˼KV>uJ]JDnժ4~<>ceiz~[UO빮nsԗx0g׉"Uqwnսo,͝tzaRt{Z4:]-PɦM_Wѓn\=TU:-Z *Yi_.=}qKL]Ҵ?UTܣyZSRMjΜqƀwzd5vj<Nx;פ7ycv5Zo;܄>i:w.Of@Jfx \[,;]15:Uר[;oW|cVupuM]Nնg_£gTکaTfʽ3{n×0TU<?VӺ~]je:˵:w&pOcK8^+fU+l=hZ5_Ԋڶa7 |43vz9WOK<u^vIKsa:o[k'\:mg zeecWo*!1Uk6+fM1M`g:X ֏}n/1ScEvߛ.UZ}zTuv88:e<T?Q}KSku:j9gDqŐg%ڬ ]_5KW[ktqz$1cG;h<   FIܩMڴ13[HRܼIUh'خ %+?RKHJ]Z?z{+O_9P(SMm|)sѧyҜEѮ4<k<XiYʵsY`cN/RyX J-Ngb0~'k'ץqIo}RH\t :IIz(WǢlLU6*쭮׹G=dPyK&qgfGqUlZmSe …,XNw>o>"O&9$MON8/ /hU^Ϭe*ݺ1yxB\)OV3+ؼ_ꨝ`IpTf7ָ"slVpG0[g~J뗀u>} 5W]nc.kGͽZr^MU4 }FPAs}v+G`@jVxYimgMkt~Fyj}tWĝ{PGX)|X=ް]=V>{DGalU=`OHєo7=C:>!   ^Y*ӊ7Uϼ/$_sK饖dz ӫ*i7Uo}^=qS='OCn#c :ڻXC%SIs֦^55ߙ/MF[_;&}ym~[{ƚgkf\}M~\<lrw'?܌&5sIVεw垒挸A}K_бPZDԛ;v1KUV5n>êr~ηԡ:ٻǝ-~[ǽӞt_nСxo8?pUqEx}xRo{֥n3S1`0}X͞~W7MZ5dt{hs6Dn>}Uy7{yC}[g/Bm7|A=>ҤO;/_EQuZouyo_M{^o<lǎ#oWaniu0h:O>:<1qg9ݜCO{   ޯ'<vwu)x$B"99^ʤ$onPEytl22\i۝/~r]:QenO ,3Pf*u;|}M3u\פ$]j"6Hf"c<nݸH3˳ ]5Ox{{fFg{Uc:5+*t|,t+2=Wt5VÞgL%eZ2_slƜ93pSW.5I3S=,%Mc5 e6d$[zS5oEڈ8XSP٩Ѹ͹s[Mi+hx d"{78x5w%kdctӗ|e|dzg>իž+~/%EM vӯ{&h~5dŦ'׹\?N(W\st1{+6h BlڟtC   3S[r~gbq"ϵ7d_p|/1es/d%&;O6wf}m1?}~&w7Oo̪zvXUǘhj~O5wo'-`u;ri5TRZ#IکNgH#/UXn՜; ݺ`~bں.Li\19^ׅQ3"ǥ3"9o\׍s$9ǿᮡ~F%WÓ3nLƋ~3:Q9X=1;pibty;"(>Gyn ܙ     03-qN5%c#Ͳ&,+2}GI:YפWZv6m^g!9xTiI)^{Jj<]u !v^VFєJgCof9+cn_4{5w2)5֔RQS>Mf>@@@WiK+ȬUzyzWsNN}q*Jn+YxзuRǾ}^`nX~:.2 nGDEiWYR/V%gj ]>R,3߭ҭlS0 e@@@@x<n*Co}ڵTkWn]'TӃ'BߣmYA}҂úpVm!6b+ Ug˺} {p=zWQu~t{>%#IUҥF}ufH&fV~4T8'hBY@@@^piKG(Zu󓖑K4t-n){lc?8p{](f~8N5RQm~g++=U&T29Icsb&5o~b٦a'A@@@G`=Շ|uw]_ M 3YD2 i6@@@@q )I׮߈<Qs=Z0lhp(b  `*C@@@@@*8mmܹĹ\[AϛꃮI&&̙a k@{      i3՞^-]J%&ufy^,GWP@@@@@@ 0gݾ=.%͟sFyhhXLHYh,7C@@@@@@@i`yp$Ɓǩ t +*i@@@@@lSMËBH      31@f@o .    3SMWnr&q79ԊL'@@@@@)3       q      L5@@@@@@ A@@@@@@Vz      AHe       S+@nji @@@@@@$p@@@@@@ q7޴      @PwAY8      ̝h @`<Ks:"    &uu"3       ā3" @@@@@`B v=h^bjΜ;v iphh>tb@@@@@@f@I-]Ĺzw=zqOF      5nْ4͝3֭Yݦ{f-\@%lݘD@@@@@@%4+i7<<+]C׮PVrWZ3ޗ͜F       D X[qbfݼuu%\;q88     xi4Ό-#wAC@@@@@@`HM"U       0^w|@@@@@@&@ R       q`j23Rc=N@@@@@sg`r^cJ6t?U91Z(9TVG7k     5Ӝ3?֦ICc'j^yoSXE'ULڒQc(ߵ>R&_Fg|=?9@@@@@B`wҼiJ6S׬kco5 oܼ I<i/mzaZ%?|wMS$섏AiH,X@@@@@iσjm̲~sHM9A-XZS-RҖ*7ݚC&u&&ڇg#mV\F:     ӞFՠ}ܧxiჳgFW<KGo;#!ӿ23k6"     @$&ha}HUQikj<ߢKГIt4Ɇ5$oki eF2Q]I,fv2ۢaOʶnPd3wぱ|r2Zn]Vc15zj=ECYRĐbb[zt޴oy[FiYUՇ0aչ2#EnQe=Z$9{2 ri[MNU:;.Lv%RZ:yJpu]j֑&_!^`CP[Qr$)m9߭ړc[6k\Gz})Sa^Wf,1a@@@@@*?;#lw+R̍3\k>OVym%pgF-z "mG~ib7`sCMR=-1>#32C*ޡ4_uw*Z(cػK羨yDo-ю dywTݬAz[Ƚ ЖmT^]ީ__@/Oqmcz|?`AC*(wz kjg\4uyb6 t5K;o#wb]yomî7؇齣M^ w +L=h޿+G\}HZN/ٚ7ԫlmO@@@@@f5%>hv&y|2+Pk9K)ӎ /sVhɳJUIImj<.28۞·|7h*>8+II;wZqU?-5~[us}ϴ?:i~/K+uSc^JQsgx'먑Am/θƃrK sU~m8w;x 1cU'h]&][{Y/s܏KKO'xU.=o :=Y^-;3/g     0qg"0:vKڴ>=P}IʵmWz=ӫZgw`5'GE:03+<_ _d^9II t,c|6GtZN,uv\NlWM}z/ud$'v(b]Yv8Zk6 zf6lXP_mgi1_a+p xpDޟ#ѥҒ bW%V;ӣy&Yf!omN3|L6-Z7IfLDg /KO\RWqU~.˼SOƸt}jnPcjbEZ{lo>>u--Mi2%ОJ}i=w+jIr噗g     ğseէ zo]lU[So|KG@}V>mF,u^~/ioU\q%Lp2汸pY}b;f_jlGZeuV:o?o~ԽciF}iwnخ*[zЕD3&7ZO?O+^n'竭hoSm~v}'RU/eZ#Pef&W͡_(r\5gVz;0;1jxQҒda4d< !"=^B`ѮIڝT~z^cXݣ_j+yR%ש*d}b?yqݴI~:όDgY `zILV{cKzv@@@@@kIܹ5*igLO}ګ+@IDATSwڑZM-6/IlUIN$s-Ug-7Αz*hNPawzK9;^JMΕUI9)~_M{/w<qEۦZ;igPIzx܇SUo$viR>9zJOedY'b폙\:ZNЫ'CW{]ϸ=GB =^B`ODX/ikZG*ZdͿf Z%bs$X%y%*JmyGꣷUe{l;zMMA5 ߉<A@@@@@ .(q׫g/7o+!!A: :v I.t5L2] !tl$NOr/<_VYskFB%|b뷯q._p"GҴrӓzfE2 oǴ3񐚣l&+)ik^R+ex_1N_Gm4Kvĝ]5nsc׿٤, f^6Cm-j t_$M@@@@@8]E}>ҊSv*LJN8-ٯZB7 խ0RvIlD| S71+u\Uɷh3ӳ\$ u<lyyٱޞ:e[ab2Sz63h |TVm*[P:b_V{&#9     @ [W?/h<OnnN`5Qɋt,4zȉsnB/l_Cqަg&' 5ӫXNܧ1G]6}vnJHSAfq71톹H}ݏ hUݱPQZ9+22N4[Tz_Q@@@@@ n-A+!.~һ4֌ Oj{u/\#+]Z5_hY>JӖܾN[,UvZzL vs!د# gwIrF; ZjսV?y˵Y񷏻hĴd; vg<_nxdw_X[ZFVuڸ&]$L~(7>@@@@@Y pkfx gMuLj4T{ <uziRwWt[uZ_`:2) ~u+KeG<c%&cKg'<c=񐛮 2G&3vs aMp]KZv]^Pf/&:~XSel>;     6ʕv43zn>:5GNnViI=`zQΆ pQqg{ vԞ9=-_O=Û4oa\;g54yvygG̺fk=O?yX%NXnݱw ڽh>pi)ZfO-KQ+6OXixjj>rL¶cbz?F뒩WH~Gv<֯P5U:#MN|<A@@@@@ 'qRB.r;McNk҃ś*;?)mJe*u%+?T*5v+a߻UY\cU~q듖'M6xGJ/]ӼETPA%+u J7,K+&{@͇U3v{xhfP&SWV]w`Yʶm&`'q"Mߠ4;n5dL{ljf`yX~)j-M;_s%qRuMJZµ%ھN vTRjv?UfY(7$^g@@@@@&0;D4:!Gt™<snZoIh ^<,q<mzkGJ~QK]Z˳__0(vThPsT&'Jy!r+Mqaj+F[]s{_ vSx%kgC?yfեvYcHz]ʨ7~rvτMF΃A v <Ik㎇̏A~{f60E]PyhS9     {܍۷E<0|Bqڠڋ^gr>!oC#s"[^TYki7Uo}>zH 1O9mYok::rw_ӫWۇ4f<d+josmz^ $rt^} 5[{cjr߮BX5*=r?}kg`]O*^qy/_S^-w5aVgtGVSSO@@@@@`F s{&.eU_%)D 5G%yK4t-Poη΀ߡ ӯ Otet:fL'4ݶ뛔NCEN)s̒ `v3 &-nLf({4`>5cF7Ύ^tcX+U!     ~O8eko~"ijJNd|'bъ@_jϬ:Mϔo&Y1卺li=Cr*Bv;&-g @@@@@Q`wo븼q      ē.0@@@@@@w̘KN      (x*Ą      p .9F@@@@@GwxU @@@@@@`BN o2+!q7ԍ     rW$%]O-Xkhp( hn#      sGs<]"=uR˹v&0g58DnR@@@@@@`z՞^-]J%&.ހZf^3`Lf\<"3A 3}L@@@@@.}{P]J?_s&Me I; ] A@@@@@f5[3q98D*u5ҢC@@@@asfX       q7+/+B@@@@@i$f#^@@@@@@Y)@nV^V:      0Hʹ+F      Rݬt @@@@@@` iWx@@@@@@fYyY      L q7Ӯ"     Jw)@@@@@@&@n]1E@@@@@$feS      3MLbċ      0+HJ@@@@@@fvň@@@@@@`V N!     4w3/       q7+/+B@@@@@i$f#^@@@@@@Y)@nV^V:      0Hʹ+F      Rݬt @@@@@@` iWx@@@@@@fYyY      L q7Ӯ"     Jw)@@@@@@&@n]1E@@@@@$feS      3MLbċ      0+HJ@@@@@@fvň@@@@@@`V N!     4w3/       q7+/+B@@@@@i$f#^@@@@@@Y)@nV^V:      0Hʹ+F      Rݬt @@@@@@` iWx@@@@@@fYyY      L q7Ӯ"     JWt KΝE*yB%o1N7@@@@Vs Ok,sGCCCP,f;[G@` 1I,-\`EM     0Ѽyqۥ%Ktuuv]c08wT8ıy󔗳Bs&믿mݺ}[wFF8jBC@@@@"`M(X`n޼n]ـ 4<-NI1ߥUv13}#qW@ٙ݀I]jP@ "    '~=ĝIu]홼Y[uIbu?"M1- &,kƝ!mIM,!    l50`\l1 xH">@!j*o47W:Be@@@@v+yw+i43V$u@ x"EÆ     0M$wckQ@@@@@@I329aNg'"Q-      $@.      ܵ$KO@@@@@@I]<] bA@@@@@kHݵ#     ēx X@&^;fuZ,K@@@@@`R+ 0$'lmܲ}FM     l`]<^R=D'Q*u:1$ߌu([e;RaGyojdcSM_'+:~Lk]5<vdZ%ՆGi'}%,@@@@]`wzeYz:_Wb[xYO[nJu_BGZ8a&5J7 =goѮo,5EK3z1<LTn\ ?OHEj:AQdgD@@@@`Ls.QI ӤdiɒZhE9A4/3Ƞ4 |dFv`N[^سVIsume嗴WO,=22b 5qZ;;m4hOyCP㴇>    .0͉;}!oMWjB(MfiIfyen*;:oD8@@@@@J`N\EC0S`pγwg<_ұ̻D     @>.#<!oM 2d&VZ.1 ZW[wuYgVy141]Vc 50*-wJVgjq<%$> RT7 #VPIiu?+oPI%$/HeԘ3-P+&jA{KNUѺ%Z`i__odh=:A|k <b]u1qP~,uO5Xߏ;J2(uVoÑTY+Ѫ\>\f`5zt9he3ϘjpVUa]|-yR}j'DI0Z> d*qkTRjJLfَ1V90%"}Ϙ3`z"uoۋ}׵h3sǯo<A@@@@ f_.L=CWKw>S '*Zen=p*2 g۩gޣ VP͗G'x4uyb6 |<ߥu7u,0AK mO/=_آG]9*ފg`Qsmcz|?pAC*(w7{ k<yzlt|W→ZGfkT O{wzc^1=؏m`OHFdnܥ:RshvV$`TݬAz[(me.WWw*ڍ*v<ioN9^1_|ߦ^:jr޵ʼ)Szh{:} \B}ilUGnn2!3p;4D/":<>;.`xܱ#    ɏ~ܜ9[_1;SNeKe;/=ퟴWj*ݥqĽW~b𤝫Dr*S=5WI;w*-b} GϽI;OmYzVɱzǾ4i*aLxzbއu)"huVJ=3ڒ1<;_L7я<r%F'ks3qNuVٽ짮XgWRy,i)Pdl7{ͱjj޳9 eGccX'Z;˵eCz慝xP9c%b{4өno\3ӫX     4<;`ܼySAfձY5h׽Zkۤ>=lfs5 Mi2%ОJ}jJ $i}ZyLWn(eyvTG߯o}Z*tb< of|ѿ};9UKםafwmݢS:1:Zdkr]ajIu5KCi53??VZd6U<U$k3m,Xy;tXZaU wgzb&l 7zBǪjx{6mOwo[;tSXz7۠ik,%Cn߮^\v\[_s㘔z^UBӏp}*^'Nh{0Z]v8Zk6~3K=`Z䞩{\ͥn6^k1p_MO1i1~.5K}Z\yiYRs97Y@x     &mL>PT1w}UIuLNrt>G<}@")l;;z/ZF0Pe Us>#c^G&y?!oZkqWuE&qg6jxQ4cti0IY1}oX.~}#Ustj._ӟ!w(m6nRvbg_+Q2jЭvZ[s7ݶ9VoԧD۝L^(ϋ*DYoVOSSCKK7Ks%z~9}3"Dv/TYB]N4ųQ:[o'O+R_?IjWL5%[ӯM_"mjVw5vB?Z/b9zmol!ih?g;T7Y? '    .pˣ*Yo+pLk̳J$0ws$x䕨(M'mUyK;*̷/igS*}u(#+<3J5ǎvua%ΖƋWFﶜ<WO>n=ٮg\Q16)x\u:Hy_k=͛=pJ3˓<VfrcKt:㎤]E]&qgbTVb7e]_vv{U*5;W/+W-g7~>HO]7ig{[kN:mR~/Cyv }_{OTњ<2/Lx>ί^SSbߠN<&b!ϙcoL}{{#_L!   ć;wd-';7|nY"Ӿ25R3䱾٤!<J_U/uZѡ56}H uҴrӓzfC`M,ii1gjig_PGSsTd%%SR|KJTbb9'6)!t]l T&qYYt~Wೣ:cnZ4E%:S.7۳>OVٝZʊ G4kyP_W]Ko4߮z_lTy;grI|9dj~sf8ڋ22:tA멏Z>\|    t DdݲD}='qyfĎ}cozoEVy-YŮ-#:iUW闬qVn-s8쬈a孷[-!*𖇟מ}͋X]b=R[Χ7us$}2Y;<c>M 8GЭnHȈ=賔mf_@x5{K1C/;uq2w~Ӊtx_Mj}98`bާmodY{gMѼ#{t o?wΫ    %0֒w52%a6 i03u7TavVΊ _#4[T.}ަ; <kFhtEZ7uYwcd^[ o mLc:6bݘ;$[EIEK("j;A*UdUeeY@ (os|B+<O aԩՂ"mi1qW-%=ᒟͼho??7 h=J]uM%윋 6݁]^2v^/)oϙ/SrLzڗ\h,^|D(v#i4[[N֝MlR*zӇ=;}wTi2_ݡ>N{^N!   vCf!2mރ{2,AgE*.<UmQ=pu1/kj:ӫO{4]ÏF͢0WRԼxDO|e 24 ֭=Nn z?ם@/8`sqʚyV E%NBqkU nf^O'E]OU52ΰS"gͫ2;ٙt˹Ljh\Ubkӽ\ncT{=]m_jWEw=YO3oGUN5dY'pU-@@@@T ِmL5^9Lυӥ߶U^ȳU?zM5zd&_[_";ZehR׃0C#+mj7/kHǝMU%S:g??C}]X[`w{S?V|Nj|%I(-BEe^sJFG.=phqI=Ԃk;0c_?F_OuMҦm:e7/Z2fxլZ=6ŭs枌>}{1\'Gg\{vf;L]lWuG@@@@}sȴ+;iph.ν_}{K1Z?S}>$^b'<dϹξDgdWdO|^_cq/c{Mm> 4fO>';uR1{c>m .p+W.SjUsF1=cGaqN=QjӏyڽzOo|cu,t}e̵e$7;}=ӫϼry׶^vt>2Uߧ] ۷L\>Oz3~{Ɯu8}2.̮. ơ    {"`:D yCeJ/Wϝgz-TPT^=~&RK/ܮC}D s~|g*{5zqϞ4sC/k\kKjU]V]=t;jZ7x=.oW~Wf ֭JOUnm,u{B{wbpRPM-Զ/DAy[ʺ^|O gYu^>/z_\7U}>2Ϭhf:de8=|z7z#5]i=yc/'3ok\?L7s:kݪhAzHM}urOyH]n}^2¸7uk=ཤw=̨f1륁gwȍA h]}Ϙ3Ne=ex}?1K    =d|0xarܙU{p0G4/ůW#=?_ ?@Ӄo^Ǎ_{Q?=݀OU#0ŷGOU/SYu{Fa ̥'uƥc~0ru=U'{@KA6yQY;uz⽝g{mO~Yٟn=$խ< `ֿ@(WЮFusi#G|P]LgyRg3=CnrP+F IdZ>=Uwn>~TŖ㚮. I@Qbe-- 0r3g[@f{\b~Xgfx'm4!,!fM,dRP$2l/'y@@@@rXW/åN|`5'_Wя6]C}yW_Wn3^'[. ?n8fF0=r[?W?yWwzڀkfM~9i-Gݰ~3{^~Z5hzn/WwEt]=/pTU'Y_66_ոa"Ӯg0_?ҭ'hmbF;i .+W[v~3vW_1 }?o<w3zsd}mrkYR r?:$,&Hl&5ֵbȰ~sw_3v/Lzm8?›9k \mZۮMwr]5v~~LLdQV}4\#    p@'~ソgvJ9]zK54cj= :\#M% EUBsoLC;Y^nҘwSt;{UQbB+ZY3ڹj.8O?t!X?_#(m?ݭMkyrH)]O+wWmZgms_Y,fYeXn5[tܪ1E3wd^☹V Z@СOD3>MCrٚ|E.{vsL(^.~S>3Uɵ!~7&{@@@@'PW[yNUV{\ud#2S==gR_I5 M&8b^i-#n^{̛tk/Z;KEhnT¨ۭ]O+Q.lvVwOˠ}~-|JNatgfxٲ_f]Yur    i `.͚p(19@@@@@,seX73۫#{'Y    =r)NA*4UZ=:&A=+-A9@@@@@`/&i_̋7g@@@@@=9#J`oP"    M찕"      pƤ*      Wm;J      @^ n@8RG@@@@@ c`[[ oaGP _VVZ=L@@@@@'`u(.. V| |Q@@X ڵ45shXC@@@@b d=G=qZ[_ٟ rP @ 1hWYi;OjJdm-4f؃    @aAezoT<j{$Gn\I7+H742&?: #    Y`u<O dvA0eD,wUUY`WC    [UZ>TUsQX@ V`naA֋@@@@@ *P@@@@@@߆@@@@@@;H@@@@@@߆@@@@@@;H@@@@@@߆@@@@@@;H@@@@@@߆@@@@@@;H@@@@@@߆@@@@@@:P@ T^^R؍    (??_Ӵ"ͭ-kvn^9XaIai)ʉ!gt*).NlNA@@@@)$4*-..jrڗ=l&F.Gb! y<:%f~1-@@@@Ȟ@qGEE X^^)gzrVVTkxt<Y'),TAhuzfZFBDv) Y}tqߥ#    W'NTw&hg=Q%%Vjfv.RBbךּlnn|nΓR@@*ʂ|zM͘nQ@@@@ʊF'#yg漳1Z=j0f>Ӌmyy%7^.Y 5<U\,fLp8^kk;mJ-@@@@ȆLquuME^gkO+h`0/eً<P Y|?^ i L Z7Yͩ.    d*0:kwbig-Vwk;{^A]/r(      E;f[;k%K낔@@@@@@= p$      @2|@@@@@@@        T@@@@@@w{H      d*@.SAG@@@@@@`"I       L9@@@@@@=(؃4H@;Nڒ_*)W귟</LCyLeuJ }6XԜ-GQeuy'em% ߢ?G{*Rk]J<jtgNhmqRwF|$~E.Sj(5 ˗v`_R}kCv'b   pr8pת~zJ} E[/|RgƘ4;;kg v>9P!GSVs-,,^>g.K1yIDAT/ ~1if>pW^殓5%[}+|{L]TWZqݸqO$ԛm^mJy>ݸ>$CM*/L<20a/JdD-'[XWR451T:zOVY ̿)|N*Sn5keeB<gڲ䄉AxmB]K˛Sp.5r;OΙ`zyqump*&C|UT{Uj 1?v爜Z-j+^+/E}k=;{uDkݻ}K)V@@@"9KMdoPUJJYUں.?R9I(!gk Q܄̓lMd)UV/oꅟ@Wǒz<&h\TRӓL0s#`|ēUTᗟ_ dZ㥉YǫSjJ ^+=j;sVk*y7-{jKSZ֮Jy+uV#ShiL }1K䭩WKô *{+dut2FZȽMekbvZ1Z]I,6`֏6 ӻʶI=LO^b{|ۺoA.GK}ec_9{Er=lbjVMG^l܍\S؈   '}!HEӲPOSHP>)[/^2ϒ,y[wP6#GA P$|yU-kY|[?>'կ?ߢv;>=!w˽jIS,z57{C),kh2M-*w' ]vnln 51ӒCYZUc^ZN^w4R66zt,vX/OIke3ktj9#sE8am8a^D^J*ʂ*OEN_4Cqtl7t[Ϩڙ lmKhҺr(1˧[7jz=L긏&i?"QOc<-jQTe.2!  ${ZEvzi y%=?wyv~a|D̛*oדNizWuu/"9 PC 75b&K}K* LL$Zh<n34fdY1p/U{A].\VUyUTu,V׹NnTkuօט4+Mn!)0;7P[K:"&N-o<\}Yu󷲝wKw',4ou.ލ @ԄO-&pg^cSɇx;   F s$~싟׃i\) أ_=iL\OLć &5\M<^ԫ &t͘`esP|5؇|`NZ[c=*Olg* g'V43>Wo%Y[CMLN2c ̠S7Ɣ11AΔ*e5-`oʌF gpY/!S  FuΌ/> KKs1!Cˊ E\јMQVtpC%pU6?<24PL4-NhmQ[jYӳ1_ZZ47ig[=MN;FX&ãjU=lf&҃:ku*,PUu Ks*ʪLPV,Ӊ&Z^Zиf+Qպ֖|[U+ x\7jBavp7d9?Hn3ZC޿͍U-Nj.MVykTY v,e}.UՔ[#3nBVx5g^[\oKQMU.-R~͗}߮p;I}=e+/ ^+vr15<W6siksb61'.jn~XQQq F](1i@@@ ^Lg ܅zEb>Tu^cY|@vߓSן׏}Gwҵ_\ը/wCN"X y=v<^u<:9wDWi}`W-h^wbkyX{wO;͗{1 szz N_~/CRCXܛN'RԸod~‚|q O[5q_wǬfe N)m0p[&`2rz:&mmJCw" P%ܰM L @{MҺ5˳hCk#OPbKFHq܇ѧl̨o(lmsjc{cV yUs5ߠ^N<uO;[T=nUߧ{wc ,ohֹ௬4i-/mR#+~i7Aa{ (<v9U5u!nio_Q}~ܮm2lKu1xTݦfm?٨;4չ]EZ0%C+O8tfz۾5M:wC7]~bs.|dC۵uJiMjZߗ]wRك  nϫm׎ۮ߸?x䎀l)wJ%٩=NZ^?'yD^~>;O$= qu3҉Mmh|˥O6zoNz(tKDW۟x]H̿)tֈzޙxL^~ s١I5K&Ί_c#f8hړYH 0mbUa%*3Y(xe[HibilYZ^Q&VPs)ML|f0:);C*.NȺDjLPڼ4=k?oqڅ/TmKvE>8;[vsDN,zVE2I )1sEN4t; +qWw^K|:~v~V nApkLw=t]*Q^ucl<\Uߖ *QiVy8OVŔ*#_L r>o['v?GΩ\7 K}~@@@`wHL ~2HI䁗q$DN5E^5''??EMUzH.@C+`zΨ{Y;z R+MUeI+7CK>z 6T^~\WW=6;/SzѭyscZzH#&Fo }cj &ߥKOF`_6`>=L>Rn3ZS.1u/+_t=ezV :YzMzSj[Ɩ<%^560fa\/iiۺ孩Ӵ nqiIIֹ&y-,-88r{i:>6loD773*Y -ܬ𪥦 O6NxZ<  [U(eLyY_|mѹ6h_ktp\SlP5 jmkQ5h9>3`eazDCSޑ5&|YV|}Q,g9?wfTM3^iQ.q/.ܺ_F*QSNymqZF&*4tK UFMf'5/hވWURߠS=y4x5oFS^&݆pUji%"Mu%WqZu_mE0çyKݖ@@833zg?z3Gn?U2e]Ǭ\s.={G~;[7\pV]i/Y-e:;GUFuxA;G58sf8Gg+өw{M_g#s-,iVKFkݚyP0=>ڒnVwqp>"}áaMuv}q&X6G"I˽cf^0;iRȎgf|+mr5Mb5W|+ccnݿSi<&a^rv}YsKO2KbDg}x>mq/ӣHyFGgo/U5\ŁF"/ieWL6i`ZU3 nYӽHι[fR=`[Rp|ahxR37_e~Og"}CV ZK$W_M.ފO7^̜}7sVՉ=ӪZj#jq\o^oW0Wtsj~PXf| 05pF—԰ wyt[.ULc+d_T;N}2mߝ_7kZY35y#p^cp  a~ΟMyLk7owc+(P]U$bl[Ͻ#øŷTYb:$ɫ [ tZQ4-;_E[iPWc^so.77֛gwdը_k#%,\Є Y0Yޛ@voͬ?2#쓕1RG $6` bu9٤ʸEa̰U5z%.L{KqB]E`ܵpoR`QiRCĸ7I՛]0WfͿeb;sd*kKf.7:Вj pT.?qj (Z~DruY~~!BEsvҭ鞙o#+1ìxT嵯 9A;E3NY߿柿e}L$h<gտ,if6`-eٯtF5ge.m{ԧDol^\7ZY1D ])I @@&%k?D&[7,aEv˭WK\ӝcrGĦ؍֧]}-q3[@*PRrOlj>t6^</vfL8?:oRH&zRhYǞʊUbfaJΙyB+ÕY̐f>OqMU=--K1xWjͳ5d[&Fۮwύ)+[ 3RyyJchej1!_vSj&Ie)kTw^eb3CZ˿,ofYZ+u0=e,SbS`"y3&ꌮf`a5 i37V{3:se%vw?ݹl%Q0|\7Ū4s$v[=cR)pܯ;D^MP6zW&SLwա{s8)c~s@@2HuL>{fRu:WkA~iMl nꜧѽj=ttkbpDzGc=v'DZ#oڣvCug4IۥZ%jom2sɹI//vx"] i˪^+|`Fu j 4h lTӴOftR;mzY8-f70gu%453ӝ=X ,kaoݷ<3@X,-f~a34NdY_HK̫ؔfjͶK>H-?3j%rkt[;XjsSrqU^'oTQt5R.nnC   4da"o_/cpv=#a'h^y?zpqC&p0?cv%?=  4 <3|6Bgbhd|:|Mnkt c0YD}Ue$b|څ*}`fj'7Blh˴o~V7 ;;qMD94ylΝi ;WazfV]:4(q<rAwcpyC=::I'^:џk _ Z,xۖymhD-]ۗGY1A<+hd%Ҿv/! 5)Cs^~ء>NVٽ|wi}v8?eS>|7Mtykүe@@<Cdvk"tcj}rr y=7t`'o{%v.W!,PC`pQ5f>mͷW3 X;u ڍxI|zk:w[׷L@mIqDSu@U* AaLr^mΏ}e^ZZg2w)ۗ$эGLH]Xѳ-͛9{zoX#sn h\4D+krOi7Ai%<-k}ISO|SxqI'͹doi)#W`{USG44:]n"3~lk˾y~RͯB⯜Pcoh< 'pUvi}R=?YƖ~@6"ʵ&be:D  /l6Df|O;[dʻoųS̟~Iӿ,xCKM$ꕻ^>mgHXAߓChv^ φ4k - 9&~Y-Uc͵;Գ?Iߒ0*j]lvs= _ psHaʝ)<-(ܮd:DgȦ,Kե63vK~Ty!f.&+3m&$;cJ܀E-G,QUM(NYjØZ{L{:Mpn02iLz3x՘dͺZ7ܷvv~&HjɺMW{UeGLUuQ1Ǚ4"<砮8?fZL7Vpmucߥf[,   ֐##TB*xV*UW)=n5FibogHKd)nC-s_>; s$@C.`'c:DS3 K<\y9rD.ye=nrgм>Ύp1rmݏ]y_rӵ'fTN]:Bwvg'sX};ۯ@TIzijjׅ@;[!YE-\O>|xMkg/9]jTte ;Wp.]?GO-Or-kll<m>?j3tgk69jiU[ul0L؁9߼hbJVRTB:y=!gaK 53팤m&_TJvR_햜sֶ-]yuwڧ{v 1fVw3F?9)27u1eC׍XQ`]nC@@t!3766tL~N4⪃ϭZ?5\:#߽ȧWWCo\_N\񻂟D[s^q^һzLm̃y4lD@m:=͛q'Uk? V2k?4z?ثzgX)^?~ѭ 䛑Zi3j|fvV`ýJya >:K?s'L[;<,#DU<R n/vɘp`SI RtnZw4GP'V5~c8roNs}(d@/|lRӳ`P+Tu jA0iirVSd2>=pj\zff4k\z9jjU^-ʷR uVգ+Pe\S518]6Ǵ,j48:&sAf8uƌVlge391)9&,[zlҧ*(PCs]$SY<f=@bWT jaJN\uz~Ӛ1_t+c=ȭklT6Z.MN.|݄2s_.)S"o\iGMP|m}J0L볔a5w1]XsoT*Z7vw^7s^Y $xwh@@̜p \N}_]ُ<+kգ2xǹOnoUTh/WuCn#trίҙsG z5:pWT"FP.䠀%۫S=$^^>K^t%s9$nӌ./ܫۦGIE܁.oW/pnWCd@n;yPg-UDžG;Ϗ]) V2桬 и$~ӶVĖ0س)gm Xf(߹b74\Ÿ'?dg6/^8iaY&JWgqUS9^ k`_#.6'/yXm]h:؝_wlB6'Mpp>cJއe@acWW]qZOFvhWm']wVfu{`mL7C`ml gУ*m ?}]+*GiQwUtCbH=63FҮ(Q'%q-=~|s>Ocj/cM {k/}"   ^|)8a&W5I+Mq)Ŧ=fI_DVWSmV/GMԍۑ8uz=Ɏ] @.lE%+M@3c.AyCWX^xc5V/ѫ?WfC1|' wmlVϾt%Ѝf.c| 5z>gXddD3/Zu]sfxʄBg5s+2EvdV}úrgヰQ/kr_\BX]{KSr&X{KqEJK<)e]#\vցt1fI74]d@R;9#OWohh]~eѧoΨ?n[nIT^\]oj>8vn]ל}yFb3Yԭ -%&%ߘ|펦0B&.[˕la&V9O͵~sGyk&<xׄ|b&~\#3u\7}7/spVi&k}w@r}2m{t{x:^NSk~zD7k i<&^!|םSN@@@Nֻߛߢ_VS{+^yZ󔷹i@+ jé A l5\hnaQ9Y=fخ _EEZޔ VM$_+f(C;4GN^B2kiœ7E2SU<ӴX}EvW6u|S+&v{4/++f2k֐'9|\fLʼ(QZ_7y'km53h1tL5EZ7Cejkմ-JWTɓ-ӗmcm~NP̠~sw"XrW&8dmcyI ) ̶K+0÷Isoл5% _k0ǥeBL'-1?e}'ioo:}uSzFڪ=ݒe  Iʌ5ϊg||jUgҶ[YQ.뵰h?ye/˿?q2G4H_YYם^qY@ ;cm^M3ust2Lf[CZ6l8f-2òul5|l^.-K=3|mm,X42esݘW,YzgXa>Sn̜uIv~͑  9 /۴0_Ǵ$@M7RZLOʑl;|h@jߩ(K&h7rx~q@bd  $ X.(lA@xt;o]'MSGC,w"Rzd#+ ph֖5:nz==84 GA@@@ ,pGϹ(  @ Le4fW! kX-3;Kq)pm@`Kq-v}'   D X. " WijJ@@@@ ڒSp@@@@@@#ԘT@@@@@@ ;mG@@@@@@#ԘT@@@@@@ ;mG@@@@@@#ԘT@@@@@T /hNu~4~ђw.2@Z@@@@rF8Xͭfޞ3M 'NPIi>k)qD`Y^Jd:f+v_2#Q@@@@82OsEkUYA5iye%= ڙ dyFuwf8~6㮾ZSYwG    {'`Zeˑ@17;`𮰰|2BJVA2q ,@72S*.*Rkcͯb7(    W l^3?ťȣ^1\]]ӄf=o,(ȏٗgV D@ 442`W@@@@H&`Fǂ#zcz%e@W<wUUY`/@@@@@z"0wC Ȓ‚      @ n(      Gikj      rq(       pw|ښ"     n      p|      9,@.!     wǧ)      @ ơh      Gikj      rq(       pw|ښ"     n      p|      9,@.!     wǧ)      @ ơh      Gikj      rq(      к\L@IENDB`
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-core/src/main/java/com/ctrip/framework/apollo/core/utils/DNSUtil.java
package com.ctrip.framework.apollo.core.utils; import java.net.InetAddress; import java.net.UnknownHostException; import java.util.ArrayList; import java.util.List; public class DNSUtil { public static List<String> resolve(String domainName) throws UnknownHostException { List<String> result = new ArrayList<>(); InetAddress[] addresses = InetAddress.getAllByName(domainName); if (addresses != null) { for (InetAddress addr : addresses) { result.add(addr.getHostAddress()); } } return result; } }
package com.ctrip.framework.apollo.core.utils; import java.net.InetAddress; import java.net.UnknownHostException; import java.util.ArrayList; import java.util.List; public class DNSUtil { public static List<String> resolve(String domainName) throws UnknownHostException { List<String> result = new ArrayList<>(); InetAddress[] addresses = InetAddress.getAllByName(domainName); if (addresses != null) { for (InetAddress addr : addresses) { result.add(addr.getHostAddress()); } } return result; } }
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-portal/src/main/java/com/ctrip/framework/apollo/openapi/entity/ConsumerToken.java
package com.ctrip.framework.apollo.openapi.entity; import com.ctrip.framework.apollo.common.entity.BaseEntity; import org.hibernate.annotations.SQLDelete; import org.hibernate.annotations.Where; import java.util.Date; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.Table; /** * @author Jason Song([email protected]) */ @Entity @Table(name = "ConsumerToken") @SQLDelete(sql = "Update ConsumerToken set isDeleted = 1 where id = ?") @Where(clause = "isDeleted = 0") public class ConsumerToken extends BaseEntity { @Column(name = "ConsumerId", nullable = false) private long consumerId; @Column(name = "token", nullable = false) private String token; @Column(name = "Expires", nullable = false) private Date expires; public long getConsumerId() { return consumerId; } public void setConsumerId(long consumerId) { this.consumerId = consumerId; } public String getToken() { return token; } public void setToken(String token) { this.token = token; } public Date getExpires() { return expires; } public void setExpires(Date expires) { this.expires = expires; } @Override public String toString() { return toStringHelper().add("consumerId", consumerId).add("token", token) .add("expires", expires).toString(); } }
package com.ctrip.framework.apollo.openapi.entity; import com.ctrip.framework.apollo.common.entity.BaseEntity; import org.hibernate.annotations.SQLDelete; import org.hibernate.annotations.Where; import java.util.Date; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.Table; /** * @author Jason Song([email protected]) */ @Entity @Table(name = "ConsumerToken") @SQLDelete(sql = "Update ConsumerToken set isDeleted = 1 where id = ?") @Where(clause = "isDeleted = 0") public class ConsumerToken extends BaseEntity { @Column(name = "ConsumerId", nullable = false) private long consumerId; @Column(name = "token", nullable = false) private String token; @Column(name = "Expires", nullable = false) private Date expires; public long getConsumerId() { return consumerId; } public void setConsumerId(long consumerId) { this.consumerId = consumerId; } public String getToken() { return token; } public void setToken(String token) { this.token = token; } public Date getExpires() { return expires; } public void setExpires(Date expires) { this.expires = expires; } @Override public String toString() { return toStringHelper().add("consumerId", consumerId).add("token", token) .add("expires", expires).toString(); } }
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-demo/src/main/java/com/ctrip/framework/apollo/demo/api/SimpleApolloConfigDemo.java
package com.ctrip.framework.apollo.demo.api; import com.google.common.base.Charsets; import com.ctrip.framework.apollo.Config; import com.ctrip.framework.apollo.ConfigChangeListener; import com.ctrip.framework.apollo.ConfigService; import com.ctrip.framework.apollo.model.ConfigChange; import com.ctrip.framework.apollo.model.ConfigChangeEvent; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; /** * @author Jason Song([email protected]) */ public class SimpleApolloConfigDemo { private static final Logger logger = LoggerFactory.getLogger(SimpleApolloConfigDemo.class); private String DEFAULT_VALUE = "undefined"; private Config config; public SimpleApolloConfigDemo() { ConfigChangeListener changeListener = new ConfigChangeListener() { @Override public void onChange(ConfigChangeEvent changeEvent) { logger.info("Changes for namespace {}", changeEvent.getNamespace()); for (String key : changeEvent.changedKeys()) { ConfigChange change = changeEvent.getChange(key); logger.info("Change - key: {}, oldValue: {}, newValue: {}, changeType: {}", change.getPropertyName(), change.getOldValue(), change.getNewValue(), change.getChangeType()); } } }; config = ConfigService.getAppConfig(); config.addChangeListener(changeListener); } private String getConfig(String key) { String result = config.getProperty(key, DEFAULT_VALUE); logger.info(String.format("Loading key : %s with value: %s", key, result)); return result; } public static void main(String[] args) throws IOException { SimpleApolloConfigDemo apolloConfigDemo = new SimpleApolloConfigDemo(); System.out.println( "Apollo Config Demo. Please input key to get the value. Input quit to exit."); while (true) { System.out.print("> "); String input = new BufferedReader(new InputStreamReader(System.in, Charsets.UTF_8)).readLine(); if (input == null || input.length() == 0) { continue; } input = input.trim(); if (input.equalsIgnoreCase("quit")) { System.exit(0); } apolloConfigDemo.getConfig(input); } } }
package com.ctrip.framework.apollo.demo.api; import com.google.common.base.Charsets; import com.ctrip.framework.apollo.Config; import com.ctrip.framework.apollo.ConfigChangeListener; import com.ctrip.framework.apollo.ConfigService; import com.ctrip.framework.apollo.model.ConfigChange; import com.ctrip.framework.apollo.model.ConfigChangeEvent; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; /** * @author Jason Song([email protected]) */ public class SimpleApolloConfigDemo { private static final Logger logger = LoggerFactory.getLogger(SimpleApolloConfigDemo.class); private String DEFAULT_VALUE = "undefined"; private Config config; public SimpleApolloConfigDemo() { ConfigChangeListener changeListener = new ConfigChangeListener() { @Override public void onChange(ConfigChangeEvent changeEvent) { logger.info("Changes for namespace {}", changeEvent.getNamespace()); for (String key : changeEvent.changedKeys()) { ConfigChange change = changeEvent.getChange(key); logger.info("Change - key: {}, oldValue: {}, newValue: {}, changeType: {}", change.getPropertyName(), change.getOldValue(), change.getNewValue(), change.getChangeType()); } } }; config = ConfigService.getAppConfig(); config.addChangeListener(changeListener); } private String getConfig(String key) { String result = config.getProperty(key, DEFAULT_VALUE); logger.info(String.format("Loading key : %s with value: %s", key, result)); return result; } public static void main(String[] args) throws IOException { SimpleApolloConfigDemo apolloConfigDemo = new SimpleApolloConfigDemo(); System.out.println( "Apollo Config Demo. Please input key to get the value. Input quit to exit."); while (true) { System.out.print("> "); String input = new BufferedReader(new InputStreamReader(System.in, Charsets.UTF_8)).readLine(); if (input == null || input.length() == 0) { continue; } input = input.trim(); if (input.equalsIgnoreCase("quit")) { System.exit(0); } apolloConfigDemo.getConfig(input); } } }
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-portal/src/test/java/com/ctrip/framework/apollo/SkipAuthorizationConfiguration.java
package com.ctrip.framework.apollo; import com.ctrip.framework.apollo.openapi.auth.ConsumerPermissionValidator; import com.ctrip.framework.apollo.openapi.util.ConsumerAuthUtil; import com.ctrip.framework.apollo.portal.component.PermissionValidator; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.Primary; import org.springframework.context.annotation.Profile; import static org.mockito.ArgumentMatchers.any; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.when; /** * Created by kezhenxu at 2019/1/8 20:19. * * Configuration class that will disable authorization. * * @author kezhenxu ([email protected]) */ @Profile("skipAuthorization") @Configuration public class SkipAuthorizationConfiguration { @Primary @Bean public ConsumerPermissionValidator consumerPermissionValidator() { final ConsumerPermissionValidator mock = mock(ConsumerPermissionValidator.class); when(mock.hasCreateNamespacePermission(any(), any())).thenReturn(true); return mock; } @Primary @Bean public ConsumerAuthUtil consumerAuthUtil() { final ConsumerAuthUtil mock = mock(ConsumerAuthUtil.class); when(mock.getConsumerId(any())).thenReturn(1L); return mock; } @Primary @Bean("permissionValidator") public PermissionValidator permissionValidator() { final PermissionValidator mock = mock(PermissionValidator.class); when(mock.isSuperAdmin()).thenReturn(true); return mock; } }
package com.ctrip.framework.apollo; import com.ctrip.framework.apollo.openapi.auth.ConsumerPermissionValidator; import com.ctrip.framework.apollo.openapi.util.ConsumerAuthUtil; import com.ctrip.framework.apollo.portal.component.PermissionValidator; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.Primary; import org.springframework.context.annotation.Profile; import static org.mockito.ArgumentMatchers.any; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.when; /** * Created by kezhenxu at 2019/1/8 20:19. * * Configuration class that will disable authorization. * * @author kezhenxu ([email protected]) */ @Profile("skipAuthorization") @Configuration public class SkipAuthorizationConfiguration { @Primary @Bean public ConsumerPermissionValidator consumerPermissionValidator() { final ConsumerPermissionValidator mock = mock(ConsumerPermissionValidator.class); when(mock.hasCreateNamespacePermission(any(), any())).thenReturn(true); return mock; } @Primary @Bean public ConsumerAuthUtil consumerAuthUtil() { final ConsumerAuthUtil mock = mock(ConsumerAuthUtil.class); when(mock.getConsumerId(any())).thenReturn(1L); return mock; } @Primary @Bean("permissionValidator") public PermissionValidator permissionValidator() { final PermissionValidator mock = mock(PermissionValidator.class); when(mock.isSuperAdmin()).thenReturn(true); return mock; } }
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-configservice/src/test/java/com/ctrip/framework/apollo/configservice/controller/ConfigControllerTest.java
package com.ctrip.framework.apollo.configservice.controller; import com.ctrip.framework.apollo.biz.entity.Release; import com.ctrip.framework.apollo.common.entity.AppNamespace; import com.ctrip.framework.apollo.configservice.service.AppNamespaceServiceWithCache; import com.ctrip.framework.apollo.configservice.service.config.ConfigService; import com.ctrip.framework.apollo.configservice.util.InstanceConfigAuditUtil; import com.ctrip.framework.apollo.configservice.util.NamespaceUtil; import com.ctrip.framework.apollo.core.ConfigConsts; import com.ctrip.framework.apollo.core.dto.ApolloConfig; import com.ctrip.framework.apollo.core.dto.ApolloNotificationMessages; import com.google.common.base.Joiner; import com.google.common.collect.ImmutableMap; import com.google.common.collect.Lists; import com.google.gson.Gson; import com.google.gson.JsonSyntaxException; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.Mock; import org.mockito.junit.MockitoJUnitRunner; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import java.util.Map; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNull; import static org.mockito.Mockito.*; /** * @author Jason Song([email protected]) */ @RunWith(MockitoJUnitRunner.class) public class ConfigControllerTest { private ConfigController configController; @Mock private ConfigService configService; @Mock private AppNamespaceServiceWithCache appNamespaceService; private String someAppId; private String someClusterName; private String defaultClusterName; private String defaultNamespaceName; private String somePublicNamespaceName; private String someDataCenter; private String someClientIp; private String someMessagesAsString; @Mock private ApolloNotificationMessages someNotificationMessages; @Mock private Release someRelease; @Mock private Release somePublicRelease; @Mock private NamespaceUtil namespaceUtil; @Mock private InstanceConfigAuditUtil instanceConfigAuditUtil; @Mock private HttpServletRequest someRequest; private Gson gson = new Gson(); @Before public void setUp() throws Exception { configController = spy(new ConfigController( configService, appNamespaceService, namespaceUtil, instanceConfigAuditUtil, gson )); someAppId = "1"; someClusterName = "someClusterName"; defaultClusterName = ConfigConsts.CLUSTER_NAME_DEFAULT; defaultNamespaceName = ConfigConsts.NAMESPACE_APPLICATION; somePublicNamespaceName = "somePublicNamespace"; someDataCenter = "someDC"; someClientIp = "someClientIp"; String someValidConfiguration = "{\"apollo.bar\": \"foo\"}"; String somePublicConfiguration = "{\"apollo.public.bar\": \"foo\"}"; when(someRelease.getAppId()).thenReturn(someAppId); when(someRelease.getClusterName()).thenReturn(someClusterName); when(someRelease.getConfigurations()).thenReturn(someValidConfiguration); when(somePublicRelease.getConfigurations()).thenReturn(somePublicConfiguration); when(namespaceUtil.filterNamespaceName(defaultNamespaceName)).thenReturn(defaultNamespaceName); when(namespaceUtil.filterNamespaceName(somePublicNamespaceName)).thenReturn(somePublicNamespaceName); when(namespaceUtil.normalizeNamespace(someAppId, defaultNamespaceName)).thenReturn(defaultNamespaceName); when(namespaceUtil.normalizeNamespace(someAppId, somePublicNamespaceName)).thenReturn(somePublicNamespaceName); someMessagesAsString = "someValidJson"; when(configController.transformMessages(someMessagesAsString)).thenReturn(someNotificationMessages); } @Test public void testQueryConfig() throws Exception { String someClientSideReleaseKey = "1"; String someServerSideNewReleaseKey = "2"; HttpServletResponse someResponse = mock(HttpServletResponse.class); when(configService.loadConfig(someAppId, someClientIp, someAppId, someClusterName, defaultNamespaceName, someDataCenter, someNotificationMessages)).thenReturn(someRelease); when(someRelease.getReleaseKey()).thenReturn(someServerSideNewReleaseKey); when(someRelease.getNamespaceName()).thenReturn(defaultNamespaceName); ApolloConfig result = configController.queryConfig(someAppId, someClusterName, defaultNamespaceName, someDataCenter, someClientSideReleaseKey, someClientIp, someMessagesAsString, someRequest, someResponse); verify(configService, times(1)).loadConfig(someAppId, someClientIp, someAppId, someClusterName, defaultNamespaceName, someDataCenter, someNotificationMessages); assertEquals(someAppId, result.getAppId()); assertEquals(someClusterName, result.getCluster()); assertEquals(defaultNamespaceName, result.getNamespaceName()); assertEquals(someServerSideNewReleaseKey, result.getReleaseKey()); verify(instanceConfigAuditUtil, times(1)).audit(someAppId, someClusterName, someDataCenter, someClientIp, someAppId, someClusterName, defaultNamespaceName, someServerSideNewReleaseKey); } @Test public void testQueryConfigFile() throws Exception { String someClientSideReleaseKey = "1"; String someServerSideNewReleaseKey = "2"; HttpServletResponse someResponse = mock(HttpServletResponse.class); String someNamespaceName = String.format("%s.%s", defaultClusterName, "properties"); when(configService.loadConfig(someAppId, someClientIp, someAppId, someClusterName, defaultNamespaceName, someDataCenter, someNotificationMessages)).thenReturn(someRelease); when(someRelease.getReleaseKey()).thenReturn(someServerSideNewReleaseKey); when(namespaceUtil.filterNamespaceName(someNamespaceName)).thenReturn(defaultNamespaceName); when(namespaceUtil.normalizeNamespace(someAppId, defaultNamespaceName)).thenReturn(defaultNamespaceName); ApolloConfig result = configController.queryConfig(someAppId, someClusterName, someNamespaceName, someDataCenter, someClientSideReleaseKey, someClientIp, someMessagesAsString, someRequest, someResponse); verify(configService, times(1)).loadConfig(someAppId, someClientIp, someAppId, someClusterName, defaultNamespaceName, someDataCenter, someNotificationMessages); assertEquals(someAppId, result.getAppId()); assertEquals(someClusterName, result.getCluster()); assertEquals(someNamespaceName, result.getNamespaceName()); assertEquals(someServerSideNewReleaseKey, result.getReleaseKey()); } @Test public void testQueryConfigFileWithPrivateNamespace() throws Exception { String someClientSideReleaseKey = "1"; String someServerSideNewReleaseKey = "2"; String somePrivateNamespace = "datasource"; HttpServletResponse someResponse = mock(HttpServletResponse.class); String somePrivateNamespaceName = String.format("%s.%s", somePrivateNamespace, "xml"); AppNamespace appNamespace = mock(AppNamespace.class); when(configService.loadConfig(someAppId, someClientIp, someAppId, someClusterName, somePrivateNamespace, someDataCenter, someNotificationMessages)).thenReturn(someRelease); when(someRelease.getReleaseKey()).thenReturn(someServerSideNewReleaseKey); when(namespaceUtil.filterNamespaceName(somePrivateNamespaceName)).thenReturn(somePrivateNamespace); when(namespaceUtil.normalizeNamespace(someAppId, somePrivateNamespace)).thenReturn(somePrivateNamespace); when(appNamespaceService.findByAppIdAndNamespace(someAppId, somePrivateNamespace)) .thenReturn(appNamespace); ApolloConfig result = configController.queryConfig(someAppId, someClusterName, somePrivateNamespaceName, someDataCenter, someClientSideReleaseKey, someClientIp, someMessagesAsString, someRequest, someResponse); assertEquals(someAppId, result.getAppId()); assertEquals(someClusterName, result.getCluster()); assertEquals(somePrivateNamespaceName, result.getNamespaceName()); assertEquals(someServerSideNewReleaseKey, result.getReleaseKey()); } @Test public void testQueryConfigWithReleaseNotFound() throws Exception { String someClientSideReleaseKey = "1"; HttpServletResponse someResponse = mock(HttpServletResponse.class); when(configService.loadConfig(someAppId, someClientIp, someAppId, someClusterName, defaultNamespaceName, someDataCenter, someNotificationMessages)).thenReturn(null); ApolloConfig result = configController.queryConfig(someAppId, someClusterName, defaultNamespaceName, someDataCenter, someClientSideReleaseKey, someClientIp, someMessagesAsString, someRequest, someResponse); assertNull(result); verify(someResponse, times(1)).sendError(eq(HttpServletResponse.SC_NOT_FOUND), anyString()); } @Test public void testQueryConfigWithApolloConfigNotModified() throws Exception { String someClientSideReleaseKey = "1"; String someServerSideReleaseKey = someClientSideReleaseKey; HttpServletResponse someResponse = mock(HttpServletResponse.class); when(configService.loadConfig(someAppId, someClientIp, someAppId, someClusterName, defaultNamespaceName, someDataCenter, someNotificationMessages)).thenReturn(someRelease); when(someRelease.getReleaseKey()).thenReturn(someServerSideReleaseKey); ApolloConfig result = configController.queryConfig(someAppId, someClusterName, defaultNamespaceName, someDataCenter, someClientSideReleaseKey, someClientIp, someMessagesAsString, someRequest, someResponse); assertNull(result); verify(someResponse, times(1)).setStatus(HttpServletResponse.SC_NOT_MODIFIED); } @Test public void testQueryConfigWithAppOwnNamespace() throws Exception { String someClientSideReleaseKey = "1"; String someServerSideReleaseKey = "2"; String someAppOwnNamespaceName = "someAppOwn"; HttpServletResponse someResponse = mock(HttpServletResponse.class); AppNamespace someAppOwnNamespace = assemblePublicAppNamespace(someAppId, someAppOwnNamespaceName); when(configService.loadConfig(someAppId, someClientIp, someAppId, someClusterName, someAppOwnNamespaceName, someDataCenter, someNotificationMessages)).thenReturn(someRelease); when(appNamespaceService.findPublicNamespaceByName(someAppOwnNamespaceName)) .thenReturn(someAppOwnNamespace); when(someRelease.getReleaseKey()).thenReturn(someServerSideReleaseKey); when(namespaceUtil.filterNamespaceName(someAppOwnNamespaceName)).thenReturn(someAppOwnNamespaceName); when(namespaceUtil.normalizeNamespace(someAppId, someAppOwnNamespaceName)).thenReturn(someAppOwnNamespaceName); ApolloConfig result = configController .queryConfig(someAppId, someClusterName, someAppOwnNamespaceName, someDataCenter, someClientSideReleaseKey, someClientIp, someMessagesAsString, someRequest, someResponse); assertEquals(someServerSideReleaseKey, result.getReleaseKey()); assertEquals(someAppId, result.getAppId()); assertEquals(someClusterName, result.getCluster()); assertEquals(someAppOwnNamespaceName, result.getNamespaceName()); assertEquals("foo", result.getConfigurations().get("apollo.bar")); } @Test public void testQueryConfigWithPubicNamespaceAndNoAppOverride() throws Exception { String someClientSideReleaseKey = "1"; String someServerSideReleaseKey = "2"; HttpServletResponse someResponse = mock(HttpServletResponse.class); String somePublicAppId = "somePublicAppId"; String somePublicClusterName = "somePublicClusterName"; AppNamespace somePublicAppNamespace = assemblePublicAppNamespace(somePublicAppId, somePublicNamespaceName); when(configService.loadConfig(someAppId, someClientIp, someAppId, someClusterName, somePublicNamespaceName, someDataCenter, someNotificationMessages)).thenReturn(null); when(appNamespaceService.findPublicNamespaceByName(somePublicNamespaceName)) .thenReturn(somePublicAppNamespace); when(configService.loadConfig(someAppId, someClientIp, somePublicAppId, someClusterName, somePublicNamespaceName, someDataCenter, someNotificationMessages)).thenReturn(somePublicRelease); when(somePublicRelease.getReleaseKey()).thenReturn(someServerSideReleaseKey); when(somePublicRelease.getAppId()).thenReturn(somePublicAppId); when(somePublicRelease.getClusterName()).thenReturn(somePublicClusterName); when(somePublicRelease.getNamespaceName()).thenReturn(somePublicNamespaceName); ApolloConfig result = configController .queryConfig(someAppId, someClusterName, somePublicNamespaceName, someDataCenter, someClientSideReleaseKey, someClientIp, someMessagesAsString, someRequest, someResponse); assertEquals(someServerSideReleaseKey, result.getReleaseKey()); assertEquals(someAppId, result.getAppId()); assertEquals(someClusterName, result.getCluster()); assertEquals(somePublicNamespaceName, result.getNamespaceName()); assertEquals("foo", result.getConfigurations().get("apollo.public.bar")); verify(instanceConfigAuditUtil, times(1)).audit(someAppId, someClusterName, someDataCenter, someClientIp, somePublicAppId, somePublicClusterName, somePublicNamespaceName, someServerSideReleaseKey); } @Test public void testQueryConfigFileWithPublicNamespaceAndNoAppOverride() throws Exception { String someClientSideReleaseKey = "1"; String someServerSideReleaseKey = "2"; HttpServletResponse someResponse = mock(HttpServletResponse.class); String somePublicAppId = "somePublicAppId"; String someNamespace = String.format("%s.%s", somePublicNamespaceName, "properties"); AppNamespace somePublicAppNamespace = assemblePublicAppNamespace(somePublicAppId, somePublicNamespaceName); when(configService.loadConfig(someAppId, someClientIp, someAppId, someClusterName, somePublicNamespaceName, someDataCenter, someNotificationMessages)).thenReturn(null); when(appNamespaceService.findPublicNamespaceByName(somePublicNamespaceName)) .thenReturn(somePublicAppNamespace); when(configService.loadConfig(someAppId, someClientIp, somePublicAppId, someClusterName, somePublicNamespaceName, someDataCenter, someNotificationMessages)).thenReturn(somePublicRelease); when(somePublicRelease.getReleaseKey()).thenReturn(someServerSideReleaseKey); when(namespaceUtil.filterNamespaceName(someNamespace)).thenReturn(somePublicNamespaceName); when(namespaceUtil.normalizeNamespace(someAppId, somePublicNamespaceName)).thenReturn(somePublicNamespaceName); when(appNamespaceService.findByAppIdAndNamespace(someAppId, somePublicNamespaceName)).thenReturn(null); ApolloConfig result = configController .queryConfig(someAppId, someClusterName, someNamespace, someDataCenter, someClientSideReleaseKey, someClientIp, someMessagesAsString, someRequest, someResponse); assertEquals(someServerSideReleaseKey, result.getReleaseKey()); assertEquals(someAppId, result.getAppId()); assertEquals(someClusterName, result.getCluster()); assertEquals(someNamespace, result.getNamespaceName()); assertEquals("foo", result.getConfigurations().get("apollo.public.bar")); } @Test public void testQueryConfigWithPublicNamespaceAndAppOverride() throws Exception { String someAppSideReleaseKey = "1"; String somePublicAppSideReleaseKey = "2"; HttpServletResponse someResponse = mock(HttpServletResponse.class); String somePublicAppId = "somePublicAppId"; AppNamespace somePublicAppNamespace = assemblePublicAppNamespace(somePublicAppId, somePublicNamespaceName); when(someRelease.getConfigurations()).thenReturn("{\"apollo.public.foo\": \"foo-override\"}"); when(somePublicRelease.getConfigurations()) .thenReturn("{\"apollo.public.foo\": \"foo\", \"apollo.public.bar\": \"bar\"}"); when(configService.loadConfig(someAppId, someClientIp, someAppId, someClusterName, somePublicNamespaceName, someDataCenter, someNotificationMessages)).thenReturn(someRelease); when(someRelease.getReleaseKey()).thenReturn(someAppSideReleaseKey); when(someRelease.getNamespaceName()).thenReturn(somePublicNamespaceName); when(appNamespaceService.findPublicNamespaceByName(somePublicNamespaceName)) .thenReturn(somePublicAppNamespace); when(configService.loadConfig(someAppId, someClientIp, somePublicAppId, someClusterName, somePublicNamespaceName, someDataCenter, someNotificationMessages)).thenReturn(somePublicRelease); when(somePublicRelease.getReleaseKey()).thenReturn(somePublicAppSideReleaseKey); when(somePublicRelease.getAppId()).thenReturn(somePublicAppId); when(somePublicRelease.getClusterName()).thenReturn(someDataCenter); when(somePublicRelease.getNamespaceName()).thenReturn(somePublicNamespaceName); ApolloConfig result = configController .queryConfig(someAppId, someClusterName, somePublicNamespaceName, someDataCenter, someAppSideReleaseKey, someClientIp, someMessagesAsString, someRequest, someResponse); assertEquals(Joiner.on(ConfigConsts.CLUSTER_NAMESPACE_SEPARATOR) .join(someAppSideReleaseKey, somePublicAppSideReleaseKey), result.getReleaseKey()); assertEquals(someAppId, result.getAppId()); assertEquals(someClusterName, result.getCluster()); assertEquals(somePublicNamespaceName, result.getNamespaceName()); assertEquals("foo-override", result.getConfigurations().get("apollo.public.foo")); assertEquals("bar", result.getConfigurations().get("apollo.public.bar")); verify(instanceConfigAuditUtil, times(1)).audit(someAppId, someClusterName, someDataCenter, someClientIp, someAppId, someClusterName, somePublicNamespaceName, someAppSideReleaseKey); verify(instanceConfigAuditUtil, times(1)).audit(someAppId, someClusterName, someDataCenter, someClientIp, somePublicAppId, someDataCenter, somePublicNamespaceName, somePublicAppSideReleaseKey); } @Test public void testMergeConfigurations() throws Exception { Gson gson = new Gson(); String key1 = "key1"; String value1 = "value1"; String anotherValue1 = "anotherValue1"; String key2 = "key2"; String value2 = "value2"; Map<String, String> config = ImmutableMap.of(key1, anotherValue1); Map<String, String> anotherConfig = ImmutableMap.of(key1, value1, key2, value2); Release releaseWithHighPriority = new Release(); releaseWithHighPriority.setConfigurations(gson.toJson(config)); Release releaseWithLowPriority = new Release(); releaseWithLowPriority.setConfigurations(gson.toJson(anotherConfig)); Map<String, String> result = configController.mergeReleaseConfigurations( Lists.newArrayList(releaseWithHighPriority, releaseWithLowPriority)); assertEquals(2, result.keySet().size()); assertEquals(anotherValue1, result.get(key1)); assertEquals(value2, result.get(key2)); } @Test(expected = JsonSyntaxException.class) public void testTransformConfigurationToMapFailed() throws Exception { String someInvalidConfiguration = "xxx"; Release someRelease = new Release(); someRelease.setConfigurations(someInvalidConfiguration); configController.mergeReleaseConfigurations(Lists.newArrayList(someRelease)); } @Test public void testQueryConfigForNoAppIdPlaceHolder() throws Exception { String someClientSideReleaseKey = "1"; HttpServletResponse someResponse = mock(HttpServletResponse.class); String appId = ConfigConsts.NO_APPID_PLACEHOLDER; ApolloConfig result = configController.queryConfig(appId, someClusterName, defaultNamespaceName, someDataCenter, someClientSideReleaseKey, someClientIp, someMessagesAsString, someRequest, someResponse); verify(configService, never()).loadConfig(appId, someClientIp, someAppId, someClusterName, defaultNamespaceName, someDataCenter, someNotificationMessages); verify(appNamespaceService, never()).findPublicNamespaceByName(defaultNamespaceName); assertNull(result); verify(someResponse, times(1)).sendError(eq(HttpServletResponse.SC_NOT_FOUND), anyString()); } @Test public void testQueryConfigForNoAppIdPlaceHolderWithPublicNamespace() throws Exception { String someClientSideReleaseKey = "1"; String someServerSideReleaseKey = "2"; HttpServletResponse someResponse = mock(HttpServletResponse.class); String somePublicAppId = "somePublicAppId"; AppNamespace somePublicAppNamespace = assemblePublicAppNamespace(somePublicAppId, somePublicNamespaceName); String appId = ConfigConsts.NO_APPID_PLACEHOLDER; when(appNamespaceService.findPublicNamespaceByName(somePublicNamespaceName)) .thenReturn(somePublicAppNamespace); when(configService.loadConfig(appId, someClientIp, somePublicAppId, someClusterName, somePublicNamespaceName, someDataCenter, someNotificationMessages)).thenReturn(somePublicRelease); when(somePublicRelease.getReleaseKey()).thenReturn(someServerSideReleaseKey); when(namespaceUtil.normalizeNamespace(appId, somePublicNamespaceName)).thenReturn(somePublicNamespaceName); ApolloConfig result = configController.queryConfig(appId, someClusterName, somePublicNamespaceName, someDataCenter, someClientSideReleaseKey, someClientIp, someMessagesAsString, someRequest, someResponse); verify(configService, never()).loadConfig(appId, someClientIp, appId, someClusterName, somePublicNamespaceName, someDataCenter, someNotificationMessages); assertEquals(someServerSideReleaseKey, result.getReleaseKey()); assertEquals(appId, result.getAppId()); assertEquals(someClusterName, result.getCluster()); assertEquals(somePublicNamespaceName, result.getNamespaceName()); assertEquals("foo", result.getConfigurations().get("apollo.public.bar")); } @Test public void testTransformMessages() throws Exception { String someKey = "someKey"; long someNotificationId = 1; String anotherKey = "anotherKey"; long anotherNotificationId = 2; ApolloNotificationMessages notificationMessages = new ApolloNotificationMessages(); notificationMessages.put(someKey, someNotificationId); notificationMessages.put(anotherKey, anotherNotificationId); String someMessagesAsString = gson.toJson(notificationMessages); ApolloNotificationMessages result = configController.transformMessages(someMessagesAsString); assertEquals(notificationMessages.getDetails(), result.getDetails()); } @Test public void testTransformInvalidMessages() throws Exception { String someInvalidMessages = "someInvalidMessages"; assertNull(configController.transformMessages(someInvalidMessages)); } private AppNamespace assemblePublicAppNamespace(String appId, String namespace) { return assembleAppNamespace(appId, namespace, true); } private AppNamespace assembleAppNamespace(String appId, String namespace, boolean isPublic) { AppNamespace appNamespace = new AppNamespace(); appNamespace.setAppId(appId); appNamespace.setName(namespace); appNamespace.setPublic(isPublic); return appNamespace; } }
package com.ctrip.framework.apollo.configservice.controller; import com.ctrip.framework.apollo.biz.entity.Release; import com.ctrip.framework.apollo.common.entity.AppNamespace; import com.ctrip.framework.apollo.configservice.service.AppNamespaceServiceWithCache; import com.ctrip.framework.apollo.configservice.service.config.ConfigService; import com.ctrip.framework.apollo.configservice.util.InstanceConfigAuditUtil; import com.ctrip.framework.apollo.configservice.util.NamespaceUtil; import com.ctrip.framework.apollo.core.ConfigConsts; import com.ctrip.framework.apollo.core.dto.ApolloConfig; import com.ctrip.framework.apollo.core.dto.ApolloNotificationMessages; import com.google.common.base.Joiner; import com.google.common.collect.ImmutableMap; import com.google.common.collect.Lists; import com.google.gson.Gson; import com.google.gson.JsonSyntaxException; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.Mock; import org.mockito.junit.MockitoJUnitRunner; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import java.util.Map; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNull; import static org.mockito.Mockito.*; /** * @author Jason Song([email protected]) */ @RunWith(MockitoJUnitRunner.class) public class ConfigControllerTest { private ConfigController configController; @Mock private ConfigService configService; @Mock private AppNamespaceServiceWithCache appNamespaceService; private String someAppId; private String someClusterName; private String defaultClusterName; private String defaultNamespaceName; private String somePublicNamespaceName; private String someDataCenter; private String someClientIp; private String someMessagesAsString; @Mock private ApolloNotificationMessages someNotificationMessages; @Mock private Release someRelease; @Mock private Release somePublicRelease; @Mock private NamespaceUtil namespaceUtil; @Mock private InstanceConfigAuditUtil instanceConfigAuditUtil; @Mock private HttpServletRequest someRequest; private Gson gson = new Gson(); @Before public void setUp() throws Exception { configController = spy(new ConfigController( configService, appNamespaceService, namespaceUtil, instanceConfigAuditUtil, gson )); someAppId = "1"; someClusterName = "someClusterName"; defaultClusterName = ConfigConsts.CLUSTER_NAME_DEFAULT; defaultNamespaceName = ConfigConsts.NAMESPACE_APPLICATION; somePublicNamespaceName = "somePublicNamespace"; someDataCenter = "someDC"; someClientIp = "someClientIp"; String someValidConfiguration = "{\"apollo.bar\": \"foo\"}"; String somePublicConfiguration = "{\"apollo.public.bar\": \"foo\"}"; when(someRelease.getAppId()).thenReturn(someAppId); when(someRelease.getClusterName()).thenReturn(someClusterName); when(someRelease.getConfigurations()).thenReturn(someValidConfiguration); when(somePublicRelease.getConfigurations()).thenReturn(somePublicConfiguration); when(namespaceUtil.filterNamespaceName(defaultNamespaceName)).thenReturn(defaultNamespaceName); when(namespaceUtil.filterNamespaceName(somePublicNamespaceName)).thenReturn(somePublicNamespaceName); when(namespaceUtil.normalizeNamespace(someAppId, defaultNamespaceName)).thenReturn(defaultNamespaceName); when(namespaceUtil.normalizeNamespace(someAppId, somePublicNamespaceName)).thenReturn(somePublicNamespaceName); someMessagesAsString = "someValidJson"; when(configController.transformMessages(someMessagesAsString)).thenReturn(someNotificationMessages); } @Test public void testQueryConfig() throws Exception { String someClientSideReleaseKey = "1"; String someServerSideNewReleaseKey = "2"; HttpServletResponse someResponse = mock(HttpServletResponse.class); when(configService.loadConfig(someAppId, someClientIp, someAppId, someClusterName, defaultNamespaceName, someDataCenter, someNotificationMessages)).thenReturn(someRelease); when(someRelease.getReleaseKey()).thenReturn(someServerSideNewReleaseKey); when(someRelease.getNamespaceName()).thenReturn(defaultNamespaceName); ApolloConfig result = configController.queryConfig(someAppId, someClusterName, defaultNamespaceName, someDataCenter, someClientSideReleaseKey, someClientIp, someMessagesAsString, someRequest, someResponse); verify(configService, times(1)).loadConfig(someAppId, someClientIp, someAppId, someClusterName, defaultNamespaceName, someDataCenter, someNotificationMessages); assertEquals(someAppId, result.getAppId()); assertEquals(someClusterName, result.getCluster()); assertEquals(defaultNamespaceName, result.getNamespaceName()); assertEquals(someServerSideNewReleaseKey, result.getReleaseKey()); verify(instanceConfigAuditUtil, times(1)).audit(someAppId, someClusterName, someDataCenter, someClientIp, someAppId, someClusterName, defaultNamespaceName, someServerSideNewReleaseKey); } @Test public void testQueryConfigFile() throws Exception { String someClientSideReleaseKey = "1"; String someServerSideNewReleaseKey = "2"; HttpServletResponse someResponse = mock(HttpServletResponse.class); String someNamespaceName = String.format("%s.%s", defaultClusterName, "properties"); when(configService.loadConfig(someAppId, someClientIp, someAppId, someClusterName, defaultNamespaceName, someDataCenter, someNotificationMessages)).thenReturn(someRelease); when(someRelease.getReleaseKey()).thenReturn(someServerSideNewReleaseKey); when(namespaceUtil.filterNamespaceName(someNamespaceName)).thenReturn(defaultNamespaceName); when(namespaceUtil.normalizeNamespace(someAppId, defaultNamespaceName)).thenReturn(defaultNamespaceName); ApolloConfig result = configController.queryConfig(someAppId, someClusterName, someNamespaceName, someDataCenter, someClientSideReleaseKey, someClientIp, someMessagesAsString, someRequest, someResponse); verify(configService, times(1)).loadConfig(someAppId, someClientIp, someAppId, someClusterName, defaultNamespaceName, someDataCenter, someNotificationMessages); assertEquals(someAppId, result.getAppId()); assertEquals(someClusterName, result.getCluster()); assertEquals(someNamespaceName, result.getNamespaceName()); assertEquals(someServerSideNewReleaseKey, result.getReleaseKey()); } @Test public void testQueryConfigFileWithPrivateNamespace() throws Exception { String someClientSideReleaseKey = "1"; String someServerSideNewReleaseKey = "2"; String somePrivateNamespace = "datasource"; HttpServletResponse someResponse = mock(HttpServletResponse.class); String somePrivateNamespaceName = String.format("%s.%s", somePrivateNamespace, "xml"); AppNamespace appNamespace = mock(AppNamespace.class); when(configService.loadConfig(someAppId, someClientIp, someAppId, someClusterName, somePrivateNamespace, someDataCenter, someNotificationMessages)).thenReturn(someRelease); when(someRelease.getReleaseKey()).thenReturn(someServerSideNewReleaseKey); when(namespaceUtil.filterNamespaceName(somePrivateNamespaceName)).thenReturn(somePrivateNamespace); when(namespaceUtil.normalizeNamespace(someAppId, somePrivateNamespace)).thenReturn(somePrivateNamespace); when(appNamespaceService.findByAppIdAndNamespace(someAppId, somePrivateNamespace)) .thenReturn(appNamespace); ApolloConfig result = configController.queryConfig(someAppId, someClusterName, somePrivateNamespaceName, someDataCenter, someClientSideReleaseKey, someClientIp, someMessagesAsString, someRequest, someResponse); assertEquals(someAppId, result.getAppId()); assertEquals(someClusterName, result.getCluster()); assertEquals(somePrivateNamespaceName, result.getNamespaceName()); assertEquals(someServerSideNewReleaseKey, result.getReleaseKey()); } @Test public void testQueryConfigWithReleaseNotFound() throws Exception { String someClientSideReleaseKey = "1"; HttpServletResponse someResponse = mock(HttpServletResponse.class); when(configService.loadConfig(someAppId, someClientIp, someAppId, someClusterName, defaultNamespaceName, someDataCenter, someNotificationMessages)).thenReturn(null); ApolloConfig result = configController.queryConfig(someAppId, someClusterName, defaultNamespaceName, someDataCenter, someClientSideReleaseKey, someClientIp, someMessagesAsString, someRequest, someResponse); assertNull(result); verify(someResponse, times(1)).sendError(eq(HttpServletResponse.SC_NOT_FOUND), anyString()); } @Test public void testQueryConfigWithApolloConfigNotModified() throws Exception { String someClientSideReleaseKey = "1"; String someServerSideReleaseKey = someClientSideReleaseKey; HttpServletResponse someResponse = mock(HttpServletResponse.class); when(configService.loadConfig(someAppId, someClientIp, someAppId, someClusterName, defaultNamespaceName, someDataCenter, someNotificationMessages)).thenReturn(someRelease); when(someRelease.getReleaseKey()).thenReturn(someServerSideReleaseKey); ApolloConfig result = configController.queryConfig(someAppId, someClusterName, defaultNamespaceName, someDataCenter, someClientSideReleaseKey, someClientIp, someMessagesAsString, someRequest, someResponse); assertNull(result); verify(someResponse, times(1)).setStatus(HttpServletResponse.SC_NOT_MODIFIED); } @Test public void testQueryConfigWithAppOwnNamespace() throws Exception { String someClientSideReleaseKey = "1"; String someServerSideReleaseKey = "2"; String someAppOwnNamespaceName = "someAppOwn"; HttpServletResponse someResponse = mock(HttpServletResponse.class); AppNamespace someAppOwnNamespace = assemblePublicAppNamespace(someAppId, someAppOwnNamespaceName); when(configService.loadConfig(someAppId, someClientIp, someAppId, someClusterName, someAppOwnNamespaceName, someDataCenter, someNotificationMessages)).thenReturn(someRelease); when(appNamespaceService.findPublicNamespaceByName(someAppOwnNamespaceName)) .thenReturn(someAppOwnNamespace); when(someRelease.getReleaseKey()).thenReturn(someServerSideReleaseKey); when(namespaceUtil.filterNamespaceName(someAppOwnNamespaceName)).thenReturn(someAppOwnNamespaceName); when(namespaceUtil.normalizeNamespace(someAppId, someAppOwnNamespaceName)).thenReturn(someAppOwnNamespaceName); ApolloConfig result = configController .queryConfig(someAppId, someClusterName, someAppOwnNamespaceName, someDataCenter, someClientSideReleaseKey, someClientIp, someMessagesAsString, someRequest, someResponse); assertEquals(someServerSideReleaseKey, result.getReleaseKey()); assertEquals(someAppId, result.getAppId()); assertEquals(someClusterName, result.getCluster()); assertEquals(someAppOwnNamespaceName, result.getNamespaceName()); assertEquals("foo", result.getConfigurations().get("apollo.bar")); } @Test public void testQueryConfigWithPubicNamespaceAndNoAppOverride() throws Exception { String someClientSideReleaseKey = "1"; String someServerSideReleaseKey = "2"; HttpServletResponse someResponse = mock(HttpServletResponse.class); String somePublicAppId = "somePublicAppId"; String somePublicClusterName = "somePublicClusterName"; AppNamespace somePublicAppNamespace = assemblePublicAppNamespace(somePublicAppId, somePublicNamespaceName); when(configService.loadConfig(someAppId, someClientIp, someAppId, someClusterName, somePublicNamespaceName, someDataCenter, someNotificationMessages)).thenReturn(null); when(appNamespaceService.findPublicNamespaceByName(somePublicNamespaceName)) .thenReturn(somePublicAppNamespace); when(configService.loadConfig(someAppId, someClientIp, somePublicAppId, someClusterName, somePublicNamespaceName, someDataCenter, someNotificationMessages)).thenReturn(somePublicRelease); when(somePublicRelease.getReleaseKey()).thenReturn(someServerSideReleaseKey); when(somePublicRelease.getAppId()).thenReturn(somePublicAppId); when(somePublicRelease.getClusterName()).thenReturn(somePublicClusterName); when(somePublicRelease.getNamespaceName()).thenReturn(somePublicNamespaceName); ApolloConfig result = configController .queryConfig(someAppId, someClusterName, somePublicNamespaceName, someDataCenter, someClientSideReleaseKey, someClientIp, someMessagesAsString, someRequest, someResponse); assertEquals(someServerSideReleaseKey, result.getReleaseKey()); assertEquals(someAppId, result.getAppId()); assertEquals(someClusterName, result.getCluster()); assertEquals(somePublicNamespaceName, result.getNamespaceName()); assertEquals("foo", result.getConfigurations().get("apollo.public.bar")); verify(instanceConfigAuditUtil, times(1)).audit(someAppId, someClusterName, someDataCenter, someClientIp, somePublicAppId, somePublicClusterName, somePublicNamespaceName, someServerSideReleaseKey); } @Test public void testQueryConfigFileWithPublicNamespaceAndNoAppOverride() throws Exception { String someClientSideReleaseKey = "1"; String someServerSideReleaseKey = "2"; HttpServletResponse someResponse = mock(HttpServletResponse.class); String somePublicAppId = "somePublicAppId"; String someNamespace = String.format("%s.%s", somePublicNamespaceName, "properties"); AppNamespace somePublicAppNamespace = assemblePublicAppNamespace(somePublicAppId, somePublicNamespaceName); when(configService.loadConfig(someAppId, someClientIp, someAppId, someClusterName, somePublicNamespaceName, someDataCenter, someNotificationMessages)).thenReturn(null); when(appNamespaceService.findPublicNamespaceByName(somePublicNamespaceName)) .thenReturn(somePublicAppNamespace); when(configService.loadConfig(someAppId, someClientIp, somePublicAppId, someClusterName, somePublicNamespaceName, someDataCenter, someNotificationMessages)).thenReturn(somePublicRelease); when(somePublicRelease.getReleaseKey()).thenReturn(someServerSideReleaseKey); when(namespaceUtil.filterNamespaceName(someNamespace)).thenReturn(somePublicNamespaceName); when(namespaceUtil.normalizeNamespace(someAppId, somePublicNamespaceName)).thenReturn(somePublicNamespaceName); when(appNamespaceService.findByAppIdAndNamespace(someAppId, somePublicNamespaceName)).thenReturn(null); ApolloConfig result = configController .queryConfig(someAppId, someClusterName, someNamespace, someDataCenter, someClientSideReleaseKey, someClientIp, someMessagesAsString, someRequest, someResponse); assertEquals(someServerSideReleaseKey, result.getReleaseKey()); assertEquals(someAppId, result.getAppId()); assertEquals(someClusterName, result.getCluster()); assertEquals(someNamespace, result.getNamespaceName()); assertEquals("foo", result.getConfigurations().get("apollo.public.bar")); } @Test public void testQueryConfigWithPublicNamespaceAndAppOverride() throws Exception { String someAppSideReleaseKey = "1"; String somePublicAppSideReleaseKey = "2"; HttpServletResponse someResponse = mock(HttpServletResponse.class); String somePublicAppId = "somePublicAppId"; AppNamespace somePublicAppNamespace = assemblePublicAppNamespace(somePublicAppId, somePublicNamespaceName); when(someRelease.getConfigurations()).thenReturn("{\"apollo.public.foo\": \"foo-override\"}"); when(somePublicRelease.getConfigurations()) .thenReturn("{\"apollo.public.foo\": \"foo\", \"apollo.public.bar\": \"bar\"}"); when(configService.loadConfig(someAppId, someClientIp, someAppId, someClusterName, somePublicNamespaceName, someDataCenter, someNotificationMessages)).thenReturn(someRelease); when(someRelease.getReleaseKey()).thenReturn(someAppSideReleaseKey); when(someRelease.getNamespaceName()).thenReturn(somePublicNamespaceName); when(appNamespaceService.findPublicNamespaceByName(somePublicNamespaceName)) .thenReturn(somePublicAppNamespace); when(configService.loadConfig(someAppId, someClientIp, somePublicAppId, someClusterName, somePublicNamespaceName, someDataCenter, someNotificationMessages)).thenReturn(somePublicRelease); when(somePublicRelease.getReleaseKey()).thenReturn(somePublicAppSideReleaseKey); when(somePublicRelease.getAppId()).thenReturn(somePublicAppId); when(somePublicRelease.getClusterName()).thenReturn(someDataCenter); when(somePublicRelease.getNamespaceName()).thenReturn(somePublicNamespaceName); ApolloConfig result = configController .queryConfig(someAppId, someClusterName, somePublicNamespaceName, someDataCenter, someAppSideReleaseKey, someClientIp, someMessagesAsString, someRequest, someResponse); assertEquals(Joiner.on(ConfigConsts.CLUSTER_NAMESPACE_SEPARATOR) .join(someAppSideReleaseKey, somePublicAppSideReleaseKey), result.getReleaseKey()); assertEquals(someAppId, result.getAppId()); assertEquals(someClusterName, result.getCluster()); assertEquals(somePublicNamespaceName, result.getNamespaceName()); assertEquals("foo-override", result.getConfigurations().get("apollo.public.foo")); assertEquals("bar", result.getConfigurations().get("apollo.public.bar")); verify(instanceConfigAuditUtil, times(1)).audit(someAppId, someClusterName, someDataCenter, someClientIp, someAppId, someClusterName, somePublicNamespaceName, someAppSideReleaseKey); verify(instanceConfigAuditUtil, times(1)).audit(someAppId, someClusterName, someDataCenter, someClientIp, somePublicAppId, someDataCenter, somePublicNamespaceName, somePublicAppSideReleaseKey); } @Test public void testMergeConfigurations() throws Exception { Gson gson = new Gson(); String key1 = "key1"; String value1 = "value1"; String anotherValue1 = "anotherValue1"; String key2 = "key2"; String value2 = "value2"; Map<String, String> config = ImmutableMap.of(key1, anotherValue1); Map<String, String> anotherConfig = ImmutableMap.of(key1, value1, key2, value2); Release releaseWithHighPriority = new Release(); releaseWithHighPriority.setConfigurations(gson.toJson(config)); Release releaseWithLowPriority = new Release(); releaseWithLowPriority.setConfigurations(gson.toJson(anotherConfig)); Map<String, String> result = configController.mergeReleaseConfigurations( Lists.newArrayList(releaseWithHighPriority, releaseWithLowPriority)); assertEquals(2, result.keySet().size()); assertEquals(anotherValue1, result.get(key1)); assertEquals(value2, result.get(key2)); } @Test(expected = JsonSyntaxException.class) public void testTransformConfigurationToMapFailed() throws Exception { String someInvalidConfiguration = "xxx"; Release someRelease = new Release(); someRelease.setConfigurations(someInvalidConfiguration); configController.mergeReleaseConfigurations(Lists.newArrayList(someRelease)); } @Test public void testQueryConfigForNoAppIdPlaceHolder() throws Exception { String someClientSideReleaseKey = "1"; HttpServletResponse someResponse = mock(HttpServletResponse.class); String appId = ConfigConsts.NO_APPID_PLACEHOLDER; ApolloConfig result = configController.queryConfig(appId, someClusterName, defaultNamespaceName, someDataCenter, someClientSideReleaseKey, someClientIp, someMessagesAsString, someRequest, someResponse); verify(configService, never()).loadConfig(appId, someClientIp, someAppId, someClusterName, defaultNamespaceName, someDataCenter, someNotificationMessages); verify(appNamespaceService, never()).findPublicNamespaceByName(defaultNamespaceName); assertNull(result); verify(someResponse, times(1)).sendError(eq(HttpServletResponse.SC_NOT_FOUND), anyString()); } @Test public void testQueryConfigForNoAppIdPlaceHolderWithPublicNamespace() throws Exception { String someClientSideReleaseKey = "1"; String someServerSideReleaseKey = "2"; HttpServletResponse someResponse = mock(HttpServletResponse.class); String somePublicAppId = "somePublicAppId"; AppNamespace somePublicAppNamespace = assemblePublicAppNamespace(somePublicAppId, somePublicNamespaceName); String appId = ConfigConsts.NO_APPID_PLACEHOLDER; when(appNamespaceService.findPublicNamespaceByName(somePublicNamespaceName)) .thenReturn(somePublicAppNamespace); when(configService.loadConfig(appId, someClientIp, somePublicAppId, someClusterName, somePublicNamespaceName, someDataCenter, someNotificationMessages)).thenReturn(somePublicRelease); when(somePublicRelease.getReleaseKey()).thenReturn(someServerSideReleaseKey); when(namespaceUtil.normalizeNamespace(appId, somePublicNamespaceName)).thenReturn(somePublicNamespaceName); ApolloConfig result = configController.queryConfig(appId, someClusterName, somePublicNamespaceName, someDataCenter, someClientSideReleaseKey, someClientIp, someMessagesAsString, someRequest, someResponse); verify(configService, never()).loadConfig(appId, someClientIp, appId, someClusterName, somePublicNamespaceName, someDataCenter, someNotificationMessages); assertEquals(someServerSideReleaseKey, result.getReleaseKey()); assertEquals(appId, result.getAppId()); assertEquals(someClusterName, result.getCluster()); assertEquals(somePublicNamespaceName, result.getNamespaceName()); assertEquals("foo", result.getConfigurations().get("apollo.public.bar")); } @Test public void testTransformMessages() throws Exception { String someKey = "someKey"; long someNotificationId = 1; String anotherKey = "anotherKey"; long anotherNotificationId = 2; ApolloNotificationMessages notificationMessages = new ApolloNotificationMessages(); notificationMessages.put(someKey, someNotificationId); notificationMessages.put(anotherKey, anotherNotificationId); String someMessagesAsString = gson.toJson(notificationMessages); ApolloNotificationMessages result = configController.transformMessages(someMessagesAsString); assertEquals(notificationMessages.getDetails(), result.getDetails()); } @Test public void testTransformInvalidMessages() throws Exception { String someInvalidMessages = "someInvalidMessages"; assertNull(configController.transformMessages(someInvalidMessages)); } private AppNamespace assemblePublicAppNamespace(String appId, String namespace) { return assembleAppNamespace(appId, namespace, true); } private AppNamespace assembleAppNamespace(String appId, String namespace, boolean isPublic) { AppNamespace appNamespace = new AppNamespace(); appNamespace.setAppId(appId); appNamespace.setName(namespace); appNamespace.setPublic(isPublic); return appNamespace; } }
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./doc/images/local-development/ConfigAdminApplication-VM-Options.png
PNG  IHDR\i iCCPICC ProfileHWXS[R -)7At{6B  AŎ,*TDQTtUĶ@֊ >QYY XPy}s3ɹlFU }ILR7@ 4ӉzGE(mh况$ֿWQD(S"N59|Po4;?W VBq NaM N Rh_Yl0% of'Qpp@`s!~񄜜Y+!6O.Nbdǰ,l[rţkAEKruۛ5+TFDBe>Wj/3Aqr~ 0lPu f؞-B{4+ǩYh ;"Lgy/xWD16i`a 3bd<  neń}fFKDl0h^ -] ψ b<Qb(._qrn.hoInveFČv{5+ㆣ ?b8R, m l&kF=3Ox@4#2=At@Ak㞸;,8quԏ<*џG "-xp l8ot̓IFsAxBE"4j&Hs&]0Z<To7qq I0o 3qVד>^RQ"u1w5w菖r(ւî`'`X+vJ:ᩴFWr˂q6u}X-__R/Q>oNc;WOgzݘ pl&0m-Cg#tygp-o:'@3z} 9baL'َP2*00{  bA+r `>XJ@X6` h'9p \x` #BBhB G\O C$$IG,Eʐrd3E~EN +HrF7'C:Q Ech:*A9z B_1fYc./%ci[bX vk >D3qk؛AxJ|3/7n|JtV7B0!NM(!Tv.聯0D$D33.yĕĭCijbqD"iHHO*!m"'!uzIȊd}=9L}Ns򰂊BWaj] M z)3%IYB\<UTT4TtUW\XxXbGՒKFSWQPRQh4SL˧>(ѕlJ:^)+(({+P.TP>|]_EATWPJAUjjJ}WT_Lոjj;Ϋ1ݗΡ/_ԃ3hiL҈טQqJ1LljmƧqƭwp\5Y<RC4?i1j5h=Ƶ-h֮־?^}xGAu,uui ݤ{^_[wZO_Fӛͬd^` v 2|dD1r1J3Zol4`on<߸IFf LL_iՙ=4{טߴ ZXdYlhD--3,,[VNV|V\'&LcM.a؄4ؼh<1yډ-:f}`fbWddҞc_eӁȡ$IIՓ:96;~qrv:ts6vNq|E%eeW"דݜݎndɼɻ&xz=vxty2=S<{vyxjX\nso Lޯ|l}>}.=o`P08/l!(4hmН``Npm@sȂ И͡O,ÄaMhxH&H.QYT^oSSTMym=?%33f_POqqxi'&.HOjL&%'N?uiJݞn6}+3gd85Sy&{BJBʾHv {058uKǗ<xiii/=ץexeTd}32eϊړ5}(sB&\7kά\ܒܮ< yPn".jWǜV'qwgAUQ#:r  ko0 v,D.l^dxQ{Pd-ȶ҄Mźŋ{~ DDXrgmm+VlZ[z̶Jʫ?\ȪUmVW!kru3חa+*mlo ldiͦϛ36ߪ:Egˊ-rvVnVv;wטT$,lW_\~ݭl==]{^uݧouZ'?m88Tvה_o =|c&Ƕ/G4d4t5&5v9t748YuJӔŧG<{\'yaʅ/_ tŻe']9qj5kwxS[uM;NwzuwnEwiwrᄌ}?$<,}XPSשn'1Opz^>=[/N1ޗ/KTs+Wb:8ZzʷZoy0jPZ~t)ٟI+X|iHH.[Ȗ08д4Pdw/ e38@b-9zDz06"JsŢ []HM| o <ٝO"Dxn!Amk3 pHYs%%IR$@IDATxip\יb!@;Bl $AfR$%Kl-j\eS&:b#&cb"SUrr[RQdQ,QD\`.. NĚMsnf%7d&rA|{<$KHHHHHHHHHHH`ش$@$@$@$@$@$@$@$@$@$@$` @HHHHHHHHHH`C!          9@$@$@$@$@$@$@$@$@$@$!lxA:$     4WK K^FIHHHHHHHHH, ے:8:$H$@$@$@$@$&f`g$@$@$7(xPf`n     xHfgf_$@$@$@4<          (xoad'HHHHHHHHHH(xs l70$@$@$@$@$@$@$@$@$@$@\sHHHHHH^~-)^¦MؼR$>ǍV Xm̈́gHHHHHHH`CX^^· Azmyy󘛝A l޲ţ2>c@$;}ǚ- H^/}M App06 olOmxlY4P\lH</Ofc$@$@$@$@$@$@$@H./"@ݩvTdUSRRߏ.# |Uup~5[" ޾c͖<H :c/g!9)0| 6U!IJLMlߜ@(@jxms2zw;8HxD$@$@$@$V!0ٶmA4{2~/)vwbb{(D_JaJtet߻[my!;4  Y,,EvK :WC''KKh[U`bH؃tm3(-^"^ECeO=_]J+xH )(ȐFMv)EHh<Q{+- ܄%5xD鲑)# ׊cpPح" y1h\.W]" A@#""tۃUZ۴i16>nh-;, KA ߬1c:A[Ƅ$e`wTC :+%_(z>C+QVG`={މ(: rM Sګ (U#_޽v3ZƩ#P\MxԹ>ȕ{;FI:!E!ۨjTޞW^z JL E9^}B}h?˾6GoS“Ųhij׫ݫ+ː %E[ _M%%VVrI^D٨ ttO&>ѡɳvǓƊ|qVӯkmsA1v k"RĬ(, 98ZZ/޳[]xD :o.=ߋy 0$!apN9/ш6 @/Gx`eI7Mgh%(S#vKt*G˃~يu'G 9:kPLlHHHH@ -GqĒAYQYՖ&~Zc}cvEW|CoUX_^aD\c0>r 3LZf8ގMlj巻$h1 d$' )5] 1b>N`JlHozXKrBbFjzorU5GFz26T6gA$@$@$@$/$/lh<p\C!3?YH X͉:%1vtuuJf/7$:\]{ XF$-d!XrG٫CS(*޽Oltq m ظjU˦p󸣞n*9I۹Vp{pw:y2n%|)[6?mP$   pO=Wu^$"&Bujq]#vK@k,><K`Ϗ T]UŶjg.߭՟ 0삗8)xb7kDBÑ3T*“ґX>#(8PZSlKA͍ ] rtqfxCkqfޤ|.FLhXQ5 MYyͰt0F#҃f!<\mbqPZQP??ށ&Z@vGF IF[n<SߛHAK1߅w0l[%dEQF<_ÃkqCQhA 0GJ[54g!fga.->Av/c _Ί5 if؝-o[\dGAö$ݒ+ϬJ1;pWɤd|6Sx pinLx=ꗫ;5JLiw8") En1?M+iH]th64;eVP8y1x?V>7gqiؕ;=H>bT"Gxn9 ђ>>PgHHHH`к8-3ߌeuQ;A}-*X̳~];W4 A~" Ö-hvl}O3?lJZ'S1E93J s»wYX8s<eom% EeEHO,~.@?56:0ć*f'`+nm[j"iS%ܽB5~ψ-EQ߹g{=< ,Ġ<Z٤my}=3ΖՆ`o6B_nX+U< j8ԒC8ZkmY8'9rPZ/?սz̃_CbAɱGߟ l*~xHe.s|c{501t, Q?{P2yWN1Ԯo旂wFNaMk ?q~$Yװ+#JpZ%n6Zd0_r%8f d֥#?; _ ­$նOR1w<tn7 MmގE+SJN=VbufV6'C\[6=3-zy{cul:kM6EVLJq>^hm`)ٱh4Bήٛ<ˢxݯ$#+RtoߣRu:dd#|Uyͯ2Np4iB<5t:態٦-/7`oo^5Gc2?ru; 9.eѷ^>x˥Ÿ\+}{aMHmu%G+L@`pEIHHH# ՖΕZ\b(je K8(B"4DPd0/Ԙ^Ѱ};vW W#W,T۽煼N+u\W^zWӈ.1OW*^?Qݝ'B馐=eQơy%<gT0D6:$N[D4X-lO(?R !|ZM8Qe`v+vDt)KBgϏ#8s&̬<W뗿oΘ}`<,:/(k ϊu!m;OqYƿ-xZMVgD+wF9 Ǒ"*J'`G[_<6.oi8tD>R0MG'ް圉E87?[Vb!Ň S>4퓅@3حAW+* o-! rHDnWw⑽GJ.bP?z5vP_ NB\㢴i=-_ JAyE|GORBێl;bh?DXpҡXva,ϴ ͝uòkG5K<1g0?qS0:Ɏ1m?s ߃W}|J3^M{m8j2]Z;Q"ԌrpymGmqL"~=Qe.X׺!ڹ5ѡ!jGCl5\1ڽFf&HHHH)髏S'~kӤNM{gC4=W䖛R#syBw0jn'7?-F{=#7 {#0Q-}zkhy.1B3DŽ8 CY[0D}o[c}`cZӢaYs{D,g$N?%VyVNԣNVCk,,-i|D *g5Nsv0xZQqG\x]q֐Mă4w^ACgq58* ,kdC66Z4'BRҥq5"C?ҎǛ'D!>Z',8&ry뭻/2g9 ]#!<N"@1H 3Z)Vl.+̌uK2pD7V~Ss;t%8sZxb?:C<[qmBͽh܌8H>Rắ񛎯0#zc۶+6l8fƕ_)GJA>(^Ulj^T(G OD^ߎtH0M-n4?9ڂ/.^D"$޽8PQh2W 9L<m7в>x:Ǧ֜7wR~7y#FON[xrymQj<j\ҋp GVcP B gwJmFxݺJQ P <O QY756uzLv(Næ7'#vBy[郿7"SzQ,o~ D6ZsA<M$@$@$@$\FF[S?/?Fkn3y)9ױnQ4o3(o' WѠYn?PwVV;(&2OGH?8Vė^DuqJafq-_i.I:$DΣJb]ܽm N7s!u׀g[|3Q25|uѨ%JDZ"s)TG+QuMwq:<c?8!~lޜa]V>SЎB6L,dƠ|ٰO.TV5)lϕ<@[h躺è04;3Vn ^xu6O*+ Fs_"FҸF3q2Zr:EN͗izb:{}瓫r-~:8 QJz(bk~qJ *2#[ƿ{mj5J~!MjOEzzjJBqZCVy:Dk7/u~.-E,luQt4TzB. Lu% SՇ.R)4ܭ߻S}ҮI^~c -7 5|k"Fhf3h/4:te<Jԣ$pW#Bt9P0#s2/lo]G4y>ԈRNܳ=z )b[,6Y۪GaU)1‹[y>%C"H=F$@$@$@$<UZӴs*фsXhgJN/; _3TXB|a4<W_\>65GqGwp̥m~8"=Jb]T5R;w?GFOsԾ?WDn'+ҩ!4<: 'c /n$!U[֕~Ros%{Qm[+tMsz?Pnɖjw/QtB*e\aQͪ7t9ͯ9jfq- xmHZ(?yL^E{/7<D膅WVg}Vz0 J!V#cG #*Ev>_};S_1_f7 1;j饻h U&VqΉSёJ.}Wn 25);E.z_vih뒳}m-D+y$,3\qh\$^& _|v腮۽/,N&V;r4UVぇ9$-ʩG3xXizpTi;\>]wvP4 :$0Q~;T2>U!JjlkÞJh~oj ux;Ӝ\͋;}ÑmΟhƵN-Lbҁ`ᔿW@H7"j&J3bus[Vf  vܻd;.ehU{w[[6UZAsEKChjQ1wfBv d6"bv2\e TˋF&61ĦrT_lFrv%!:<"w@8+n"(y|WE忂Е#X֠oʁ1H:IDGJ~*GNӧO7L2l=)O;$/c_oعS"X+[L@=g֗ɦ{xXZ aKݵ Um3-N[)x(mu.GY690+FS7с}5"[5FraӰc۪õsv4^37 g^fuCly) uf“jfSU)wq6Ë6?k']rBWq?5.h58b NkZDl)}ZPF;q4g3( 3:-PxHWZ>A,ch@fX8f8V<P__RWm+C I>}Cq}^VXqͯw 3NW,`Ov\앥qVoَ-ԧS9o& ˾bWxiݢsz͵vym.l6_p+] +HӈהO"u&Uq$\"SSI<5`ŊVya6G9.|#E)n8o5m׫s?]#>ı۳Wv4TX tyyXr)8ʉ5*jM: l^a[|c6`*#\?]sT׵KjE 9{FϿ'ٿ31 S\_3Թ!rzlY<Y8j]iMkzVV:7q-H29NgFvᔘbʖ&+UmX=~ݩS݉8|e?7Dn/?<[(" Z=}"l<*\]7je0-NaV60ߧE8gBdRXRY7ڻɢ.MmqE["j-Ҋv3 \2DZmmZ$<qu0Ԗ煳[^mG;Wᣖ1texpRx؉LjY}HHHk28}EYx-*>ήyi'WY!v|^[ӭ~ֲ(.EjY*y|-Xǫz^o xY7+AQ[J͝--.5RH\&Dي#5 Uz]7oq==GdwxddM; v_>j혭~P43]⟋O)SDo !@Znwq|0͝!m01J6ՋE W#ՏmضݎY%"|=:-,YB78y{_i_XG3E-oUtbi$AA";}gڊzmkX1 tӍuڞ!w^uwG#6?[Y_Qqmb(@{:ꩍ1\gAPPjJygĂ]DbX8־5 aؚR$RP+Ozq?^ߌC%7D FJAlVwSU]pK*vӦ8,jmjw!/U-D0Fƅb-5;WdGL&+1}3EqkEV>q'^qMhAi*mr7^{>xgUOcpX5#*[lN:$B&,Hݻ*ӅIOCNq<q~WJ vܴ\ z63Y,/I&>(C\w҄SQ4dSsQµGC}X7.|./fU}3 ':ڎH[uוÚicm[zdrg߇ .PI\~X"Nks eY̥w S[k?}F q3bꖗc 3zgΐۃf/|[8-m+$:fr} UyvNHo^{GbN!xI-9TB-V)WRyQoŽH/O[kZէ8#.QGQ$;(V?k"Q\q?zBƭWKcSj2dÙ'Vyb'R ^(ΈǎxTGmzۛ$TSK][4Њ&k[fz4 qȂgJǷ(*:6Sibu:%&/qmq݇Zj d'CCNɅagAn5F|=2^m|s    K@[ͽ{tQqAXL<`m]AޜrvÑ5-! omcQPvRU0l2 Nqz%Qy<j)f`<64Zl^X>6+ Qrѥ+¡4ؔ,/GLgCO;:=Phjbrn{xKuܬĭԭJFaDf :-)'FD|k d/;P]Ƒ*ej1<!;dR?|{NF`v{:2QOzfet~37oBph$E$?ᆻ/DI=6{X6$.DyFj콇o[[:2q@govFd [a؍Zy&+܃^dŤ [ Fo"L alNCf恄,;kj$GnG/QZb18 .eF\rny"g=wp1 rLWmD[C'{9\5k=~oDlA 3cI}8-xcr wstq}φ>IHHH֐@R*^.+N)kGgO1:>$-A#Tن^mRk8?lĽlTB"* ̰NOr>u"G:ىALmAj^1d:;Ah~?L,c7ϡU3b<jspC›ԣs`v">1Y)hG|tbK8 K$1BAijoCczɫjvŇc.V)Ps69-|&ve>4 |9O+rט{  .oۼ|dc:iLxY&QqJ| 0l-_}>8(LR?$d1|ڽE{e t ;9|WyL|~*N;|@k9N-ij9jKx$4X8BT5U RveC=dO3_rO7'!4d<SؔK[kZe89h>_Gqptt%ʛ{HWl#/V/@~İE"\.gl{ -x9/4' 3-8 meh5K$@$@$@$`g<lml~nqq/I{U4YRqJL^(5^9k/n+RE`ߛ+YwpggZk8a[zxk,eDi8hzk8juϝqi>)5Wku]Jcf0rO(o{"NWuFFoob²(T{fJ k^'g#_YbeТggM<njG@5ËUg\j̮fd7Zz9-7\iѼa>އ>"ᕀ=WP,,h^{0U19'^b-7/?j!Tj-zզRJ?gu/P,:xü8WzW=SM4 L!"~M5q4d)˚|^rǼfX qYeyñ툅*}>r[<ӎ~/. Zr+DD &ElkVS?Ff<^"躨xzLHڷޫFC[6ӏo<x^G% Ow[ёOWy|}>j+?Usowť+̯K ޕNؽ2IHHH0@>+h:>>nEnץ*f14`,o~o|~ΎuL攊5 oJX<NKUoiGkiڛ o.#!QAsЉ2 ZD|i?|eTy .5 ߭^oWd0ϸxQ lW/iw񂗾&o"l="F޿ͧLgiP鶲%"F@O/V)ҡ#Ǽ\}LwUD74:|ZALx=h5S:R%2xfغyQ,0 kcvfᨩۃ@# .&Swwrl8æ9l(z;z1uy[Cuq}=mJGZ,"1mxHd&X.oڊ< L<;ȏ47U FFMfh0Sx"g&"f{w˛Uh|OMd7?T<`ONjMjosƜ2y^<:,G=b!Z }`<I$@$@$R%]}O1;cEoa12VUappP-v̬׸-,1߁r~i .ߪOPj*wPƇz?/5 |F06_Ӻ o^̣ NI~1-LB8[zС]M2‡>mܺ4%vD2RXHo3uC>xx-xLKk#x{O /@mX¯ڶ8S5xcl}mӧw+EkVw;lHHHH|H9lI ܊am6Z,n^buGsss_k`E`qqIxy߫|uֲLC&ၽucm7mĸ^-@'1źk!J䀰^(>Nla[&f FaOI)Pʢm<sWHHHHHE 0/BF a``R o@hX1<b/}_\~U^Zz+?v󷣣ݽcA< Eˠz66Ɏ7Wk>Dπȓvo4yGQxӇ=r;LlAHc+Vm{%x~-8\QwP=/ XkMMLN!<< /l'7)\ʖ-[ID{X?ύQg.Wso5{چ̵gϓ7 /4-B*ZbeܿP&F'kh7߯ŵN;9xcA@PW4+V΋$@$@$@$@$BB.[ o%-Z955UG7Fqe~86,/N;fG:n5.׶Ӽ|˛%"^jkscJ=1=0)G'cgX(n ;`&gnb o5 xcxG, 1_zIa{x[\\C> p~xfb)\ݺm6!`2fQX Cv62 SC̾ H+33A6 p~N \H<Hk=U  kǞ- xodU$@$@$@$@$@$@$@$@$@$@kGڱg$@$@$@$@$@$@$@$@$@$@$E+=WUeg)C$@$@$@$@$@$@$@$@$@=PP          {%:~v]h{v% @{΂ٙuj9&         `Hpe$@$@$@$@$@$@$@$@$@$@>&@ wPWJ$@$@$@$@$@$@$@$@$@$c} ͑ xope$@$@$@$@$@$@$@$@$@$@>&@ wPWJ$@$@$@$@$@$@$@$@$@$c} ͑ xope$@$@$@$@$@$@$@$@$@$@>&@ wPWJ$@$@$@$@$@$@$@$@$@$c} ͑ xope$@$@$@$@$@$@$@$@$@$@>&@ wPWJ$@$@$@$@$@$@$@$@$@$c} ͑ xope$@$@$@$@$@$@$@$@$@$@>&@ wPWJ$@$@$@$@$@$@$@$@$@$c} ͑ xfTkёx^QQ+NJxxl}e'quV@$@$@$@$@$@$@^"@o/e$@$@$@$@$@$@$@$@$@$@%osc\_yYE~7&HHHHHH9>eSDII#0r3{L$@$@$@$@$@$@$@$@>$U[!Fۇʦ|_FcI' ?gLNK3eHHHHHH֒cx%}M$@$@$@$@$@$@$@$@$@$1= % kIm xWcx{ PQ.光HIf%L=PG;>=dHHHHHHHHHH`m ;QܴX$D#x[`E=,F&08 τG[Za!~\ZhH pZ; et)9,"        0'wD^-BQsMG>?җ5btMb $sK¢p|9AFZnO {cD IHHHHHHHH`;g( >##^#4B6߶QĘl`_{Ӗ&cyQsnY~aXC^ WNBm d#i($DrR<Ұ͖C3=n9 {B!I+CCsnG6&'Pɩ0T9 i] tI$@$@$@$@$@$@$@$n9P,pܯǷ;Ύ^xdڞZX0w׶-opkmM]%!T޴9iONZڅĘn⢈w/>cj|CAǐ/Ĥa 8lM[+ @.a Cke %      p_ a:rԮ<S!(x9P!Q [$&fe$Qܿ<nxH$Ju UMC47I,aRV;jAM*"9 !LjE;EA/c _΋{ٹi";qͺ((v) bff_XTs:ť)HV1qpD!(hNa)~My(M F\q!OD ?94=zhfv[E6|~ Nm?~2{&ӒcQo뀏9Qtbe5PT Cvs K;3=V[OܢFK[.]TݬCIU/jQ)/513[ILOm&)YpUAZ6 olގE+ <ufRY؝6\[ފf}kC58Tg{B4]\Tqʁ|qVT; P/AD+NY%7GSrZlZc ˬcucjQ{h_^H>^\@IDAT4 K>:{$@$@$@$@$@$@$e~y 2dm}S).'sʍO㙥H3 AQ8y[n sI(ϫ؏<4A18{[ '$׵,GA1ԗV2~\iP,9 0b-YyЪ[_3[V 1msZAW99rNe/yS+v12,#J~ 8Ffco{]&[j wjhk-0AԤ$eB'FXq֔pIpC JPތ@5s%J}-brnX.v8i&h4|&ە)gǟh@ɑ=GspNd\Rދ7ǟ?~gR !7 ڹ-b5}~Ƒ}+Z~.'gEǨnE@6 B07Zu4v8xGM.;0x=j?=jEq]goq1si \S\nLɉ0>Xa&v7߹sWm>: z|6[$@$@$@$@$@$@$@$`Ҧ^}^ wg'[ޗt%8]jM( /o hɤ7&ZD+H5 I O6ƏvnSs1'%bcIT~h;٭Ǐ.FDo<}5t(|B6DޱSӜA,BV:㽒m޸]ƿ<S1(*Gzb4)0ׁ:a9&GK`ɾ,bu4n[6m KG$FCj~X4pi'Zm מO f#D <;ܳ3=)S14fbEOĢIbE}NĠpX [ox'##I @5@jn8.wQL,^ƻ qfsv]Us CQY%,@?56<hsՏ14      A/ozKHU @[T1]:DĦPSVlxW+>шrJё—~TinI .+<k!v;he~م)jwmegOΐ ڭbrn2pPā~k\3 fān)~\ʳ[jǢie)8$8*Nb g\֞O<N}G1nKk*,c|Z:fņQ 5¨|,fh.!AiITj/ӺW"17t馱Ge-p_6#7gW J 8ih G >ԓDbk#:L'o?~HRuh/Q92Ou^ż.+:9>bVm1)I(߃Δoϊ+鈳c6x; $Fn߮dwH^ʡˉW˳b@FԺSpz"-B `*J+W3حAWXUޢRc?iBCXV,-|X[d[-âZrnҊb]h19+{?G 5Hּh p׽{\:11+4E$@$@$@$@$@$@&Jc[aV]4ViͲ9q YТܬMo6mZ\8l?\ҭ+qıG"[PYN>uy TƳz^햍3EjN\"njggC4(%Q~XS~Qxcja=PqD#*Ml;ﭻ/20 8sIRpq\vw:MVv-3xpPt䖅sfq;vR=˥n?Pwb07)\tA};Ms( oネÃQ¸D| ė^D) .G:=ռgeQ{5I'b߇sQeܴ$lh3pO$@$@$@$@$@$@zx*G%D\hBknKiʫeՖܬ<%oшz<{svqZ\oa5kCl-@Bd*PyENU=]NG iyV\݊9/[>!bzJLѾ#u-]o7U.7+&]}f|Ц8y!#[f4>yӕ~46*iOr!>t }hmjBY.s_Z'PuIh8M=uS$vK9:j~6Zvu>r+楥M$ze[:51P'9+$@$@$@$@$@$@$-~OE -( E,@BC>I,&oY~_(w>bq9wC>YSȁ.|WqQ/ҕ6xij0I}G;,< {6 S$ĉHMTZPϊ &g5ǚd\tr$԰\G'wYŌV X;>}hiW{]FvfB =ވZ}O4 M?_RSL1ҋIuZd'FtmXSGrVȫK6&J3b3ܓ C@}O=ii^7k_&J ~nOchr3N)^*'EB!`sOr@&;.+w:Q71^/@Vtn7+rTSǁRw=BD[^(2+7x+r)-EL6#dDDі{-W38 d쌎6="}&J5UiRCWrϠ$pXLb(v|(70JGvvz2t£]BoU:9.Jٕ$f,= W$"R3^:6=hoE>*kW vlHHHHHH<K/=L-7 W9L^@J=#mݣa@ UORcY(8wuYKr޵ "^aBx/m9Jeжj`F#BbxЈbR @1#cvd>++l^-fUuڲK56(ޤژ+g})OAXزIi^}C5hU#+@&L<ʑ6QY<eSU |8YiHMD.o3tkr,{wn_gؙ%b < 33HHHHHH6\iFZ~dřT<]hz2l Lآv.< y wsvaoq1jǛCE,<OpuXpш] (O5x`6,Jց"c3Լ$ .ԫͪ>*x|b (] {Tר=qYYxkrfqm3vfP{ȕ(!RZ6iaxRN2mB[VkGcT=V{ .y?|$k[[:Q35-B+6,Ԡ˨VhBČ=}B<*\SiV[MaaȬE~ֲ(.Ej Q϶`{yHHHHHH֖ |?~6^=[G{Ncw3._AwKc`Nߓ=6J?Ņ+ kʢ!lIGZ:*wb-^+BYV8V-]e`SSxԃdө3qv*a ,tdX^-+ ؁B6T{}bL{O\iCqNI|DNi 3Cvxn|Jz<ahb[ ׄނFzK1%.&Lq=m.h8cϥ1Kp;*EwOlؓ"\ɩ<H/BzͶf%mLx0>X }u!UbbE&LT\8mk"p\Bvm2}$>ռuw.Cb^3,h*OCN<"      D@uN O7@!u=-8j(1MXm]sh;wV݋ӄxXкIU54*ƌ6\w!(W^5qڻO?5'eZR{t_`nDŽ׻i[\8}@7ˇmL>ݪչ:m#r(v\f~]2GS:aw}k^XpΆ! R.A!Iʉ961cJ:LK%xP2v#6J=TSRS󄧺g6#Xg2N} ߵhQ~U#vK4A}R,YHks *vၻ\mwcA"5.ų$@$@$@$@$@$@$ h'!}t)HF`jz[6ca9&Ǧ=j坭vhUWA]:q.?غ4޾A Y ri||hk?ݍùG9юV7X&+BSwꚻP@6v}nŽH]1,ߟC,vhjsSȏNgKbЀw;%c'zzY;n %bC?/|IG N%\>Oo<Lҟ*{@gGoRpQ[T(7#i0]ELyÖXe8)+9W5 c*lԵ`AXx<ub/6W7&b,uޖճZq1<("ީN85-8*؏4m4{9en!44QҐKNq>rq+Qubo}ԫ y> .ougGUQ߬z+"㜶#·|O"ngӈu~6ĵ۟F⨯vr߂.{ح8rH}'~>$, 1 HJ1 JwP]X)FOv^Ƨ>Py/ƑTCUPok@Y"uq#;EڭF/QBu]&N Uڢ_~Ft Ob{G"1Yԭ_G-b(65m XbJ~/r?YY2317>hĽlTd&]TN->^]Sc`ڌ,Jr>\s98:ЉNbbnR Ŀк HHHHHHH +̤ҲRUx &cai#bPP)S@x'PZIYE>v7񖄺M. Go $fEfCI4.O𤮺pXIS,h6ҍ)H2hV_gQe2 *GnCޏ̗OŸ>u ;M9<T-Sbײ^)vv䗧.E!oV$x?3<l<y 3lyxk,eb9lYmjeQv`aP/q[]}; b[բFV#      N %Mz3W2k]֛]u'R㑓ND6K}-qx&jֈ+Z/d3ým -bl);#ph[7A35/ ^ EtlZUG[.㉈6c w5|w%(r8*l+(FBtvmGy &:bX!,Fe]}hl첎/7fs|d]0`'\j s9_ صg7L6CSuÝ=އ.IWlE2"q“Z<闾]ĘxlM8Ǿa*;6[a5RJyځ"˃d1g}*fܼDUsȨD>1޿jmw"-su{ʉƘHHHHHH<@CG}zlV1:2b8-6sxiEgCxT׎ʆa*d.XxVohS/dÓ.^ܓs zL[x;jL+b`~[.N  Jc[d(]huY7|E-("y}IQ4E%kَqNgh4`0= `y@ zNHNb'cǖȲeɲ%Y)"^n"R$Uȼ_ݺ֭{)~KS|R~uYB#'}fgaTe~cK(O'Je}DžM[@Ysں\ktYdn/jx~u%ٔZuʵ9x+M׈cjGSk yې)Ŷ 2Rhj\S 8Cog8l*n:q֌b:2V8uĨ] _wd9u[˙γ^=`EiY4&1US %     XS*+1pŒUVjT-~_m، .as^%Dwv%׷:n=Zcn5p)HHHHHH`{53J$@H꘎M`R[wY&X?>Jɼ $ މ"tIH`wEvgFݸv3+Hz"@ЏHHHHHH#@wtH<o{q9rb=R-cn|;<#;5!      +<xF$@$!~7# ` ׈Q1 x+cçnktZ%xEϺۊ ے9ەF`\$@$@$@$@$@$@$':ÛF K=g%$+PR vf0j'ѐd }EAHHHHHHHHYqIkYZ "@*nfHHHHHHHHH]!4QM+t0g$@$@$@$@$@$@$@$@$@$@"lVԲ&ᝨRd$@$@$@$@$@$@$@$@$@$@QF$@$@$@$@$@$@$@$@$@$(4x'<%         p ގ0          D;Q. hv' $ މ"tIHHHHHHHHH%@8)HHHHHHHHHH QhNyK$@$@$@$@$@$@$@$@$@$(Ia$@$@$@$@$@$@$@$@$@$@">Q 3]  <0C *m]}{1lHMEjz[|sEpBw2u          !*mٙH][=6>)䧖4 $@+A HHHHHHH!PVTh)XYssPfS'ۡ:Oۼ6zKiN"$@$@$@$@$@$@$@$@$@k=0|wi<FoedY$I"b$@$@$@$@$@$@$@$@$@$?ʚ17?nEGeܜ=$$(@$@$@$@$@$@$@$@$@$@d٭j˭$ƚ4xKn          UKU[tTHHHHHHHHHHLo3 IHHHHHHHHHV-WmQq          34&         Xh^EGIHHHHHHHHH֛ONv8QTd) wN&ԏHH dWžz3"fǽ۟ے@C9L;tu<0 p#/LX/s2_ɔDBNϴIH3xؽyST3;Іg% P%KK{:G [O$#a$A-(iDmWk4x'AP E`~6`Y7?*t|:^<qoF6NwtpUFYW4x{P*)5fk|gʽ!M7r; wq<=@2jN^HH M'E|RM0pgQk u 6qaI[̑Xe#8K8K[Ã.  $#PCeVϹbvhh6'{3u_\a}Mce'$>2q wѠ"5sds(vbV n<9|E0nSRUo;ye  @` 0Kq|bfݵc|eSBc҈IHLLI~d ۼwM%iB$@kkwح廋ֿ@ĘGc A%ܸ(Yz <VsuCw>vՉ;5hz]Hivg\VIYxHH!Pw8Rλq&&:18oFƕBV6qnIH 2QY]nQ|O#rLD6.J>}s  E` c yGU%؆@3QU.Vm( I}8k#& <8 ˞c>xEv$3&N$@!$@$@(̟Q7CZ!Y7׫HEɨNC$@$v[fw{5˱vhBx1tج*Tb|~ -y SC}pV^p͵HKURX>\~3Խ5Uݲ,=??1t]"jvx g`Q,,bfjC}l\u8#ӳFD7.J%C S>ލ|lN]i<ăӘ/%qH <<ouhO$_NiMlGuzX~p?E"wNꋳχzԣ)J}EՒNٌrʅ'PB]Go[#a7򗓉={PxlgM8EQ<l5Boێcnr[Eؖjb[v&6mwbf7?NX{7K}Ȩ=;J[nSݸY/a{'kKq*or GzsOW^m:kmv^iZuUn[E7eCy;x Wb.gv=~Ab;~f ;L}òt3؝NtDZDHuڹ'YU{4'/\X˄?-G[W];jn,qrQZ wDrt̥k-Cnv;qQHjXJTKm_25HH'oc6BFq_ښRCw^ơjürNk9>GmZirjyFck5Us\ aǽ(;yDv m=@0. Kty( Y4iG@x%;;=ϴ[/C:H >c(L,gfYvS8tcT6qO.}Wİk=uCGм_T֣m~߃VA(݅OZ" u UZ/y*WӼ&n<i3jq6-Cz>k8M+oe QZ\~׸U/?rb'pQ/s=Dž'^˭*YXo djxGO<l]!uU_cLrjt7 ֏O k7v5H1jOr8n+jT=_<o}ۙr[`}rLҿXXm4xۍȌ=)=ʴs-j<r,A^ﳉznWЩlPYi<O"QPQ[ܴ]+)Zьo?Ը)dyRڣў|֠F^*}򛟡{OgL  @@۴Z4o]2X}チezw#[s¨9xz99ٳW&T }+E?u_p%__-3F1n? u<\jC'vY%-*k @%okrdS] 9{|dOGZ)+i(ֽ4y%q}ح_߃/O0vaQw𐘎;η2<1Ez U1F9R$+2vkJ?O޵пfeM-ze[d\*牧R4ˏG}P%{v&ڷTX;E:\>!ߥK.lW>;3e}47ЁV&T2bq {)N` ęrSc>oC7}\]h6i~8%n^qxRiO&n禤PXق.ܒ ii~ӬND;P :6t;2~w-Ds 04nz|IFø(N+' T!͇Ko  B`gT6rUS#sV9j2fXkTr]XhDE#W[Zq u蟉/<F R"a>[t^F* x&K+gp+eLܱN'?ɣe_}g;B}y1Ov'g7HZ^̙{-:чH@Ől>ZNٲ<EAVyahU='L&ٙe7l);Ogם8W6ׯ\{O=>3/s/~k(x+8_]Hۆ-:}G}WGEWFݞ ARYx ^on^@'hpcz>= |Ȓ$_]Twxw]<X8 >#9%hu%^2pδڜcXsRGZOjRv'qBLr1i/0x-/GPֻB Ӗ^rR ߲Ma&n*+gP{d|ڍ9W xԼ*j\7/U=G9~d$/{6\q#%bLiuД[}{2txD^W|::,lF5(sKמh>#k-t@Qm\ݦ~5r#v[C ǩњ+,rb~|}ĸȥSoHT\S-%G_տ@*D\w  I ,zнNNGYi^@9vTzݲf!TZmæۯwӹM)/Q ުQ=lXxk*?=9ʳgmj^yp#+%!{=ԄLGfV&ekTO |WZtIt ĉ@ձLJ;gP'Ƈ ?d<cO̲ts we!Q{sA*-ӟk'Q#oA[ <҂w兛u|ڊ]l}{c\\{D,-NӔu^ř˝DteWNY[ >"働{ucȮ݉/#] ;-aHg !?#8kLYՕw+/KsŠO2Ep>K}k[Io<X$_YYϯTshUrU3{j('ە[Bm2[ xRgq/L[h K#x S]}mr]ly;9حHfN{2~?PAͳ=#GP}otvzq}+~T߅}Q{S_ K~eW>c It(wX 1#9yo7Qdb5wMBGo]EIw\LH  Xz<@[[G_!;Y+rՓ۰e( cl!Cw^/Ln-xK#,K;f[o(2sqXN|>dƯxHL` #1VWfj\U|z;V[` 3kG:Caz>48gӘٹ|K{GK&Sw-n-[iA~C[g%L,[YX#;99ށ$?~WXQ-i7,H lח(G~,T6˧PQsW@q;Ћ^r&NH&~k<_|Ո^hY7r>;/<y&4P\S%Nȋ2ȥxS5nID[|[vK1:觐L -{^y`5п;ꪍdgD}H&ՙ;Bdѷ4-ў;711S|9U)Y[7C̣L:IH{wX͍уUiv,oRxXI[>mzuPC%;e漬,o)Y53@-R)N+k`>oNT<%z'‹ۅCh~/ks|G OIEYF3>gNo$Jwe=o㌜<'ف :IYhRHU^r[#XL1(+H]ֈdˋEs>(mlɮ}/9i^(@} G_Ru)e܃nDZ/xf֤'ګ%CΉvI9(9uS'f2)a3.+~T\n˚up =Ԏ/p%V<I,뎪~/FYI} Fj}cor&Q߯Q^hKmY<a0|1~UW~:O4G=C#r0sY9DS'Uo'=,m'A 1wY߀{)zU 6x3hLrDZ#xu:/Rdͳb=-haE58*{o_pviK$ovg--Usat-%% uru<Çqԑas*f@COv1<%.P=꘳@?_/l6pko-R:@jWceE^ \ĝ;shm|f=VyeW$sbe`K\hFD9O\Z}<WV"}{\Gpװ{=Pr_=WW߂ !.?#xfJ:'%pev_>K"[ NY6f}gGvNP&<_(۪Q)/F[G?+#Gz*h,i^Fhz1BH/O.Xr%*8Y8e֮vrdAusI_3Pӗ<쎖. ʧ8\Z(A+{< i͏Vxgt|{Qk|/_߽`cNÓ !`YF9rx9X +~b$+# ʒ?4R}>rV`{|隭lEl`ueh &85xπ̠ܭVkN=doe3;+[26Knf=Vj}F{x8bG乢b<?+6yFߞgQk ^f|?_m͒EQ'C_)uۍ޵Ae۸#Yed̡*MUz]}atUl׭r?+t#?!BZg4㛘`Do{eƐ$@$@&eɒkFY# Ϝ Or&_h'A~3C{ uoFr3ދE6C#7R~}( p~{ersnI$ͦ͌lV9L&1Xdd35 ՕtJeZYʮ (Be2qp_aw;fl.}PMYX'.kLTFfl$&lN=^1i̭yߓ=ܦvћxXdP/<; e9`}N?ZwkוBÞ(syii5\e#C{I3aWdLjC}Vn{b~!l6,YA/(GPU4!eɅO xp|H??8˧zr0];q'o?q$ 5Owf$Z-j5l]y'@wgS7/'C[ H{`t0 W<N(,xG#' k7^P@$L\ڈzY!1{ʊQ/4k'_x5 fL?K>o5{gyYYp((/u)Lfqwd@yi|dV<M/IVgR Pqʓ2;}D]w^஬ͭwV&4ȪCmz\\Dp^mZ%xùr>'ZN9W!cU@wK{ ף_톻[\xB^$i*jj{Nc]JQ3x.&:cO?98gI˺ @IDAT.rsqQ'&  XM.مM"}kag!'0(aw46E5tCԎtwФy0gyd<ܟY4<vy%nw`pA$mmYh|ؑ k36`r*n>S5 ~AO|/~x??e$5U4++9eM>sCN*fv棡981)1 9$kJLV}ta)j4) $0-F/{ C;FϋĵeJhNM ޙTƩr>'J%5UU媒ASC[ٌK{hWۺ<YerFYE.vG[7,/*eq=mc=-h7~)_!D:s_;.$@$@$|bm'م ]7"*Ť}s/B06jԗPQT׀HЁgqe'iUo_B CؘY|wM)Z? ~u@(yr'n719]{q0G{-ڍ) ryHaV12kp18:-d#RT+o~}hK>N7wdMȯiFsscs\w`shvit̷Gf[{'/f}lLGcJQgvx/KvC}XJ/E()f4p0t¹δ,vmrHAvTYyU 2ҸNR_P:5|\wƤҷ"#3y(Ї=nܝ<"5`kYF`pܦj܄x4ݓL/capKϱ(8UD=puU?cH71,_%L?XÕ8mW7v!dJ?hW]@_5-C 6f=zҍ+0j#&UJ2벵h=2;a.ǒ~2qf?s㛘uEԌHHd_gd@ Z/!5QR<ֆd5nap# Opo1Y۲ Exi w†7D{\x[ӿڃJ.v|J= O>-r({5e\S0vM$?_z _FC4@_[$.Ҿ2*=kʋ*/pa35offG |m)SuV]:* l+Q? F4=-u?Gwt}|f[3Au\ g?흨Eu_yA;9?yc\/_q,V"~&6oTz۪Y#>c1x QXbpm%S޽'սmAYNy9-ʵk`&|Gu8 } WzLkm?截>ǟ_Pn}cO?x{UC!:O0R7tn{ ׬ꎶɏ~EϩzĞRӨ<fS&*֯sYh>]hzB ._tj!7^TQM?8dZ9q =Gysf\d ޡ뗄fs6!.  GfŜ"y LE(jf뇿۟˜ cb97Y9(|~\:u 5%O`'O/!E|LLMÃP15:!c^-}wW~|oTƓCߥR H f˭nPM`z߈T Nqsuo-O.cko^~%-.9ӯzb6V؏wy='sY?UHé{~NmhsvgpفV8DYY+\y)?}\mRZ>)~SVn,^~$zv#?YWd21;{~u`|CV#} 6?F+ Ϟ38Y߾[o엳ZYǕ_n{C >NS7xn<|cm}`?#}F[ o-7cGBoViͷQSy}Aֺ^r't|SսvWr4F9X= w]I<MLS"WneF6Lfݗ  C#ǟc쎍ʧOa^K*GSV,<X)Ӹ6kMw=odJ˅zYcs,SdgWU<2]ۆL SRnp8=K0u&O@ݎ*=BlK6*FlNYLtb`퓊lo15KSoxx>bwj'ja1;ڇpb9,Ʊkxg|M*k4`~y,r:fGsʱõ 2j]]nC\ʕɺx0އ!IrȒ*a~nbzMTصn.gs+zkd ۶a4EmZY?l7!$E{}b/ƥ aЋ~e#t}9;Vw&(7vOտ`" UEУo[Gwk(=ɞ'um~=O6x `ׂK\+#h \-Eϼ/nb u3ؔ֐1䢝|ۉcv׉[cE%cA$˵`ׂD`WL<G$sX9h~J.ש _ԇx=>cۤZ\=vz2V{9پ@+XP%ʱǓhiYū3  5L`Ŗ4YÌu     @ *˵HBmV2CIHHH`m{m;sM$@$$x#N`}v#$@}CwHQ"f+'ۗ3ck|grA)$@$@$@~ @\ ,i〛05} '' >;IAEz=76/r53   M+CWIH`pnU       G74ҩM+9`J *&@*.<N$@$@$@$@$@$@$@$@$@$``A *&@*.<N$@$@$@$@$@$@$@$@$@"1ռ?&JtiCB         Xy.yݼi'e=6z..,F;~O4% 8M@۽iG$@$@$@$@$@$@$x`iy=/sW*cS֭ÇXX;&z %,{ؖ1znIjʌ{c-iI]e :HHHHHHH` x`#شq#֯OI/.>2#= ,P1         H@=;7sie)HHHHHHHHHH  @HHHHHHHHHHb&@w)HHHHHHHHHH  @HHHHHHHHHHb&@w)HHHHHHHHHH  @HHHHHHHHHHb&@w)HHHHHHHHHH  @HHHHHHHHHHb&@w)HHHHHHHHHH  @HHHHHHHHHHb&@w)HHHHHHHHHH  @HHHHHHHHHHb&@w)HHHHHHHHHH  @HHHHHHHHHHb&@w)HHHHHHHHHH  @HHHHHHHHHHb&@w)HHHHHHHHHH  @HHHHHHHHHHb&@w)HHHHHHHHHH  @HHHHHHHHHHb&>f @$@$wu;       H .K=6"5u=֭K9XXXEd8;J: HCLO~ӭbRҔ]SKTTHOo5$@$@$@$@$@$@$@v ~ѭ)XYssPfS'ۡ:Oۼ6zKiN"$@$i# P$@$@$@$@$@$@$@?7;M7z.a(?&Wey[&i @(kv+|Rssc8? hyf-Lkm.!IHHHHHHHHHV-WmQq          34&         Xh^EGIHHHHHHHHHh6ӠHHHHHHHHHH`Xj5$@$@$@$@$@$@$@$@$@$F qo+%"tHHV1 }ImI-Op{ʔpMA I z?[b0; ,.bv]? `9s9Ѽ8x Ҕ\ph7wk,Vc$K]XI=V[96}ÕeN> ]Ѱ[R"ϭݸ9bN?Į9t]!oQE@'HJ0K{:G !19/Ub$ޖ<F993CH@e}rO%G.]r }jvdz ]GJ2ynTc~7sG)LB+b^[k3*<ą؂܊:o_>ˢ#{Je [<Jcq<F)L43R,45bOWPo̜ .?;K(@CM\.deaӆ X/åLn;ԏ5IniA45#/c(\Xݾ.\:}1x@Y|};ĿۿqDN]Y*fs"ܝc"\3_A'<ijO7EMiG g,jMna&GY}&>><<jy|ʉy H@ǞFjw .\־aW[e@Gzi_pcJM~\CJVW%<c11x[(l%WNF?UhjԹ 1Շ]F]9^N),ۅk<bg:?a ۏqme4"/^8NZ8;"o,po0}.?[D/ً.(+ۿU,Z{O~'5C+&Ք߾^T4OO/t8n^w <^ ϊݕ^c70} esl.-3ؾbV©3H^,W&&FOM_VڱZ3_ "P#4xˋF+-2u DH$yz={ͼ,~_`rؚ~ W\՚Z"W<7[ SS )c!P^NWFi m؍gH+8yfS ۵/mӊ1w"v71v{ w<9ʳJZ)x7`ݚd}YTzk_?*'q7x]DǑFsQU \R<+;agfGծ:1xYjj=gzӵҿ‹Eu[N_4Fz3"˽,ahb<@z @z.~)lR)둖r((i<HSWcOBW.Mb$ƨ :&do4oxM}*x+4G OUЮzloD'ӯ<Tf3 8G68w$ƳIp>8}o-yKJ0BԵX(7kg6njz|ϡRyM>|}~On5*Tׂ`X˫Qw%5vwTUbm$+U5ꣳ>(̪z0O=1og^t @̎N›NeI<qc]O+=]Cu( h<)o N @~cB$㇅ؒclG^2& }\dҏb%(~7xw#͊xg$}~e>.;̱Avx kÏПe':?5J"Sxt꛲ߠWTpy349 eiz G޾rz9߳ۻ:GPs ޲Hk3;kΠ%5rkqno˱v{#~*<M;LrtUEyبl;Ѝ6Kf 33x "gSj Qp֗:(DAV*ډ@җ,͠b%V:Ch-DCY,F>gIa(qeYLM`3ᐲKA&qmDF X෍ۗ?o'vjŶ,G^VlN@Iiwpӫʖe© 7?\lL]1;>3C~ަl Ұ^`})րieӏ4=ـҼLlͥoٶ1(QU9H/fȐY0-`0}64Due`s <u'e2&zŹ/<rq.KR;pj' ] :A@I*(j-D~]Z}pj_T?GCuߕQ2vuL j-:?:زfE$.^em_|FDN@0QMxI]|0I ߹Y?~vl }^()fs(w s'*jXR<?hoQɷh}1G/{#ھ-So;C 4BuKm,ƒiM#W&ߖ̉i:C12Ke=vBeIڇZ꡷_i:R:\Z`7.P+5"}]GGh&q8RncbnmE?BchA)Y`E_"5r&[L o\|9CVN"ύTCbE>h~yCxɸI ag< /j/[f?'7<9(V P]YxMwӑ-Nى[CW䍪Z1NW,Sq*ڍ*g+ U;qm5pz_mo892#y]Ď]8D#>z=i5Z7lfkB.U|8Ӧ(܉iWqaӼ&2]ݚNM+G˩i<gKh5ؽ o"(^~h@Jv4x+yZ0~o6]$\k*H_]VZyyqTS7O}E<!\jوdw>@n&#,GEVܛo\Pbȫ;O@2F9*D.;s,\1|riBDWpi'5&ZZ8$>#oO}hJCFpWaOa(+qu)~h5gUW})5u-eVOa oMPXVdzpCI .åt엥P._BC]9{M6p{iڪ:[PCǏymǰ{uVJ|uJIYOœOg}Z> a6i==}Qlʶzb>^iW}.6St-zjNƌ}[K[zH8qI| ,{|[mٴthM+v<@iOZc֏Qp d\]Hm:o0XTsV;P8u]alHWpnj=kj> :hXKWNUxi =)@QaFOٹ1dSeE_~\O ;@ħ2_{Lb,=j/*F&~v}%ee0\Kd^(ZQɌow nԭĔR_t$LYcm]]z:;+`0Uh 8 |:U2(%Ux VczLO|8_ͦWI,G?حR6yǂ es:K8Gz9:qT˔ׅG! FBS D6\+VV5ۀ-x`edc&e#'2yNq^ߺ'8KoNV6_F7h $~\Od]}Gҏ%[MNqQf]E{ʃ1Toc~F)Dy|=&e#G7v+f,ApKU=_C=en[?mq%\#}=!߰V!T68v?K.PU2_Q_b!y.),Y `{QBlܟA77=o#N[xN;6eEܦ:`ڏ5vsr8?o<m|حHCQ9ma{Y_ ֡kVf,/[# uXS/o ~QŶ|9 }X<AsG0veQ/MJ/-JA=^z>Yef$ -`o,j}kn)qpV\񛼋K+-YхUդrWϹ=gu%z.G.7\5E'Y娕E|3`Ʋ(]XhإǎQ7Q&xݷqS}ͪ>Txf}.Fp)ر6h|ٷ/?}'jԷ>5^v7}(3>a>[8T^PzI_P\}f oଗ!2eb4 ^u.=/. t ě;e4z8`Jb˛|4{Ǽ3Kӷe{ j7bzn|/e41!iUA<S3T(Kb\RC'7ObokE3:̲'Kv]NߪwܬW?7^6ɘVFsw{^~JMb oCo kzǬ`GAV;N],ñb?^ufGf iZ Lg?Z+:hO:M yo/J6±C2+;뎔?\/I{Vy;>~2<a wjTD.}q[.o h@3_ \^,:6.x d䠦+'v y}_W5.ǁCFX|k Y~`~<ytOѵ{t]ol"};yN1JJ=?ԾY9%|ACu객ڛpy?e2&3f3=/i/_Eb/˗c_/duf<Ҳ-uj{713. ;spu0t6cvO9geyޯMfvYE٭w6sE~z}0,[Y2Nݔ\it;;/hx0ڋ5ȱ{SӺ3<3ɄK`EYI?î/7ttl$7]_;`M_ ? lޢP{::@~Zjkv [_>&uwM,zϽ뱯Lf7yY^t\Be7wC${!~b΁߿_;^uhdq oi链~1nrmCӇpurfa Ob |>3o5T{9g"GZPy׌݊v\ |WZ3 )!e%o!3>$;oGߵ}g-_Ik9;wᓫhF`#߿.p'=ow^ƣh?i գf3\g. qŚRF[LDqOOM5ZRꁾ حD}?+wߍg୭YXh|2AR>A˲( =d|mY{<~=?s(=y ҂o~sQ𶋴ئhLmG#1 ICIfVғi1W#vNq_ķW<;Co/#I3v+O7}AڕS4͎|Qf_^wO7/Nf<twXs93P#}'\z%ջmgo_M^6k5h+GOmoܖsPx *˒2qcv{peb99Uc4 h6۵egJ 7ߐ*)~~ٟ[Տ,l;e4HkA~OTͳF[ H^%} 7n6u5]'o2y$3YFGXQʍPqӭGY"/kK{Eo饯9!vȌWT~? '7ӈ{z_g7!#CmIaΝxd֒C(7.k'o`_wdE/ #DDK1(L-n-5c3lQl٪,.hb ^F{̶.,BGԌOsC?cru+gR:w3q">#ͺpO6}YNGǔiY4ߖ#2ݗ*] o!5ba^y4=FnĻ,(׮?JH7+|~9\\Vn̏Ucv㚏;ؘ`B,%}'\zNh) \|+/T caVg0~<ӲYhLJEf `-nٮ.'C!.xf~{;8|ťޅ}w}6Vv>ю|dCʻ՘M*n94w>G !L$*6ۼq'tJokQ9bQq,WkDg\kprWU.vYbhsc`:: 5.^MeQo[E"r͸c7,.yghgy60M2-6XOtC*| t2 hߍ.yב-]x{@;Z_]Ha  N8fG˱N 1ѤI^E=j 5BJfUMr{TX޹sG=pD}qY"xz%:}RQq3:'}cDWi4A2NGxfC?7ɋ@eYQlc~tw3W*MK:1O,9Io w̖/V5M/óߔrd-8{ݭ^p_Ļ _l툵]tҔA;&ΪX_E,;sxR[ԽqOl*sO_/vnYsյlsBq>vC]ʠvd?#X߸OoxVz<ƏjUn,l;vel 3_EUZ݉ƽu/q]xe9Wp!`5tfV/kOV_Y?O"b)N)P\%k]̽i7!Y$oo=rUQ(.gV[emהz[ț.-9?m>Ř4(.ιXp\ʯ߂V<J7ޯxH :QudCajWwգeT4djsw0?cf?,:u؍ɟ?UWOmuuz%VU.EyUs`DV?Io _׋Ut*“׸ Z0X'9Z9Lٷۮ{m՛Hyg@b7Nsx$;{-X#KŹNh?P"c/T0%07F}VYQscE,:.ȳ׮W| rZo5 dB9s|_Z<ث>j8~z-KQ߭Q?; =}1lzǷTuAɢ^UiT&bGt\gP+u'_| \}~)ikkms~.rIEMo0S dtH$L`E%8tpԕ7^,˙tD"&Dxl5#KT (s#}!G)1ճ ?3Tt=2Z:t !pN>t,/]%ˆzAfxofr׎ O3^d!ܖeH&;-߹:tMdww(#{P%)s,˅O̒~t k"Zg1㧃ؐb528)8Ḳj4[\)I2)Z֖X< L t'CxDZ[m)1޴(3}Û7աEIgG뽹-g+G_o,C<)wRċ?TDs./6cvuӢL~B]vWg@iE߮ecv?و;;Ivw1pǜ;<T=NVE\QgYy.o,/}e#Z oL2E}I·eٖG 7=t ŻN&cE:nY.#ңmQ岬3'ډE'f*y`CtǨO"̇Rl0 57ﳂ@އWpGm^h=@ DL`-z 6`v5O~~A{^M&2+7,LflS^JY$gdDob](=@50v6IMFe2sLgěRDK#>nw)@; &Oy(6vgRV?>Bi~4ۋ.; b3tv9o_J6+2 ,}rF~f_$_(;nh[r[ne$|G)~BK\ O٭ ;ցQx~l5–*hy^r Wu ;a64Ŷ$Bu٭w~ى#VV"x>Tмydd)?=|YN9.cO Lϋ [ q=ܬ,x_/-=7{&#Uی15bKrjڎ]O1Ant\lT#_۴a~iȍ1=0qv- ) ^-dyYvP]1~wynz5ؙR4-^å=ZNaG "U]y$W$ ! ^tfV.tFUOtDDLGuLtODtuj*3ˮ, &1cB d!Њ6Ϲᄏ}{Y~w>gy甿K"Typ_waalJg얊pVj{izFnv8숃f%'#fbDԳ ~tdkMK8s(GiysJ CxgO7z{1~>E,P(nGy9Jw1}5?7v#TZpd#7: ViVg;۶ Y7&(N49GT`MSCqd dR</l7ɗ4vn|=.{߿a\TƈWލ\{G'Ԧc-Խqv`quZ><|[lVƲv8׾'k-\)˙Vt>t֚y;y|;[SoyyNYL:^թIHN~j!5YON(iz;,[5It'5gf$<]q64ubA+qZ[BXG:Kj1]*rEyجYY91PV 6Et 75u9 #*EI!N<W--Y_݇ F"{?`'e6L%. ͒NQ#ƴvmf݃E1$d"+l(-R>hRIjoO5ⷡ؜8rrj/h{ܢֱ+MI(sgUmvWMs3ZQu~W(aUb'Bb:^Iި ?uS6Kv -uyb$UZ_sߝpmDm|"+bjݐLڧ|] vCd Qh{.)z:'EO˳>;F1Dg懪R7;NR16S8^tP ]PԨ7{n|1.ikWqu$>>mޑ9R<զҹ5;jGrVO%@IDAT Qn}/w"x,;NӍvgz[ .}+|u؂ޝXYfJkד9$'Fzj4pX]{N'Bvy<t[O=yRbZJQ{xⷠE|Ky%r.(ݎڪsB^]SXnټ,>Ցt^y?̤̬O]e6ngv(oMH͕+hyA%M{E_ܪ H^6)^{Rb k6\E.NZlںhڬ--@vf4ܭz:ёfm}b@;dh½yiAX0**-8C=-hni3z12"ӵ6+ai;___>m$@ G 9/ (X3(4 (r%gpG#kzL)<!dn[Lo&T*ۇ UW`k+PYXRycmW#5HRE^J%kzU_Q]nJ:g@)3=~ wG˟zbmD$6!)yBpT93 6FtR|<e7!! 'ΡM1Į藩 ':aHn}.}>{>箿_rvr0چ~<},?VKQ@dVwu_MYà Ҵ^L 8OH3 f^}?<iŸՔKP:* /gHxqFF#QM[kb\x<w܎$c㔧@d\r~$Ϥ`'z[w1J?ڬRV~z%IH2Oti:[ ?9۝㹝b[KS\9k_%/Rp]'u]<؎AaPk.I?x/_B@$ +rV<P'W)~wM0] aV[i1x `n{!k4KVC/̋5V3:M/U1.8Fa(0O)RIǟ;{u1 QfGQyɓɎ1:[q/cBP$oHkg`w<,PL$N>+>t;x҆u((SWAvI(7o dw>o2cL']^bv(82Ynn} Ryz5mu 顏[`~/ǜ{gX2vgBL&v GOGǰKV.A+>b1iz<'nR#IxsSgrԡlhWd hŲ^w}bK?~ލV>Ś꾏*WI_-3kxv eRb΁*ܼwgK݊4J8;d~ջ'soe?o0c} *3%}(gsyBYE;o\|\*?Io9Nyp$_/C7954c&y)fZ:&e szn 'i2=IX_o94qy;T_nK$z0,EŠxg$_śR:?o,3 l7񁭽+ i,ǪUWLxeY[{?B& gid9 /}<gҼ"#s÷&hRp*~4M }s5B+b;ޱZ.5Ξ-Q xi* Ggt|aZWGh|/Q)7`gmY;K(x&L'{9 v6μ8e-qOGQyWcAFӆ!6ܽnD7}JLGpqAnKwΡvT/lZ(3,8 ߜ'P.E'/73~mq.ҪԘ{`U7~.ol5W OjD?§sbV&ۅrW$3? gliLIUu^ZoO S8}[LH0s{O4]A] ?_cOޛ#_{`Lڃp"-vў,gq}˭oq}A=WO.7O{n.*DKlR2 O-Os^”ۨ} gIIsOہ6X^tٕ@vj_,Mڠk6_;Яs:!UY"r& J]yHkI:r<}{<ip{PnX3ۿ⯸'wOxBwx^Q7w&uYGk&-U} ؼ'UVH='5WuFBk!tv -uas_V!- މP6kiQP`1׎fiBOI&6D#3n#JC({д~6dЋV(yZ]C/q/Q ibHpl^̢7i+ b׈Gn~ ͓G.UHC11"Q<{(8$#ILyg{# x`%^򹪐xy `-s}Yw?}i DN}ְy K}:Yiq:Zџ\PrX;:LO7a=.Q"c0gZ-x9/,_{iŦĺ ^ Sn^͸aKRwҠ2ۂ.- ZnxRhc|;uphX`W~:!j[VOIxE3{h E~aoDGËgƛoN74A o9h#SI1|)Ko; шItĘ~y^/6*AXh|j5"BgVvg[#ؔlJمɉI\g<qX4EMInwR>7Hn_٣mc#ںJ9H^ӫW.P%?-+ڊ3҇fA$@hސJ"j1j܉y7_/6bv17i3hzU-("N]_yؔ+~Lĉ`Y<u^13ئW<Q+WىOI"y?(k@vM|<>{K;jN\ox3.;Au{C;}>/hʇ |L[CxV=$ yw[mwJKi-3:.3U]*uۈ؛qΔ}6p4F0gl <.]-SNxzx^w5^ܯa˗h%M"  +zqTk/e]Ѡ+9}/h~Zх'bYDژ l+u)[a%bٗeT,J@X'˓܂V7brQUYBl'8%DXrqX\2R͹uĤ=e/EiKO} %hN,"ҐcGHyln±)wcO_ܔ^|/O˥/RuQ,6Ǖ>IL^^%Z5.lVDYs{ij'؇zN/n p؍D*L6p{LWa< X1 76wZ]pIl[ޏ9 [ncdhPcޖ6<W-鷢,~v. &E9/ɲKA ]=ri Wɦߺp.mt! p[QdnZ*E!Xݦ˷X2p@\R6DE"44Hlի052f.IHF^RTuQ%K )X`3;&֣mT/BQq Xi@)asJ= IHHH`nG?m+ݯ:g(<HHV[E@.~yX~HHHHHHHHHH`{T$A$@$@$@$@$@$@$@$@$@+ +$@$@$@$@$@$@$@$@$@$իdwy?IhWJ%         Ι⇭]Vňj*zL, 6 KO  $zQ)        L={y#!.SS [V,ghf$         K`^ ch;$d]@FdhВ&Mʑ LIE       X^=Fo֮Yࠀ-,d`M mK$@$@$@$@$@$@$,H3'&ߓ䦕Pc          #@wU "          ޞPc          #@wU "          ޞPc          #@wU "          ޞPc          #@wU "          ޞPc          #@wU "         @'HH`a d-l̍HHHHHHH`54ZjBCBիo<g0=3c;.hZ$@$@$@$@$@$@$@$@$@$ C Q |ӭd\]S TTH׈ xJnifw̆haN̢4:iyxXBCCL 4xLUP p@XxkHHHHHHH`I~ONLb5&czwOGǐg2zK˯&LV!#         얎ɩ6vK:J3'&'%mr (yftV[ 5i$@$@$@$@$@$@$@$@$@$@K K8 zt ,Y4x/٪$@$@$@$@$@$@$@$@$@$@z4xiM$@$@$@$@$@$@$@$@$@$d /Yͩ8 P'_>ᗒ=w/rJ( E ,Iq;{{.Rぉ `fcFtl\e$D>$K/M˨%     XSqaA019>4YӇHH@z xV-p;QXN/(A~[x@N5f8>()tWܫurc J#o'r[SPrD8)pn߹n9`  7 G:pyA < $avp4\v+W Uͬx\ہ{=^M$@$@$@$ ,[>)P;3xGh:">7Vzݰ$3Q< "A -qfC6ЁUV3`0/ٽc^qly#ܫorc &p?^~UrX0X7J ^ Öh5J(ZՇ O8s\bJZs|T!I 9>71 t4}X,4B묖sLj$@$@$@$@+ǟlxkq#TX򓀷맡z+I`1.`օ3q#K\ ہ{H^bl   Xy}~M({3?W\d3|z.{5BxU6ko2fAH<v(FfbB_rMN^<J"+%kVٌŴ¡|$n|~f }mpƛ&]&~UZ3:5 ٩HBxZ&9ΗwlhXpE.yr9 D8=A@秞TxzR/(݁$DX׳XG< fFuqeH1`1#t\q tK2M>iGۆ<mBRṭSQLIQ[QS(D;Bf&0>:FT5Ygh_͸Sg#$ܒbWsMad +EMH1(YL[66yKۉ$9cbUW+Fa{V "6jcⰵ4N\[ qnF׫Yl|o~鬬5cmA, vs̳ L1jv "ɜoy * pƠdw!>tN2LM*<L2GM<E &7kwzODmXpa_ߛQ-5'6Zj\V=Anzf0݌ *D?_u}榆PsW{%t%YKW/7.˰/HHHHVE1x#<.eeF v6 Cɖ(0O4Q%ĉc{I9[gW}~W r-RfKxh 6h^&זm2 g=@wUx{u@Wn>vg۪l)Q~ͥ)߃rDTO%M )ҝ-|ʦuk'J v!Y`|J䉝6f\lߒx U{E_C\y($xk{cN9ǏkQ+p(^Sw 9E';Rz4xK;,3^o/Vqn0v u w18.o*CZ_ڜ][qeܨ47y<`$ 1e⩏P5 %\c<cבxTu5coң8~pDYRX+7KF2cd z壻m27®;H|/nmT6mBqv:>=w5rˡԭ]ȓ3E&(tjUSV;@\]U)=h4ʷ~yu 3x2u3;gᮍjH/9G۝;R#ֲjM!|Z$f'㷿x6L!Y\+ l{]~F_fIHHH`y8{Wl+aX*%'~$ͪL]+k4vKdҗ׍Nv~GWK5, ?0vtvb<]:V5vK4z#0zz0 Y#"TԳ^~ѓn%fJ ^ɏ񆕱[v#Gt՟[׍bRyQ|֣)~m< z=ns|nٯ%9<0=DmhGiJ4'91͛ , aq-f& bxFWrH=׍nq;<{_^,0d fȫn%0<{+Wxbc륗[neMGj.-ǰ.7Ы$E+qs{bP<5?Rd^FEj}yʌn)xbSV68"!lZ{F//ۋ5pXQodA}ww+ͥ=>I.*桯'JԤmx7񊕱[=;Y4m};W~#spa]ƢHHHH`^[cy@,gjh߶"x]$[DH(b Fٚ]ǟGfe}h@)f!ݪogy҃8r@̎1s\Kd3SO-ţQu1܍h2|j3eK>oJN͓'Q(K̐m;und>gFlDb*,@;SV;y8,@(GGU|rkӲ+{[ 3VynsC I()^+m?ʼ6/?A0)+ۤf"vN\~ Q񆃍czL,Cf rc#2V(1> Ch /Ui%e -9= ƞt#mr"*GMgđeh>2cwV7ۏVgF$$f-K/H,<wg&p߮`hMFY yZ6\:ww=,=eHע\X|tKt1MKFhAw6pz.\܉oC;*%biv]Zk㪯GD`*$o$RGlJNA|EY|;,pE x6*OGhk7/_ 7\ȣp`<?R,[wVԮ; 3)x fhcܺbR]hċvآ82ܕkJ~Wo,[IHHH`X4v Ql3Wl}6Eӟo ]+F!-; 9[_0+XYQs|th|+8\܃g:cpm{_<o^N" %GP{$V\;-i4j_7g 2]4zSv V]#~Em$am֕Ajv _## ޺%,z UW@Mc߽/VݒNÍ_i^ Z(Ssxk5mn׆^GL2sP8" jjcZSj>C1vK^"~}݌P%[s Xxt m `hG{|pYz,-0劽}ӏ Fէ͕S~tlDl_o[z~wWW?@V9}zl9x*˺IYEloWe8sӕ7Ή'ta'/b-PA#RRƣfO>@5vK6W)~<2emUaVaX{4>h &cgXZ&[ԍ{QMti;=m/,c :t762V6`0xHQ1H~KڞC-E{8\Fms?~۝⨻'s>oeq~wjn<B޶\l6}Eҝ o}HHHHVE1xo9Cln g*l/!fY%)1b#-onR%VLxX4(-M|)x#\m1/FTz===mHռiF צU<ь(-C-bEu;_w曨k_6熆v iᦳ-P-|3v+PañA!DIb< @ fz&ڤҘW$As-lY6㖅A]bΔq]Mlv 7i[ wDI9.fq7tn5`t(H{<Yدh7n͇mR)׉wbXM߈ᦳ-w׃+n)u7Ŭx٨if$ ]Rtu%GPm(/G6Fmob|ښa?0`ݩeJ3vgmc-;lk .7ΐWdq # !_9,ea^l:Q-`Zc-7,<>R4/ԡ$iW67!MhBlRG񰭧1rBv7".:҄h$ؽpb<]6w+a+O} *|vjU.d/No%i㑻M=t9uDVUɚ{\X& %/ϏluYkJm.}b7h;uKI9RɘK5Z%{"6 11e4ljn;J<apQ9f݂1 =Uuv7j\nTI,A'DpBNno|D'ǯԂ^a0O.c2ś&jۤ>nrݽZ*]M'.>|eg $$;%<dR,*D~\o8</     %(2(zQlAggMO%85 Rg͹ޮ`{zJ mIԌɝ^:oJZ޾/uj.,^9B}?"⯿/ݐ⳽.cT+k~.1qӞj!-Zs@i_nn(&q]n\L:Ȣ\tj9g?/'zR,uyZJ#n["w46PǭeH0,\m" o:Ƈk$]z;Liy2Mn/?M/+Xy8?Z,.N3q,P[bBboF^"   XX-MLω=yvZ^s̜)(k+ׁ~O﬿*lz]yKNXXwk0W<qs&hiB{gXQ3 ^,ՅCeYaM/Ć׻FF34r:| ǰb5K4 N8;wg tu5˛0C1a|H+2u0>[Oh\׭-DSYJ\kF%5j' Y߯DϷ6 Q1|gF $^ ٽIސ3&?0Umz{J%-a< z^|Y^oۿY7^-/=c7[!nJ{a{4wk1VY- g:0HHHHA`Q ޫj2ˢkLJFb'bm7FAuSIć~Kx(#c0[b߄˗w[CdAYNlI4#rQ77ZaH׮UiLN0V2V涵VQiPFnVזYMfMWz}q茶1 ʱk\~(K(ݱ9,lݙvs! qztUJ7DfQ6f3|UkOۋU*}$ߩ3hw?_Ԗ EMпv]Ɍ^u˒$@$@$@$@ N`6LӦ׿kG0rIX%Oi'_/KLw}vcڔjgMx&E7F:'Oߗ sQO3O^{U+劀a\3vKto;a֒R<Yo kk lۊ[email protected])锌hZW\ 0(SEl*vyC϶c^iɈQmzH)N=pnS<ߧNBaziv؛Gsය Y٘<j\]ubV⣯|o&U2;Pu?!,Li#-ega#TM4́nOe~cY˵X$@$@$@$@+20x-ͭZ%`_yvmv݋b25-j;-zxGGY^ SPT~?ƎLmvM6/1q]S۴Rl@/k5?tl_nVߩnP&@DW}MQ)%"8J OOuF9%#'CxCR^.jtñI1h nooCYivmvmYBqU~h/x{'=; cPP?MVOY5#ElK3GOL?ǶS#}4]Ld۩ˠ7\o/t~,8I6>E{ )gu{io$cEI/:zc._lq7.˵,vc$@$@$@$HVGAt>~{g>1}z }x݁TwuY%MUYper£?ƚ WQ XM[s ܸJCeml.6ǿ/>Z {tE6)y|GBEreYtX ;COV2<)=I]EܽLʇhu1)iځ~) <ΐFFqyaSmI߅7PO [Zыjf6h"mk~Uzppa.72K?+!x0;uJyVpm* Q*+8} wzĸi[<KQ:v6+<`7^Gusvg1Y8zR|\T09w;^9}}mhmmCgw?> ˟Z-F V@Lv~xܼ_QDԆ8$%oBZhN\Mw\rجQ!,Ty].o"&)8rLVڈgAyzH:[л3]5hbpoLD>UH] kr7 X06׽2n}|?:u3rJm5?ʐ|ؓ7j_]7yX u&2'E.yI e7c5F*V/CRr-D؞(^!L>WY|\!3L/eR b؟k+6 _)P C/R> oWa0˹F`q)_xalDxtV!8#;*'PdA}(oyD|v%*0XO_Z+L!eNza~<8]z&eFqAMb>l^ k^ls1}D|,e g1&F6a?|hEm1ʙ| iyu((SAvmH;o+ݯϣk 7oYjr<;dsg 6;l wZev8gcZI$@$@$@+a8ǪpMJ<}Rv;=gθ i/̨Z5R~תt룍UiTbt &44Jzܯp<un7}Sop'n_x?],ZOk\x]eyhu0 ˇ?֔?^1>К-p{x4|inB?>RI+av?՝s0:+3L[.5Ξ0+)7\hPo~ 54kgt㋏~V#b kgy74ڹB:OqW;P;x6ɛQZ.شMcZ7Jf &uI5 G~.oVOjn V̉YDؓ><7s].~ZrkϾ3KC ΉJy"[ Cm}-+=l/𤼚f調qڸ)w#j#Uoũkc[z2z)as0ޚ9'Wide:;,\qo 27j    XV;x;[@b!<~Қ uC{Kzm]+Jt1;0ޯNֱ3PŬ1T׵hqDXQuQ#29؎/֤Ƶz_1MF5h/7LdMLjL#4xVl0ev|$,ũ!8}h֯*EGfFD7P ~^I,2 khBXxo.$#t~œfamAB9iM޴XSPy\loDtbr}Ag׿Az_cnӳ1\;tdmݶ̡D"4k}lX>R<ԔŃv-+ C25ԉݖpjFMܲr߸7Ί_VfY5fHHH`9ؔl*^kg&'&>rtt ǝcݛ}죿7C2s'Uܙ{&?K諗#}ee^Kz;[g(; ԵǻŌXcʞmSU 3JY++t\xbvsl1,'b7PlI>4/AX~iݨv7"[Ei8i/b#ǶDxs5֡"t]y5^aL<ghG~v]-~v陀HHHH`Xoj8^ hn8faqQRVLm><jxAL;0 L`q4? b֎.<~Ym;.m. ԥ 2Cb^ * 2-^u\ş*9 OSrLG$-r>z.T{7۞l J!@c`Zp6>4fj':$@nct %C`dhPl݋B^%VyA$@$@$@$@$@$@P$rHCkIH@Lz CFyL5CX2fV$@ J9H4lDhh~ s@m]|A)23      p z;Za#@  ,0vӶԙ c)v           X2h^2UEEIHHHH-a@IDATHHHHH $zl^;IbPg$@$@$@$@$@$@$@$@$@$`A`vvvEH]Z aᲞ33 7 "$@$@^NHA$@$@$@$@$@$@$$ L={y#!.SSY[V,ghȊR$@$@$@$@$@$@$@$@$@$X慱06n6CB-*.+H24hIvH@]C@XxꦃHHHHHHH`yxl}Xf p33f[Ew6*F$@ LNL/ O*VzBiHHHHHHHHHH W%THHHHHHHHHH4x{BiHHHHHHHHHH W%THHHHHHHHHH4x{BiHHHHHHHHHH W%THHHHHHHHHH4x{BiHHHHHHHHHH W%THHHHHHHHHH4x{BiHHHHHHHHHH W%THHHHHHHHHH$b  %27      XB ڮZ !! Ձ7w~~31\,ur,ƙŠ<IHHHHHHHHB D7nBHp>%0TK] Z_$0̖H@ԑ: B|#Z!A'' ͦCu}&@@$@n s#6 ' V5kL9 ?Cb|--"-o؁M P$@$@$@$@$@$@$@$@$@KftLNM[Qy>19)9MFoʰ ދ]̟HHHHHHHHHyfr+k.ue\h7 M ~J$@$@$@$@$@$@$@$@$@$@ M&HHHHHHHHHHB@^/)HHHHHHHHHH~ӟEEr S> {A03          &.Bٱ}Ȉ ~nq)ʉ"9\z2oZ"Z9ϒ %ˑN'Gg T4h8 EHHHHHk~7x(/C8j+j0lK<%HFuEXO֡c,됒[-f7 ޙ;$8wgV}gjf4Bo]egXfa ,8@UZ$4ks' DAI."$itV~.}{sA bITբ"|e\:)ÅIls8:qtyXh*<pƽ=]?{y/ >$q#neMGw yTY.*$@$@$@^Xj2(:OZ ?b.0E,*܅)L [vQ~)J7kڻoa\y;p1DQGCoK3Hc4kzv";_EK@\6ppIن}ݮ)}G@~7/`עJ.^aWny򔊚]\Nj)Gg cVkӺ_]y,scO{yx­SЇHHHS 4NjIqEh$f(s┩Ӓw"3u3)@GgY2T{q/3:/i& ;zi[+XeM #=\>ttXxIiK_gg<13%8Lp ä|}lto=˲rLxӓ $C'Oc: >ûs[rev|rФB4ħ>C%ŚHT&R֭YR:ք!z*g閿rj.?VtSA@jj,-+pF+s@G3ڇ[fK^| /lM2]^~T9wzYևs)|s?>яRHHHH` 2#^&wwG0\ ޱII`9;6.ʷghڦTtu=`)|u|\R.0~I ,MibYY<}Gqr~ܟv*Я{pJ佇_x% @pd1<Pk-0ruMnORZkwwsg Rqؔ! -҅|8C0h ީiplSs<"K[,2?fTߨ/3l؋2X/qFnב!1dbkGlZii=(ݒG&mt$[\g`I>7F@0?3%f?h82ѴQ$oU;c!V"9jk^0kw;\VTa[YQYWs90Ղoܱ[r~QY055A4ݺ+s.jRJ{tJ>vG6A7a^j0OŒb} wmzvLw<#,u,t$b9yAG$ K!#)kCVcnn3&096ޮǨiBdKs!\Z=6ܽQePo،^lJ8݅HB{:%?/i+299q#,|RDM1(Y &k%1 ݭxPaRgy;Q$W7&W+nx*g(ucl".f ^ix]ge![zr($FSUNڂb!eTUVjD-ܒNy>1''hV6uS/CC<wMrF>FԯTZ[welkWx|gVy=[=ӚHHH=c8 W'y vt hHH4%O5RGD gRD>na-/<b\$݊=pVci3nX-Qd%4ݑYwo|lqj0xydi1p̼m.fܿJˢH/գ%J-[+gfa\os%v"^}Z`,ɟqRI.c~=RSK䉝h9efb |SoO|~xt?2MmQK1! ނK|? Wj^QMX1g;f(DO\\ZGy]桇_o<m/l~gfn|c}v9^>ieޞ;HGbӦ,gsgQ3k܌nZfFNt=`Qڴ{18ؕSTIv.+¥?]6)G\=Tfn6g[qeP(J9^CL6/Ēw 2pG2ԓCpczQ?ͼ&"'7YAo49h0x̌z7L޴Gj„+9L|*KWή'đ!9&0g(=Cli!G<)*ڇW23Q= 7ΞÍQ;eQ]i?ޝ;gj   @#`i<jhaYn3]̅v5ZMWn|rn-HHCmG20٩b|1օݴҗ׍Nvjy""_kR,lu5`-R&i),\;=x vE$c>bBաף0vDdБV3_O/Fn~a7M،5l4 W?'䏡O4 |IQyì(e=ŗiJiRw_ߡe-198g#")ݿ{s2rݯA20i/*IĴx])߽Ztk2pൿˢ*锳t r2r Yٖ`7uj)Rg|y10Dμ>R'N36#ƠaZE&O.y?y9lT{t7ɗlg8o*ǖZޒz)gyJs EĆa N:jr$=_e.u hz`ω"yMk}z_D-RgYg_>mK c 2ZNg{Viq ӎԮj9a`HWߪn//Kt>|K^ }݉iD".㉾cMW½F"   ^$/DY:|yx4y;;YO{мv$q&bV83RY}]ygv7Qe8yyuFTj)l*淭^P. ׎!E($I=ˆX$o[_}9TTQwv?=2$lZ%0t{@x .O2K~1;Z+ {8<gPeEewjƵk[5zá4=:ܟFAy|WVYt!|.~*R!^e2nZq 5Ε?~5"> 1kzAK>v-/x\h'i`}앗Ŗx4XLcO+F"֩ bzL&t>DyDyؼ)Q1%:Ċ t<42imQ"wxz%!x´̝xU<O(Kht\U7PQׁLIꥪ:|sF.OPSWƺv(%7Ϝظd{P b W| sݬ,BKǨWKm1Q{?XHHaz8@DsmTzn-fey@Khm*P-ϴo <BiDI̮oג7p mKqNӒ#cI^L/Jh}p5  2Wc[q *uN ;j^mD/   A@EXnzu1KMhMfÈx驍❝{[%cؐgۂ(x1:UŚ=|=4,H#gfclJ%M]H83-qW~*Dc7s 9t\?}ҕjf13B Lʑ cT%ӿxʷbTcLjX#"|MSeriVRƯqF*~WjCb~N6{Xm҉sόKv4WvrIig_aV<jhǿ:YR;X<~C bMTvvD9ffmƆ<{<j7[%2^L˜Qu\ވB  ث&*e5˖,KqnI6z7eǻI6:[$[իU,Q"+QH4 z33gڝ[q!9;3sqs8ѐZVuxn_E:Cح.ރvWྫ.["x[[;?{/0no'ų W'!kD6$fpCQ"X!|ڝ4.ʃ[7G`up/td=v[F}ni64q\}s^Ȳ4^xRnӹ?Eqޝ940(_CAA(i$4-5;ָ>zr Z<xƼo{/w\K4J\\d2u? )PBqxBBP0GU$@$@$@[= nzC|7eoC.BY'NLOk@Fn+_sK~YR[ϋpx/ISV}8R -3钂GWn]ٸޛɞ-"OG΄Zm,KNlQC RC1̺o-\6\-\$+,-nL47% Ck<Q{D6Ο\cD¢9NrcCTFK6yK<<z9:mc%l؛e.[-^},d|<c޴,%_rK >}>7 LI^6ƾ{>Jt~Iu[s1.ĩӍh˞kCoQqc0$8SR߇7؂fq[.[;}΋'K}u^Bz[=* HAMG<)-኏Gvcv$xG Gzo_pf'ҀHHH`Vp y5cF=mΠgNO0և64*2jy D0V~b~<c*+d5 FK[:U$XhmgM*l8uܘ][(.8Jؚle E|5yn/J}LLТwZsg|%^<4_abMa*y!K𭟜H͗Xz:(]bkϟeoU^*Uz$>w Af3un މ\ yZ&:c6w nr3.p;H\ƃg5X^- m^V綣/ơ:7J':(Y-#b%e0Eq,\y)NƱ09޹0oW#[/7ÞV?+DOvc- hnⷦT% &Z1 ݎיwRYZ b)Ess;V.1ܒE؜|(qƘmr1< ߽uӜن>4*q3TUCX햤˾#2z^'ޑ8x[ŞKs%Iǩn}A;H6I?1Q{D_^ ޔXd k c54Wf\8t{氼ֆr kzOQy k_a߬PUyn۫ulm1SX\a@tUa,f;<dz\u?]oNSr5;Na"'nŸQ-RYg=>V>8ׁ+ɠxEwI.dS4"   -~όofw4.q9iP} ZsbхvMVd]3e 4^vlq<TO.ZkV|v|ٽ]lv$ZH)>v}GHv~3~n' p^LDa؉TY7x jF# wV}GM3;c౳عʺ `,ŠX+a*mϝ1 l.,6CRSa]E!.Z}ڼ58(RC^f'SnƵ+QY(ֹe+q/d`Ϣv|מUpLBfu;V07w,Rb;}q۪t<sXWO_m,b>z/K9q|7p8|G4hK+9hGS UiT8x9GX9s qK $xv\$k-kQLJh @|_¯[{3>H^cHHH&},{BᲳ18%8qC>%_s=.#)Ʌq-wdÒ|-B|Zdt2zL.gA &(+HJ%?/u뺘^y*K}cvLCsQb␅DzM{dVk=l;yrڸn]fK?ZN⍟AOSwS*]6;ák7aCkS0B6uܓjdnKk.PG !W}h^O:wdϡ~VnWb|+ܥX{ލ>ci}i1&uO_[O67mՂT?'{yLlgb ]wՂHbk8qz$竅4B>!1?9[ X e ߮H\/ء'9ߠD`z@HHH'0SonM&rnu rZMQh@}Ԙ d""_Zq6߳ 2O$LO\pa5Nca4?oO_׏CYİe5<#o~i mҀ-+1p?8hǥvg-f\= _Urhmw<^%fO밥&f&#Aӷղ>}ZQYf?URDy_pY9B7/SXJB`muԟ. n.v55nSwLpȳ<aky][Gݤr*,s㗈xyz[syֳ;.ح\7wݭ¥ - cUWTg<T,(K{E46,XUvJT{o2_g>IyոrWXW,v#w(Uei@r.O^;ٯ>TL @h/i$U&}ǘ]$WTtՙŦv\@[n4Յty# \{e۷cgO @M;<<ΨIֶ/-D!mgef-gV.DXՍl^\ wBkNMq"%nx:sOMr3pf-o}zډwma[[!w t/Y>sNAF\*|,ᑃ'4ǮCe̟t#Pj:h˳9M-^V:ҖuYBܴtP2PB tJR}|ss2w1c6`rz2([%?bD;7҄[?&uض)-rֺV֝r "8~|~W?{7)C<{܇+#-'r|p8wﶾ{ 1sfng5ؼڹtXDTZ$:oz}%   4t'sOGXs 45tnnj'f]w U>ލ6aڛDV[sFM 8[pf:?q?x"_e }OC~Jt7sQknFv8 )?><XKSʏٝX*GDžmն^8VD[<H+Dӱ jf;>stc ;k)@,_w kQn9(*%XYǿ0TiUy%.ݿkX6u!eUذ G^:'E[7iَGLrdit}95'+ᐜ\<~rpN 0EȾrko oҘ3@Y%J\fscW3&y Z"7_{_!=V] 민#=ʗ_;_k[pl,w҂\ۗ:Igߍ}5[_*jqy(,'ElO{Z7^Q ϟ"W ǥ}$S=I7]?'F_ 4T-Jw)jV"̃Gˑ=طv=6Yo^Y{eUqEÇ}ęBYwW x8 W/Z)^۱.%?61KGx#˱cB|_DޣkFf~!ȷ,ıs]WY<ٹ]/8pN{[^%nێ%be.}%'D_;w|K?>KHHHH`z:dGn}RI8破J{Z;xLT|`,gRb :3"ZNc,,h֣393-n! P(>JY|,/l[ ['9"ۿ3Hu]*y0\,쳈m'.}9 TZjw:4WaMU:Z瑗}]nd)U~wxx -3JA ;ȇ"bOɏTiQF%WyޅVX|aQ<<Ό_ĵ;M@K' ,YkY\:8a?[;Y9Xqbx㘳ۦTn*wN_8\9{/#7\]cŋqN-6=_!H\]"<-(n˸hkP{ Vo[\VWn3W^}Vkvm/ω/ 9K6.Zۆưx9|%q/![u;(Ikv/#<Ώ bzm7ɏ|s(s?MՖh/=ݲ]X6>Kv^ ԏ]b'&v]Muov9=K*x   £=E +wTܤJ{k?3vNԝuլ09׌[JtO)לF8[7!m308nJB]Aɷ{]"f :83٣GzS]\3ǿG_ޅCpŁk<*\bwO;Ϭm;1櫸 3mÞ/Z-x'oGsH"FwV7 ^}ud.o+}Ͼ7ArWCxB÷<y:r>"k,ڏ::^{>oVZېo]L&0Uz-:Fdsxp.Tv5Cᅧ́- p{qx7ᬄr̮8.wE8ozNnhJ-xΝk~o Ծ ^0,'?|/(F`8<w w<>8E \~0Gʟ?C<M38}F¡? ^;.?VcGڰ~G^S\1OBv1N|\yz;~><J&x1'< L}n{Gn陰ֆw`'ȳl䱘LYh>2{05C];s &!q2(\s rsxĉ""C`5ދp!NBBiX^Yޞd rEi,1`ΟD}l4tLKqb4ny@䞇+o{n9<'Bmjp88xW?e}}ӻhV\"YlTF-)zAc/A"˷U++h?`jYc{>rs+6\P0e%jN/;;Q:m4T]s{CWs̎A5_V@yh{#NwKd˱#4?=>nw1cQW{No>[aOOGw[#ε'ueG,n|ÓlB$PRۿC<q*Dɐ˺pؙ2uxݔ&0w4 L1<Hq]МyVVEArgT/=1c$'xڊ;1F_6 ]Z h4QE 8x5|5OXg9mYm@nu3&(8g{"ce9yxÆlu)vsgmJsrv'89m8'?cΝ<scq6bh\a-&&w~ vZp(xQw$\]<#G%3 D/,)W8LX P[*NdڙD؍K !ֿ [email protected]? )տ'fHHH`jYcfͩ>;ut$&{JI=w[w~'p\=.`ph9zWaING`5XLn`O(ZɲRg\3'4Yl<]KxfwÀ87W^{;n^Ox~U6m"izTbe 5$C=Ǖ"  N@ r1͗b˾ߑlgb]T{JAkf=BYeC<,YWnpWIyfá;zfmW,CZ^Vy\C:O@"`fp4j3*->'cbQOcǠR{Z5~6╃cV׷/`>/S4;9*fx;N|N($hM$@$@$@qП5%x s !-!U%zrDւ%jwY~?/wq %Prsm*GB9@` U&>Xx܅t1AtQ>\=Mw[_f}_|'5qs6=5RgF HHHH` Dg97{ɑǂx|"l:"GzgE(.*@fV<L*:KM8x2U7m&@#_㙉= "PދP?e(*Gffߥ!5u}8r”wzs>xu?6`(  _w(IMcvk#`#'PVɉr:ᙄ45E>/1S hPjLݑ LZv2a5>F7<omy<-.lq$       ~"L)zOr",i2YA&&pS؞ܣIHHHHHHH*qDAjA;I)nOѓ $N@0qlI$@$@$@$@$@HIjظ?SXg&C@)y42M?OM/OSOpP|ꟀjW:W$@$@$@$@$@$@$@$@$0>܂T$^X|E|wCCF6';]<%J54bO4;v\ ۬?! L5K&WvI$@$@$@$@$@$,93y" 3g{cxdXP:}}AMz!v(! tJ(x&N?;qMHHHHHHHHp3U}%4~1:}q}R;wFƜDNH;5cֽp?!Тt2wlc; ϸ$@@؉Sv/99v       O`L+Oz-'HYYHOOKۤU'=a䋻c%HiG$0δ!q<$@$@$@$@$@$0$W>fnecLGk@jtO<9F# G)ɉ5\4,'       ѐ t%߸>VĤpj@OOcҧ\X.5u4qq%wF$@$@$@$@$@$@$@$0DҢ"A :qcXV=ݓHAhPq :~QRٷ06ĐLIfoE$@$@$@$@$@$@$@$,qK u7Ŧ7w\Xz҃?DBai@ F[V#Oh!R; +W2i%qx]1O$@$@$@$@$@$@$@$0Iq\Ɓ=YPij {jxXfvP41H6t1 5=2 @->~$ﴉ7+oI^ss<Oq HHHHHHHH@ jrÊ6rYD씔T"U~$-TU5·kJsx]Mo'xPͭ!̝[[ʍW`媕XXQf,#        @hhlıaϞtif}7 TC%: z,$ x34Z}B֘%J qםwbݺ oSᚳHHHHHHHHH`aQu5/Zo4>{yKHOϐiZ' bpd /n[u8!!NRoNY!~Bך9         B@ ۫dkנrB<c(zصn#'$Knj$!c;] S16[-c248(b¹ L]JSZ4>A o^wL&#$d2;1[ӷ?}zfHHHH`:4:8c#   Qڞ+"%##&<ѳ**@Cbz-i| !ֱ[Tdq#    Nl?8~  w]wPw&$O'Hq5s.v@IDAT^T2FCFQOȨoL#x0)nٲ+W&5 %0>@P 8 k.n''Y~b2Ws ncm>vJnn<qB;ЙM-P@fw0֯[g֔$@$@$@$0M$b} a#GtM$@$@$0!LM2<[-!FWW,kcnL6 {ګ"%sfL2훒 #68&3(tV~`ҥ#7 |g1IHH`6PԬєcg-QGDQ\>ƫ2[n,({hhM-SZoم譖_*˛3?H ~lA.؂HHH  S0$    I!4?9"7r>b\՚jN%jY}N^!zO[_NQdgg 9}#aa4]ˆ.(C5HݴK$xuwwҥK,qENL/8Νx&Xg-޹@]O#; EʭEp]UX<i} '4?Svk:<jFDXE\zKnTh6Tg>'!UqFΝSObݘ'q.䕙}hmF+gď*}^V/rbTOOf EEESkUߠ< uuu())… +㘀wf#[cNZ{wtu÷7ͻ_"Y:ѱ    pp<~\(cHHHf7_VP+cpPܳn /x{'Y­d #?{ <l/V DUz6DUJ0tOŇz->fP__oꉵ.*4fv3>J,X0K<uyS ._7?cZZė9yb7w;>{W>W~gr !C~߸qYK L[4#.y*|E"g#Q6c#t@|s^|%E@,B0~X *%Uf1*>H^YrJV˗K([ zJ=aUV_Q3o%|s;C~e4?>~VVŖ" _ۦťv|>IHH`|doA֚c<cX(+oow%2Џ=?zZ~ GeXث?B[mjtd!v>8m 2jǥ L%uBGN]W|~qNh=~)'뽶0G^)vΓӹQ{߮]M7kä[ZZ [-O!O{ՉN9U[%z7774)qi'O_xJK|RBnt*,/M~1g=e,$  I #o.E= 7| 7 e卖`qsE6eI43Ǹ:Ȃmѷsx ;ռ{0z)b1"˧=蛸ܗMyGW(nz[X KMӽ3l   '- 2>:ԇ:~?21{ (#";h[1`DֹΈ`-kL+[mvG`7Rh>mVn_W 5jgpk[{wAe^U/ d} "2Ds{w*fL1*~׺ը[ !Skn7;8x3X839zɮwl^ׯnBds?¡kpeq\Z4xm58S*5шwѯ_7;_{z߅Uː汘ǍQ Wgj*fkIiCmo*ԇߏkh.xvr*C=,$>[D:AJ#k'P&\:K1~(Ky(_3~'UelҏGrl3LoSe˘gv+<ڻ7u+ި6EoJ߼^(-&  YH +m1;G8z$ޭ0-<VF_}WZkrO-=#[YZB̘},׈3f 'd'y5bUhOF]_>TD'zw@17p>}(N^Џ;ݻQ<nN03_3-zˋ)cns3gR-~ǰݗ.]ҥK=cgZVatAAN:1>} +e60Ҭ^4ʽL|@R*c=B~mRI,[m 2kSOP~}\*65 sʰoxmy)",_ϹIK^o۽ƚAGS00l- * e]Tl،w ea% ^EG22؅a5ٱɃ;s󌾳ş1AtI03sAmQbJT϶鸈>xZ `I<c'3U=dz\h+-3%(c_$@$@$@$0((M]z5bZ xy '\oO&KV|tq>@}PR(R$Ӻ*ӯ#*_E=VX$U|A2ezU|M.kQ+~2fpoSe&>U))QIU.O囂$@$@3~ 2e6ݷo<؃O܃3Ӂ*߀-bzUo:GBb];jf;;(3ϟ =])ͯ <Q97<6FZ߸5Ŏz||+kbao_=[z+އ< <7 ?xBq 4|ov.* \[ʿx.%-;bS]kׁJfHHHH`0t$E_kP𭮂chk_&q%ch+jB@ocaOFSe wƾ&ѲG#'G>(ڗ.~#)GG?y,]]]3'L ,҇(AmcK|q&?ۗf){TۻgͅJUǍHHf7ܪ[C8nZ%dV`q<[PfbkGPiU_!ei3|}u-ŋTFT,_ڃ0pq*k߸_x>;[jZ}<eK6i-{4=gͦZcHIuPW>wmݹ=OWWPE<|QnģŖXu5|c_!L-Gglo{+~*j>=̐ !`\Zb\am{v,Q)ƝA,Zڹ? ykbˍ47kw~\I'FR*򜡮< RN}vDoo/Νk| kPnWTu^w{t =1b{gCk|N@L %Z -[ME}~ j~{k8e!]zsIc{E}7^k+Bg {lU؁7oOLV<߁{T@dc￈~T>xo7pmZ|wmY&K_} 2 _(,|t~ _ߦx|WO-à|#-5+tׯ_ݷR(o+r7~Z֢87 ]ʏoZC¾և~7o1si~nYIa L$" М<zSlK-ci&Š*t0'gu7'oq܆eG>(~Wʧ=mXmLsVQ>nCu<T@Kŧ|s#  D@q|t\ڱkÁc<+m^v,To uã2c|J/`W~/TK_gm#;~ކEssrS>nxK;X} oWl_g~×vmw'8gJIGfz:e۾e Ldff"]6zo2hް6/BN_CUf-e6~.RWocnEq3mK#ϊQ1`=۱C~d1vɼ(M>HHH`.oȵy2roFN{k{'h_$AX61lQ8{u?773mtlM$@$@^Jor2yøc30^\-c3"۷C|+= &|WM~ mgxWғ6/}V^)NLv8Gv _<.17￉7Uv~4޿ e 7x˔}f%n]sǛY[ z:k]5r^hLW-5o xcěz(vv#v9 u= ȯhn><thxaS8ܰ WTI) Y-=R&HHHH`Зwk}2xf,3>$ WA;hWk&50!9n 6\t~>d3.3){DLlI%J/_^6\0,tϲc+WOk|uH+  rqԵJ>Nu]ՖZYdQ3"+e^YIŻQsz8z/IluXtix K-1[]7To_"xqi1o5nd'znUa>wȡ"FfЀl*яaoebvwU Q^fs^K*Q^Z,KD_O7   A t„W.jD7vzHbfN*cO--.]WOu_Ŋ ކqݓD >J*;;K}Vm++{|*~Q .ÉF!VPJ.lbhp+= L~7F5ڼi珛W/2z|t~֣6' R5$EqPm+ycwlGzy J~ibg_R㡐z'*K1Q)kvzŅYmGoh~ۇ\{0$~T4e^^]lv:LmqGo؜i=ۛ'^n8 Go˷܁;ډs}^ڀ{   W@RXܤ/6Q gK[^'KgM40SSi|6p ӱǓ]Zcfpu:|S떗g<\2%`2z`=튂u1}p,]u.[Ua2SF$@$@Y#-Z ll{;n;w^~dε!~CGG K۫޷m۶. |n+Btja\!3oݼo#/ryAg}nvf<v'\}w<SMqoQcM||?~ۿܲ]f{ڽ/_<^{[3G$@$@$@Ӌ*4vu"^{w~5&hӸޮҕ ">BWOr^(YG> wLoFU02.o߫Ny/ˢ455.Xk˖- P}[ݺG0:oD ?f"dm7փ[_YN$@$@Ӓ@l]xQ־]W!P*yc[*Y]cIgޭeح|M֮^5W_EƐ^49Gur]n:zCtHW3*/j1-Gδᦥ1viG,YPd,ş댟<z:RW}{l[_'?[ #t9Ck KNΤ("^{ݫ*ޗni/z`D Z_^^jo7 NTVad :"QC~;ȃb^q%/^6|oWPԲ#|2*:ֱk[d,i4g1voOPX<o̦@@YAQY˗: wct3E$@$@3@FY7uR@<58hr1P﯆Yf5_2B[<}j{T5w8 :jOHA<ՎUo[Y";di끛kgŽ%Xۿ8vp0gjgڶF"̸2 CE^(oF@h-x:(f.BV.RkڌȲs$edJjKAN^ۊV-A^Sŵ<T-7   k&}! =Nu}%sll⵷ݱ6{=]p}\Q̻7mDs#w߃]]5 ~u(6W2mć|&k?>Z[[gZHhW?ʇ|&kRmG⧐)cn|(_'7  mLqT +r/`oy S @?Z|{nѶ,Z^+}\##}X<vl߃^xvކZ1 |{vgZ>q2!ϑK:xҩϫ–uV<I %׸ȃ6q,m3V\~]} _yNewiխc?Z^9}<^/ T$\88ɵy2r'ҟޗEBy7ܰfx;'>VNcWNZ{A`[EFt>c%<%e/%(4˔چy5*>ufeeBeHJJJ!3~6-V{JCR>}xgW7 A&33ͅ*įi{hhKLV|!}HH5B߱/H/k GhƼ,d-M湦'DlU~|P?~wX=.6~+p`GRڷM7nވB}^|o9;Fo JjϾ䠨l W?6 >hݱs҆CV,=ų/\A_'|O]%yil>w/kBŚ%U:mIHH<-.TbV*Y6 ONuQ)^WeHҜ1uu߀vY?W?W6ɖ 0E_=Jf&+OaD|ETavj9~KH>jOJVB{i1&(mᖟ_ʨcCf5[{(PµclN$@$@3@يM"Өرɚnx&{cm 7"P.uLidXf4[uC;L\ů?~j%>³c'qW+%m٧Gw4L)ZEA~ݿqa\ek| _gOm~(.jH:06y/^o=H Q 6}ٰHHHfuTƖ<)iF;Qjں{t֥/xo4X3͓*|)m픝+Y5#wߍ|\z'YCMo sbyPe4ÔF<FvL,X`ލC,ީF|mPx"JKK)RPRo}~)!|.8eP)2qwm ^HHH`YH.X6W, [GG&m^.Ҕkeծ`fܼJ:{ٍX_ <%z܌(}dfn?Dz^Jׯ wv* ~,6=/<0tWpύk% a97s?s*[! J+J3ܶ6܎?K:wݸnC%2<<SPTq4֚WJAr+^+??-]7^}%O9֟7^AU6}eHHHfuj\ Y;|ց( tB)\ws `^: ^:lXrNr#?~nDJC=M}(-\:"4ay,+\..LV---]\\,˜Y K|j^C.,,4n5{"Sgȅ#8ٹy2]T|CC|↢Ųci΢} L~\A<{D};sj?o~bD_޼g 5j191"7śq5"7clelTd5H*5bpv1'o^!@HHHH`/ [t4y8%w{Zw.@x;0[ݑEWi9Ruh1`9Ѧ .'fGdxye+vN&$;'6[ lBLC yJ\ C#94er3i:JcdٰՉu`+%\WVVb޼yR!|+\ jS²jܔpߖ>N`a4]@%#Y+7cY҉ } %`_MXJ&򋬩I1r]Ngʺ܆(C"{9LةB:InAzfݸb3{HHH` P^]n'BU S y^WLrv !`;uf̌ 2HZr #uSg$lJԎex24욜%P?XJ1~b- L<':̽,۱`HHHH`0%##$۹D(m7 -:vnLO7aou287͒r S$@$@$@$0] xE:=:<d;j rFgxGgD    E@i\h"d^7 t**crjat6oN[%B&L YVK_Ȃ,aJgȨ8     h P N\h"Xi8ğ]3It3]ouf\ \WVs&f= t',-tT)ٸDIU@&  F|b&MjɑmzKMҘz!kǕKVN6kJokAF$@$@$@$@$`HHH`&P WKڹDG#ClTcXRjLkfy;ᯗVٞIHHHHHHHHfSt! 0mB!\9q 6;ǯ5s3N.zFY#$   p9F    X AdhpZlڭ;k;_4!Z֯i`lVλ -՛_ٴXqG$@$@$@$@$@$@$@$@3VTTh]l-QU\o73 Zml>{| 1}twvJyNݔ{         D@4@%n̮荜ȓ +` p:1E*@P7ALۈ:8VyBx!        a&sЄ3x)rbƛʝ4؃Lg ou-Du\0E$@$@$@$@$@$@$@$@$0C@Me9FpRvqtzmkMnvSBwXenԚ6`HHHHHHHHH`&tCN8Єc$)%faE6ҿOE XYأԅ5:cHHHHHHHHH`A#aQڹHu33otti޺L}zu%Zd4$@$@$@$@$@$@$@$@$@0?НXrhر1rA}lmK 5ŔGB{ '0gmxYV{s$%Rڡ^C r0 I= LaLRі03}8Q+MеnNHEv]g'*o"Zz熆!dgrgהN,m8808ebo9qԹ#j\[VXv#^ļے L"+مn^ SYcEs0g;})ӽ.L *Kď#Z[NAǻ__?GFobƥDT  a`pJ ގb+';oS$ u (J L&#jݽ}t_xIFeEpnP]PY8ه+W"R)ɨv-2D9F}/u!Flhޖ +j ٦qPXbz<f[        qrEG X44S:nk܉a}s_NJCv*Tb>w^MbJYL~܊,Uo2 AHW7Җ/ SnbWV RN [ r(KɜFoK5NN퀼FMTBif\16ʘdhWX'(fzNPo31:7)l #!]Xǚʔ5r#gv v$@$@$@$@$@$@$@$@$#[]ͨMO@K@#atYr_]M{ǟۖGYiS9)w^‚kvHy(OU-IHHHHHHHH`3:uJ]Tٿj׊*'dJ#t:'g7Nks!~r{`z<lD ;-æL|R`}#HHHHHHHHLqW=ԏ)%,~`1dzvHݘ l P%LH9YoJN8^tʥWS߸d,ibzVǟRy)w- ,Ȼ=+wS2        YL\z~).Ycg+_卬STNIy(vam O7ƻ 5sӛ!tp?a]n gu {ٝR!       2XTeOk3AH: [Wro̎oyDk'%x wLC2@dnn$@$@$@$@$@$@$@$@$@ ^l8Xo {G42N7޽[;e'|uFv6?3wRFõ . hK Zz?Д$@$@$@$@$@$@$@$@$0m}pr;pA`bʉ*)T Sh*!Sब1[N 1O')HHHHHHHHH` \pzۘp4QC:FΙ݆XqQ,6ڻFI+;,9'`g.;2S`HHHHHHHHH`:NrF-srNJzsZLFq8:.\8=|8qg;OA[5.YP6}        檵[&.D[0=[bPe#rsL2^[+7&K&m%b0#zb% !mmvB&NI`szO y EPYYĎC%        YC CC~P̗2UY& ^ۭtslw;<s= #        KI,oi㲔o/jmOF®v#[)h#J%xr |B-&         "h*#TIElJ!R<u;'6|ly RGP9 9Z˔ɈJm5Vr> -'? qW=ټ&fIHHHHHH l-Ph<Q`iF؈,b3,QY)NqgI諓'h|E )Xt(I ٰKvRSZpӳx*jbyO|w9ꉎzNF:Ⱥ|HWX!k;N:99DJO6?֑ @iJ;4t FcSK{}ghP[5x,sd_u7܈U58ɇu.t3r"q:^qbl;6r ?( q|}Mo6;Ct('d< -fu2푻]e,2;e'\EQ 5d $ % )kW‰Q.S]s}Sj f*E}B1P{-ƃX93G$@$@$@$@$@$@DTw}F)֗5*ʜcL1$m:V?`͝6N{^g:h#7wÂj,-}Un/ /4Ɉ'@y(=u9PBkiԵ;r~5wl=O-7~Q<Yƈ%      #tA-^"&6 99'\ysFMuC > Ǚ@-=6@Λ3wwO+낅o;#uqٓ@rƱF`pp=۩/;4 M$@$@$@$@$@$@SڂTTox޻6w~bmFk=Cfjbw)m[LD*u5S^SéśuW{˾/Ҋ2-@Nn6Lin]- 轏WYC ;fz,.TGϥ| h`5ҮZG8p`Nd&r m_+YBdfMvm.0q/ jJW^()+@w:@hwV'V:.+P>78wRG~ >K`b\n[q ʹX_?::{a*,y˰es숊WbaƱ&McsU[nY9ru@>zs|ņ+PS/H]y sn1lޞ:HHHHHHH`RhP\,o#Љ̕=*pPYۡ˟]w" b"SzA[Ѓ+u7~X͕byrUs(݉mKJtwlXמ~=ɽ;*J뚚f9,M5u"tfyeU׊v/] 6Ů7_.،55}v` Pw"XXC;n?o8=(0[fQ\YgBHHRdZ!$Y21`Uvr۫^߾}?~kkU]Uvl0c[@#J4$ODFdƐ88g qΎTZ0>=j5eB*U*B5"sVDyi'PT,(`@ oOX(z.z+"!e _p`n>!S\V#p#W9VqןKej)^H-vܯU9#p8G#p8JpfJg)L4W2r.W[a]Tr馥]G "q.S<KvTĪDX)%I/DÞ ))L*.6[ T5W`!fwrz>{G *o+n:z[@C$|K4]NJgšF*TRk(B*;7 p(2_.^>U-x7B!aAQRiX@^yǑn{z䈔QL4@{pѯG#p8G#,@fl %B!YJXeVpSÛKd{$Ш1@hlYM[j 07n^ٴB&y /;K36mV;A~ݷ^>IAi4lWy"M!2mܩc=Y4uJp(ݬnGѮQxt-vz㦧S|Z.}X'|CγRy?m(YJ v+Raߺ3gD3YŻplQSw=B_]ITNfA/, DOj Ž+KOun˷8NLztʟqrtCR6 (t ]mAj6Rؼ^| ,s(yG#p8G#pOn~f"D'7HicER'X2JX 6բqG0UMC$WBхd+5+\D!|wޢ.ۇͤ1GP)qg:. XZoC$^J0_ju6ŋ bT(Ch5X_njx4uiZGTG3ێ=1>S1†A.|KUv A:7b`i b>xM(bY,^AM2sS2{:G<"JqQI`<[(K&@_\b_gaN;j¸8ϸp8b@IDATG#p8G PpȚn٩fiT az O Ԏ5͐.[hKh ҥCs7_YX.mJܵ]~R';M#ԌNٞޔ-oV);;Er)tʽn!.3}HLXw>Fz1M(fw\F\f*%j+=@G; F٭dŚ!qٻVQ^gT<#p8G#p8IA@ &I)FŚ1tN74#vW2JK1 -巑ĒcDuxm.>'^oFᭉ[\|YHl µ`{4PgNE#go\[0>|>ѼujK6Οn %T>h: ÷j|YE`*7}8LY.]~ldd;;S=G#p8G#XD3(BȉF}1,YFD;JQeUжĿC+i㞲QkVE/-f@2Ǐ)|%y_[XerY3ӖL2qSrX؊Xc i[䋏U:{ץ_>IVVN!$UpuU'+q%=j'eU=Z.g4<#p8G#p8pX^c5DI٢95BK_^ A{>ՠ=Tm` 1:RScGfHB0-{ܹdEG&cEX*w(T,_]^j!r)+'`+ BBώQծ^UVZr+Sq,Z]l[G=8ox0G#p8G#p@uv։NFɒG% RxS FtJ>^M:]6s{ UTPԍ™xi‡=%mN*ۻnWn 3fnHU(-\h'Giuz;fNL '9!m mŋmv 5QRTh;>{›9Oab:=e/>zS9p8G#p8!m,. Y(Ts^}g=-4>6qy}7ܼu9p=֭SF%F-0D΅y%QV?|D=bCE+#BM6h'Sqg+6';MZ:.8c@ ʃ(?߆Dj 0?55H]P?a`hm^K-)+%ئt <k[$*][a]d'13"p8G#p8"BX"FqƩR NS6GhWocn9Z)e߳KJe,}Wq:c΄5 #r$,sh%)Ua$2+Qr=2U!Z[zly;Q_٫%RA={<,vJź/Œ.vȓxp+[/6Z/=A(F|#92t8wǑz dQ( 5/@ >?"oZl )4,ˡ>)Yc̐kg|y<G#p8G#p⅀H/tܬu(z<*s+K,U~nS!lH,R(4̒R:sC Pp!BȞYqe`CFS+(F0Ռ-Zv wz1Q* z Pk+Q/U9Ҳ/# Uc_cߴ*3_)n ]R)_,95UFR6 N\kGwxiޘ 89d"AE\܆bHsʒD{q<ZzѮ(-GYxdz:V3_[RR[NTΑp8G#p8G :g%b_^[N/h( ! !.W ;`Lt)b/&|M!uXfCE- 6E1=OO'Z/|n]>>#r%5 E6Q֛$eXp=H.C?:Ԭ[ޫg>CP&7_1OAvqRx4Rxٯ"X1_vմi슅v<O}7ҏ8Mw?Uk' 6T";o!j^#w>ͰaG#p8G#XTbۦpܚy0ila!oDmXDN+aF!<A>l h1ή9}ݞc!47__|xCr ٛ%7sB |xNv #Q_&epľ g(dTynh9V<z_*׿qQ.E(]`lL.a+<a\<; :uɞC fr COTl݂4Qat xWhQ&>k$#k /g0T4Ne]>5zty"x3yKAF0.vz _Kl_G#p8G#,X۫t[%{׷Z}B}s$ W~_<=BK)؝8)v~~Oa?ԏ#=ӏe§Do]L,.IvjQ\EZڪOF^H(yѶɖ0A䭣M kH={m]&;5֪p(Ac̤Gv`(b$g삐:]aYWajjhl=9zLV XD={I,b}(` BX3.iҎ~+' ,a>qd\k1ws8G#p8G@F`,~w+Ϥ'9e^n]:k.g&~5'!b %ҨaCK+ 3LRWSj.JQغG cJNƖaMOdvxK lЎWLd+e F+(z7 Q\U(EFg%}<V]V Ywr`J7b8(]JѦHT|3}ȥ6lŏɁAn!0h޴,B`>mI<leG#p8G#XT!pjq%ݢDP;-2s<I[~gs gyꕌ@n+UlAA[OZL̺8&q:tEw_?MaL~bg (btܽXa8wG#p8G#p2*3g.^ln 9#62*R4抌SB>'])׬]\khidI'llV߾3Ċ|<#p8G#p8#z6z3>i`KDSM]*3x*4B۠K).!j~r fg4C#osxJ8pb-BK!~l$Q: r0_\H9G#p8G#XzBM-K)㘃-ƨZn.B`а_q"wjs.ș)H~lDjj Udl$͢T ϔ#p8G#p8ش!YXzz 3́fnHxAXZiWf)$%1㳚,Γع9l~aO@BmO-ҧ.ω#X z1uKdG#p8G#p@jj*֮M`U n_`kƆś4Bp)< giԒ+N%-{F63 (ƍ0>>KN14Vz+.o/G#p8G#p8G`!0>1I֎)v[۠}׊-9#we[ )|Q1˯g!ɡ} {[){13IO_u05SIݿv/@23]}@;e&N0r[3I#p8G#p8G#XLNNb6"&P$Q-įƚ $6"+1k% •K֟W⫄+XN)wT*Y oRv?Q×c)[6nBxdtɈĕ +ws8G#p8G#p8K:@#/f ?ymR$'蹐›YK2s֔p8G#p8G#p;>ѦR4_|N[vĤ,:1nɔ !=ß.|.GST|^%@&jԀtĪݸΥX%&r&oUXxrF V˞svy ,&1t{ґL:]>uUl ml lcV'Y3j$2M$0 dT"wZZ'(ڇ| [um%bK*j[bQy7q#Z*RTw[po] )b[P1m%W">t3 -Afr{q(=O. z.4zW4Dʻ-"Vyb/I3ӏ"< HKMw<uVbygVAMVfB zM3ǶWc~nN.FG1KpSiN!Va~˜_CcX0PK݀J,y)?z0=KkBYX <C%=]tg kuD㽎7O8:0 ۘ :0zZZooL3 V%do#OHy<`IlYA(=kaknfC}]he2YnQ(gBOV> -e0?/ Jg9{Q %ВE!(c$wm7֥* -޹&r-Uq*"_C@k|)@r\(dgjny眨zʭډWdʝE(yc'Vbɝ|8&SyQT\wO&&^ɳgh*T#X^-^"J:KF<$wjO")pԈNL»]/MG+>n ݨĶ6KHaueXub`zyQvt~xrGT\=hUV.&i/ 'w1]IZ[5=,s<og<2q9Bf!*wqI\.",}-LH\~YLAQPB-%nD=&Ym*}Gxux] WSZ)L<Zb;|V E`vw"ʹm-"0>ڹjrKg?O\ 062Ʌ6b<NǡG1Qn+=)U:񈾸(O╟sc4Yof5ϯALl!CywO5eI1kh) O[q_}?P&fXˎCu)E~?-mՏD㽎/۪#cej ,R7D0"_%GpltZ?Z~@<s2^D+טx,SXwT wp4n)<44D_|_byL]x3QMUcfj;&KLb0[s54aFqSį€V<;Ӳ̊:aZP186_<qkWvEZOr*lc<~qV+P]wIܜOspܼ>BnWz ]m#"@C[J8X)5Ƈ$2+8aʗ^{qW8*wqӓ3Cy)Li?vڅnJ}[)}*|u:DaY ˅Y C@^V]I-xҺ86mų[KQ]&ÅeVt4~|%Ye7H1. /l[O^d0ڟ16<K"+Nx, B_%TUh5'Or{q2 eUrh YfxrѨV :536TtC$lnOæ-krjJI]#ܩ8m3% 8>1^-m%z~q : OKPD.rE?y7ao_gC5jEe#<u6Ty ?GPcCfRp Jo6u.7qESv ߨeW.3C`vV;b*E*X(W3MzxK4E1r^xP^xGOGsc?K?qi]E/ɚpvFyPS[& ):z{;}b.k<<&Zsm%R$w<XkcB$g3r!kF-5/.Fv k⠢KxEhOliUd$]\t~)]RMJ.xfa|'WÚ4]ģ<3QY[9H[C )<Co&3^C$0LT<a_4N"}iDan6R.b[8a:>򡖁.Юt,r|0:<o_e96N;ထ<tH;{g'=v[Q؂܍YX&G11t-WZ􊜜2gcKz6C-!3?Ztmpn4r6Cl0 uVSL@A1.؃d&['xft]Mյݚ;7>ށ2TlO71d>kNe2bO!U }Ѓ eՕrG!1¡th*>k&謨+uv)a;~4`devsЏv([5{Q^'Y:D}AATU4F'#s*n*+kA΃Ct3_[֓qT'o$Z=iJ'hC_Vt3gnx9lwD~<r 9[9K܌<ڥ砋a4:QhDgW ̝([;iyN>I᭴y?JMLݑ,c8'm)m5>=$"t㥋G8}Ӹw9?|-pn-Mls9zp2,@mMh5ĎLS|fhKxxo%eLPQtaF|3r~79:a@ݸyl72@<^^zgC>Eй7T6`r<a$Qܮ{v۹VM[L)5=+qIE%D,2l@;W6jc)4~i\Asy1]5Ex.hb>*ۃPFd46PWGrOUO~˺C iipn@PyHf1i=?_ 8$P*[qC:Љ)_H_Bܶ K;A'RvDHp'Raaz:)"tGoݤ4蠬R2SThiLjC@;pqn$j՛dw\<. EsUmbX|=_zvKeͥq`_Jhcf'e&ki]*1#⡕Z^H-o`ݴR˵ʠַ O߳ w]Yy4;dض=gϝgQM~{Z Ⱦz'{(-RGүcՓq4:fEـ%@7 .tݏs/x)u|vys Nۥ }1K@mk agfĠ&05^\Jw%4ɗ4g Mz9O;)D}]4|9'e2}g,T J鬙/ژg5+~t>ߔxyi4nn/VuhVέ$̷UR +p>}}[VyuIf\elyVT1'S o4m}Yϳx}Ö NB>vF?ttmXCuܑ>-.OXL{vyOxLR14Fq,ɋ濜<[}oIҼ#4r[r) lux L4Rv)\ٓv4+G1@b]r`[eǾU5@tn!M'j4^l|G.:i߁=O 1iPvsdHGl,FSvOaS_x[j~b&u%MIh1MiE*WÞHZ,1~Gꂿ}b_C 1m:k߱q/-bvJ(_"Wj@0J WǍna0֝ {bSa jI|8T.MĖ;$qN'&Vz?zY+\SnaZ}F*8e {wD-m.*Õ=2Y-ioSxױ9m$hÊx1fxFЋ/*鸤3:ιkwns1.p.qż8sPVRH8~6ӗJ uɛr=ˆ6'ىؔ)Ldž KG^47~9ZF!Q[ܚ(*Nk~Ԙgc{6Bh/7?4)~&f:}7^rd|{vVtZWuDBZGS ڵªm8F,^Љ+ZDVq?y{0kD:xyr2¼c>pqLucԣ}̪wKr6Zy,V\3ptHx O+{os RǸYz]ޗl-Y'C7o=  Vڡa 0YM[R6X /O|;ǥL: ]jX[Ff+ <TѧM!if^%|{32d@+V}mj :VC:c{I<T}zWeU{^,̳{wjv|Pص  Tr`z{phw{db-V_wglڨ' m)L:߹g9ܵu:!ic\M62xg$:Enzt^p3ԍȲvR0WK8I+0(dny%9##}Mu4{XݮmTGFz!e(O(PiG.<k1mrȌɤvȤ -}>,^}3}#^S}q {꥝H߀<{[;٢)Rl#%ҽVe1 ԕjuݯSO,<N,W[:VV8ݹzEt_mAdP&-9( t|Sq|ڷgч3XQzԧXt> hY2^ӫOX R;j哯bI&vЗс{]7;ѥmaLoq4w'^OZ\OJ9s3 ]?w;bKqTbF/>>_cdm*g0dyGueHt`r/Sh";2*dcU}+>;%$rsuA|ϳ7l.BeURW(U$?CM $tq#Cx$u]d(-޳·-× gy42t'-E1L>0J|I1"f_Ģ?Y3])Ev QA1$VQv i"ۋA\9hs[adۓPI"J(Z/'MD} =ݤr-(-ӳIkq sS?% nWxs#(*X@vlSI(q:<Z;?o_&!w6ᜬ\'3@3p K7e)W)@S)!Qu ;~7kw?bwV]C.ͩPT[[#gzi,-V3+tINցfNz}e}{1ru6NmB!.o3ooR'( W(%{%Eyo^I(Nz16XjyDI{n@sٯ_O893eQك^1tzys۝\/-qUt_7l~g:A5E?MnhR;ywӧosMtMud͠1e<6`>z|2m.?K4 =VFhS tC׸SlR{͟}lϖh^08SgV.rOKDs %G8uU{7}Dq<0@^'EXD)7wA<cр}#ä1Rԧ;F2  .O.Rh~Νa5ˋY݈X''\iP@!~晕/O,h%4-R9 eK2҂H}s@Nь=S[.)nw)Nq<.pQv+YJ} `iLvw!O s89ӹ%/WM3IFdMrOk/+\j-[% eR숫A#ԌNͤΦlew!]V.+K+0ՉkeUyL{L Ln7V嶕OOqq\wq:Nm0^hn9}]=8'M-Obt\ ݻ*DU]0-R_ǻ4\@r3Y[:g\B] ,W<ܶrxЁCd*L1 .z?A$R Wz 2YV2JZow?#~1r̠Q 5\u8'۷_[:*[ዾm8a;4?1a<x;hg&ؘmk]8X/ 5ebv<q5ߌ?^x0_d<UuD8Oy7=?tK\Ɠ$ XX5[6{'/2sm`&ݒt$ ƅX ]s;L1@+x٫\*i>i`NbegB ]}VkeNWޠCCwu\e$h||4PgNńR x;;cFM]?bW(/ 4beM#g=<>/6'&v3kSa&iɷAЏ!{/,qc^n{O~T2wŷy:ܶ{cS?an26ndf' (~= w|kꋖ{/nBu<ǹ;-WkrKo7}qNOoKh<ד9}zCnebH@;?JEV{n;jB7 ^#sFצ+CSf~P+N^V&Xpyd&*Gt~!M ->MvOߊ2vn*P}RR}yaw-^]sWq@ě+v+d4.{gDI0a[U=}yIftK>}}y//;M㇇VcKyr 9w7ŮqsQww;O霏_ dzevK<[8)A[q!u^=}]Fɞ=]μ'3'䧘y1%E. E V.dO5Goi k<֬(MJ&xqFIbDƺ~ڋ7K@mӲ9m';IaS. !lN䴊+nwdB|=3ӑ =& *hҬM<#w]I.V0W'gU{at.UpudvUKfrǢ䘟+U<O<xqL#*f}h Jː{LmdS{]N^=ĵn-" "k*2-nVKon<U<O;O1l(E)0w~_~CHmz]d[9ckZvYMv݊!lJzQ&\rssAI?ɭ*g̺յbS‰/P$!WL9xç=kjl95eq p݂*:JO3dׅ݅ GK  j3r6)C2;>b˫əM}y-_7ㅇzFn=95zgӘWhRcY:\/:N[E#1G!( &C7Gė=tV.46G2{zOZr2|cŊgXq'G@AB X4xᅨ/7{H*iwԡ`t2Ř#v|5{A+J>dC=6_)إ#PwQOdTQ|{ƱuG&0{d&/؂(|<wntxGY1VIrʪ ENc:::8Jh)PdvzrpX`bЧ7Ν3;)_7bчe۸+E\1/ViyfuqO|Ĝ/?He[=>Z7Xz Ȭ!s=xCyg 5-$"!7RYl'./5ӮY 9sOh`~0ܜHIp[>< }Kֲr2N{7ݷ?F{1Lɦ|tb9[d61C}ʑ\cXA'M4ハZw:VES3y^u<`ErN%D㟄y| Kfd焬;VɊוe\-[i27/:~^KKYzNsʃ.Ih+e'ZGU*Xg˥6s ?URP,tέ PGn?#RUvnk np4̹ {Y ü;s2,g,3.F?ZTYP fLQ37m$1vO>^)-IgfF Bzp.mx%'ttÝx،\n{؈B{#R{= 3-8hlZQ!~ӑmrgJA$֓Ae PJ[:^{ܶj1^ROh{xO<֘l(ƶig`|J}nβZ ߔIc0fئl'_Gfmӧ-dZMpI}%l֛[22ZIwDѼ%i%{nGV_zvV NyQfB'L(̃fg QnLv~h<y类븱&Pc<I޺H.@{bn)# MhC~DMGlCK|ǙYj+Ŋ{_bkQZo+ڥFľMsˆ  ڎ>k1=mM8I|&ҵivO 浴lLVZĨxU6o/ExguSXiƨvbIa8H_ HLz[,pRd¹0O۵"Xn7uAA HOV8ٽExRJד) ej uV~ #<(@a9q]AyP|mKhmO'Eo_&ZdDv6Nm.NH/Yxb8RMݯ_OR$s&ҫ1: 'tyܶr|cH:`d:7!Ye8 h˫6u*AƲmv]}n]{-[K聴4mZ=JvCI?xD}7kZ&Ƕʭ_t:wޡ%{&䵭ajكwrDeD# fe27c1n{vNJ<>8'y0$k>wqci#Qxuy;D2vQ6."\[9KUEwh@"8JL?fBNMMӟLiOe5~^<_hRuM(VqWP!O2ym92J\0,PW!ۭt.C Z`}*,)H q#r:ȒL~Qk^@؀ĮC(۴,<bq>RaJ-N5kXVˍڢАW66hy+ >sd>?^795O%u?С%R[^8ڒ<yŽN-JfN&#tii.64}8t72 YGG;ߋ'RjGv$%NF#2 jZM"Er:Nہon6ڀB{;?UȌ*,]ד"O? ;nyܶ;y1j[=ۗp5̗tC#!:vE]-Z[>վ"~v663:tw Jd(fwvjovGRI?يR/e[cVR7TeVJ\_B<OJw`zB>~N szU2jM<qN^q,{qz=h-]b jp`r=aat@IDATʢkC@w{O-xa<w4wtD{q&&\ƍc` IE\Ys 8"i3YTe%F*JgRH=RP?DesSiq#?9J4J)rH,RRi㐹!2hi?؃ j<W}enR(ok>hÝ~ecw~,zlqseA-zl.*ՔcSXж߾S8U9nLߴ[7 2/IRNAyo "kMcm6I z4$iJbݶ&4WVN^Wiٗp7VjwUrF/ii/϶xdz:XzQ""Ccg5]CA_٥8(lIfn,GۅpRQ.wd˵QZV}'W;Lgd"{c."=ۑ wRm$R:ܶ8Pso"ۿį?i6xp3u@c;V)_ǻ̀?<z}[:3A)8ݹ-`xmbl<tW͑7J<<>zICeg#fJ w4Ga9Ùt(ދx^l)WwӭWa'=C-szBnq ;}6Վf[:'UeZRGC|t%~<9+DC&/^۟{<z~mڏ}Fq хjۭB)Os[OsX:'n1+y^(=7Kh]2֑9,Z3S`릢ΩoX].F<q v<)RzErHD\4%n^ǍdBKDۥzN;-DE4Pր~#|w 7{6XVWUa6ԽSPԝ;(nwͨs/6LnuQ-itЀ *`Q%R{GrEc Z͚"$Z\j8Ч-Y2硺^Eƶ^<v9[H -$VXsBtgRܼ9+`N۝3ʕBTXP>G@^h։zeו3&pbu|WHG~DAA+:o7;U.J Z(Q82p;>9m|ImtUzL\* %b^^dAVQ);Ʈ㵛>g>CP&+Faik,k cbQ]%v1'!~OG(<) r зȲi㆞Q۝N4-Ԓ8.IMr9H/KZbeE88ow~#zybGzC/hb?αUlwϓdt畞HMxx߉3BpP3rn#ji!z(tjd"M[{h FI;-6J8ǽ?o{'~}G0U7e;_D5*9txq@J=ׄXx{㱎2{j]6փ4֤Zy r*Qb'q_/x}[ƝMMmRx-KTnYR*wy7\X}~xOtu}gEN_$ov_q5 ?#/0Y2at#-3Ku32M/HMՌL(e9) R,]7Jpm-0{ wj<IY~\<oYsT#ZT~A `>7htXbqvB+dڅJv I}T<Մ?c.K5{ y.}j1^ a \gٛĴM8}>^ n{j7m8pVgdDv~q1@4I m.|BATJY%&nwB,5@LR=<ڱœNw`v+^.vr刎"{b^ !˟}AJnہ6E3L2mEIgJ>tw"G;K]O0s!m=F)$s&@݃^;/iE1Ů?xܴ;y籍zzKim?g +QW2ͬ%IJSX>&C8p\E);{JkE0NJNmٗܝ7CKR.anD4ngI〝Zlz뿘쮣 Yk)C=p=ˈǢAf⭾<J垿@"<>6^$|Կc[}J\i~{<.jMmGblcX]d{ wZo%h] GЌiXW)f&67":@ yRB<~< Oԏ#N&35.L}—>,و,#7C EQۏc)Jm;;l #PDZXC9q+%0Ycyݓ,ș`+H]x-dr,fșS@v3x\8>}Rghz5&S)n;n7bY rDLfR#un"Fc -SR{eם@mT_aYW=ã12{aS⤖ۦL2%ׁEv7-al?"qJ/v#ɮéVxzzuzfH6kMJſ켂焵O-I `8'cݹc#nnCQ,uKdgd -u Rmbj4\+&}mT 9dh H`OZ{m<D&X6myüJ@fZZ"rrD2 ʽ/NN:ǟ` 9fn壇auƞ{I@$2~螳$D?O<wDcyy: (cO>Om~%ɢ'BumI2n4H19]d6|#}߭>E{ ߇uplZ6|M7uO$Xq_Rd [\7Kc& f[d"2cy>:<WN\eۄM1~#j;KK&)?~_nhY!oxx[ه7uy8X}yJ0F\_)0;"Ϲf$BZD}?'hGkhАpo䁉Jk5ĉw݌RMf]᱁E6=m}۝r[*yI("GLaIrs?N;};aF<kk sUSQ}m3tKg;!qNSS9ya1nHP[Gs{y fwZiB0+)$rMϮ|)2s@z\_qu^6o"dh>gnpFy: 3 ,=.T3Oc'-(8#ZσlDN07#`ed2Q0QxSl~@и}}y}xHOѧiYTį\y2G@V^@gp[QC1CA xQs~woi*WR[/ݍv.#d%)%,6|<YXZq_ZRL{NjD)[d Ȉz2r}BW:w?+6/Fes8zgoD~@悮5u Upa^C>3͐f!CSި_ĉ{9++NcGXr6>o_ƕE,1x*dًÕ㉪¦Q>+f!2֖_ o;56k9TK56C }`!do׻,R`GtHʱِX8,_>`.{ ?0Oz.!nǰi[[:p o&I+' jG`#Ǔ_ NYRYZ&+3\[ğN~_ε?[n;JjtxhxdlDsC+c rؘ:2V0Z;]ژ^hq"gn VS_ {Ks p8G`"+jy8IG'I\p xK6%b$?)F>3UrZ2|ZkNJ;RKĉy"">Z5W3JV=uh% wsBm~$qp8G#>owpĈs&Wfi t&Mp8G#p8G#p8^H1ܽ/:sp8G#p8G#p86n =I(5;e p8G#p8G#$(Y˲6)K6mq8G#p8G#p8++\5˵ڵA&L9tcܺpȇp8G#p8G## INUr sI I/qT."y`jj#ZB*o;O-7lQe9Al 0P3V@-s8G#p8G#pn7q 8(.?*_<`=}wv{\nGRQÔ0)kY]SH/G#p8G#p8!x WsǯfNlx //^9~Xgh\eZ`i L[x"G#jkp8G#p8@vx/ɻ.v#M@#e5cl/3*zo3-8i\&0׉Q2B&-Q͑7Xr/#XjV,/G#p8G#8BT@Hp$TON \YR׈w"C*^꾋-':X;3+DJEW+fy8G#p8VHLλ\G&V{pb~:CE9MmH QۉYNOfgXIuIa㙨y%bj>n~фJsDPPln]Ŷ0tL4w̏tXhZWYӴ.t@8(4O<817FY Wm?{蟟'=v[Q؂܍YX&+-b)Cm~6dWC7C-"T$~hiӵGUy}UAm·4E%`ƭV}4"W {@]T}]w]{ۭyS e,ف<=Qߘ_ <Dg {Sʪ>ˆ2ZnrX8iu~-ً<=b$ԉ&jx⥪r䬧1+?Wq7KDEm."uKM4.+-/p8G#p8{VZz#5OnoobK\fiXKU56 IF*It?*4|S\`B4T5 g'OjC+|ZOWɦ<Tnť n?B Sv%vÿJ7(}[y奝@Q1$e?)75oaaz:)F%|awEr<_]sWeEϡ`M`{=ە1 k1s wF EM\ an.q酇#W9U!c]~ v [{o/mN7 (ҬIm!PuGk6>=&PKity-7ॾ.mzZ/<n+73_uesXSӈ7k_H5TmۃxInh9nzח3f{w/%9kgW<8=G#p8G#fZl"B5t >9xq\o|ɮC{tp1l0Qvd~;~l)NG_Wv ʦ_6xV ŧ M; A*UƲ#PՈ7u) 1:%%o6T* ˴b2*WÞ*T󙸦1ꂿ}1;<BoQnc߱qh(o-bv1(.@ _7*鋇ZwzΒO{UvO7%O^Cb˥ey4y̦sݶ_F*Zı G(޻ %W'e=KlPוtp8G#p<# n͡g)TڼV~rU-n"wxېilC lj:RTYj<)>zKI}hAvEa2~h潖KvVgd@/Z` ]mAj6RwHglas:AՇ,& Ž;bFhڊ;p;TK&`vBÁꈝ I7n^ټB&y /;36mN~ݖoQq$e+Ɖ#tCrn7e1փϟE沊pzt^/ [.GK8@ N~ 5&Tr @&6o]™3MV.c?r]GOpX'gmlo[>,^f2F*!*"mpTם I d$Y dY` `C N&9IUJNL[Su^[uOթS5N݇7ys_d^LUqRN!IX +2 z~䮽w[Rmw~Zk>kR掠djLS.B㠶Y6W/|;I3R,ɻ\ϟ+O#8D@@ XU((WݦZj'&eo`bHg+ 8sg|`tdP]YI7k\\^AT=M;>lxIwU4y>P?;z2^ikӗArblT˓jԉ7 dϙ?!}_Wcwއ- ;n#8yLNQ~=0/<ҮFӮ]#vP|zf.|nzO7 Rpܴ<3~̗ N][ݧ7AԤO7n7GG]W{ƅ~qkKJ\Nei_|< Oz@dӺu7;Oe{9'km&_)MNБq֩jޞvꕗb,U#-|6)Ӟ&kK2? O~.˟+oK8F@@(-Yk˔ő'hJ>z=]uq$)ý+>18M}XqU7Ay:i≓$_ L VTTҒYwϛLњwI&b2C!ͬo`^'g'yIeBNic`s.ة & x{/'UO۩G<o.x56Twhy7Fnjdœ;KlO3v[}_VԜeE)⽜*닕pܬ*?#=RW%+R.1T㮼-l[$ݛxI|ŋW4dZe%Wړٯ'eM;_lFpݱfiwћvc[`sBVnK.jQnb SCl/lGW    ` Xv [ʛ^k\S58dʛ,s-raOMM׼mv5\ZnCe~36ބ\ҥ>3vs4}imm}v-(|uo9T Xdw`l*+`jPMUkjohjSKc+TjW_؀' 2njU]Ǖ7_32 )sWVdOU?Ҹ|kK;nd] _iOrgD8ϯ?FןU#7n&\I85HE]BivZ襮^WnJ6[?@@@;!0csfN~v3୳Ovm|}k[xK4[O'y|786#I&46>n~YlےGXWOT 9hw51aEޜmP7Zo׫ݪgNQuqu`{o0nB&n'<rs8禧2xRzIW{ mR{zzlܤ=9 'G9$H5^L1|ַsh_+X}f ڞTMlzK|n0q0k_@gbR}.1dB@@9|K3˳4&l .GO׭;Vtsl=,vn'Xx/"ZaTxϰ8tn[4/?5_pEn CKvn_?4/$Ko7^ERx:v L\^'vhU}f|?Hfx0*ͼ-y6Yx]lsK`ؙu,Bڤ'KT7aVg>n|޵eGWxs%$C'.R~Ua瀞efXwKkj]#_g趡 ^F;5 |;og=62<@@@V x+ҙ|; ھO-ҧK)b>кO{ݣm5wVmWN)}X0罎hJIS5A/bϺо}gIЎ+?;<Uj8QnOLk2ɼcC>/hYcZ_km^nw(v_ܞ%r3~|L s+(ԖƆ0)ޓl?O]3    p x'omO?=Ϟd<ÞΓz#8.}~cMb2{Z1Jf \ƇjGY4vPg!ms''&X|HC[isдMܥfVk8։=n+gOsV]C76uA}]Wzzm~I395"؜Bk-s?ﻙɠGiK۴)~/_}KZIVnڽtݭ ZsUՈz21"O^XW\fAd    ʜ^Hh.mǟЗ<ԾpRV88{;1Odn?شC ׾fm2pB/gzE^7@'uL)ج]U;8I}ʴ3j^_`4;+:b_*h x7 ݥ~7O ;{<_ .R*u1祕</E5ݼ7ccWRVêז}k{ TXʚf-zϐeऽ3bDzA}DgV.3ߐK+i/</!E>,6jw oq{d۵R`B~.͟Pq   &@h]zTTR,YV} r=z`ڣ˗{t%rMU.=Fz{.iɧ_%^Ġz=1?3t)VѪ:Ifkqw.h`_C<0wUQ{N7&m':kMw&tǞ]гmus*OUMjUjzn4PޯnͩgDSt\8S;vihیGqŇ:5 ngoSK24۞~V/Tרag1SJEd8>E8z?VsmLe봩hެ^֑Ssf`U5?]>K}i**7QzN8du :~xBl?zs   &U pgzXcu/z)7$Y?S'%SIv~k{۱0{etKW,vգz;ޓ4vlxC_O룏loٮ9Sfbn"V~g=*ȽePk[^ףvtGd%j]zowѻG;lmv_DN:KX֝~ϜS/}oeZrJ>yw*/:3}OiG쾻?[Ui7u9V&8d~ ѣA߸qd*v[ͼIyt)?ǯ%ÒύR_/G/{p?{Aсsm~3Ζ}A@@bIHQ ?~+xCuI/ze`荫x?-|~~lu??'uDeG߾` iZS֔6;;~tK7EN}Ҵ,W,ҭ5~'z䜙V?_ ~^%S^1 L9iSdVm:4Q^czO;[|G;hYN:q{aGݿ u5}ҕ$>ND^05ZR;+uDyY&6f֘;uȋz'O2>ށffleˌlۓK^1yq|WNygݛϭ{9vmA!Y^HyBKe?WNU#   p ڳۊMնw'CC7Ufϛǒәf9MLLӭ~}uja4Z6n]IY+U^d UzZWz&ƪ]yEiT]Sj̚fu]켴PLyADW~zDS]rZT8?Յ٫ͺe7k{mզ7$)3i^+깞ܠg<n͒t}m2]VK;O~uK x0s;:4pI ɞܪ%5>>YH?Nr-vg_:9oO&f|)A3-Us\Zef?Wu@@X1f/-Uy׳Ok֬j*k_lw)[=. ESɜRcy׬$f{}+>Or N{68UyVיGc~oyӃI7'ZkA k8tIVޅ/Ltҙ{/St4lHD}uNd:=$i(|g\S$Lr6ζLsޞt۽XL̽?{tKռl>VYYK#   Rx y=<M~x.w]~0/5KaW=G>Φ/|P=@@@@XE_D-?X?Pob|    pG*+UVVnVy7{Hu:ܽPw=vWi9vk6<@y&05g&^ΙܥYƚ˚|a<8s󚙙͡a394' έgMkf͒esP 4/%ҺѹO3R2    @ LPP [K7ٽTZJ 훱:xJ*m:y4422kovPОMA:U׉7dlWeE ̋!z&;ӡn5C@@@})O3`r<lBG'|{_B%vk{@|qQM&&'X;S?K;h.ܹ$[/,).0(/+g_Bfw*4_(xZׄ?==i3{=l ϵH^H@@@@W`rrJFuފvC))Ğ;0sZ;mo TN1 ;[*msgNִNmMлnFYuf7F7k %cVfM[Yv<     @& ŀ6שjnm+JUf|5=11`w+ɭYV𾰰yg2x    V{jjZE**,ҤY*Z vϚn\n& B[#Tz[˱ey/B:j"     YAok6kIl=>1aAo A'P@@@@F%rr^m;W@?jKp&tcYM <S@@@Ho[vjM^s:i@:9u{eVMVagXSfw۽;9ύ#    p ܧZ3j-Ic.:ћ^ХnO{??>h+-qg{&φ{Wi   o𞍮dzoޛV0&jsaZei#    ,}:~;:~iDŖF^JJ֪r}66hKF~9VПz_z.WB_Tp׿mqe Kը    $6 cߛ<ea}#*mF_|AvGǷ^:tO4     L jfx:Z?:=Ewdq݊_qʴc#zZ577qMkv: {$$G+Ȕa[o^O'=XJPÆ HNx|钼2}\SiޮG>~QzrGj*KLxyY/ _9+:/ga+V;VmE}>7gXrn6TkMI]?\׮v]>Y{6WhSuiguܘ/:|ܸ٫c_sU*vbIΝͤUQ`e%:{:3?bIoev5o'٘䨆oPOSy }ѣ'}ТG *sôewJSOzhn~˾5_fl'`m%Ϲ1    }':{QnpG:Ҥo,mlCnTEc&^0dPm}Jm5nQSv٪GЉޙ Zӗ>6'K_NDZQU}TĖִU;ZۯJힶ;l19bm-j-56)ZaOO6>9kag=vsYGUʷǚR$hnїvm;NTlS~=\V@hϼ|`&{C:Ic:10_xZ>ἴ5v8TzK&~/)]gjtWWG7:<o3nƭܠ78Iơ2(~?g4>/ǼU8ة~GM/ 2$a}5wL;fx4wsk'    p ܷ/̬Gt'K6lXCWj`pؓ'噭j /h/~L3klm0(iГO? {'#9U`evcu;`"W54M`11SPk{43k'3:f{hJ(.3<F<z;y)bfem_j]d6|!1m`%GϬ|?wMZU7^IW?ow3/R3KTfm[z)!r.ĘYt,؝xsN@@@@`w~LZ'o^nRf_}CUN#K/>d~\v5ڹ,Y?ԟ?S~i&)N%K0שn|9L|tM>wS{otoԠafv7NA7`FlvYa>xzׂniM }_u7I7Lv՚o g`7Gz6Sb)7zcG{['cciaf:3wޯ3y˕I3KpܵCz̗|c/ו f_sꭷyʛo?:"-ڽzN%Lc^Iy1_x\7`ct)6^3hŭ mkjEΌ%ϹiRmm4_-Iwf,XZǗ@@@@07n͙+yfo|`tdP]YI7k\\^.ަl<ꤌ;O<Yn}=/紵)\BI[1XV5SfiO Rï1@лnwӝ`u<kw(Pky\MiWTiiW@IDATݮ;(>=3O>7=fvn) 8nZܡ-ΣuUWK>_)-fuwn%wm_Ro[űE.)q9-}4x.2>?}wtjr-z{LL?ow5AZ;[/&md]sEܼ9fuU;1ޒ?R]CziRD):?ekyK$I%@@@K9nsAr7f~ N^|n']r~֮zϽ`P_'<"7;I4vu#752O ce׃?5~Y+0IL~mUgYu㗢SvY_r턌w6ޭOέ}g<YK$P+r2g$;gy=" z- R6;2>,Ս6AqK>-gjsRD'ݥX'iZ."   @XD)uڞvE:>xYLM;7"3#ڹf6mlrdimm}v-(|uo9T Xd%ҟ1[J7ߟ}|%jS3KdY64֩BAyfY;ɨHqS<\!2`1uXZǝ}VԛOU?Ҹ_Τd{5$Z&o$UP,$/LksvVrYr6xsD-˙\>鎷T%sk),Sqn2    @HGXCR3S3 V砙k YĄysAh͏皴v;G1l fj=:rMOjO󃖿q|M[j`j.`&]1O_yƯSSo=3yRbOshY3b7g)t hZd>UYd 6vmK:Y׾!Mf9KbfiˎE>鎷T%skkjs   @"w_~Ѡy1Yz;eHjCFyMhfK?ŽkGȜ5hG80^'C`w2xrUooz\~ga]4EШ6C<.MUwmFY"ܳysy.Cgb|̋S?0w23+e,z~V+q;bfoسjꫫTY-n<nY}̬m-:Sq L̗i/ҏَ7g{h$Z/] y<E=NI@@@@`9Vd[1Vmi(%O@ȹl;N}`4Gh[M,]Uիd7yzǾYyp{z"罎IS5A/bϺо}gIЎ+?b[u:ǁ)?q3OSWZ'vg r׽N/I2t ҶV_zQ_:~3Sȍ?>LKne_Py`ߕطTVTkފz{z<tƛ<UPZ-~åφuz?BY @@@==ԪUsgoxğ=_u}BTpUw=ɂ%ָ^}>KY$19szo7<XFɼnV7]<h6>U;⧱z=Ek<P-|`Ndkڦ Un՚5/4zVJϪ %[-:w[\z ڐuufɊdY,glS sZܷ=ygny2x6i.r0WҪERgs+-[z|XFqhݷ':܉\Y;*ic{F/eT.[\7OѾl?f&F5^~ȀF}5@@@xo5=YfGFFI35ʜcTf }I;ϸG*ejۘ󉳷#DPYi?P}s|;z~GOnGw^Pቓ:oVج]U;8I]ʴ3j^_`;+:b_*h 5 ݥ~7O ;{<_ .P*u1祕</̕5ݼ7k4WRVêז}k{ T3ʚf-zϐeऽ3"vt;κ37$#Z_&=RZlyE3~Va/!dIi{YojN`^Ӆ! >ϹURGp@@@d_{{yc+P>99d:,o^^=<X3&YZ/84aZ-zj._ѕ5ݚWC'sL=?n'v~͖ncҖxLjP=Ӟmיm:hV~]ظ ˻Ig4`wb)ֶwUQ{N7m':kMw&t۩[*nN婪I޼QV_t؍rj­98J] w)L:nuԩwsmƣC ͚Hq!z3_ tZ7l{YPg^-/LTX,Q֢gb/PTV=g6²uTv4oV/ȩX93~LڪF}ҥ˃ƾLT[ר~wֶ̚8xv9ݫ/k]wې+:~/m[y\"f9OZ(@@@XB!5U>9_NR,}vgXb_Sn 4Iu5fFٕ"=!,Jjkn-Xێ9+K[ /|7ێzTy~Vyg{R=暟.w ]s8=^oG5?OT߲]3s0اͪE٭zUj {0ǭֶ&G .}^9JԺ1 ǻO0<:q3wUwL]cMٲ|1)ѳGӳu5J;&9_2xʴx|T^ ufҎ}w~Ңo@s^UM:pGÃq8 (1um99ZLJ,YrU4޾/"A]?˗G7xs0'   d$G߫n=H nA ݸU:xg*xh0?E,qUgкe`Ϗ-9馉}~OꈸUG߾` iZS֔6;;~tK7EN}Ҵ,W,ҭ5~'z䜙V H[¥_>:W>H] ^T{sԯkzy6ѩc_|OfqwXMձޓ:i})Z~VfSG~N^.q?{C#xvGMt%;O>xEQL8mJѻ7m5ypí1wtE O+zǏLJ;pLw6#'v9awwvD}fַ3/Yj.$&q2d5xsT=    Yd߾R&K!=њػѓjxT֌Xx:s`w۬< =9ӭ~}uja4ڵ6n]IY+U^dp UzZWz&ƪ]ayEiT]Sj̚fu]켴PLyADW~zDS]rZT8?Յ٫ͺeefVustYb$eF?m«~E=ǍYZնtZΎ.1<:o.)4ÌWz%'0&{fCs֗ gukzm9~v|ddFbkm-Ic%y !   *l_[Ј gsj*(g/sRS$_dcωg_ޯ([2 ޸CtX]4fcxScc$>+Id-e7ްX<1uJUW9rSy?]oW\}SׯkSW4slwٿ@zyHJ`dP='g->=ؚāKMPn{~|5؀Jgid_]D'ב2E瞽OAv܌Dᙩ'yN0E=;^"a&~3[l2$m6-+i?   $&IaaIxxoVT<M~x.w]~0/5KaW=G>ΦU/|Fe@@@@}[&g}2] In^w=e{eu-f+Qc#O*>[g`#yK$A@@@N[҃ML_|f[)53V`y4|s0K  J g} p|΢   ,oi7-k)߽{l 0;[r ꭟDo娴,~6֫LyŐyZzNplϾ=14@@@P E6ŗ&I!@; \`xB@@@_NE=D,i9@@@@@B(@;B@@@@@2 9@@@@@B(@;B@@@@@2 9@@@@@B(@;B@@@@@2Xր|.kRԉ    E`I2*e."p,klybU7@C@@@@T`\xx[*<|ZӟWIOO&E@@@@NПW:_5}`MRdm \D@@@@> #ד񶤉=(xuu~Rc ĐVX(i&."    p <2985Z{4 GΗWW^Y T>%C_,H@@@@esjʹݽ,i-wL ,7OY@@@@iJ/P\`e]p#:c/I*.<gfy4ds>(@@@@6Vە.I3;;g;L\wMI=33e>ZV?&ߺ$-G@@@@ V-ѱP֏J*../E.( ՚t3v}>c!འ?W6WԂ\@@@@@WVT蓒J"G7Me'&4c v߸9wAP?U7nv4 oQ_*vl#    ` \+Бjļ&MдXK׬Q~~gn#gZٙ<LN5Ŏ4>>aZn[/+ٜjZn;is.$٧VTTҒYw[/^655sdffV 0-P4]'OyIm4/̟ҕ-G%uC@@@m1&y],X&69]--Yc oнUTyKu-4ֱwsf'ZbTyv_Df [3ٲ_ӦmXܰd@@@@щ3a[uMϾN;-v''>ɗ캧*r=fA3ѽ93xߙ&S*    +ps&g,b/`b*>{h;tŲ:Ae}hy3{sέ[23;_$jID`uLA@@@@@ l#@@@@@ @ldB@@@@A@@@@$@;@@@@@&@;l=B}@@@@@ F&@@@@@ [P@@@@@@ @@@@@ l#@@@@@ @ldB@@@@A@@@@$@;@@@@@&@;l=B}@@@@@ F&@@@@@ [P@@@@@@ @@@@@ l#@@@@@ @ldB@@@@A@@@@$@;@@@@@&@;l=B}@@@@@ F&@@@@@ [P@@@@@@ @@@@@ l#@@@@@ @ldB@@@@A@@@@$@;@@@@@&@;l=B}@@@@@ F&@@@@@ [P@@@@@@ @@@@@ l#@@@@@ @ldB@@@@A@@@@$@;@@@@@&@;l=B}@@@@@ F&@@@@@ [P@@@@@@ @@@@@ l#@@@@@ @ldB@@@@A@@@@$@;@@@@@&@;l=B}@@@@@ F&@@@@@ [P@@@@@@ @@@@@ l#@@@@@ @ldB@@@@A@@@@$@;@@@@@&@;l=B}@@@@@ F&@@@@@ [P@@@@@@ @@@@@ l#@@@@@ @ldB@@@@A@@@@$@;@@@@@&@;l=B}@@@@@ F&@@@@@ [P@@@@@@ @@@@@ l#@@@@@ @ldB@@@@A@@@@$@;@@@@@&@;l=B}@@@@@ F&@@@@@ [P@@@@@@ @@@@@ l#@@@@@ @ldB@@@@A@@@@$@;@@@@@&@;l=B}@@@@@ F&@@@@@ [P@@@@@@ @@@@@ l#@@@@@ @ldB@@@@A@@@@$@;@@@@@&@;l=B}@@@@@ F&@@@@@ [P@@@@@@ @@@@@ l#@@@@@ @ldB@@@@A@@@@$@;@@@@@&@;l=B}@@@@@ F&@@@@@ [P@@@@@@ @@@@@ l#@@@@@ @ldB@@@@A@@@@$@;@@@@@&@;l=B}@@@@@ F&@@@@@ [P@@@@@@ @@@@@ l#@@@@@ @ldB@@@@A@@@@$@;@@@@@&@;l=B}@@@@@ F&@@@@@ [P@@@@@@ @@@@@ l#@@@@@ @ldB@@@@A@@@@$@;@@@@@&@;l=B}@@@@@ F&@@@@@ [P@@@@@@ @@@@@ l#@@@@@ @ldB@@@@A@@@@$@;@@@@@&@;l=B}@@@@@ F&@@@@@ [P@@@@@@ @@@@@ l#@@@@@ @ldB@@@@A@@@@$@;@@@@@&@;l=B}@@@@@ F&@@@@@ [P@@@@@@ @@@@@ l#@@@@@ @ldB@@@@A@@@@$@;@@@@@&@;l=B}@@@@@ F&@@@@@ [P@@@@@@ @@@@@ l#@@@@@ @ldB@@@@A@@@@$@;@@@@@&@;l=B}@@@@@ F&@@@@@ [P@@@@@@ @@@@@ l#@@@@@ @ldB@@@@A@@@@$@;@@@@@&@;l=B}@@@@@ F&@@@@@ [P@@@@@@ @@@@@ l#@@@@@ @ldB@@@@A@@@@$@;@@@@@&@;l=B}@@@@@ F&@@@@@ [P@@@@@@ @@@@@ l#@@@@@ @ldB@@@@@~*T}X* @@@@@Cfx߇N@@@@@{Q`.)i     @#HA@@@@X^@@@@@r$@;G     ן#    Hw )@@@@@`yx/?OG@@@@ȑAR      ^^     #9@@@@@ ོ<@@@@@ GsI1     +@{yy:     @xb@@@@@Wt@@@@@ $     ,     9 #HA@@@@X^@@@@@r$h{=b@@@@@)@@@@@ ,ݓ( @@@@@;(TV(3??驩>    @QhZeb;>_dt*ȟ}L<D%IfS%&Y<i,[$H*2]h<}6{\(3r@@@$L@v)I.`krܼ퉂n 'ע*N -٦5k)/@vێFüx:zz9=`_Z+9Jʎ)<cexvNqjb_p3/ϗd H e{S`4m͑}ܜ&&-6@@@H!`7*UL/0"WyG1ggg5bfϳm5~**vm;*ײ}>yyHO6hY"/ό:w_lEOMA=j;.M-.w}^_ &,Vq_4˰Ϝi?5 H0D)ޙDz@@@H-gشi es&5of:uV0+ewaa*od Zۓf9bllHq?_d;~) 6   Xvϛٿ3'ҝ Pa̲5EfVv;U&]$+}3cl@Q*լ-Ta|ޖux=8C@@@ *--gsOLu v8Κe`M TQV@KXg͚R3nQiYai|10J-jb@x   (23|W5(ߟ`ά9rY,sbgf2nm voY˸ 2L)3\ViY=Y-p   wP~A)wP9E;_r3~X$ߊ49 ?+ 33#9   LZL2l63zɦDgRg%:#Dw5    "@{Yؗ%l tH   ,&޽=<ϦϗǝX+8   ?&֢&Oi-@3Lwf^F@@@ 2kx[љus(UxDm -G@@@@3C!T@@@Hp&v2yN>~    k5 x&XB`v>W%&<7wt<fȁ T|   MMؠMUZS9i~fZS;縮+b%wp5I$EJ%ReI,;Wcyʓ*9%IU<NYk<eJ,HQ"E\+޷ k|~w9s?6\~钻oˍ⋽(%Knu,o-][d5%H5!}rupͲA;.W]ˑdT:ikrc0Ҳ,+왗%c( @ rO>*\ Wޑ[YWkb+eAwa_N~Nٹ)u[mwmX7n>W]fyԑn{WyG);4d\4<ɲ xW3f @ P.N͙8Ҥm^yٝwN;Q[K*_ UvU64<CcԺuvbE^岼lY.}da<tez1>|B9,:%{. @N$}@ @@GJn6\>%;"_ΆhJX\D\+eL Up|x$M>1[_H1wn>پY +ìk~kgpqyD+o>e< @ @24ӏ>/~b֏4W^yKvv8XA:P>=v9}|3djr׶}*W\h$#i ޙ@ @Olj*<OOG.IYjZJ,], [!U/;D1p>tE[Y:J&տU|Ɲ}4/ޛrSY o -[hM푑!푫}߸JX/K[Juդܿ!7($gSc=*n=}7%;6xiv@~Q\9-jFi HABȟI2x]~dv6^! x @ @@[8OΟ9U`ڭe/l ;Y+|vbl߷_69}Pv[F"ke߼.YwO=&ڐLRw`l%o}R1vپn֛ex]" Um޶x6=r乬;_ӏmxU#f؆#IDAT7iR<{>$g @B; @ @H<VYXbWEFX(P#bwt߽+CCj<1./tVv*}v5t/>sG{vAzo./|9Y$\[<?-d}}U9|#ܒ/ ^ Cٴ<yCLfvet2ʖ;ѐ @ TX{jV#s*ikLF}]Μ(.t({}^oYjR eCS˥;ղٳ_X+ @kg{OiSǬ\$wn'n~yT>l4%LGA8#?5DGXt4yY350CZdhx$t ϛ/WLK7YI='Ϭl/xO^9~ӫ'`3 s"8 @ 4O ~> ?$[ݦ{buZɍ"GC'?9+kSMҢO;q7{ut[w}uk'OUٴvo[nSNNFS9>g̵bMhҀM!x<[.ϯ+B!Ur@9Hrx @ @(2Z<~I'CvhJHdy!CWtHv+]z]+WnGAݎݵSS_ea _fY4@@H@ @O`a>6ѶzlXD<_Rf1f<vR/-Q':hWgv olt@ݒrOw~{;)E-v-}Bv\F`*h{[UN@ܓdW-'=&}6T4~L @ʆU4gDs*q% NMCm۴G/hzGݢWrK?xk!?Ց2nWvjZǶTny=% ZrdFuܻ{ɍ??nXY^a8?.8ȉ, Pِ @ @ 'l m+VB<B#q>|tܾ#jOo7D<$?ڪS\DoNܥ4O[y ߑ=s}⥋eԙvowlG.3] ؽ?=F~{I۟tn){sZ{'J3O$n 3IJP`  @ 7\gGvjl}l\Z3k[_ʯ_}GQZd[.}LG jv*erߍei|\EkPpqL}66@CٶQ=<v{=/n}W.G'_c!o_ NN%8rȻP $qgxsfB @ ;-Y;t:9sG_>9r\6s ]" D+jXob~+7li6q{]xՃ\NCi{|27s*|zt>aVuWgwoMɾef9m尜l%]f}5!@ @ Nٯg_[e˿|iG̗%Mˍ/T0O0`oԹj{䱃/V݆iW:¸~K{Ik}?FH rEK_o$?ak/kpןhsߔl_7<ʶ=8*+Ղ4, @ P9>}븬^lhvT}Gv95zōZe%r q1rgչwJVM+L|,[Q.pOsfgu$NE,]&T~R/wvyv"ڶn/N_kRjU/ߕe^v':QYdJ{vBGgNuͨHòέ5vk=j1?.?Ǘ9)ߐWˑAʴQO Li!%x7K #%@ @@['-`O#|}z˲u۬XvnSrK."[_똶ʖi kk䕟DdOc?5S:~į45</vsom+YSS'>$ߖ'9ՏwIөgmZA*<V?q3wY߫#̲kq)N"y'ߕ^d^ϑEJ!@ @HkrW/}z:\w,.}]}zIw-gV*KGFedD}#O {m2v$-y絿C'.ǛxVaP7G{_9)\o 5`Vs>.)c7;_9|F:O>O v'Q*J1<Vw!<^;Oy0꭭Z[ +EqMC @ `Μ^EȐkmrQD@jS264,]qCj[!7(˯:|Kշ^Fܔ˷qEZeeR71,*!sMn0ԪdAC,&z\zgKz'FȽK~Qjj}֍ qvRz r# ί-Ui'tvP_f zکֱͲ}򊳓m-'j6븪.4tz\/rJV=boB*pii~4Ngxg|lg' @ @enݵ˵ w|~/O}s+7q9VgJMsri9=s2RJ~'cANlI @ $k{'tf&]Q ?Ûu @ @"0 5a6z_^U#`z @ 0[ƚu5g0O;2e-,1$e,ơHWB ޶^_qeUǑ @ :Ԥ!<d. +)M V.@ă @ @(ֹݟCP|Ƒ2ƴ6[Cm 0_@ @ʟvܔ*v}եKOx3G xܰ@ @](kt]= I2(0y)n@Ua3¸@ @#ݓ|1}1&\w~ N?l BFBS["&@ @(* RWWﬨl TT[CNLuP\Uh^d̫) S=/PL !C~1$ @ @֊ckf.)TWWKAhASS5% RU5G&&ِX:ͭ#x~1md<dd!x6Gwg2 YB @@aIR2QM?A) s284ɂ3`XSjQ\/7LS:d풔Y?eʖ~P3D޹QK_  @ sOFmm/jn(4˟kkj,[ ^?KI˼jYdd0}Z<#WT}!RS̤IX Pc yy"abB @H`R% Nj ރڜ,{jgogZ?skg-4b0KcTPy7BQheH @E@ݮnӻVn9 $066v掉E!H .79bL-pۯR:>@ @@B~ tMct!{.@ @ @MsS{"dWRb))hC @ @`(c͑S*s5weX,L @ @@ d3h Q8]={{E7[׮nSC;nN9{ʥ @ @  ꝟu\ʼn%;C曤gA1 @ @>캡Hf̽ sXeyQPi;R?ǎ ---N Zn}zooXu^ @ @ %`vhM90fE.Kkǖfqm1TxOȖ* @ @ R(55YwS[vf[\96^˥eצ+<sqmYmw{Kbowĉ KX/<gLFFGeJ}288( Z\W @ @<IwG V,ۂ0 @ @@B ˄:Zέ@?5G~Y;56ύaY/Ͱ8UAwMB5tKt,6|h v^ CV稕:dp`j:r#uO=e uc֎AyA@ @ $Ⱥfl1 40/?!@ @ DA%0X{ ؄04vxb m77~ۺww8VOx><J @ @ e.-I6wxMW9/L @ @H*Y;M 9M!kɽ D𶧬Ię=ݽ#UUU2:2" Tebv @ @E槵?k(Vw]>25i1^Z^IЩL+b @ @"5?KvA–½j\KsíL}:nМO{#M쥒eDv266*ccIfA @ @C@k}Z_.{@H*O󛩿4` @ @ %i/2qT;.ʸ\JXUiOj 2  @ @HiOk~֗Vf - bI<St/&tۉ^+u]]%u244]'D,@ @  -vkOk}UJvK+-0R#4r ]~1'#<{E)_K-H[['><AuϘ46Woa @ @*;G-[k}-9G96?T `J/rҽ}d[}~#twݓں:;A=As@ @ <4222" ب*SzJ-vOGzp=&MsA x8Բ ,J ~*أ]? rrR6es^KuQZqf9by/CŸBvqŠn?vhA @ i QRjcz qc֟=m7Ǻ+fqj}[ %`WCB*u&6 ׵[m1C<{D:Xy%-Z*s7ԔFZklpWݜo^7qmЉŲ q~h?7@fֽ;>n5{d:c@ @fMt9Bq.|XQmu'bC%핑/=bu/a---=?>ݒ?ڋ֤poXKUnެ7[.YآVO_zMfk =R(ۭ~ q;AtZy)oC @ -%|Y Cl>mm >({MZ.aoR7*8n95~K|ɋoR*Ir-B='g@^4SVz9jx\]gi로@KzZP jT5'v4vމN`}ӗcvꗜ&?gӬMpوVrfH? @ @0H:K?mo%rkq~Lz:azH-xyXWaZki3vƒa"֫W<y39Y/.>\wrzޑA@ͭdSm65~o܏w@ @ nj1^9s8׍L vQUz ۆу-NxzNWw-azctI#PwS@+یWRV6#U7=NaQ DPv^/MF{0;+KAt$}8lsy:r @ @ %I+Iufn5m,M!{Z8z:\7jF12vѲg=\v /YAO<C1ͣL7Kh0i7Ejn @J#n6}3uآnٯX#`M*׌nF~gR޹dG/ @ @6|tqJ b͕F؍}Qt}hpN0u V)➫횟 ydFWPO0vxVGUbD4=@~:n?\݂>Nܙ}}{?[g+ Q]nOw7M3S7)C @ F`Zts6^r3fIw|t2^^!F8w3'V5Zt!`*N&p*Uj^a|Dۧ.,ʗ!xT" e->qnI_ jb=C2:}Cd<pqfk0ױpN% @ @ ڌ_^!K&>]'f apݏ*N!\KqSO7tZ~oX,r !v<RO xub,-1Buza['uXzYf tS5(N8wQe1!"&vhq%M @ @ ]MMZC0RmMH:ŏ鷅Smx^!31} ;dw k$hiWY:#eN $xE\#4s91 8^Wp<^86'㝊1/DZͽWݯL·kcWwEd un =2 @ @UL5&rK]dc0zP}f8]֯Dq}?{jNk xhyB"PcjdNyN{oE xNG{7i`A?]HP/cU<f1)B @ pU"gQ i]g!dUD}SduJn|pP X{}`0F=ұ(V-F8D4$0<WTi*B.f[T,@\{L>O_cg5^roP @ @(s/8v^\_=\ ur{2cSwϔw6TSP !Rč׮ʔoh0ې)׆; @ @8f6LewQӍ?S_T.QO ΢IENDB`
PNG  IHDR\i iCCPICC ProfileHWXS[R -)7At{6B  AŎ,*TDQTtUĶ@֊ >QYY XPy}s3ɹlFU }ILR7@ 4ӉzGE(mh况$ֿWQD(S"N59|Po4;?W VBq NaM N Rh_Yl0% of'Qpp@`s!~񄜜Y+!6O.Nbdǰ,l[rţkAEKruۛ5+TFDBe>Wj/3Aqr~ 0lPu f؞-B{4+ǩYh ;"Lgy/xWD16i`a 3bd<  neń}fFKDl0h^ -] ψ b<Qb(._qrn.hoInveFČv{5+ㆣ ?b8R, m l&kF=3Ox@4#2=At@Ak㞸;,8quԏ<*џG "-xp l8ot̓IFsAxBE"4j&Hs&]0Z<To7qq I0o 3qVד>^RQ"u1w5w菖r(ւî`'`X+vJ:ᩴFWr˂q6u}X-__R/Q>oNc;WOgzݘ pl&0m-Cg#tygp-o:'@3z} 9baL'َP2*00{  bA+r `>XJ@X6` h'9p \x` #BBhB G\O C$$IG,Eʐrd3E~EN +HrF7'C:Q Ech:*A9z B_1fYc./%ci[bX vk >D3qk؛AxJ|3/7n|JtV7B0!NM(!Tv.聯0D$D33.yĕĭCijbqD"iHHO*!m"'!uzIȊd}=9L}Ns򰂊BWaj] M z)3%IYB\<UTT4TtUW\XxXbGՒKFSWQPRQh4SL˧>(ѕlJ:^)+(({+P.TP>|]_EATWPJAUjjJ}WT_Lոjj;Ϋ1ݗΡ/_ԃ3hiL҈טQqJ1LljmƧqƭwp\5Y<RC4?i1j5h=Ƶ-h֮־?^}xGAu,uui ݤ{^_[wZO_Fӛͬd^` v 2|dD1r1J3Zol4`on<߸IFf LL_iՙ=4{טߴ ZXdYlhD--3,,[VNV|V\'&LcM.a؄4ؼh<1yډ-:f}`fbWddҞc_eӁȡ$IIՓ:96;~qrv:ts6vNq|E%eeW"דݜݎndɼɻ&xz=vxty2=S<{vyxjX\nso Lޯ|l}>}.=o`P08/l!(4hmН``Npm@sȂ И͡O,ÄaMhxH&H.QYT^oSSTMym=?%33f_POqqxi'&.HOjL&%'N?uiJݞn6}+3gd85Sy&{BJBʾHv {058uKǗ<xiii/=ץexeTd}32eϊړ5}(sB&\7kά\ܒܮ< yPn".jWǜV'qwgAUQ#:r  ko0 v,D.l^dxQ{Pd-ȶ҄Mźŋ{~ DDXrgmm+VlZ[z̶Jʫ?\ȪUmVW!kru3חa+*mlo ldiͦϛ36ߪ:Egˊ-rvVnVv;wטT$,lW_\~ݭl==]{^uݧouZ'?m88Tvה_o =|c&Ƕ/G4d4t5&5v9t748YuJӔŧG<{\'yaʅ/_ tŻe']9qj5kwxS[uM;NwzuwnEwiwrᄌ}?$<,}XPSשn'1Opz^>=[/N1ޗ/KTs+Wb:8ZzʷZoy0jPZ~t)ٟI+X|iHH.[Ȗ08д4Pdw/ e38@b-9zDz06"JsŢ []HM| o <ٝO"Dxn!Amk3 pHYs%%IR$@IDATxip\יb!@;Bl $AfR$%Kl-j\eS&:b#&cb"SUrr[RQdQ,QD\`.. NĚMsnf%7d&rA|{<$KHHHHHHHHHHH`ش$@$@$@$@$@$@$@$@$@$@$` @HHHHHHHHHH`C!          9@$@$@$@$@$@$@$@$@$@$!lxA:$     4WK K^FIHHHHHHHHH, ے:8:$H$@$@$@$@$&f`g$@$@$7(xPf`n     xHfgf_$@$@$@4<          (xoad'HHHHHHHHHH(xs l70$@$@$@$@$@$@$@$@$@$@\sHHHHHH^~-)^¦MؼR$>ǍV Xm̈́gHHHHHHH`CX^^· Azmyy󘛝A l޲ţ2>c@$;}ǚ- H^/}M App06 olOmxlY4P\lH</Ofc$@$@$@$@$@$@$@H./"@ݩvTdUSRRߏ.# |Uup~5[" ޾c͖<H :c/g!9)0| 6U!IJLMlߜ@(@jxms2zw;8HxD$@$@$@$V!0ٶmA4{2~/)vwbb{(D_JaJtet߻[my!;4  Y,,EvK :WC''KKh[U`bH؃tm3(-^"^ECeO=_]J+xH )(ȐFMv)EHh<Q{+- ܄%5xD鲑)# ׊cpPح" y1h\.W]" A@#""tۃUZ۴i16>nh-;, KA ߬1c:A[Ƅ$e`wTC :+%_(z>C+QVG`={މ(: rM Sګ (U#_޽v3ZƩ#P\MxԹ>ȕ{;FI:!E!ۨjTޞW^z JL E9^}B}h?˾6GoS“Ųhij׫ݫ+ː %E[ _M%%VVrI^D٨ ttO&>ѡɳvǓƊ|qVӯkmsA1v k"RĬ(, 98ZZ/޳[]xD :o.=ߋy 0$!apN9/ш6 @/Gx`eI7Mgh%(S#vKt*G˃~يu'G 9:kPLlHHHH@ -GqĒAYQYՖ&~Zc}cvEW|CoUX_^aD\c0>r 3LZf8ގMlj巻$h1 d$' )5] 1b>N`JlHozXKrBbFjzorU5GFz26T6gA$@$@$@$/$/lh<p\C!3?YH X͉:%1vtuuJf/7$:\]{ XF$-d!XrG٫CS(*޽Oltq m ظjU˦p󸣞n*9I۹Vp{pw:y2n%|)[6?mP$   pO=Wu^$"&Bujq]#vK@k,><K`Ϗ T]UŶjg.߭՟ 0삗8)xb7kDBÑ3T*“ґX>#(8PZSlKA͍ ] rtqfxCkqfޤ|.FLhXQ5 MYyͰt0F#҃f!<\mbqPZQP??ށ&Z@vGF IF[n<SߛHAK1߅w0l[%dEQF<_ÃkqCQhA 0GJ[54g!fga.->Av/c _Ί5 if؝-o[\dGAö$ݒ+ϬJ1;pWɤd|6Sx pinLx=ꗫ;5JLiw8") En1?M+iH]th64;eVP8y1x?V>7gqiؕ;=H>bT"Gxn9 ђ>>PgHHHH`к8-3ߌeuQ;A}-*X̳~];W4 A~" Ö-hvl}O3?lJZ'S1E93J s»wYX8s<eom% EeEHO,~.@?56:0ć*f'`+nm[j"iS%ܽB5~ψ-EQ߹g{=< ,Ġ<Z٤my}=3ΖՆ`o6B_nX+U< j8ԒC8ZkmY8'9rPZ/?սz̃_CbAɱGߟ l*~xHe.s|c{501t, Q?{P2yWN1Ԯo旂wFNaMk ?q~$Yװ+#JpZ%n6Zd0_r%8f d֥#?; _ ­$նOR1w<tn7 MmގE+SJN=VbufV6'C\[6=3-zy{cul:kM6EVLJq>^hm`)ٱh4Bήٛ<ˢxݯ$#+RtoߣRu:dd#|Uyͯ2Np4iB<5t:態٦-/7`oo^5Gc2?ru; 9.eѷ^>x˥Ÿ\+}{aMHmu%G+L@`pEIHHH# ՖΕZ\b(je K8(B"4DPd0/Ԙ^Ѱ};vW W#W,T۽煼N+u\W^zWӈ.1OW*^?Qݝ'B馐=eQơy%<gT0D6:$N[D4X-lO(?R !|ZM8Qe`v+vDt)KBgϏ#8s&̬<W뗿oΘ}`<,:/(k ϊu!m;OqYƿ-xZMVgD+wF9 Ǒ"*J'`G[_<6.oi8tD>R0MG'ް圉E87?[Vb!Ň S>4퓅@3حAW+* o-! rHDnWw⑽GJ.bP?z5vP_ NB\㢴i=-_ JAyE|GORBێl;bh?DXpҡXva,ϴ ͝uòkG5K<1g0?qS0:Ɏ1m?s ߃W}|J3^M{m8j2]Z;Q"ԌrpymGmqL"~=Qe.X׺!ڹ5ѡ!jGCl5\1ڽFf&HHHH)髏S'~kӤNM{gC4=W䖛R#syBw0jn'7?-F{=#7 {#0Q-}zkhy.1B3DŽ8 CY[0D}o[c}`cZӢaYs{D,g$N?%VyVNԣNVCk,,-i|D *g5Nsv0xZQqG\x]q֐Mă4w^ACgq58* ,kdC66Z4'BRҥq5"C?ҎǛ'D!>Z',8&ry뭻/2g9 ]#!<N"@1H 3Z)Vl.+̌uK2pD7V~Ss;t%8sZxb?:C<[qmBͽh܌8H>Rắ񛎯0#zc۶+6l8fƕ_)GJA>(^Ulj^T(G OD^ߎtH0M-n4?9ڂ/.^D"$޽8PQh2W 9L<m7в>x:Ǧ֜7wR~7y#FON[xrymQj<j\ҋp GVcP B gwJmFxݺJQ P <O QY756uzLv(Næ7'#vBy[郿7"SzQ,o~ D6ZsA<M$@$@$@$\FF[S?/?Fkn3y)9ױnQ4o3(o' WѠYn?PwVV;(&2OGH?8Vė^DuqJafq-_i.I:$DΣJb]ܽm N7s!u׀g[|3Q25|uѨ%JDZ"s)TG+QuMwq:<c?8!~lޜa]V>SЎB6L,dƠ|ٰO.TV5)lϕ<@[h躺è04;3Vn ^xu6O*+ Fs_"FҸF3q2Zr:EN͗izb:{}瓫r-~:8 QJz(bk~qJ *2#[ƿ{mj5J~!MjOEzzjJBqZCVy:Dk7/u~.-E,luQt4TzB. Lu% SՇ.R)4ܭ߻S}ҮI^~c -7 5|k"Fhf3h/4:te<Jԣ$pW#Bt9P0#s2/lo]G4y>ԈRNܳ=z )b[,6Y۪GaU)1‹[y>%C"H=F$@$@$@$<UZӴs*фsXhgJN/; _3TXB|a4<W_\>65GqGwp̥m~8"=Jb]T5R;w?GFOsԾ?WDn'+ҩ!4<: 'c /n$!U[֕~Ros%{Qm[+tMsz?Pnɖjw/QtB*e\aQͪ7t9ͯ9jfq- xmHZ(?yL^E{/7<D膅WVg}Vz0 J!V#cG #*Ev>_};S_1_f7 1;j饻h U&VqΉSёJ.}Wn 25);E.z_vih뒳}m-D+y$,3\qh\$^& _|v腮۽/,N&V;r4UVぇ9$-ʩG3xXizpTi;\>]wvP4 :$0Q~;T2>U!JjlkÞJh~oj ux;Ӝ\͋;}ÑmΟhƵN-Lbҁ`ᔿW@H7"j&J3bus[Vf  vܻd;.ehU{w[[6UZAsEKChjQ1wfBv d6"bv2\e TˋF&61ĦrT_lFrv%!:<"w@8+n"(y|WE忂Е#X֠oʁ1H:IDGJ~*GNӧO7L2l=)O;$/c_oعS"X+[L@=g֗ɦ{xXZ aKݵ Um3-N[)x(mu.GY690+FS7с}5"[5FraӰc۪õsv4^37 g^fuCly) uf“jfSU)wq6Ë6?k']rBWq?5.h58b NkZDl)}ZPF;q4g3( 3:-PxHWZ>A,ch@fX8f8V<P__RWm+C I>}Cq}^VXqͯw 3NW,`Ov\앥qVoَ-ԧS9o& ˾bWxiݢsz͵vym.l6_p+] +HӈהO"u&Uq$\"SSI<5`ŊVya6G9.|#E)n8o5m׫s?]#>ı۳Wv4TX tyyXr)8ʉ5*jM: l^a[|c6`*#\?]sT׵KjE 9{FϿ'ٿ31 S\_3Թ!rzlY<Y8j]iMkzVV:7q-H29NgFvᔘbʖ&+UmX=~ݩS݉8|e?7Dn/?<[(" Z=}"l<*\]7je0-NaV60ߧE8gBdRXRY7ڻɢ.MmqE["j-Ҋv3 \2DZmmZ$<qu0Ԗ煳[^mG;Wᣖ1texpRx؉LjY}HHHk28}EYx-*>ήyi'WY!v|^[ӭ~ֲ(.EjY*y|-Xǫz^o xY7+AQ[J͝--.5RH\&Dي#5 Uz]7oq==GdwxddM; v_>j혭~P43]⟋O)SDo !@Znwq|0͝!m01J6ՋE W#ՏmضݎY%"|=:-,YB78y{_i_XG3E-oUtbi$AA";}gڊzmkX1 tӍuڞ!w^uwG#6?[Y_Qqmb(@{:ꩍ1\gAPPjJygĂ]DbX8־5 aؚR$RP+Ozq?^ߌC%7D FJAlVwSU]pK*vӦ8,jmjw!/U-D0Fƅb-5;WdGL&+1}3EqkEV>q'^qMhAi*mr7^{>xgUOcpX5#*[lN:$B&,Hݻ*ӅIOCNq<q~WJ vܴ\ z63Y,/I&>(C\w҄SQ4dSsQµGC}X7.|./fU}3 ':ڎH[uוÚicm[zdrg߇ .PI\~X"Nks eY̥w S[k?}F q3bꖗc 3zgΐۃf/|[8-m+$:fr} UyvNHo^{GbN!xI-9TB-V)WRyQoŽH/O[kZէ8#.QGQ$;(V?k"Q\q?zBƭWKcSj2dÙ'Vyb'R ^(ΈǎxTGmzۛ$TSK][4Њ&k[fz4 qȂgJǷ(*:6Sibu:%&/qmq݇Zj d'CCNɅagAn5F|=2^m|s    K@[ͽ{tQqAXL<`m]AޜrvÑ5-! omcQPvRU0l2 Nqz%Qy<j)f`<64Zl^X>6+ Qrѥ+¡4ؔ,/GLgCO;:=Phjbrn{xKuܬĭԭJFaDf :-)'FD|k d/;P]Ƒ*ej1<!;dR?|{NF`v{:2QOzfet~37oBph$E$?ᆻ/DI=6{X6$.DyFj콇o[[:2q@govFd [a؍Zy&+܃^dŤ [ Fo"L alNCf恄,;kj$GnG/QZb18 .eF\rny"g=wp1 rLWmD[C'{9\5k=~oDlA 3cI}8-xcr wstq}φ>IHHH֐@R*^.+N)kGgO1:>$-A#Tن^mRk8?lĽlTB"* ̰NOr>u"G:ىALmAj^1d:;Ah~?L,c7ϡU3b<jspC›ԣs`v">1Y)hG|tbK8 K$1BAijoCczɫjvŇc.V)Ps69-|&ve>4 |9O+rט{  .oۼ|dc:iLxY&QqJ| 0l-_}>8(LR?$d1|ڽE{e t ;9|WyL|~*N;|@k9N-ij9jKx$4X8BT5U RveC=dO3_rO7'!4d<SؔK[kZe89h>_Gqptt%ʛ{HWl#/V/@~İE"\.gl{ -x9/4' 3-8 meh5K$@$@$@$`g<lml~nqq/I{U4YRqJL^(5^9k/n+RE`ߛ+YwpggZk8a[zxk,eDi8hzk8juϝqi>)5Wku]Jcf0rO(o{"NWuFFoob²(T{fJ k^'g#_YbeТggM<njG@5ËUg\j̮fd7Zz9-7\iѼa>އ>"ᕀ=WP,,h^{0U19'^b-7/?j!Tj-zզRJ?gu/P,:xü8WzW=SM4 L!"~M5q4d)˚|^rǼfX qYeyñ툅*}>r[<ӎ~/. Zr+DD &ElkVS?Ff<^"躨xzLHڷޫFC[6ӏo<x^G% Ow[ёOWy|}>j+?Usowť+̯K ޕNؽ2IHHH0@>+h:>>nEnץ*f14`,o~o|~ΎuL攊5 oJX<NKUoiGkiڛ o.#!QAsЉ2 ZD|i?|eTy .5 ߭^oWd0ϸxQ lW/iw񂗾&o"l="F޿ͧLgiP鶲%"F@O/V)ҡ#Ǽ\}LwUD74:|ZALx=h5S:R%2xfغyQ,0 kcvfᨩۃ@# .&Swwrl8æ9l(z;z1uy[Cuq}=mJGZ,"1mxHd&X.oڊ< L<;ȏ47U FFMfh0Sx"g&"f{w˛Uh|OMd7?T<`ONjMjosƜ2y^<:,G=b!Z }`<I$@$@$R%]}O1;cEoa12VUappP-v̬׸-,1߁r~i .ߪOPj*wPƇz?/5 |F06_Ӻ o^̣ NI~1-LB8[zС]M2‡>mܺ4%vD2RXHo3uC>xx-xLKk#x{O /@mX¯ڶ8S5xcl}mӧw+EkVw;lHHHH|H9lI ܊am6Z,n^buGsss_k`E`qqIxy߫|uֲLC&ၽucm7mĸ^-@'1źk!J䀰^(>Nla[&f FaOI)Pʢm<sWHHHHHE 0/BF a``R o@hX1<b/}_\~U^Zz+?v󷣣ݽcA< Eˠz66Ɏ7Wk>Dπȓvo4yGQxӇ=r;LlAHc+Vm{%x~-8\QwP=/ XkMMLN!<< /l'7)\ʖ-[ID{X?ύQg.Wso5{چ̵gϓ7 /4-B*ZbeܿP&F'kh7߯ŵN;9xcA@PW4+V΋$@$@$@$@$BB.[ o%-Z955UG7Fqe~86,/N;fG:n5.׶Ӽ|˛%"^jkscJ=1=0)G'cgX(n ;`&gnb o5 xcxG, 1_zIa{x[\\C> p~xfb)\ݺm6!`2fQX Cv62 SC̾ H+33A6 p~N \H<Hk=U  kǞ- xodU$@$@$@$@$@$@$@$@$@$@kGڱg$@$@$@$@$@$@$@$@$@$@$E+=WUeg)C$@$@$@$@$@$@$@$@$@=PP          {%:~v]h{v% @{΂ٙuj9&         `Hpe$@$@$@$@$@$@$@$@$@$@>&@ wPWJ$@$@$@$@$@$@$@$@$@$c} ͑ xope$@$@$@$@$@$@$@$@$@$@>&@ wPWJ$@$@$@$@$@$@$@$@$@$c} ͑ xope$@$@$@$@$@$@$@$@$@$@>&@ wPWJ$@$@$@$@$@$@$@$@$@$c} ͑ xope$@$@$@$@$@$@$@$@$@$@>&@ wPWJ$@$@$@$@$@$@$@$@$@$c} ͑ xope$@$@$@$@$@$@$@$@$@$@>&@ wPWJ$@$@$@$@$@$@$@$@$@$c} ͑ xfTkёx^QQ+NJxxl}e'quV@$@$@$@$@$@$@^"@o/e$@$@$@$@$@$@$@$@$@$@%osc\_yYE~7&HHHHHH9>eSDII#0r3{L$@$@$@$@$@$@$@$@>$U[!Fۇʦ|_FcI' ?gLNK3eHHHHHH֒cx%}M$@$@$@$@$@$@$@$@$@$1= % kIm xWcx{ PQ.光HIf%L=PG;>=dHHHHHHHHHH`m ;QܴX$D#x[`E=,F&08 τG[Za!~\ZhH pZ; et)9,"        0'wD^-BQsMG>?җ5btMb $sK¢p|9AFZnO {cD IHHHHHHHH`;g( >##^#4B6߶QĘl`_{Ӗ&cyQsnY~aXC^ WNBm d#i($DrR<Ұ͖C3=n9 {B!I+CCsnG6&'Pɩ0T9 i] tI$@$@$@$@$@$@$@$n9P,pܯǷ;Ύ^xdڞZX0w׶-opkmM]%!T޴9iONZڅĘn⢈w/>cj|CAǐ/Ĥa 8lM[+ @.a Cke %      p_ a:rԮ<S!(x9P!Q [$&fe$Qܿ<nxH$Ju UMC47I,aRV;jAM*"9 !LjE;EA/c _΋{ٹi";qͺ((v) bff_XTs:ť)HV1qpD!(hNa)~My(M F\q!OD ?94=zhfv[E6|~ Nm?~2{&ӒcQo뀏9Qtbe5PT Cvs K;3=V[OܢFK[.]TݬCIU/jQ)/513[ILOm&)YpUAZ6 olގE+ <ufRY؝6\[ފf}kC58Tg{B4]\Tqʁ|qVT; P/AD+NY%7GSrZlZc ˬcucjQ{h_^H>^\@IDAT4 K>:{$@$@$@$@$@$@$e~y 2dm}S).'sʍO㙥H3 AQ8y[n sI(ϫ؏<4A18{[ '$׵,GA1ԗV2~\iP,9 0b-YyЪ[_3[V 1msZAW99rNe/yS+v12,#J~ 8Ffco{]&[j wjhk-0AԤ$eB'FXq֔pIpC JPތ@5s%J}-brnX.v8i&h4|&ە)gǟh@ɑ=GspNd\Rދ7ǟ?~gR !7 ڹ-b5}~Ƒ}+Z~.'gEǨnE@6 B07Zu4v8xGM.;0x=j?=jEq]goq1si \S\nLɉ0>Xa&v7߹sWm>: z|6[$@$@$@$@$@$@$@$`Ҧ^}^ wg'[ޗt%8]jM( /o hɤ7&ZD+H5 I O6ƏvnSs1'%bcIT~h;٭Ǐ.FDo<}5t(|B6DޱSӜA,BV:㽒m޸]ƿ<S1(*Gzb4)0ׁ:a9&GK`ɾ,bu4n[6m KG$FCj~X4pi'Zm מO f#D <;ܳ3=)S14fbEOĢIbE}NĠpX [ox'##I @5@jn8.wQL,^ƻ qfsv]Us CQY%,@?56<hsՏ14      A/ozKHU @[T1]:DĦPSVlxW+>шrJё—~TinI .+<k!v;he~م)jwmegOΐ ڭbrn2pPā~k\3 fān)~\ʳ[jǢie)8$8*Nb g\֞O<N}G1nKk*,c|Z:fņQ 5¨|,fh.!AiITj/ӺW"17t馱Ge-p_6#7gW J 8ih G >ԓDbk#:L'o?~HRuh/Q92Ou^ż.+:9>bVm1)I(߃Δoϊ+鈳c6x; $Fn߮dwH^ʡˉW˳b@FԺSpz"-B `*J+W3حAWXUޢRc?iBCXV,-|X[d[-âZrnҊb]h19+{?G 5Hּh p׽{\:11+4E$@$@$@$@$@$@&Jc[aV]4ViͲ9q YТܬMo6mZ\8l?\ҭ+qıG"[PYN>uy TƳz^햍3EjN\"njggC4(%Q~XS~Qxcja=PqD#*Ml;ﭻ/20 8sIRpq\vw:MVv-3xpPt䖅sfq;vR=˥n?Pwb07)\tA};Ms( oネÃQ¸D| ė^D) .G:=ռgeQ{5I'b߇sQeܴ$lh3pO$@$@$@$@$@$@zx*G%D\hBknKiʫeՖܬ<%oшz<{svqZ\oa5kCl-@Bd*PyENU=]NG iyV\݊9/[>!bzJLѾ#u-]o7U.7+&]}f|Ц8y!#[f4>yӕ~46*iOr!>t }hmjBY.s_Z'PuIh8M=uS$vK9:j~6Zvu>r+楥M$ze[:51P'9+$@$@$@$@$@$@$-~OE -( E,@BC>I,&oY~_(w>bq9wC>YSȁ.|WqQ/ҕ6xij0I}G;,< {6 S$ĉHMTZPϊ &g5ǚd\tr$԰\G'wYŌV X;>}hiW{]FvfB =ވZ}O4 M?_RSL1ҋIuZd'FtmXSGrVȫK6&J3b3ܓ C@}O=ii^7k_&J ~nOchr3N)^*'EB!`sOr@&;.+w:Q71^/@Vtn7+rTSǁRw=BD[^(2+7x+r)-EL6#dDDі{-W38 d쌎6="}&J5UiRCWrϠ$pXLb(v|(70JGvvz2t£]BoU:9.Jٕ$f,= W$"R3^:6=hoE>*kW vlHHHHHH<K/=L-7 W9L^@J=#mݣa@ UORcY(8wuYKr޵ "^aBx/m9Jeжj`F#BbxЈbR @1#cvd>++l^-fUuڲK56(ޤژ+g})OAXزIi^}C5hU#+@&L<ʑ6QY<eSU |8YiHMD.o3tkr,{wn_gؙ%b < 33HHHHHH6\iFZ~dřT<]hz2l Lآv.< y wsvaoq1jǛCE,<OpuXpш] (O5x`6,Jց"c3Լ$ .ԫͪ>*x|b (] {Tר=qYYxkrfqm3vfP{ȕ(!RZ6iaxRN2mB[VkGcT=V{ .y?|$k[[:Q35-B+6,Ԡ˨VhBČ=}B<*\SiV[MaaȬE~ֲ(.Ej Q϶`{yHHHHHH֖ |?~6^=[G{Ncw3._AwKc`Nߓ=6J?Ņ+ kʢ!lIGZ:*wb-^+BYV8V-]e`SSxԃdө3qv*a ,tdX^-+ ؁B6T{}bL{O\iCqNI|DNi 3Cvxn|Jz<ahb[ ׄނFzK1%.&Lq=m.h8cϥ1Kp;*EwOlؓ"\ɩ<H/BzͶf%mLx0>X }u!UbbE&LT\8mk"p\Bvm2}$>ռuw.Cb^3,h*OCN<"      D@uN O7@!u=-8j(1MXm]sh;wV݋ӄxXкIU54*ƌ6\w!(W^5qڻO?5'eZR{t_`nDŽ׻i[\8}@7ˇmL>ݪչ:m#r(v\f~]2GS:aw}k^XpΆ! R.A!Iʉ961cJ:LK%xP2v#6J=TSRS󄧺g6#Xg2N} ߵhQ~U#vK4A}R,YHks *vၻ\mwcA"5.ų$@$@$@$@$@$@$ h'!}t)HF`jz[6ca9&Ǧ=j坭vhUWA]:q.?غ4޾A Y ri||hk?ݍùG9юV7X&+BSwꚻP@6v}nŽH]1,ߟC,vhjsSȏNgKbЀw;%c'zzY;n %bC?/|IG N%\>Oo<Lҟ*{@gGoRpQ[T(7#i0]ELyÖXe8)+9W5 c*lԵ`AXx<ub/6W7&b,uޖճZq1<("ީN85-8*؏4m4{9en!44QҐKNq>rq+Qubo}ԫ y> .ougGUQ߬z+"㜶#·|O"ngӈu~6ĵ۟F⨯vr߂.{ح8rH}'~>$, 1 HJ1 JwP]X)FOv^Ƨ>Py/ƑTCUPok@Y"uq#;EڭF/QBu]&N Uڢ_~Ft Ob{G"1Yԭ_G-b(65m XbJ~/r?YY2317>hĽlTd&]TN->^]Sc`ڌ,Jr>\s98:ЉNbbnR Ŀк HHHHHHH +̤ҲRUx &cai#bPP)S@x'PZIYE>v7񖄺M. Go $fEfCI4.O𤮺pXIS,h6ҍ)H2hV_gQe2 *GnCޏ̗OŸ>u ;M9<T-Sbײ^)vv䗧.E!oV$x?3<l<y 3lyxk,eb9lYmjeQv`aP/q[]}; b[բFV#      N %Mz3W2k]֛]u'R㑓ND6K}-qx&jֈ+Z/d3ým -bl);#ph[7A35/ ^ EtlZUG[.㉈6c w5|w%(r8*l+(FBtvmGy &:bX!,Fe]}hl첎/7fs|d]0`'\j s9_ صg7L6CSuÝ=އ.IWlE2"q“Z<闾]ĘxlM8Ǿa*;6[a5RJyځ"˃d1g}*fܼDUsȨD>1޿jmw"-su{ʉƘHHHHHH<@CG}zlV1:2b8-6sxiEgCxT׎ʆa*d.XxVohS/dÓ.^ܓs zL[x;jL+b`~[.N  Jc[d(]huY7|E-("y}IQ4E%kَqNgh4`0= `y@ zNHNb'cǖȲeɲ%Y)"^n"R$Uȼ_ݺ֭{)~KS|R~uYB#'}fgaTe~cK(O'Je}DžM[@Ysں\ktYdn/jx~u%ٔZuʵ9x+M׈cjGSk yې)Ŷ 2Rhj\S 8Cog8l*n:q֌b:2V8uĨ] _wd9u[˙γ^=`EiY4&1US %     XS*+1pŒUVjT-~_m، .as^%Dwv%׷:n=Zcn5p)HHHHHH`{53J$@H꘎M`R[wY&X?>Jɼ $ މ"tIH`wEvgFݸv3+Hz"@ЏHHHHHH#@wtH<o{q9rb=R-cn|;<#;5!      +<xF$@$!~7# ` ׈Q1 x+cçnktZ%xEϺۊ ے9ەF`\$@$@$@$@$@$@$':ÛF K=g%$+PR vf0j'ѐd }EAHHHHHHHHYqIkYZ "@*nfHHHHHHHHH]!4QM+t0g$@$@$@$@$@$@$@$@$@$@"lVԲ&ᝨRd$@$@$@$@$@$@$@$@$@$@QF$@$@$@$@$@$@$@$@$@$(4x'<%         p ގ0          D;Q. hv' $ މ"tIHHHHHHHHH%@8)HHHHHHHHHH QhNyK$@$@$@$@$@$@$@$@$@$(Ia$@$@$@$@$@$@$@$@$@$@">Q 3]  <0C *m]}{1lHMEjz[|sEpBw2u          !*mٙH][=6>)䧖4 $@+A HHHHHHH!PVTh)XYssPfS'ۡ:Oۼ6zKiN"$@$@$@$@$@$@$@$@$@k=0|wi<FoedY$I"b$@$@$@$@$@$@$@$@$@$?ʚ17?nEGeܜ=$$(@$@$@$@$@$@$@$@$@$@d٭j˭$ƚ4xKn          UKU[tTHHHHHHHHHHLo3 IHHHHHHHHHV-WmQq          34&         Xh^EGIHHHHHHHHH֛ONv8QTd) wN&ԏHH dWžz3"fǽ۟ے@C9L;tu<0 p#/LX/s2_ɔDBNϴIH3xؽyST3;Іg% P%KK{:G [O$#a$A-(iDmWk4x'AP E`~6`Y7?*t|:^<qoF6NwtpUFYW4x{P*)5fk|gʽ!M7r; wq<=@2jN^HH M'E|RM0pgQk u 6qaI[̑Xe#8K8K[Ã.  $#PCeVϹbvhh6'{3u_\a}Mce'$>2q wѠ"5sds(vbV n<9|E0nSRUo;ye  @` 0Kq|bfݵc|eSBc҈IHLLI~d ۼwM%iB$@kkwح廋ֿ@ĘGc A%ܸ(Yz <VsuCw>vՉ;5hz]Hivg\VIYxHH!Pw8Rλq&&:18oFƕBV6qnIH 2QY]nQ|O#rLD6.J>}s  E` c yGU%؆@3QU.Vm( I}8k#& <8 ˞c>xEv$3&N$@!$@$@(̟Q7CZ!Y7׫HEɨNC$@$v[fw{5˱vhBx1tج*Tb|~ -y SC}pV^p͵HKURX>\~3Խ5Uݲ,=??1t]"jvx g`Q,,bfjC}l\u8#ӳFD7.J%C S>ލ|lN]i<ăӘ/%qH <<ouhO$_NiMlGuzX~p?E"wNꋳχzԣ)J}EՒNٌrʅ'PB]Go[#a7򗓉={PxlgM8EQ<l5Boێcnr[Eؖjb[v&6mwbf7?NX{7K}Ȩ=;J[nSݸY/a{'kKq*or GzsOW^m:kmv^iZuUn[E7eCy;x Wb.gv=~Ab;~f ;L}òt3؝NtDZDHuڹ'YU{4'/\X˄?-G[W];jn,qrQZ wDrt̥k-Cnv;qQHjXJTKm_25HH'oc6BFq_ښRCw^ơjürNk9>GmZirjyFck5Us\ aǽ(;yDv m=@0. Kty( Y4iG@x%;;=ϴ[/C:H >c(L,gfYvS8tcT6qO.}Wİk=uCGм_T֣m~߃VA(݅OZ" u UZ/y*WӼ&n<i3jq6-Cz>k8M+oe QZ\~׸U/?rb'pQ/s=Dž'^˭*YXo djxGO<l]!uU_cLrjt7 ֏O k7v5H1jOr8n+jT=_<o}ۙr[`}rLҿXXm4xۍȌ=)=ʴs-j<r,A^ﳉznWЩlPYi<O"QPQ[ܴ]+)Zьo?Ը)dyRڣў|֠F^*}򛟡{OgL  @@۴Z4o]2X}チezw#[s¨9xz99ٳW&T }+E?u_p%__-3F1n? u<\jC'vY%-*k @%okrdS] 9{|dOGZ)+i(ֽ4y%q}ح_߃/O0vaQw𐘎;η2<1Ez U1F9R$+2vkJ?O޵пfeM-ze[d\*牧R4ˏG}P%{v&ڷTX;E:\>!ߥK.lW>;3e}47ЁV&T2bq {)N` ęrSc>oC7}\]h6i~8%n^qxRiO&n禤PXق.ܒ ii~ӬND;P :6t;2~w-Ds 04nz|IFø(N+' T!͇Ko  B`gT6rUS#sV9j2fXkTr]XhDE#W[Zq u蟉/<F R"a>[t^F* x&K+gp+eLܱN'?ɣe_}g;B}y1Ov'g7HZ^̙{-:чH@Ől>ZNٲ<EAVyahU='L&ٙe7l);Ogם8W6ׯ\{O=>3/s/~k(x+8_]Hۆ-:}G}WGEWFݞ ARYx ^on^@'hpcz>= |Ȓ$_]Twxw]<X8 >#9%hu%^2pδڜcXsRGZOjRv'qBLr1i/0x-/GPֻB Ӗ^rR ߲Ma&n*+gP{d|ڍ9W xԼ*j\7/U=G9~d$/{6\q#%bLiuД[}{2txD^W|::,lF5(sKמh>#k-t@Qm\ݦ~5r#v[C ǩњ+,rb~|}ĸȥSoHT\S-%G_տ@*D\w  I ,zнNNGYi^@9vTzݲf!TZmæۯwӹM)/Q ުQ=lXxk*?=9ʳgmj^yp#+%!{=ԄLGfV&ekTO |WZtIt ĉ@ձLJ;gP'Ƈ ?d<cO̲ts we!Q{sA*-ӟk'Q#oA[ <҂w兛u|ڊ]l}{c\\{D,-NӔu^ř˝DteWNY[ >"働{ucȮ݉/#] ;-aHg !?#8kLYՕw+/KsŠO2Ep>K}k[Io<X$_YYϯTshUrU3{j('ە[Bm2[ xRgq/L[h K#x S]}mr]ly;9حHfN{2~?PAͳ=#GP}otvzq}+~T߅}Q{S_ K~eW>c It(wX 1#9yo7Qdb5wMBGo]EIw\LH  Xz<@[[G_!;Y+rՓ۰e( cl!Cw^/Ln-xK#,K;f[o(2sqXN|>dƯxHL` #1VWfj\U|z;V[` 3kG:Caz>48gӘٹ|K{GK&Sw-n-[iA~C[g%L,[YX#;99ށ$?~WXQ-i7,H lח(G~,T6˧PQsW@q;Ћ^r&NH&~k<_|Ո^hY7r>;/<y&4P\S%Nȋ2ȥxS5nID[|[vK1:觐L -{^y`5п;ꪍdgD}H&ՙ;Bdѷ4-ў;711S|9U)Y[7C̣L:IH{wX͍уUiv,oRxXI[>mzuPC%;e漬,o)Y53@-R)N+k`>oNT<%z'‹ۅCh~/ks|G OIEYF3>gNo$Jwe=o㌜<'ف :IYhRHU^r[#XL1(+H]ֈdˋEs>(mlɮ}/9i^(@} G_Ru)e܃nDZ/xf֤'ګ%CΉvI9(9uS'f2)a3.+~T\n˚up =Ԏ/p%V<I,뎪~/FYI} Fj}cor&Q߯Q^hKmY<a0|1~UW~:O4G=C#r0sY9DS'Uo'=,m'A 1wY߀{)zU 6x3hLrDZ#xu:/Rdͳb=-haE58*{o_pviK$ovg--Usat-%% uru<Çqԑas*f@COv1<%.P=꘳@?_/l6pko-R:@jWceE^ \ĝ;shm|f=VyeW$sbe`K\hFD9O\Z}<WV"}{\Gpװ{=Pr_=WW߂ !.?#xfJ:'%pev_>K"[ NY6f}gGvNP&<_(۪Q)/F[G?+#Gz*h,i^Fhz1BH/O.Xr%*8Y8e֮vrdAusI_3Pӗ<쎖. ʧ8\Z(A+{< i͏Vxgt|{Qk|/_߽`cNÓ !`YF9rx9X +~b$+# ʒ?4R}>rV`{|隭lEl`ueh &85xπ̠ܭVkN=doe3;+[26Knf=Vj}F{x8bG乢b<?+6yFߞgQk ^f|?_m͒EQ'C_)uۍ޵Ae۸#Yed̡*MUz]}atUl׭r?+t#?!BZg4㛘`Do{eƐ$@$@&eɒkFY# Ϝ Or&_h'A~3C{ uoFr3ދE6C#7R~}( p~{ersnI$ͦ͌lV9L&1Xdd35 ՕtJeZYʮ (Be2qp_aw;fl.}PMYX'.kLTFfl$&lN=^1i̭yߓ=ܦvћxXdP/<; e9`}N?ZwkוBÞ(syii5\e#C{I3aWdLjC}Vn{b~!l6,YA/(GPU4!eɅO xp|H??8˧zr0];q'o?q$ 5Owf$Z-j5l]y'@wgS7/'C[ H{`t0 W<N(,xG#' k7^P@$L\ڈzY!1{ʊQ/4k'_x5 fL?K>o5{gyYYp((/u)Lfqwd@yi|dV<M/IVgR Pqʓ2;}D]w^஬ͭwV&4ȪCmz\\Dp^mZ%xùr>'ZN9W!cU@wK{ ף_톻[\xB^$i*jj{Nc]JQ3x.&:cO?98gI˺ @IDAT.rsqQ'&  XM.مM"}kag!'0(aw46E5tCԎtwФy0gyd<ܟY4<vy%nw`pA$mmYh|ؑ k36`r*n>S5 ~AO|/~x??e$5U4++9eM>sCN*fv棡981)1 9$kJLV}ta)j4) $0-F/{ C;FϋĵeJhNM ޙTƩr>'J%5UU媒ASC[ٌK{hWۺ<YerFYE.vG[7,/*eq=mc=-h7~)_!D:s_;.$@$@$|bm'م ]7"*Ť}s/B06jԗPQT׀HЁgqe'iUo_B CؘY|wM)Z? ~u@(yr'n719]{q0G{-ڍ) ryHaV12kp18:-d#RT+o~}hK>N7wdMȯiFsscs\w`shvit̷Gf[{'/f}lLGcJQgvx/KvC}XJ/E()f4p0t¹δ,vmrHAvTYyU 2ҸNR_P:5|\wƤҷ"#3y(Ї=nܝ<"5`kYF`pܦj܄x4ݓL/capKϱ(8UD=puU?cH71,_%L?XÕ8mW7v!dJ?hW]@_5-C 6f=zҍ+0j#&UJ2벵h=2;a.ǒ~2qf?s㛘uEԌHHd_gd@ Z/!5QR<ֆd5nap# Opo1Y۲ Exi w†7D{\x[ӿڃJ.v|J= O>-r({5e\S0vM$?_z _FC4@_[$.Ҿ2*=kʋ*/pa35offG |m)SuV]:* l+Q? F4=-u?Gwt}|f[3Au\ g?흨Eu_yA;9?yc\/_q,V"~&6oTz۪Y#>c1x QXbpm%S޽'սmAYNy9-ʵk`&|Gu8 } WzLkm?截>ǟ_Pn}cO?x{UC!:O0R7tn{ ׬ꎶɏ~EϩzĞRӨ<fS&*֯sYh>]hzB ._tj!7^TQM?8dZ9q =Gysf\d ޡ뗄fs6!.  GfŜ"y LE(jf뇿۟˜ cb97Y9(|~\:u 5%O`'O/!E|LLMÃP15:!c^-}wW~|oTƓCߥR H f˭nPM`z߈T Nqsuo-O.cko^~%-.9ӯzb6V؏wy='sY?UHé{~NmhsvgpفV8DYY+\y)?}\mRZ>)~SVn,^~$zv#?YWd21;{~u`|CV#} 6?F+ Ϟ38Y߾[o엳ZYǕ_n{C >NS7xn<|cm}`?#}F[ o-7cGBoViͷQSy}Aֺ^r't|SսvWr4F9X= w]I<MLS"WneF6Lfݗ  C#ǟc쎍ʧOa^K*GSV,<X)Ӹ6kMw=odJ˅zYcs,SdgWU<2]ۆL SRnp8=K0u&O@ݎ*=BlK6*FlNYLtb`퓊lo15KSoxx>bwj'ja1;ڇpb9,Ʊkxg|M*k4`~y,r:fGsʱõ 2j]]nC\ʕɺx0އ!IrȒ*a~nbzMTصn.gs+zkd ۶a4EmZY?l7!$E{}b/ƥ aЋ~e#t}9;Vw&(7vOտ`" UEУo[Gwk(=ɞ'um~=O6x `ׂK\+#h \-Eϼ/nb u3ؔ֐1䢝|ۉcv׉[cE%cA$˵`ׂD`WL<G$sX9h~J.ש _ԇx=>cۤZ\=vz2V{9پ@+XP%ʱǓhiYū3  5L`Ŗ4YÌu     @ *˵HBmV2CIHHH`m{m;sM$@$$x#N`}v#$@}CwHQ"f+'ۗ3ck|grA)$@$@$@~ @\ ,i〛05} '' >;IAEz=76/r53   M+CWIH`pnU       G74ҩM+9`J *&@*.<N$@$@$@$@$@$@$@$@$@$``A *&@*.<N$@$@$@$@$@$@$@$@$@"1ռ?&JtiCB         Xy.yݼi'e=6z..,F;~O4% 8M@۽iG$@$@$@$@$@$@$x`iy=/sW*cS֭ÇXX;&z %,{ؖ1znIjʌ{c-iI]e :HHHHHHH` x`#شq#֯OI/.>2#= ,P1         H@=;7sie)HHHHHHHHHH  @HHHHHHHHHHb&@w)HHHHHHHHHH  @HHHHHHHHHHb&@w)HHHHHHHHHH  @HHHHHHHHHHb&@w)HHHHHHHHHH  @HHHHHHHHHHb&@w)HHHHHHHHHH  @HHHHHHHHHHb&@w)HHHHHHHHHH  @HHHHHHHHHHb&@w)HHHHHHHHHH  @HHHHHHHHHHb&@w)HHHHHHHHHH  @HHHHHHHHHHb&@w)HHHHHHHHHH  @HHHHHHHHHHb&@w)HHHHHHHHHH  @HHHHHHHHHHb&>f @$@$wu;       H .K=6"5u=֭K9XXXEd8;J: HCLO~ӭbRҔ]SKTTHOo5$@$@$@$@$@$@$@v ~ѭ)XYssPfS'ۡ:Oۼ6zKiN"$@$i# P$@$@$@$@$@$@$@?7;M7z.a(?&Wey[&i @(kv+|Rssc8? hyf-Lkm.!IHHHHHHHHHV-WmQq          34&         Xh^EGIHHHHHHHHHh6ӠHHHHHHHHHH`Xj5$@$@$@$@$@$@$@$@$@$F qo+%"tHHV1 }ImI-Op{ʔpMA I z?[b0; ,.bv]? `9s9Ѽ8x Ҕ\ph7wk,Vc$K]XI=V[96}ÕeN> ]Ѱ[R"ϭݸ9bN?Į9t]!oQE@'HJ0K{:G !19/Ub$ޖ<F993CH@e}rO%G.]r }jvdz ]GJ2ynTc~7sG)LB+b^[k3*<ą؂܊:o_>ˢ#{Je [<Jcq<F)L43R,45bOWPo̜ .?;K(@CM\.deaӆ X/åLn;ԏ5IniA45#/c(\Xݾ.\:}1x@Y|};ĿۿqDN]Y*fs"ܝc"\3_A'<ijO7EMiG g,jMna&GY}&>><<jy|ʉy H@ǞFjw .\־aW[e@Gzi_pcJM~\CJVW%<c11x[(l%WNF?UhjԹ 1Շ]F]9^N),ۅk<bg:?a ۏqme4"/^8NZ8;"o,po0}.?[D/ً.(+ۿU,Z{O~'5C+&Ք߾^T4OO/t8n^w <^ ϊݕ^c70} esl.-3ؾbV©3H^,W&&FOM_VڱZ3_ "P#4xˋF+-2u DH$yz={ͼ,~_`rؚ~ W\՚Z"W<7[ SS )c!P^NWFi m؍gH+8yfS ۵/mӊ1w"v71v{ w<9ʳJZ)x7`ݚd}YTzk_?*'q7x]DǑFsQU \R<+;agfGծ:1xYjj=gzӵҿ‹Eu[N_4Fz3"˽,ahb<@z @z.~)lR)둖r((i<HSWcOBW.Mb$ƨ :&do4oxM}*x+4G OUЮzloD'ӯ<Tf3 8G68w$ƳIp>8}o-yKJ0BԵX(7kg6njz|ϡRyM>|}~On5*Tׂ`X˫Qw%5vwTUbm$+U5ꣳ>(̪z0O=1og^t @̎N›NeI<qc]O+=]Cu( h<)o N @~cB$㇅ؒclG^2& }\dҏb%(~7xw#͊xg$}~e>.;̱Avx kÏПe':?5J"Sxt꛲ߠWTpy349 eiz G޾rz9߳ۻ:GPs ޲Hk3;kΠ%5rkqno˱v{#~*<M;LrtUEyبl;Ѝ6Kf 33x "gSj Qp֗:(DAV*ډ@җ,͠b%V:Ch-DCY,F>gIa(qeYLM`3ᐲKA&qmDF X෍ۗ?o'vjŶ,G^VlN@Iiwpӫʖe© 7?\lL]1;>3C~ަl Ұ^`})րieӏ4=ـҼLlͥoٶ1(QU9H/fȐY0-`0}64Due`s <u'e2&zŹ/<rq.KR;pj' ] :A@I*(j-D~]Z}pj_T?GCuߕQ2vuL j-:?:زfE$.^em_|FDN@0QMxI]|0I ߹Y?~vl }^()fs(w s'*jXR<?hoQɷh}1G/{#ھ-So;C 4BuKm,ƒiM#W&ߖ̉i:C12Ke=vBeIڇZ꡷_i:R:\Z`7.P+5"}]GGh&q8RncbnmE?BchA)Y`E_"5r&[L o\|9CVN"ύTCbE>h~yCxɸI ag< /j/[f?'7<9(V P]YxMwӑ-Nى[CW䍪Z1NW,Sq*ڍ*g+ U;qm5pz_mo892#y]Ď]8D#>z=i5Z7lfkB.U|8Ӧ(܉iWqaӼ&2]ݚNM+G˩i<gKh5ؽ o"(^~h@Jv4x+yZ0~o6]$\k*H_]VZyyqTS7O}E<!\jوdw>@n&#,GEVܛo\Pbȫ;O@2F9*D.;s,\1|riBDWpi'5&ZZ8$>#oO}hJCFpWaOa(+qu)~h5gUW})5u-eVOa oMPXVdzpCI .åt엥P._BC]9{M6p{iڪ:[PCǏymǰ{uVJ|uJIYOœOg}Z> a6i==}Qlʶzb>^iW}.6St-zjNƌ}[K[zH8qI| ,{|[mٴthM+v<@iOZc֏Qp d\]Hm:o0XTsV;P8u]alHWpnj=kj> :hXKWNUxi =)@QaFOٹ1dSeE_~\O ;@ħ2_{Lb,=j/*F&~v}%ee0\Kd^(ZQɌow nԭĔR_t$LYcm]]z:;+`0Uh 8 |:U2(%Ux VczLO|8_ͦWI,G?حR6yǂ es:K8Gz9:qT˔ׅG! FBS D6\+VV5ۀ-x`edc&e#'2yNq^ߺ'8KoNV6_F7h $~\Od]}Gҏ%[MNqQf]E{ʃ1Toc~F)Dy|=&e#G7v+f,ApKU=_C=en[?mq%\#}=!߰V!T68v?K.PU2_Q_b!y.),Y `{QBlܟA77=o#N[xN;6eEܦ:`ڏ5vsr8?o<m|حHCQ9ma{Y_ ֡kVf,/[# uXS/o ~QŶ|9 }X<AsG0veQ/MJ/-JA=^z>Yef$ -`o,j}kn)qpV\񛼋K+-YхUդrWϹ=gu%z.G.7\5E'Y娕E|3`Ʋ(]XhإǎQ7Q&xݷqS}ͪ>Txf}.Fp)ر6h|ٷ/?}'jԷ>5^v7}(3>a>[8T^PzI_P\}f oଗ!2eb4 ^u.=/. t ě;e4z8`Jb˛|4{Ǽ3Kӷe{ j7bzn|/e41!iUA<S3T(Kb\RC'7ObokE3:̲'Kv]NߪwܬW?7^6ɘVFsw{^~JMb oCo kzǬ`GAV;N],ñb?^ufGf iZ Lg?Z+:hO:M yo/J6±C2+;뎔?\/I{Vy;>~2<a wjTD.}q[.o h@3_ \^,:6.x d䠦+'v y}_W5.ǁCFX|k Y~`~<ytOѵ{t]ol"};yN1JJ=?ԾY9%|ACu객ڛpy?e2&3f3=/i/_Eb/˗c_/duf<Ҳ-uj{713. ;spu0t6cvO9geyޯMfvYE٭w6sE~z}0,[Y2Nݔ\it;;/hx0ڋ5ȱ{SӺ3<3ɄK`EYI?î/7ttl$7]_;`M_ ? lޢP{::@~Zjkv [_>&uwM,zϽ뱯Lf7yY^t\Be7wC${!~b΁߿_;^uhdq oi链~1nrmCӇpurfa Ob |>3o5T{9g"GZPy׌݊v\ |WZ3 )!e%o!3>$;oGߵ}g-_Ik9;wᓫhF`#߿.p'=ow^ƣh?i գf3\g. qŚRF[LDqOOM5ZRꁾ حD}?+wߍg୭YXh|2AR>A˲( =d|mY{<~=?s(=y ҂o~sQ𶋴ئhLmG#1 ICIfVғi1W#vNq_ķW<;Co/#I3v+O7}AڕS4͎|Qf_^wO7/Nf<twXs93P#}'\z%ջmgo_M^6k5h+GOmoܖsPx *˒2qcv{peb99Uc4 h6۵egJ 7ߐ*)~~ٟ[Տ,l;e4HkA~OTͳF[ H^%} 7n6u5]'o2y$3YFGXQʍPqӭGY"/kK{Eo饯9!vȌWT~? '7ӈ{z_g7!#CmIaΝxd֒C(7.k'o`_wdE/ #DDK1(L-n-5c3lQl٪,.hb ^F{̶.,BGԌOsC?cru+gR:w3q">#ͺpO6}YNGǔiY4ߖ#2ݗ*] o!5ba^y4=FnĻ,(׮?JH7+|~9\\Vn̏Ucv㚏;ؘ`B,%}'\zNh) \|+/T caVg0~<ӲYhLJEf `-nٮ.'C!.xf~{;8|ťޅ}w}6Vv>ю|dCʻ՘M*n94w>G !L$*6ۼq'tJokQ9bQq,WkDg\kprWU.vYbhsc`:: 5.^MeQo[E"r͸c7,.yghgy60M2-6XOtC*| t2 hߍ.yב-]x{@;Z_]Ha  N8fG˱N 1ѤI^E=j 5BJfUMr{TX޹sG=pD}qY"xz%:}RQq3:'}cDWi4A2NGxfC?7ɋ@eYQlc~tw3W*MK:1O,9Io w̖/V5M/óߔrd-8{ݭ^p_Ļ _l툵]tҔA;&ΪX_E,;sxR[ԽqOl*sO_/vnYsյlsBq>vC]ʠvd?#X߸OoxVz<ƏjUn,l;vel 3_EUZ݉ƽu/q]xe9Wp!`5tfV/kOV_Y?O"b)N)P\%k]̽i7!Y$oo=rUQ(.gV[emהz[ț.-9?m>Ř4(.ιXp\ʯ߂V<J7ޯxH :QudCajWwգeT4djsw0?cf?,:u؍ɟ?UWOmuuz%VU.EyUs`DV?Io _׋Ut*“׸ Z0X'9Z9Lٷۮ{m՛Hyg@b7Nsx$;{-X#KŹNh?P"c/T0%07F}VYQscE,:.ȳ׮W| rZo5 dB9s|_Z<ث>j8~z-KQ߭Q?; =}1lzǷTuAɢ^UiT&bGt\gP+u'_| \}~)ikkms~.rIEMo0S dtH$L`E%8tpԕ7^,˙tD"&Dxl5#KT (s#}!G)1ճ ?3Tt=2Z:t !pN>t,/]%ˆzAfxofr׎ O3^d!ܖeH&;-߹:tMdww(#{P%)s,˅O̒~t k"Zg1㧃ؐb528)8Ḳj4[\)I2)Z֖X< L t'CxDZ[m)1޴(3}Û7աEIgG뽹-g+G_o,C<)wRċ?TDs./6cvuӢL~B]vWg@iE߮ecv?و;;Ivw1pǜ;<T=NVE\QgYy.o,/}e#Z oL2E}I·eٖG 7=t ŻN&cE:nY.#ңmQ岬3'ډE'f*y`CtǨO"̇Rl0 57ﳂ@އWpGm^h=@ DL`-z 6`v5O~~A{^M&2+7,LflS^JY$gdDob](=@50v6IMFe2sLgěRDK#>nw)@; &Oy(6vgRV?>Bi~4ۋ.; b3tv9o_J6+2 ,}rF~f_$_(;nh[r[ne$|G)~BK\ O٭ ;ցQx~l5–*hy^r Wu ;a64Ŷ$Bu٭w~ى#VV"x>Tмydd)?=|YN9.cO Lϋ [ q=ܬ,x_/-=7{&#Uی15bKrjڎ]O1Ant\lT#_۴a~iȍ1=0qv- ) ^-dyYvP]1~wynz5ؙR4-^å=ZNaG "U]y$W$ ! ^tfV.tFUOtDDLGuLtODtuj*3ˮ, &1cB d!Њ6Ϲᄏ}{Y~w>gy甿K"Typ_waalJg얊pVj{izFnv8숃f%'#fbDԳ ~tdkMK8s(GiysJ CxgO7z{1~>E,P(nGy9Jw1}5?7v#TZpd#7: ViVg;۶ Y7&(N49GT`MSCqd dR</l7ɗ4vn|=.{߿a\TƈWލ\{G'Ԧc-Խqv`quZ><|[lVƲv8׾'k-\)˙Vt>t֚y;y|;[SoyyNYL:^թIHN~j!5YON(iz;,[5It'5gf$<]q64ubA+qZ[BXG:Kj1]*rEyجYY91PV 6Et 75u9 #*EI!N<W--Y_݇ F"{?`'e6L%. ͒NQ#ƴvmf݃E1$d"+l(-R>hRIjoO5ⷡ؜8rrj/h{ܢֱ+MI(sgUmvWMs3ZQu~W(aUb'Bb:^Iި ?uS6Kv -uyb$UZ_sߝpmDm|"+bjݐLڧ|] vCd Qh{.)z:'EO˳>;F1Dg懪R7;NR16S8^tP ]PԨ7{n|1.ikWqu$>>mޑ9R<զҹ5;jGrVO%@IDAT Qn}/w"x,;NӍvgz[ .}+|u؂ޝXYfJkד9$'Fzj4pX]{N'Bvy<t[O=yRbZJQ{xⷠE|Ky%r.(ݎڪsB^]SXnټ,>Ցt^y?̤̬O]e6ngv(oMH͕+hyA%M{E_ܪ H^6)^{Rb k6\E.NZlںhڬ--@vf4ܭz:ёfm}b@;dh½yiAX0**-8C=-hni3z12"ӵ6+ai;___>m$@ G 9/ (X3(4 (r%gpG#kzL)<!dn[Lo&T*ۇ UW`k+PYXRycmW#5HRE^J%kzU_Q]nJ:g@)3=~ wG˟zbmD$6!)yBpT93 6FtR|<e7!! 'ΡM1Į藩 ':aHn}.}>{>箿_rvr0چ~<},?VKQ@dVwu_MYà Ҵ^L 8OH3 f^}?<iŸՔKP:* /gHxqFF#QM[kb\x<w܎$c㔧@d\r~$Ϥ`'z[w1J?ڬRV~z%IH2Oti:[ ?9۝㹝b[KS\9k_%/Rp]'u]<؎AaPk.I?x/_B@$ +rV<P'W)~wM0] aV[i1x `n{!k4KVC/̋5V3:M/U1.8Fa(0O)RIǟ;{u1 QfGQyɓɎ1:[q/cBP$oHkg`w<,PL$N>+>t;x҆u((SWAvI(7o dw>o2cL']^bv(82Ynn} Ryz5mu 顏[`~/ǜ{gX2vgBL&v GOGǰKV.A+>b1iz<'nR#IxsSgrԡlhWd hŲ^w}bK?~ލV>Ś꾏*WI_-3kxv eRb΁*ܼwgK݊4J8;d~ջ'soe?o0c} *3%}(gsyBYE;o\|\*?Io9Nyp$_/C7954c&y)fZ:&e szn 'i2=IX_o94qy;T_nK$z0,EŠxg$_śR:?o,3 l7񁭽+ i,ǪUWLxeY[{?B& gid9 /}<gҼ"#s÷&hRp*~4M }s5B+b;ޱZ.5Ξ-Q xi* Ggt|aZWGh|/Q)7`gmY;K(x&L'{9 v6μ8e-qOGQyWcAFӆ!6ܽnD7}JLGpqAnKwΡvT/lZ(3,8 ߜ'P.E'/73~mq.ҪԘ{`U7~.ol5W OjD?§sbV&ۅrW$3? gliLIUu^ZoO S8}[LH0s{O4]A] ?_cOޛ#_{`Lڃp"-vў,gq}˭oq}A=WO.7O{n.*DKlR2 O-Os^”ۨ} gIIsOہ6X^tٕ@vj_,Mڠk6_;Яs:!UY"r& J]yHkI:r<}{<ip{PnX3ۿ⯸'wOxBwx^Q7w&uYGk&-U} ؼ'UVH='5WuFBk!tv -uas_V!- މP6kiQP`1׎fiBOI&6D#3n#JC({д~6dЋV(yZ]C/q/Q ibHpl^̢7i+ b׈Gn~ ͓G.UHC11"Q<{(8$#ILyg{# x`%^򹪐xy `-s}Yw?}i DN}ְy K}:Yiq:Zџ\PrX;:LO7a=.Q"c0gZ-x9/,_{iŦĺ ^ Sn^͸aKRwҠ2ۂ.- ZnxRhc|;uphX`W~:!j[VOIxE3{h E~aoDGËgƛoN74A o9h#SI1|)Ko; шItĘ~y^/6*AXh|j5"BgVvg[#ؔlJمɉI\g<qX4EMInwR>7Hn_٣mc#ںJ9H^ӫW.P%?-+ڊ3҇fA$@hސJ"j1j܉y7_/6bv17i3hzU-("N]_yؔ+~Lĉ`Y<u^13ئW<Q+WىOI"y?(k@vM|<>{K;jN\ox3.;Au{C;}>/hʇ |L[CxV=$ yw[mwJKi-3:.3U]*uۈ؛qΔ}6p4F0gl <.]-SNxzx^w5^ܯa˗h%M"  +zqTk/e]Ѡ+9}/h~Zх'bYDژ l+u)[a%bٗeT,J@X'˓܂V7brQUYBl'8%DXrqX\2R͹uĤ=e/EiKO} %hN,"ҐcGHyln±)wcO_ܔ^|/O˥/RuQ,6Ǖ>IL^^%Z5.lVDYs{ij'؇zN/n p؍D*L6p{LWa< X1 76wZ]pIl[ޏ9 [ncdhPcޖ6<W-鷢,~v. &E9/ɲKA ]=ri Wɦߺp.mt! p[QdnZ*E!Xݦ˷X2p@\R6DE"44Hlի052f.IHF^RTuQ%K )X`3;&֣mT/BQq Xi@)asJ= IHHH`nG?m+ݯ:g(<HHV[E@.~yX~HHHHHHHHHH`{T$A$@$@$@$@$@$@$@$@$@+ +$@$@$@$@$@$@$@$@$@$իdwy?IhWJ%         Ι⇭]Vňj*zL, 6 KO  $zQ)        L={y#!.SS [V,ghf$         K`^ ch;$d]@FdhВ&Mʑ LIE       X^=Fo֮Yࠀ-,d`M mK$@$@$@$@$@$@$,H3'&ߓ䦕Pc          #@wU "          ޞPc          #@wU "          ޞPc          #@wU "          ޞPc          #@wU "          ޞPc          #@wU "         @'HH`a d-l̍HHHHHHH`54ZjBCBիo<g0=3c;.hZ$@$@$@$@$@$@$@$@$@$ C Q |ӭd\]S TTH׈ xJnifw̆haN̢4:iyxXBCCL 4xLUP p@XxkHHHHHHH`I~ONLb5&czwOGǐg2zK˯&LV!#         얎ɩ6vK:J3'&'%mr (yftV[ 5i$@$@$@$@$@$@$@$@$@$@K K8 zt ,Y4x/٪$@$@$@$@$@$@$@$@$@$@z4xiM$@$@$@$@$@$@$@$@$@$d /Yͩ8 P'_>ᗒ=w/rJ( E ,Iq;{{.Rぉ `fcFtl\e$D>$K/M˨%     XSqaA019>4YӇHH@z xV-p;QXN/(A~[x@N5f8>()tWܫurc J#o'r[SPrD8)pn߹n9`  7 G:pyA < $avp4\v+W Uͬx\ہ{=^M$@$@$@$ ,[>)P;3xGh:">7Vzݰ$3Q< "A -qfC6ЁUV3`0/ٽc^qly#ܫorc &p?^~UrX0X7J ^ Öh5J(ZՇ O8s\bJZs|T!I 9>71 t4}X,4B묖sLj$@$@$@$@+ǟlxkq#TX򓀷맡z+I`1.`օ3q#K\ ہ{H^bl   Xy}~M({3?W\d3|z.{5BxU6ko2fAH<v(FfbB_rMN^<J"+%kVٌŴ¡|$n|~f }mpƛ&]&~UZ3:5 ٩HBxZ&9ΗwlhXpE.yr9 D8=A@秞TxzR/(݁$DX׳XG< fFuqeH1`1#t\q tK2M>iGۆ<mBRṭSQLIQ[QS(D;Bf&0>:FT5Ygh_͸Sg#$ܒbWsMad +EMH1(YL[66yKۉ$9cbUW+Fa{V "6jcⰵ4N\[ qnF׫Yl|o~鬬5cmA, vs̳ L1jv "ɜoy * pƠdw!>tN2LM*<L2GM<E &7kwzODmXpa_ߛQ-5'6Zj\V=Anzf0݌ *D?_u}榆PsW{%t%YKW/7.˰/HHHHVE1x#<.eeF v6 Cɖ(0O4Q%ĉc{I9[gW}~W r-RfKxh 6h^&זm2 g=@wUx{u@Wn>vg۪l)Q~ͥ)߃rDTO%M )ҝ-|ʦuk'J v!Y`|J䉝6f\lߒx U{E_C\y($xk{cN9ǏkQ+p(^Sw 9E';Rz4xK;,3^o/Vqn0v u w18.o*CZ_ڜ][qeܨ47y<`$ 1e⩏P5 %\c<cבxTu5coң8~pDYRX+7KF2cd z壻m27®;H|/nmT6mBqv:>=w5rˡԭ]ȓ3E&(tjUSV;@\]U)=h4ʷ~yu 3x2u3;gᮍjH/9G۝;R#ֲjM!|Z$f'㷿x6L!Y\+ l{]~F_fIHHH`y8{Wl+aX*%'~$ͪL]+k4vKdҗ׍Nv~GWK5, ?0vtvb<]:V5vK4z#0zz0 Y#"TԳ^~ѓn%fJ ^ɏ񆕱[v#Gt՟[׍bRyQ|֣)~m< z=ns|nٯ%9<0=DmhGiJ4'91͛ , aq-f& bxFWrH=׍nq;<{_^,0d fȫn%0<{+Wxbc륗[neMGj.-ǰ.7Ы$E+qs{bP<5?Rd^FEj}yʌn)xbSV68"!lZ{F//ۋ5pXQodA}ww+ͥ=>I.*桯'JԤmx7񊕱[=;Y4m};W~#spa]ƢHHHH`^[cy@,gjh߶"x]$[DH(b Fٚ]ǟGfe}h@)f!ݪogy҃8r@̎1s\Kd3SO-ţQu1܍h2|j3eK>oJN͓'Q(K̐m;und>gFlDb*,@;SV;y8,@(GGU|rkӲ+{[ 3VynsC I()^+m?ʼ6/?A0)+ۤf"vN\~ Q񆃍czL,Cf rc#2V(1> Ch /Ui%e -9= ƞt#mr"*GMgđeh>2cwV7ۏVgF$$f-K/H,<wg&p߮`hMFY yZ6\:ww=,=eHע\X|tKt1MKFhAw6pz.\܉oC;*%biv]Zk㪯GD`*$o$RGlJNA|EY|;,pE x6*OGhk7/_ 7\ȣp`<?R,[wVԮ; 3)x fhcܺbR]hċvآ82ܕkJ~Wo,[IHHH`X4v Ql3Wl}6Eӟo ]+F!-; 9[_0+XYQs|th|+8\܃g:cpm{_<o^N" %GP{$V\;-i4j_7g 2]4zSv V]#~Em$am֕Ajv _## ޺%,z UW@Mc߽/VݒNÍ_i^ Z(Ssxk5mn׆^GL2sP8" jjcZSj>C1vK^"~}݌P%[s Xxt m `hG{|pYz,-0劽}ӏ Fէ͕S~tlDl_o[z~wWW?@V9}zl9x*˺IYEloWe8sӕ7Ή'ta'/b-PA#RRƣfO>@5vK6W)~<2emUaVaX{4>h &cgXZ&[ԍ{QMti;=m/,c :t762V6`0xHQ1H~KڞC-E{8\Fms?~۝⨻'s>oeq~wjn<B޶\l6}Eҝ o}HHHHVE1xo9Cln g*l/!fY%)1b#-onR%VLxX4(-M|)x#\m1/FTz===mHռiF צU<ь(-C-bEu;_w曨k_6熆v iᦳ-P-|3v+PañA!DIb< @ fz&ڤҘW$As-lY6㖅A]bΔq]Mlv 7i[ wDI9.fq7tn5`t(H{<Yدh7n͇mR)׉wbXM߈ᦳ-w׃+n)u7Ŭx٨if$ ]Rtu%GPm(/G6Fmob|ښa?0`ݩeJ3vgmc-;lk .7ΐWdq # !_9,ea^l:Q-`Zc-7,<>R4/ԡ$iW67!MhBlRG񰭧1rBv7".:҄h$ؽpb<]6w+a+O} *|vjU.d/No%i㑻M=t9uDVUɚ{\X& %/ϏluYkJm.}b7h;uKI9RɘK5Z%{"6 11e4ljn;J<apQ9f݂1 =Uuv7j\nTI,A'DpBNno|D'ǯԂ^a0O.c2ś&jۤ>nrݽZ*]M'.>|eg $$;%<dR,*D~\o8</     %(2(zQlAggMO%85 Rg͹ޮ`{zJ mIԌɝ^:oJZ޾/uj.,^9B}?"⯿/ݐ⳽.cT+k~.1qӞj!-Zs@i_nn(&q]n\L:Ȣ\tj9g?/'zR,uyZJ#n["w46PǭeH0,\m" o:Ƈk$]z;Liy2Mn/?M/+Xy8?Z,.N3q,P[bBboF^"   XX-MLω=yvZ^s̜)(k+ׁ~O﬿*lz]yKNXXwk0W<qs&hiB{gXQ3 ^,ՅCeYaM/Ć׻FF34r:| ǰb5K4 N8;wg tu5˛0C1a|H+2u0>[Oh\׭-DSYJ\kF%5j' Y߯DϷ6 Q1|gF $^ ٽIސ3&?0Umz{J%-a< z^|Y^oۿY7^-/=c7[!nJ{a{4wk1VY- g:0HHHHA`Q ޫj2ˢkLJFb'bm7FAuSIć~Kx(#c0[b߄˗w[CdAYNlI4#rQ77ZaH׮UiLN0V2V涵VQiPFnVזYMfMWz}q茶1 ʱk\~(K(ݱ9,lݙvs! qztUJ7DfQ6f3|UkOۋU*}$ߩ3hw?_Ԗ EMпv]Ɍ^u˒$@$@$@$@ N`6LӦ׿kG0rIX%Oi'_/KLw}vcڔjgMx&E7F:'Oߗ sQO3O^{U+劀a\3vKto;a֒R<Yo kk lۊ[email protected])锌hZW\ 0(SEl*vyC϶c^iɈQmzH)N=pnS<ߧNBaziv؛Gsය Y٘<j\]ubV⣯|o&U2;Pu?!,Li#-ega#TM4́nOe~cY˵X$@$@$@$@+20x-ͭZ%`_yvmv݋b25-j;-zxGGY^ SPT~?ƎLmvM6/1q]S۴Rl@/k5?tl_nVߩnP&@DW}MQ)%"8J OOuF9%#'CxCR^.jtñI1h nooCYivmvmYBqU~h/x{'=; cPP?MVOY5#ElK3GOL?ǶS#}4]Ld۩ˠ7\o/t~,8I6>E{ )gu{io$cEI/:zc._lq7.˵,vc$@$@$@$HVGAt>~{g>1}z }x݁TwuY%MUYper£?ƚ WQ XM[s ܸJCeml.6ǿ/>Z {tE6)y|GBEreYtX ;COV2<)=I]EܽLʇhu1)iځ~) <ΐFFqyaSmI߅7PO [Zыjf6h"mk~Uzppa.72K?+!x0;uJyVpm* Q*+8} wzĸi[<KQ:v6+<`7^Gusvg1Y8zR|\T09w;^9}}mhmmCgw?> ˟Z-F V@Lv~xܼ_QDԆ8$%oBZhN\Mw\rجQ!,Ty].o"&)8rLVڈgAyzH:[л3]5hbpoLD>UH] kr7 X06׽2n}|?:u3rJm5?ʐ|ؓ7j_]7yX u&2'E.yI e7c5F*V/CRr-D؞(^!L>WY|\!3L/eR b؟k+6 _)P C/R> oWa0˹F`q)_xalDxtV!8#;*'PdA}(oyD|v%*0XO_Z+L!eNza~<8]z&eFqAMb>l^ k^ls1}D|,e g1&F6a?|hEm1ʙ| iyu((SAvmH;o+ݯϣk 7oYjr<;dsg 6;l wZev8gcZI$@$@$@+a8ǪpMJ<}Rv;=gθ i/̨Z5R~תt룍UiTbt &44Jzܯp<un7}Sop'n_x?],ZOk\x]eyhu0 ˇ?֔?^1>К-p{x4|inB?>RI+av?՝s0:+3L[.5Ξ0+)7\hPo~ 54kgt㋏~V#b kgy74ڹB:OqW;P;x6ɛQZ.شMcZ7Jf &uI5 G~.oVOjn V̉YDؓ><7s].~ZrkϾ3KC ΉJy"[ Cm}-+=l/𤼚f調qڸ)w#j#Uoũkc[z2z)as0ޚ9'Wide:;,\qo 27j    XV;x;[@b!<~Қ uC{Kzm]+Jt1;0ޯNֱ3PŬ1T׵hqDXQuQ#29؎/֤Ƶz_1MF5h/7LdMLjL#4xVl0ev|$,ũ!8}h֯*EGfFD7P ~^I,2 khBXxo.$#t~œfamAB9iM޴XSPy\loDtbr}Ag׿Az_cnӳ1\;tdmݶ̡D"4k}lX>R<ԔŃv-+ C25ԉݖpjFMܲr߸7Ί_VfY5fHHH`9ؔl*^kg&'&>rtt ǝcݛ}죿7C2s'Uܙ{&?K諗#}ee^Kz;[g(; ԵǻŌXcʞmSU 3JY++t\xbvsl1,'b7PlI>4/AX~iݨv7"[Ei8i/b#ǶDxs5֡"t]y5^aL<ghG~v]-~v陀HHHH`Xoj8^ hn8faqQRVLm><jxAL;0 L`q4? b֎.<~Ym;.m. ԥ 2Cb^ * 2-^u\ş*9 OSrLG$-r>z.T{7۞l J!@c`Zp6>4fj':$@nct %C`dhPl݋B^%VyA$@$@$@$@$@$@P$rHCkIH@Lz CFyL5CX2fV$@ J9H4lDhh~ s@m]|A)23      p z;Za#@  ,0vӶԙ c)v           X2h^2UEEIHHHH-a@IDATHHHHH $zl^;IbPg$@$@$@$@$@$@$@$@$@$`A`vvvEH]Z aᲞ33 7 "$@$@^NHA$@$@$@$@$@$@$$ L={y#!.SSY[V,ghȊR$@$@$@$@$@$@$@$@$@$X慱06n6CB-*.+H24hIvH@]C@XxꦃHHHHHHH`yxl}Xf p33f[Ew6*F$@ LNL/ O*VzBiHHHHHHHHHH W%THHHHHHHHHH4x{BiHHHHHHHHHH W%THHHHHHHHHH4x{BiHHHHHHHHHH W%THHHHHHHHHH4x{BiHHHHHHHHHH W%THHHHHHHHHH4x{BiHHHHHHHHHH W%THHHHHHHHHH$b  %27      XB ڮZ !! Ձ7w~~31\,ur,ƙŠ<IHHHHHHHHB D7nBHp>%0TK] Z_$0̖H@ԑ: B|#Z!A'' ͦCu}&@@$@n s#6 ' V5kL9 ?Cb|--"-o؁M P$@$@$@$@$@$@$@$@$@KftLNM[Qy>19)9MFoʰ ދ]̟HHHHHHHHHyfr+k.ue\h7 M ~J$@$@$@$@$@$@$@$@$@$@ M&HHHHHHHHHHB@^/)HHHHHHHHHH~ӟEEr S> {A03          &.Bٱ}Ȉ ~nq)ʉ"9\z2oZ"Z9ϒ %ˑN'Gg T4h8 EHHHHHk~7x(/C8j+j0lK<%HFuEXO֡c,됒[-f7 ޙ;$8wgV}gjf4Bo]egXfa ,8@UZ$4ks' DAI."$itV~.}{sA bITբ"|e\:)ÅIls8:qtyXh*<pƽ=]?{y/ >$q#neMGw yTY.*$@$@$@^Xj2(:OZ ?b.0E,*܅)L [vQ~)J7kڻoa\y;p1DQGCoK3Hc4kzv";_EK@\6ppIن}ݮ)}G@~7/`עJ.^aWny򔊚]\Nj)Gg cVkӺ_]y,scO{yx­SЇHHHS 4NjIqEh$f(s┩Ӓw"3u3)@GgY2T{q/3:/i& ;zi[+XeM #=\>ttXxIiK_gg<13%8Lp ä|}lto=˲rLxӓ $C'Oc: >ûs[rev|rФB4ħ>C%ŚHT&R֭YR:ք!z*g閿rj.?VtSA@jj,-+pF+s@G3ڇ[fK^| /lM2]^~T9wzYևs)|s?>яRHHHH` 2#^&wwG0\ ޱII`9;6.ʷghڦTtu=`)|u|\R.0~I ,MibYY<}Gqr~ܟv*Я{pJ佇_x% @pd1<Pk-0ruMnORZkwwsg Rqؔ! -҅|8C0h ީiplSs<"K[,2?fTߨ/3l؋2X/qFnב!1dbkGlZii=(ݒG&mt$[\g`I>7F@0?3%f?h82ѴQ$oU;c!V"9jk^0kw;\VTa[YQYWs90Ղoܱ[r~QY055A4ݺ+s.jRJ{tJ>vG6A7a^j0OŒb} wmzvLw<#,u,t$b9yAG$ K!#)kCVcnn3&096ޮǨiBdKs!\Z=6ܽQePo،^lJ8݅HB{:%?/i+299q#,|RDM1(Y &k%1 ݭxPaRgy;Q$W7&W+nx*g(ucl".f ^ix]ge![zr($FSUNڂb!eTUVjD-ܒNy>1''hV6uS/CC<wMrF>FԯTZ[welkWx|gVy=[=ӚHHH=c8 W'y vt hHH4%O5RGD gRD>na-/<b\$݊=pVci3nX-Qd%4ݑYwo|lqj0xydi1p̼m.fܿJˢH/գ%J-[+gfa\os%v"^}Z`,ɟqRI.c~=RSK䉝h9efb |SoO|~xt?2MmQK1! ނK|? Wj^QMX1g;f(DO\\ZGy]桇_o<m/l~gfn|c}v9^>ieޞ;HGbӦ,gsgQ3k܌nZfFNt=`Qڴ{18ؕSTIv.+¥?]6)G\=Tfn6g[qeP(J9^CL6/Ēw 2pG2ԓCpczQ?ͼ&"'7YAo49h0x̌z7L޴Gj„+9L|*KWή'đ!9&0g(=Cli!G<)*ڇW23Q= 7ΞÍQ;eQ]i?ޝ;gj   @#`i<jhaYn3]̅v5ZMWn|rn-HHCmG20٩b|1օݴҗ׍Nvjy""_kR,lu5`-R&i),\;=x vE$c>bBաף0vDdБV3_O/Fn~a7M،5l4 W?'䏡O4 |IQyì(e=ŗiJiRw_ߡe-198g#")ݿ{s2rݯA20i/*IĴx])߽Ztk2pൿˢ*锳t r2r Yٖ`7uj)Rg|y10Dμ>R'N36#ƠaZE&O.y?y9lT{t7ɗlg8o*ǖZޒz)gyJs EĆa N:jr$=_e.u hz`ω"yMk}z_D-RgYg_>mK c 2ZNg{Viq ӎԮj9a`HWߪn//Kt>|K^ }݉iD".㉾cMW½F"   ^$/DY:|yx4y;;YO{мv$q&bV83RY}]ygv7Qe8yyuFTj)l*淭^P. ׎!E($I=ˆX$o[_}9TTQwv?=2$lZ%0t{@x .O2K~1;Z+ {8<gPeEewjƵk[5zá4=:ܟFAy|WVYt!|.~*R!^e2nZq 5Ε?~5"> 1kzAK>v-/x\h'i`}앗Ŗx4XLcO+F"֩ bzL&t>DyDyؼ)Q1%:Ċ t<42imQ"wxz%!x´̝xU<O(Kht\U7PQׁLIꥪ:|sF.OPSWƺv(%7Ϝظd{P b W| sݬ,BKǨWKm1Q{?XHHaz8@DsmTzn-fey@Khm*P-ϴo <BiDI̮oג7p mKqNӒ#cI^L/Jh}p5  2Wc[q *uN ;j^mD/   A@EXnzu1KMhMfÈx驍❝{[%cؐgۂ(x1:UŚ=|=4,H#gfclJ%M]H83-qW~*Dc7s 9t\?}ҕjf13B Lʑ cT%ӿxʷbTcLjX#"|MSeriVRƯqF*~WjCb~N6{Xm҉sόKv4WvrIig_aV<jhǿ:YR;X<~C bMTvvD9ffmƆ<{<j7[%2^L˜Qu\ވB  ث&*e5˖,KqnI6z7eǻI6:[$[իU,Q"+QH4 z33gڝ[q!9;3sqs8ѐZVuxn_E:Cح.ރvWྫ.["x[[;?{/0no'ų W'!kD6$fpCQ"X!|ڝ4.ʃ[7G`up/td=v[F}ni64q\}s^Ȳ4^xRnӹ?Eqޝ940(_CAA(i$4-5;ָ>zr Z<xƼo{/w\K4J\\d2u? )PBqxBBP0GU$@$@$@[= nzC|7eoC.BY'NLOk@Fn+_sK~YR[ϋpx/ISV}8R -3钂GWn]ٸޛɞ-"OG΄Zm,KNlQC RC1̺o-\6\-\$+,-nL47% Ck<Q{D6Ο\cD¢9NrcCTFK6yK<<z9:mc%l؛e.[-^},d|<c޴,%_rK >}>7 LI^6ƾ{>Jt~Iu[s1.ĩӍh˞kCoQqc0$8SR߇7؂fq[.[;}΋'K}u^Bz[=* HAMG<)-኏Gvcv$xG Gzo_pf'ҀHHH`Vp y5cF=mΠgNO0և64*2jy D0V~b~<c*+d5 FK[:U$XhmgM*l8uܘ][(.8Jؚle E|5yn/J}LLТwZsg|%^<4_abMa*y!K𭟜H͗Xz:(]bkϟeoU^*Uz$>w Af3un މ\ yZ&:c6w nr3.p;H\ƃg5X^- m^V綣/ơ:7J':(Y-#b%e0Eq,\y)NƱ09޹0oW#[/7ÞV?+DOvc- hnⷦT% &Z1 ݎיwRYZ b)Ess;V.1ܒE؜|(qƘmr1< ߽uӜن>4*q3TUCX햤˾#2z^'ޑ8x[ŞKs%Iǩn}A;H6I?1Q{D_^ ޔXd k c54Wf\8t{氼ֆr kzOQy k_a߬PUyn۫ulm1SX\a@tUa,f;<dz\u?]oNSr5;Na"'nŸQ-RYg=>V>8ׁ+ɠxEwI.dS4"   -~όofw4.q9iP} ZsbхvMVd]3e 4^vlq<TO.ZkV|v|ٽ]lv$ZH)>v}GHv~3~n' p^LDa؉TY7x jF# wV}GM3;c౳عʺ `,ŠX+a*mϝ1 l.,6CRSa]E!.Z}ڼ58(RC^f'SnƵ+QY(ֹe+q/d`Ϣv|מUpLBfu;V07w,Rb;}q۪t<sXWO_m,b>z/K9q|7p8|G4hK+9hGS UiT8x9GX9s qK $xv\$k-kQLJh @|_¯[{3>H^cHHH&},{BᲳ18%8qC>%_s=.#)Ʌq-wdÒ|-B|Zdt2zL.gA &(+HJ%?/u뺘^y*K}cvLCsQb␅DzM{dVk=l;yrڸn]fK?ZN⍟AOSwS*]6;ák7aCkS0B6uܓjdnKk.PG !W}h^O:wdϡ~VnWb|+ܥX{ލ>ci}i1&uO_[O67mՂT?'{yLlgb ]wՂHbk8qz$竅4B>!1?9[ X e ߮H\/ء'9ߠD`z@HHH'0SonM&rnu rZMQh@}Ԙ d""_Zq6߳ 2O$LO\pa5Nca4?oO_׏CYİe5<#o~i mҀ-+1p?8hǥvg-f\= _Urhmw<^%fO밥&f&#Aӷղ>}ZQYf?URDy_pY9B7/SXJB`muԟ. n.v55nSwLpȳ<aky][Gݤr*,s㗈xyz[syֳ;.ح\7wݭ¥ - cUWTg<T,(K{E46,XUvJT{o2_g>IyոrWXW,v#w(Uei@r.O^;ٯ>TL @h/i$U&}ǘ]$WTtՙŦv\@[n4Յty# \{e۷cgO @M;<<ΨIֶ/-D!mgef-gV.DXՍl^\ wBkNMq"%nx:sOMr3pf-o}zډwma[[!w t/Y>sNAF\*|,ᑃ'4ǮCe̟t#Pj:h˳9M-^V:ҖuYBܴtP2PB tJR}|ss2w1c6`rz2([%?bD;7҄[?&uض)-rֺV֝r "8~|~W?{7)C<{܇+#-'r|p8wﶾ{ 1sfng5ؼڹtXDTZ$:oz}%   4t'sOGXs 45tnnj'f]w U>ލ6aڛDV[sFM 8[pf:?q?x"_e }OC~Jt7sQknFv8 )?><XKSʏٝX*GDžmն^8VD[<H+Dӱ jf;>stc ;k)@,_w kQn9(*%XYǿ0TiUy%.ݿkX6u!eUذ G^:'E[7iَGLrdit}95'+ᐜ\<~rpN 0EȾrko oҘ3@Y%J\fscW3&y Z"7_{_!=V] 민#=ʗ_;_k[pl,w҂\ۗ:Igߍ}5[_*jqy(,'ElO{Z7^Q ϟ"W ǥ}$S=I7]?'F_ 4T-Jw)jV"̃Gˑ=طv=6Yo^Y{eUqEÇ}ęBYwW x8 W/Z)^۱.%?61KGx#˱cB|_DޣkFf~!ȷ,ıs]WY<ٹ]/8pN{[^%nێ%be.}%'D_;w|K?>KHHHH`z:dGn}RI8破J{Z;xLT|`,gRb :3"ZNc,,h֣393-n! P(>JY|,/l[ ['9"ۿ3Hu]*y0\,쳈m'.}9 TZjw:4WaMU:Z瑗}]nd)U~wxx -3JA ;ȇ"bOɏTiQF%WyޅVX|aQ<<Ό_ĵ;M@K' ,YkY\:8a?[;Y9Xqbx㘳ۦTn*wN_8\9{/#7\]cŋqN-6=_!H\]"<-(n˸hkP{ Vo[\VWn3W^}Vkvm/ω/ 9K6.Zۆưx9|%q/![u;(Ikv/#<Ώ bzm7ɏ|s(s?MՖh/=ݲ]X6>Kv^ ԏ]b'&v]Muov9=K*x   £=E +wTܤJ{k?3vNԝuլ09׌[JtO)לF8[7!m308nJB]Aɷ{]"f :83٣GzS]\3ǿG_ޅCpŁk<*\bwO;Ϭm;1櫸 3mÞ/Z-x'oGsH"FwV7 ^}ud.o+}Ͼ7ArWCxB÷<y:r>"k,ڏ::^{>oVZېo]L&0Uz-:Fdsxp.Tv5Cᅧ́- p{qx7ᬄr̮8.wE8ozNnhJ-xΝk~o Ծ ^0,'?|/(F`8<w w<>8E \~0Gʟ?C<M38}F¡? ^;.?VcGڰ~G^S\1OBv1N|\yz;~><J&x1'< L}n{Gn陰ֆw`'ȳl䱘LYh>2{05C];s &!q2(\s rsxĉ""C`5ދp!NBBiX^Yޞd rEi,1`ΟD}l4tLKqb4ny@䞇+o{n9<'Bmjp88xW?e}}ӻhV\"YlTF-)zAc/A"˷U++h?`jYc{>rs+6\P0e%jN/;;Q:m4T]s{CWs̎A5_V@yh{#NwKd˱#4?=>nw1cQW{No>[aOOGw[#ε'ueG,n|ÓlB$PRۿC<q*Dɐ˺pؙ2uxݔ&0w4 L1<Hq]МyVVEArgT/=1c$'xڊ;1F_6 ]Z h4QE 8x5|5OXg9mYm@nu3&(8g{"ce9yxÆlu)vsgmJsrv'89m8'?cΝ<scq6bh\a-&&w~ vZp(xQw$\]<#G%3 D/,)W8LX P[*NdڙD؍K !ֿ [email protected]? )տ'fHHH`jYcfͩ>;ut$&{JI=w[w~'p\=.`ph9zWaING`5XLn`O(ZɲRg\3'4Yl<]KxfwÀ87W^{;n^Ox~U6m"izTbe 5$C=Ǖ"  N@ r1͗b˾ߑlgb]T{JAkf=BYeC<,YWnpWIyfá;zfmW,CZ^Vy\C:O@"`fp4j3*->'cbQOcǠR{Z5~6╃cV׷/`>/S4;9*fx;N|N($hM$@$@$@qП5%x s !-!U%zrDւ%jwY~?/wq %Prsm*GB9@` U&>Xx܅t1AtQ>\=Mw[_f}_|'5qs6=5RgF HHHH` Dg97{ɑǂx|"l:"GzgE(.*@fV<L*:KM8x2U7m&@#_㙉= "PދP?e(*Gffߥ!5u}8r”wzs>xu?6`(  _w(IMcvk#`#'PVɉr:ᙄ45E>/1S hPjLݑ LZv2a5>F7<omy<-.lq$       ~"L)zOr",i2YA&&pS؞ܣIHHHHHHH*qDAjA;I)nOѓ $N@0qlI$@$@$@$@$@HIjظ?SXg&C@)y42M?OM/OSOpP|ꟀjW:W$@$@$@$@$@$@$@$@$0>܂T$^X|E|wCCF6';]<%J54bO4;v\ ۬?! L5K&WvI$@$@$@$@$@$,93y" 3g{cxdXP:}}AMz!v(! tJ(x&N?;qMHHHHHHHHp3U}%4~1:}q}R;wFƜDNH;5cֽp?!Тt2wlc; ϸ$@@؉Sv/99v       O`L+Oz-'HYYHOOKۤU'=a䋻c%HiG$0δ!q<$@$@$@$@$@$0$W>fnecLGk@jtO<9F# G)ɉ5\4,'       ѐ t%߸>VĤpj@OOcҧ\X.5u4qq%wF$@$@$@$@$@$@$@$0DҢ"A :qcXV=ݓHAhPq :~QRٷ06ĐLIfoE$@$@$@$@$@$@$@$,qK u7Ŧ7w\Xz҃?DBai@ F[V#Oh!R; +W2i%qx]1O$@$@$@$@$@$@$@$0Iq\Ɓ=YPij {jxXfvP41H6t1 5=2 @->~$ﴉ7+oI^ss<Oq HHHHHHHH@ jrÊ6rYD씔T"U~$-TU5·kJsx]Mo'xPͭ!̝[[ʍW`媕XXQf,#        @hhlıaϞtif}7 TC%: z,$ x34Z}B֘%J qםwbݺ oSᚳHHHHHHHHH`aQu5/Zo4>{yKHOϐiZ' bpd /n[u8!!NRoNY!~Bך9         B@ ۫dkנrB<c(zصn#'$Knj$!c;] S16[-c248(b¹ L]JSZ4>A o^wL&#$d2;1[ӷ?}zfHHHH`:4:8c#   Qڞ+"%##&<ѳ**@Cbz-i| !ֱ[Tdq#    Nl?8~  w]wPw&$O'Hq5s.v@IDAT^T2FCFQOȨoL#x0)nٲ+W&5 %0>@P 8 k.n''Y~b2Ws ncm>vJnn<qB;ЙM-P@fw0֯[g֔$@$@$@$0M$b} a#GtM$@$@$0!LM2<[-!FWW,kcnL6 {ګ"%sfL2훒 #68&3(tV~`ҥ#7 |g1IHH`6PԬєcg-QGDQ\>ƫ2[n,({hhM-SZoم譖_*˛3?H ~lA.؂HHH  S0$    I!4?9"7r>b\՚jN%jY}N^!zO[_NQdgg 9}#aa4]ˆ.(C5HݴK$xuwwҥK,qENL/8Νx&Xg-޹@]O#; EʭEp]UX<i} '4?Svk:<jFDXE\zKnTh6Tg>'!UqFΝSObݘ'q.䕙}hmF+gď*}^V/rbTOOf EEESkUߠ< uuu())… +㘀wf#[cNZ{wtu÷7ͻ_"Y:ѱ    pp<~\(cHHHf7_VP+cpPܳn /x{'Y­d #?{ <l/V DUz6DUJ0tOŇz->fP__oꉵ.*4fv3>J,X0K<uyS ._7?cZZė9yb7w;>{W>W~gr !C~߸qYK L[4#.y*|E"g#Q6c#t@|s^|%E@,B0~X *%Uf1*>H^YrJV˗K([ zJ=aUV_Q3o%|s;C~e4?>~VVŖ" _ۦťv|>IHH`|doA֚c<cX(+oow%2Џ=?zZ~ GeXث?B[mjtd!v>8m 2jǥ L%uBGN]W|~qNh=~)'뽶0G^)vΓӹQ{߮]M7kä[ZZ [-O!O{ՉN9U[%z7774)qi'O_xJK|RBnt*,/M~1g=e,$  I #o.E= 7| 7 e卖`qsE6eI43Ǹ:Ȃmѷsx ;ռ{0z)b1"˧=蛸ܗMyGW(nz[X KMӽ3l   '- 2>:ԇ:~?21{ (#";h[1`DֹΈ`-kL+[mvG`7Rh>mVn_W 5jgpk[{wAe^U/ d} "2Ds{w*fL1*~׺ը[ !Skn7;8x3X839zɮwl^ׯnBds?¡kpeq\Z4xm58S*5шwѯ_7;_{z߅Uː汘ǍQ Wgj*fkIiCmo*ԇߏkh.xvr*C=,$>[D:AJ#k'P&\:K1~(Ky(_3~'UelҏGrl3LoSe˘gv+<ڻ7u+ި6EoJ߼^(-&  YH +m1;G8z$ޭ0-<VF_}WZkrO-=#[YZB̘},׈3f 'd'y5bUhOF]_>TD'zw@17p>}(N^Џ;ݻQ<nN03_3-zˋ)cns3gR-~ǰݗ.]ҥK=cgZVatAAN:1>} +e60Ҭ^4ʽL|@R*c=B~mRI,[m 2kSOP~}\*65 sʰoxmy)",_ϹIK^o۽ƚAGS00l- * e]Tl،w ea% ^EG22؅a5ٱɃ;s󌾳ş1AtI03sAmQbJT϶鸈>xZ `I<c'3U=dz\h+-3%(c_$@$@$@$0((M]z5bZ xy '\oO&KV|tq>@}PR(R$Ӻ*ӯ#*_E=VX$U|A2ezU|M.kQ+~2fpoSe&>U))QIU.O囂$@$@3~ 2e6ݷo<؃O܃3Ӂ*߀-bzUo:GBb];jf;;(3ϟ =])ͯ <Q97<6FZ߸5Ŏz||+kbao_=[z+އ< <7 ?xBq 4|ov.* \[ʿx.%-;bS]kׁJfHHHH`0t$E_kP𭮂chk_&q%ch+jB@ocaOFSe wƾ&ѲG#'G>(ڗ.~#)GG?y,]]]3'L ,҇(AmcK|q&?ۗf){TۻgͅJUǍHHf7ܪ[C8nZ%dV`q<[PfbkGPiU_!ei3|}u-ŋTFT,_ڃ0pq*k߸_x>;[jZ}<eK6i-{4=gͦZcHIuPW>wmݹ=OWWPE<|QnģŖXu5|c_!L-Gglo{+~*j>=̐ !`\Zb\am{v,Q)ƝA,Zڹ? ykbˍ47kw~\I'FR*򜡮< RN}vDoo/Νk| kPnWTu^w{t =1b{gCk|N@L %Z -[ME}~ j~{k8e!]zsIc{E}7^k+Bg {lU؁7oOLV<߁{T@dc￈~T>xo7pmZ|wmY&K_} 2 _(,|t~ _ߦx|WO-à|#-5+tׯ_ݷR(o+r7~Z֢87 ]ʏoZC¾և~7o1si~nYIa L$" М<zSlK-ci&Š*t0'gu7'oq܆eG>(~Wʧ=mXmLsVQ>nCu<T@Kŧ|s#  D@q|t\ڱkÁc<+m^v,To uã2c|J/`W~/TK_gm#;~ކEssrS>nxK;X} oWl_g~×vmw'8gJIGfz:e۾e Ldff"]6zo2hް6/BN_CUf-e6~.RWocnEq3mK#ϊQ1`=۱C~d1vɼ(M>HHH`.oȵy2roFN{k{'h_$AX61lQ8{u?773mtlM$@$@^Jor2yøc30^\-c3"۷C|+= &|WM~ mgxWғ6/}V^)NLv8Gv _<.17￉7Uv~4޿ e 7x˔}f%n]sǛY[ z:k]5r^hLW-5o xcěz(vv#v9 u= ȯhn><thxaS8ܰ WTI) Y-=R&HHHH`Зwk}2xf,3>$ WA;hWk&50!9n 6\t~>d3.3){DLlI%J/_^6\0,tϲc+WOk|uH+  rqԵJ>Nu]ՖZYdQ3"+e^YIŻQsz8z/IluXtix K-1[]7To_"xqi1o5nd'znUa>wȡ"FfЀl*яaoebvwU Q^fs^K*Q^Z,KD_O7   A t„W.jD7vzHbfN*cO--.]WOu_Ŋ ކqݓD >J*;;K}Vm++{|*~Q .ÉF!VPJ.lbhp+= L~7F5ڼi珛W/2z|t~֣6' R5$EqPm+ycwlGzy J~ibg_R㡐z'*K1Q)kvzŅYmGoh~ۇ\{0$~T4e^^]lv:LmqGo؜i=ۛ'^n8 Go˷܁;ډs}^ڀ{   W@RXܤ/6Q gK[^'KgM40SSi|6p ӱǓ]Zcfpu:|S떗g<\2%`2z`=튂u1}p,]u.[Ua2SF$@$@Y#-Z ll{;n;w^~dε!~CGG K۫޷m۶. |n+Btja\!3oݼo#/ryAg}nvf<v'\}w<SMqoQcM||?~ۿܲ]f{ڽ/_<^{[3G$@$@$@Ӌ*4vu"^{w~5&hӸޮҕ ">BWOr^(YG> wLoFU02.o߫Ny/ˢ455.Xk˖- P}[ݺG0:oD ?f"dm7փ[_YN$@$@Ӓ@l]xQ־]W!P*yc[*Y]cIgޭeح|M֮^5W_EƐ^49Gur]n:zCtHW3*/j1-Gδᦥ1viG,YPd,ş댟<z:RW}{l[_'?[ #t9Ck KNΤ("^{ݫ*ޗni/z`D Z_^^jo7 NTVad :"QC~;ȃb^q%/^6|oWPԲ#|2*:ֱk[d,i4g1voOPX<o̦@@YAQY˗: wct3E$@$@3@FY7uR@<58hr1P﯆Yf5_2B[<}j{T5w8 :jOHA<ՎUo[Y";di끛kgŽ%Xۿ8vp0gjgڶF"̸2 CE^(oF@h-x:(f.BV.RkڌȲs$edJjKAN^ۊV-A^Sŵ<T-7   k&}! =Nu}%sll⵷ݱ6{=]p}\Q̻7mDs#w߃]]5 ~u(6W2mć|&k?>Z[[gZHhW?ʇ|&kRmG⧐)cn|(_'7  mLqT +r/`oy S @?Z|{nѶ,Z^+}\##}X<vl߃^xvކZ1 |{vgZ>q2!ϑK:xҩϫ–uV<I %׸ȃ6q,m3V\~]} _yNewiխc?Z^9}<^/ T$\88ɵy2r'ҟޗEBy7ܰfx;'>VNcWNZ{A`[EFt>c%<%e/%(4˔چy5*>ufeeBeHJJJ!3~6-V{JCR>}xgW7 A&33ͅ*įi{hhKLV|!}HH5B߱/H/k GhƼ,d-M湦'DlU~|P?~wX=.6~+p`GRڷM7nވB}^|o9;Fo JjϾ䠨l W?6 >hݱs҆CV,=ų/\A_'|O]%yil>w/kBŚ%U:mIHH<-.TbV*Y6 ONuQ)^WeHҜ1uu߀vY?W?W6ɖ 0E_=Jf&+OaD|ETavj9~KH>jOJVB{i1&(mᖟ_ʨcCf5[{(PµclN$@$@3@يM"Өرɚnx&{cm 7"P.uLidXf4[uC;L\ů?~j%>³c'qW+%m٧Gw4L)ZEA~ݿqa\ek| _gOm~(.jH:06y/^o=H Q 6}ٰHHHfuTƖ<)iF;Qjں{t֥/xo4X3͓*|)m픝+Y5#wߍ|\z'YCMo sbyPe4ÔF<FvL,X`ލC,ީF|mPx"JKK)RPRo}~)!|.8eP)2qwm ^HHH`YH.X6W, [GG&m^.Ҕkeծ`fܼJ:{ٍX_ <%z܌(}dfn?Dz^Jׯ wv* ~,6=/<0tWpύk% a97s?s*[! J+J3ܶ6܎?K:wݸnC%2<<SPTq4֚WJAr+^+??-]7^}%O9֟7^AU6}eHHHfuj\ Y;|ց( tB)\ws `^: ^:lXrNr#?~nDJC=M}(-\:"4ay,+\..LV---]\\,˜Y K|j^C.,,4n5{"Sgȅ#8ٹy2]T|CC|↢Ųci΢} L~\A<{D};sj?o~bD_޼g 5j191"7śq5"7clelTd5H*5bpv1'o^!@HHHH`/ [t4y8%w{Zw.@x;0[ݑEWi9Ruh1`9Ѧ .'fGdxye+vN&$;'6[ lBLC yJ\ C#94er3i:JcdٰՉu`+%\WVVb޼yR!|+\ jS²jܔpߖ>N`a4]@%#Y+7cY҉ } %`_MXJ&򋬩I1r]Ngʺ܆(C"{9LةB:InAzfݸb3{HHH` P^]n'BU S y^WLrv !`;uf̌ 2HZr #uSg$lJԎex24욜%P?XJ1~b- L<':̽,۱`HHHH`0%##$۹D(m7 -:vnLO7aou287͒r S$@$@$@$0] xE:=:<d;j rFgxGgD    E@i\h"d^7 t**crjat6oN[%B&L YVK_Ȃ,aJgȨ8     h P N\h"Xi8ğ]3It3]ouf\ \WVs&f= t',-tT)ٸDIU@&  F|b&MjɑmzKMҘz!kǕKVN6kJokAF$@$@$@$@$`HHH`&P WKڹDG#ClTcXRjLkfy;ᯗVٞIHHHHHHHHfSt! 0mB!\9q 6;ǯ5s3N.zFY#$   p9F    X AdhpZlڭ;k;_4!Z֯i`lVλ -՛_ٴXqG$@$@$@$@$@$@$@$@3VTTh]l-QU\o73 Zml>{| 1}twvJyNݔ{         D@4@%n̮荜ȓ +` p:1E*@P7ALۈ:8VyBx!        a&sЄ3x)rbƛʝ4؃Lg ou-Du\0E$@$@$@$@$@$@$@$@$0C@Me9FpRvqtzmkMnvSBwXenԚ6`HHHHHHHHH`&tCN8Єc$)%faE6ҿOE XYأԅ5:cHHHHHHHHH`A#aQڹHu33otti޺L}zu%Zd4$@$@$@$@$@$@$@$@$@0?НXrhر1rA}lmK 5ŔGB{ '0gmxYV{s$%Rڡ^C r0 I= LaLRі03}8Q+MеnNHEv]g'*o"Zz熆!dgrgהN,m8808ebo9qԹ#j\[VXv#^ļے L"+مn^ SYcEs0g;})ӽ.L *Kď#Z[NAǻ__?GFobƥDT  a`pJ ގb+';oS$ u (J L&#jݽ}t_xIFeEpnP]PY8ه+W"R)ɨv-2D9F}/u!Flhޖ +j ٦qPXbz<f[        qrEG X44S:nk܉a}s_NJCv*Tb>w^MbJYL~܊,Uo2 AHW7Җ/ SnbWV RN [ r(KɜFoK5NN퀼FMTBif\16ʘdhWX'(fzNPo31:7)l #!]Xǚʔ5r#gv v$@$@$@$@$@$@$@$@$#[]ͨMO@K@#atYr_]M{ǟۖGYiS9)w^‚kvHy(OU-IHHHHHHHH`3:uJ]Tٿj׊*'dJ#t:'g7Nks!~r{`z<lD ;-æL|R`}#HHHHHHHHLqW=ԏ)%,~`1dzvHݘ l P%LH9YoJN8^tʥWS߸d,ibzVǟRy)w- ,Ȼ=+wS2        YL\z~).Ycg+_卬STNIy(vam O7ƻ 5sӛ!tp?a]n gu {ٝR!       2XTeOk3AH: [Wro̎oyDk'%x wLC2@dnn$@$@$@$@$@$@$@$@$@ ^l8Xo {G42N7޽[;e'|uFv6?3wRFõ . hK Zz?Д$@$@$@$@$@$@$@$@$0m}pr;pA`bʉ*)T Sh*!Sब1[N 1O')HHHHHHHHH` \pzۘp4QC:FΙ݆XqQ,6ڻFI+;,9'`g.;2S`HHHHHHHHH`:NrF-srNJzsZLFq8:.\8=|8qg;OA[5.YP6}        檵[&.D[0=[bPe#rsL2^[+7&K&m%b0#zb% !mmvB&NI`szO y EPYYĎC%        YC CC~P̗2UY& ^ۭtslw;<s= #        KI,oi㲔o/jmOF®v#[)h#J%xr |B-&         "h*#TIElJ!R<u;'6|ly RGP9 9Z˔ɈJm5Vr> -'? qW=ټ&fIHHHHHH l-Ph<Q`iF؈,b3,QY)NqgI諓'h|E )Xt(I ٰKvRSZpӳx*jbyO|w9ꉎzNF:Ⱥ|HWX!k;N:99DJO6?֑ @iJ;4t FcSK{}ghP[5x,sd_u7܈U58ɇu.t3r"q:^qbl;6r ?( q|}Mo6;Ct('d< -fu2푻]e,2;e'\EQ 5d $ % )kW‰Q.S]s}Sj f*E}B1P{-ƃX93G$@$@$@$@$@$@DTw}F)֗5*ʜcL1$m:V?`͝6N{^g:h#7wÂj,-}Un/ /4Ɉ'@y(=u9PBkiԵ;r~5wl=O-7~Q<Yƈ%      #tA-^"&6 99'\ysFMuC > Ǚ@-=6@Λ3wwO+낅o;#uqٓ@rƱF`pp=۩/;4 M$@$@$@$@$@$@SڂTTox޻6w~bmFk=Cfjbw)m[LD*u5S^SéśuW{˾/Ҋ2-@Nn6Lin]- 轏WYC ;fz,.TGϥ| h`5ҮZG8p`Nd&r m_+YBdfMvm.0q/ jJW^()+@w:@hwV'V:.+P>78wRG~ >K`b\n[q ʹX_?::{a*,y˰es숊WbaƱ&McsU[nY9ru@>zs|ņ+PS/H]y sn1lޞ:HHHHHHH`RhP\,o#Љ̕=*pPYۡ˟]w" b"SzA[Ѓ+u7~X͕byrUs(݉mKJtwlXמ~=ɽ;*J뚚f9,M5u"tfyeU׊v/] 6Ů7_.،55}v` Pw"XXC;n?o8=(0[fQ\YgBHHRdZ!$Y21`Uvr۫^߾}?~kkU]Uvl0c[@#J4$ODFdƐ88g qΎTZ0>=j5eB*U*B5"sVDyi'PT,(`@ oOX(z.z+"!e _p`n>!S\V#p#W9VqןKej)^H-vܯU9#p8G#p8JpfJg)L4W2r.W[a]Tr馥]G "q.S<KvTĪDX)%I/DÞ ))L*.6[ T5W`!fwrz>{G *o+n:z[@C$|K4]NJgšF*TRk(B*;7 p(2_.^>U-x7B!aAQRiX@^yǑn{z䈔QL4@{pѯG#p8G#,@fl %B!YJXeVpSÛKd{$Ш1@hlYM[j 07n^ٴB&y /;K36mV;A~ݷ^>IAi4lWy"M!2mܩc=Y4uJp(ݬnGѮQxt-vz㦧S|Z.}X'|CγRy?m(YJ v+Raߺ3gD3YŻplQSw=B_]ITNfA/, DOj Ž+KOun˷8NLztʟqrtCR6 (t ]mAj6Rؼ^| ,s(yG#p8G#pOn~f"D'7HicER'X2JX 6բqG0UMC$WBхd+5+\D!|wޢ.ۇͤ1GP)qg:. XZoC$^J0_ju6ŋ bT(Ch5X_njx4uiZGTG3ێ=1>S1†A.|KUv A:7b`i b>xM(bY,^AM2sS2{:G<"JqQI`<[(K&@_\b_gaN;j¸8ϸp8b@IDATG#p8G PpȚn٩fiT az O Ԏ5͐.[hKh ҥCs7_YX.mJܵ]~R';M#ԌNٞޔ-oV);;Er)tʽn!.3}HLXw>Fz1M(fw\F\f*%j+=@G; F٭dŚ!qٻVQ^gT<#p8G#p8IA@ &I)FŚ1tN74#vW2JK1 -巑ĒcDuxm.>'^oFᭉ[\|YHl µ`{4PgNE#go\[0>|>ѼujK6Οn %T>h: ÷j|YE`*7}8LY.]~ldd;;S=G#p8G#XD3(BȉF}1,YFD;JQeUжĿC+i㞲QkVE/-f@2Ǐ)|%y_[XerY3ӖL2qSrX؊Xc i[䋏U:{ץ_>IVVN!$UpuU'+q%=j'eU=Z.g4<#p8G#p8pX^c5DI٢95BK_^ A{>ՠ=Tm` 1:RScGfHB0-{ܹdEG&cEX*w(T,_]^j!r)+'`+ BBώQծ^UVZr+Sq,Z]l[G=8ox0G#p8G#p@uv։NFɒG% RxS FtJ>^M:]6s{ UTPԍ™xi‡=%mN*ۻnWn 3fnHU(-\h'Giuz;fNL '9!m mŋmv 5QRTh;>{›9Oab:=e/>zS9p8G#p8!m,. Y(Ts^}g=-4>6qy}7ܼu9p=֭SF%F-0D΅y%QV?|D=bCE+#BM6h'Sqg+6';MZ:.8c@ ʃ(?߆Dj 0?55H]P?a`hm^K-)+%ئt <k[$*][a]d'13"p8G#p8"BX"FqƩR NS6GhWocn9Z)e߳KJe,}Wq:c΄5 #r$,sh%)Ua$2+Qr=2U!Z[zly;Q_٫%RA={<,vJź/Œ.vȓxp+[/6Z/=A(F|#92t8wǑz dQ( 5/@ >?"oZl )4,ˡ>)Yc̐kg|y<G#p8G#p⅀H/tܬu(z<*s+K,U~nS!lH,R(4̒R:sC Pp!BȞYqe`CFS+(F0Ռ-Zv wz1Q* z Pk+Q/U9Ҳ/# Uc_cߴ*3_)n ]R)_,95UFR6 N\kGwxiޘ 89d"AE\܆bHsʒD{q<ZzѮ(-GYxdz:V3_[RR[NTΑp8G#p8G :g%b_^[N/h( ! !.W ;`Lt)b/&|M!uXfCE- 6E1=OO'Z/|n]>>#r%5 E6Q֛$eXp=H.C?:Ԭ[ޫg>CP&7_1OAvqRx4Rxٯ"X1_vմi슅v<O}7ҏ8Mw?Uk' 6T";o!j^#w>ͰaG#p8G#XTbۦpܚy0ila!oDmXDN+aF!<A>l h1ή9}ݞc!47__|xCr ٛ%7sB |xNv #Q_&epľ g(dTynh9V<z_*׿qQ.E(]`lL.a+<a\<; :uɞC fr COTl݂4Qat xWhQ&>k$#k /g0T4Ne]>5zty"x3yKAF0.vz _Kl_G#p8G#,X۫t[%{׷Z}B}s$ W~_<=BK)؝8)v~~Oa?ԏ#=ӏe§Do]L,.IvjQ\EZڪOF^H(yѶɖ0A䭣M kH={m]&;5֪p(Ac̤Gv`(b$g삐:]aYWajjhl=9zLV XD={I,b}(` BX3.iҎ~+' ,a>qd\k1ws8G#p8G@F`,~w+Ϥ'9e^n]:k.g&~5'!b %ҨaCK+ 3LRWSj.JQغG cJNƖaMOdvxK lЎWLd+e F+(z7 Q\U(EFg%}<V]V Ywr`J7b8(]JѦHT|3}ȥ6lŏɁAn!0h޴,B`>mI<leG#p8G#XT!pjq%ݢDP;-2s<I[~gs gyꕌ@n+UlAA[OZL̺8&q:tEw_?MaL~bg (btܽXa8wG#p8G#p2*3g.^ln 9#62*R4抌SB>'])׬]\khidI'llV߾3Ċ|<#p8G#p8#z6z3>i`KDSM]*3x*4B۠K).!j~r fg4C#osxJ8pb-BK!~l$Q: r0_\H9G#p8G#XzBM-K)㘃-ƨZn.B`а_q"wjs.ș)H~lDjj Udl$͢T ϔ#p8G#p8ش!YXzz 3́fnHxAXZiWf)$%1㳚,Γع9l~aO@BmO-ҧ.ω#X z1uKdG#p8G#p@jj*֮M`U n_`kƆś4Bp)< giԒ+N%-{F63 (ƍ0>>KN14Vz+.o/G#p8G#p8G`!0>1I֎)v[۠}׊-9#we[ )|Q1˯g!ɡ} {[){13IO_u05SIݿv/@23]}@;e&N0r[3I#p8G#p8G#XLNNb6"&P$Q-įƚ $6"+1k% •K֟W⫄+XN)wT*Y oRv?Q×c)[6nBxdtɈĕ +ws8G#p8G#p8K:@#/f ?ymR$'蹐›YK2s֔p8G#p8G#p;>ѦR4_|N[vĤ,:1nɔ !=ß.|.GST|^%@&jԀtĪݸΥX%&r&oUXxrF V˞svy ,&1t{ґL:]>uUl ml lcV'Y3j$2M$0 dT"wZZ'(ڇ| [um%bK*j[bQy7q#Z*RTw[po] )b[P1m%W">t3 -Afr{q(=O. z.4zW4Dʻ-"Vyb/I3ӏ"< HKMw<uVbygVAMVfB zM3ǶWc~nN.FG1KpSiN!Va~˜_CcX0PK݀J,y)?z0=KkBYX <C%=]tg kuD㽎7O8:0 ۘ :0zZZooL3 V%do#OHy<`IlYA(=kaknfC}]he2YnQ(gBOV> -e0?/ Jg9{Q %ВE!(c$wm7֥* -޹&r-Uq*"_C@k|)@r\(dgjny眨zʭډWdʝE(yc'Vbɝ|8&SyQT\wO&&^ɳgh*T#X^-^"J:KF<$wjO")pԈNL»]/MG+>n ݨĶ6KHaueXub`zyQvt~xrGT\=hUV.&i/ 'w1]IZ[5=,s<og<2q9Bf!*wqI\.",}-LH\~YLAQPB-%nD=&Ym*}Gxux] WSZ)L<Zb;|V E`vw"ʹm-"0>ڹjrKg?O\ 062Ʌ6b<NǡG1Qn+=)U:񈾸(O╟sc4Yof5ϯALl!CywO5eI1kh) O[q_}?P&fXˎCu)E~?-mՏD㽎/۪#cej ,R7D0"_%GpltZ?Z~@<s2^D+טx,SXwT wp4n)<44D_|_byL]x3QMUcfj;&KLb0[s54aFqSį€V<;Ӳ̊:aZP186_<qkWvEZOr*lc<~qV+P]wIܜOspܼ>BnWz ]m#"@C[J8X)5Ƈ$2+8aʗ^{qW8*wqӓ3Cy)Li?vڅnJ}[)}*|u:DaY ˅Y C@^V]I-xҺ86mų[KQ]&ÅeVt4~|%Ye7H1. /l[O^d0ڟ16<K"+Nx, B_%TUh5'Or{q2 eUrh YfxrѨV :536TtC$lnOæ-krjJI]#ܩ8m3% 8>1^-m%z~q : OKPD.rE?y7ao_gC5jEe#<u6Ty ?GPcCfRp Jo6u.7qESv ߨeW.3C`vV;b*E*X(W3MzxK4E1r^xP^xGOGsc?K?qi]E/ɚpvFyPS[& ):z{;}b.k<<&Zsm%R$w<XkcB$g3r!kF-5/.Fv k⠢KxEhOliUd$]\t~)]RMJ.xfa|'WÚ4]ģ<3QY[9H[C )<Co&3^C$0LT<a_4N"}iDan6R.b[8a:>򡖁.Юt,r|0:<o_e96N;ထ<tH;{g'=v[Q؂܍YX&G11t-WZ􊜜2gcKz6C-!3?Ztmpn4r6Cl0 uVSL@A1.؃d&['xft]Mյݚ;7>ށ2TlO71d>kNe2bO!U }Ѓ eՕrG!1¡th*>k&謨+uv)a;~4`devsЏv([5{Q^'Y:D}AATU4F'#s*n*+kA΃Ct3_[֓qT'o$Z=iJ'hC_Vt3gnx9lwD~<r 9[9K܌<ڥ砋a4:QhDgW ̝([;iyN>I᭴y?JMLݑ,c8'm)m5>=$"t㥋G8}Ӹw9?|-pn-Mls9zp2,@mMh5ĎLS|fhKxxo%eLPQtaF|3r~79:a@ݸyl72@<^^zgC>Eй7T6`r<a$Qܮ{v۹VM[L)5=+qIE%D,2l@;W6jc)4~i\Asy1]5Ex.hb>*ۃPFd46PWGrOUO~˺C iipn@PyHf1i=?_ 8$P*[qC:Љ)_H_Bܶ K;A'RvDHp'Raaz:)"tGoݤ4蠬R2SThiLjC@;pqn$j՛dw\<. EsUmbX|=_zvKeͥq`_Jhcf'e&ki]*1#⡕Z^H-o`ݴR˵ʠַ O߳ w]Yy4;dض=gϝgQM~{Z Ⱦz'{(-RGүcՓq4:fEـ%@7 .tݏs/x)u|vys Nۥ }1K@mk agfĠ&05^\Jw%4ɗ4g Mz9O;)D}]4|9'e2}g,T J鬙/ژg5+~t>ߔxyi4nn/VuhVέ$̷UR +p>}}[VyuIf\elyVT1'S o4m}Yϳx}Ö NB>vF?ttmXCuܑ>-.OXL{vyOxLR14Fq,ɋ濜<[}oIҼ#4r[r) lux L4Rv)\ٓv4+G1@b]r`[eǾU5@tn!M'j4^l|G.:i߁=O 1iPvsdHGl,FSvOaS_x[j~b&u%MIh1MiE*WÞHZ,1~Gꂿ}b_C 1m:k߱q/-bvJ(_"Wj@0J WǍna0֝ {bSa jI|8T.MĖ;$qN'&Vz?zY+\SnaZ}F*8e {wD-m.*Õ=2Y-ioSxױ9m$hÊx1fxFЋ/*鸤3:ιkwns1.p.qż8sPVRH8~6ӗJ uɛr=ˆ6'ىؔ)Ldž KG^47~9ZF!Q[ܚ(*Nk~Ԙgc{6Bh/7?4)~&f:}7^rd|{vVtZWuDBZGS ڵªm8F,^Љ+ZDVq?y{0kD:xyr2¼c>pqLucԣ}̪wKr6Zy,V\3ptHx O+{os RǸYz]ޗl-Y'C7o=  Vڡa 0YM[R6X /O|;ǥL: ]jX[Ff+ <TѧM!if^%|{32d@+V}mj :VC:c{I<T}zWeU{^,̳{wjv|Pص  Tr`z{phw{db-V_wglڨ' m)L:߹g9ܵu:!ic\M62xg$:Enzt^p3ԍȲvR0WK8I+0(dny%9##}Mu4{XݮmTGFz!e(O(PiG.<k1mrȌɤvȤ -}>,^}3}#^S}q {꥝H߀<{[;٢)Rl#%ҽVe1 ԕjuݯSO,<N,W[:VV8ݹzEt_mAdP&-9( t|Sq|ڷgч3XQzԧXt> hY2^ӫOX R;j哯bI&vЗс{]7;ѥmaLoq4w'^OZ\OJ9s3 ]?w;bKqTbF/>>_cdm*g0dyGueHt`r/Sh";2*dcU}+>;%$rsuA|ϳ7l.BeURW(U$?CM $tq#Cx$u]d(-޳·-× gy42t'-E1L>0J|I1"f_Ģ?Y3])Ev QA1$VQv i"ۋA\9hs[adۓPI"J(Z/'MD} =ݤr-(-ӳIkq sS?% nWxs#(*X@vlSI(q:<Z;?o_&!w6ᜬ\'3@3p K7e)W)@S)!Qu ;~7kw?bwV]C.ͩPT[[#gzi,-V3+tINցfNz}e}{1ru6NmB!.o3ooR'( W(%{%Eyo^I(Nz16XjyDI{n@sٯ_O893eQك^1tzys۝\/-qUt_7l~g:A5E?MnhR;ywӧosMtMud͠1e<6`>z|2m.?K4 =VFhS tC׸SlR{͟}lϖh^08SgV.rOKDs %G8uU{7}Dq<0@^'EXD)7wA<cр}#ä1Rԧ;F2  .O.Rh~Νa5ˋY݈X''\iP@!~晕/O,h%4-R9 eK2҂H}s@Nь=S[.)nw)Nq<.pQv+YJ} `iLvw!O s89ӹ%/WM3IFdMrOk/+\j-[% eR숫A#ԌNͤΦlew!]V.+K+0ՉkeUyL{L Ln7V嶕OOqq\wq:Nm0^hn9}]=8'M-Obt\ ݻ*DU]0-R_ǻ4\@r3Y[:g\B] ,W<ܶrxЁCd*L1 .z?A$R Wz 2YV2JZow?#~1r̠Q 5\u8'۷_[:*[ዾm8a;4?1a<x;hg&ؘmk]8X/ 5ebv<q5ߌ?^x0_d<UuD8Oy7=?tK\Ɠ$ XX5[6{'/2sm`&ݒt$ ƅX ]s;L1@+x٫\*i>i`NbegB ]}VkeNWޠCCwu\e$h||4PgNńR x;;cFM]?bW(/ 4beM#g=<>/6'&v3kSa&iɷAЏ!{/,qc^n{O~T2wŷy:ܶ{cS?an26ndf' (~= w|kꋖ{/nBu<ǹ;-WkrKo7}qNOoKh<ד9}zCnebH@;?JEV{n;jB7 ^#sFצ+CSf~P+N^V&Xpyd&*Gt~!M ->MvOߊ2vn*P}RR}yaw-^]sWq@ě+v+d4.{gDI0a[U=}yIftK>}}y//;M㇇VcKyr 9w7ŮqsQww;O霏_ dzevK<[8)A[q!u^=}]Fɞ=]μ'3'䧘y1%E. E V.dO5Goi k<֬(MJ&xqFIbDƺ~ڋ7K@mӲ9m';IaS. !lN䴊+nwdB|=3ӑ =& *hҬM<#w]I.V0W'gU{at.UpudvUKfrǢ䘟+U<O<xqL#*f}h Jː{LmdS{]N^=ĵn-" "k*2-nVKon<U<O;O1l(E)0w~_~CHmz]d[9ckZvYMv݊!lJzQ&\rssAI?ɭ*g̺յbS‰/P$!WL9xç=kjl95eq p݂*:JO3dׅ݅ GK  j3r6)C2;>b˫əM}y-_7ㅇzFn=95zgӘWhRcY:\/:N[E#1G!( &C7Gė=tV.46G2{zOZr2|cŊgXq'G@AB X4xᅨ/7{H*iwԡ`t2Ř#v|5{A+J>dC=6_)إ#PwQOdTQ|{ƱuG&0{d&/؂(|<wntxGY1VIrʪ ENc:::8Jh)PdvzrpX`bЧ7Ν3;)_7bчe۸+E\1/ViyfuqO|Ĝ/?He[=>Z7Xz Ȭ!s=xCyg 5-$"!7RYl'./5ӮY 9sOh`~0ܜHIp[>< }Kֲr2N{7ݷ?F{1Lɦ|tb9[d61C}ʑ\cXA'M4ハZw:VES3y^u<`ErN%D㟄y| Kfd焬;VɊוe\-[i27/:~^KKYzNsʃ.Ih+e'ZGU*Xg˥6s ?URP,tέ PGn?#RUvnk np4̹ {Y ü;s2,g,3.F?ZTYP fLQ37m$1vO>^)-IgfF Bzp.mx%'ttÝx،\n{؈B{#R{= 3-8hlZQ!~ӑmrgJA$֓Ae PJ[:^{ܶj1^ROh{xO<֘l(ƶig`|J}nβZ ߔIc0fئl'_Gfmӧ-dZMpI}%l֛[22ZIwDѼ%i%{nGV_zvV NyQfB'L(̃fg QnLv~h<y类븱&Pc<I޺H.@{bn)# MhC~DMGlCK|ǙYj+Ŋ{_bkQZo+ڥFľMsˆ  ڎ>k1=mM8I|&ҵivO 浴lLVZĨxU6o/ExguSXiƨvbIa8H_ HLz[,pRd¹0O۵"Xn7uAA HOV8ٽExRJד) ej uV~ #<(@a9q]AyP|mKhmO'Eo_&ZdDv6Nm.NH/Yxb8RMݯ_OR$s&ҫ1: 'tyܶr|cH:`d:7!Ye8 h˫6u*AƲmv]}n]{-[K聴4mZ=JvCI?xD}7kZ&Ƕʭ_t:wޡ%{&䵭ajكwrDeD# fe27c1n{vNJ<>8'y0$k>wqci#Qxuy;D2vQ6."\[9KUEwh@"8JL?fBNMMӟLiOe5~^<_hRuM(VqWP!O2ym92J\0,PW!ۭt.C Z`}*,)H q#r:ȒL~Qk^@؀ĮC(۴,<bq>RaJ-N5kXVˍڢАW66hy+ >sd>?^795O%u?С%R[^8ڒ<yŽN-JfN&#tii.64}8t72 YGG;ߋ'RjGv$%NF#2 jZM"Er:Nہon6ڀB{;?UȌ*,]ד"O? ;nyܶ;y1j[=ۗp5̗tC#!:vE]-Z[>վ"~v663:tw Jd(fwvjovGRI?يR/e[cVR7TeVJ\_B<OJw`zB>~N szU2jM<qN^q,{qz=h-]b jp`r=aat@IDATʢkC@w{O-xa<w4wtD{q&&\ƍc` IE\Ys 8"i3YTe%F*JgRH=RP?DesSiq#?9J4J)rH,RRi㐹!2hi?؃ j<W}enR(ok>hÝ~ecw~,zlqseA-zl.*ՔcSXж߾S8U9nLߴ[7 2/IRNAyo "kMcm6I z4$iJbݶ&4WVN^Wiٗp7VjwUrF/ii/϶xdz:XzQ""Ccg5]CA_٥8(lIfn,GۅpRQ.wd˵QZV}'W;Lgd"{c."=ۑ wRm$R:ܶ8Pso"ۿį?i6xp3u@c;V)_ǻ̀?<z}[:3A)8ݹ-`xmbl<tW͑7J<<>zICeg#fJ w4Ga9Ùt(ދx^l)WwӭWa'=C-szBnq ;}6Վf[:'UeZRGC|t%~<9+DC&/^۟{<z~mڏ}Fq хjۭB)Os[OsX:'n1+y^(=7Kh]2֑9,Z3S`릢ΩoX].F<q v<)RzErHD\4%n^ǍdBKDۥzN;-DE4Pր~#|w 7{6XVWUa6ԽSPԝ;(nwͨs/6LnuQ-itЀ *`Q%R{GrEc Z͚"$Z\j8Ч-Y2硺^Eƶ^<v9[H -$VXsBtgRܼ9+`N۝3ʕBTXP>G@^h։zeו3&pbu|WHG~DAA+:o7;U.J Z(Q82p;>9m|ImtUzL\* %b^^dAVQ);Ʈ㵛>g>CP&+Faik,k cbQ]%v1'!~OG(<) r зȲi㆞Q۝N4-Ԓ8.IMr9H/KZbeE88ow~#zybGzC/hb?αUlwϓdt畞HMxx߉3BpP3rn#ji!z(tjd"M[{h FI;-6J8ǽ?o{'~}G0U7e;_D5*9txq@J=ׄXx{㱎2{j]6փ4֤Zy r*Qb'q_/x}[ƝMMmRx-KTnYR*wy7\X}~xOtu}gEN_$ov_q5 ?#/0Y2at#-3Ku32M/HMՌL(e9) R,]7Jpm-0{ wj<IY~\<oYsT#ZT~A `>7htXbqvB+dڅJv I}T<Մ?c.K5{ y.}j1^ a \gٛĴM8}>^ n{j7m8pVgdDv~q1@4I m.|BATJY%&nwB,5@LR=<ڱœNw`v+^.vr刎"{b^ !˟}AJnہ6E3L2mEIgJ>tw"G;K]O0s!m=F)$s&@݃^;/iE1Ů?xܴ;y籍zzKim?g +QW2ͬ%IJSX>&C8p\E);{JkE0NJNmٗܝ7CKR.anD4ngI〝Zlz뿘쮣 Yk)C=p=ˈǢAf⭾<J垿@"<>6^$|Կc[}J\i~{<.jMmGblcX]d{ wZo%h] GЌiXW)f&67":@ yRB<~< Oԏ#N&35.L}—>,و,#7C EQۏc)Jm;;l #PDZXC9q+%0Ycyݓ,ș`+H]x-dr,fșS@v3x\8>}Rghz5&S)n;n7bY rDLfR#un"Fc -SR{eם@mT_aYW=ã12{aS⤖ۦL2%ׁEv7-al?"qJ/v#ɮéVxzzuzfH6kMJſ켂焵O-I `8'cݹc#nnCQ,uKdgd -u Rmbj4\+&}mT 9dh H`OZ{m<D&X6myüJ@fZZ"rrD2 ʽ/NN:ǟ` 9fn壇auƞ{I@$2~螳$D?O<wDcyy: (cO>Om~%ɢ'BumI2n4H19]d6|#}߭>E{ ߇uplZ6|M7uO$Xq_Rd [\7Kc& f[d"2cy>:<WN\eۄM1~#j;KK&)?~_nhY!oxx[ه7uy8X}yJ0F\_)0;"Ϲf$BZD}?'hGkhАpo䁉Jk5ĉw݌RMf]᱁E6=m}۝r[*yI("GLaIrs?N;};aF<kk sUSQ}m3tKg;!qNSS9ya1nHP[Gs{y fwZiB0+)$rMϮ|)2s@z\_qu^6o"dh>gnpFy: 3 ,=.T3Oc'-(8#ZσlDN07#`ed2Q0QxSl~@и}}y}xHOѧiYTį\y2G@V^@gp[QC1CA xQs~woi*WR[/ݍv.#d%)%,6|<YXZq_ZRL{NjD)[d Ȉz2r}BW:w?+6/Fes8zgoD~@悮5u Upa^C>3͐f!CSި_ĉ{9++NcGXr6>o_ƕE,1x*dًÕ㉪¦Q>+f!2֖_ o;56k9TK56C }`!do׻,R`GtHʱِX8,_>`.{ ?0Oz.!nǰi[[:p o&I+' jG`#Ǔ_ NYRYZ&+3\[ğN~_ε?[n;JjtxhxdlDsC+c rؘ:2V0Z;]ژ^hq"gn VS_ {Ks p8G`"+jy8IG'I\p xK6%b$?)F>3UrZ2|ZkNJ;RKĉy"">Z5W3JV=uh% wsBm~$qp8G#>owpĈs&Wfi t&Mp8G#p8G#p8^H1ܽ/:sp8G#p8G#p86n =I(5;e p8G#p8G#$(Y˲6)K6mq8G#p8G#p8++\5˵ڵA&L9tcܺpȇp8G#p8G## INUr sI I/qT."y`jj#ZB*o;O-7lQe9Al 0P3V@-s8G#p8G#pn7q 8(.?*_<`=}wv{\nGRQÔ0)kY]SH/G#p8G#p8!x WsǯfNlx //^9~Xgh\eZ`i L[x"G#jkp8G#p8@vx/ɻ.v#M@#e5cl/3*zo3-8i\&0׉Q2B&-Q͑7Xr/#XjV,/G#p8G#8BT@Hp$TON \YR׈w"C*^꾋-':X;3+DJEW+fy8G#p8VHLλ\G&V{pb~:CE9MmH QۉYNOfgXIuIa㙨y%bj>n~фJsDPPln]Ŷ0tL4w̏tXhZWYӴ.t@8(4O<817FY Wm?{蟟'=v[Q؂܍YX&+-b)Cm~6dWC7C-"T$~hiӵGUy}UAm·4E%`ƭV}4"W {@]T}]w]{ۭyS e,ف<=Qߘ_ <Dg {Sʪ>ˆ2ZnrX8iu~-ً<=b$ԉ&jx⥪r䬧1+?Wq7KDEm."uKM4.+-/p8G#p8{VZz#5OnoobK\fiXKU56 IF*It?*4|S\`B4T5 g'OjC+|ZOWɦ<Tnť n?B Sv%vÿJ7(}[y奝@Q1$e?)75oaaz:)F%|awEr<_]sWeEϡ`M`{=ە1 k1s wF EM\ an.q酇#W9U!c]~ v [{o/mN7 (ҬIm!PuGk6>=&PKity-7ॾ.mzZ/<n+73_uesXSӈ7k_H5TmۃxInh9nzח3f{w/%9kgW<8=G#p8G#fZl"B5t >9xq\o|ɮC{tp1l0Qvd~;~l)NG_Wv ʦ_6xV ŧ M; A*UƲ#PՈ7u) 1:%%o6T* ˴b2*WÞ*T󙸦1ꂿ}1;<BoQnc߱qh(o-bv1(.@ _7*鋇ZwzΒO{UvO7%O^Cb˥ey4y̦sݶ_F*Zı G(޻ %W'e=KlPוtp8G#p<# n͡g)TڼV~rU-n"wxېilC lj:RTYj<)>zKI}hAvEa2~h潖KvVgd@/Z` ]mAj6RwHglas:AՇ,& Ž;bFhڊ;p;TK&`vBÁꈝ I7n^ټB&y /;36mN~ݖoQq$e+Ɖ#tCrn7e1փϟE沊pzt^/ [.GK8@ N~ 5&Tr @&6o]™3MV.c?r]GOpX'gmlo[>,^f2F*!*"mpTם I d$Y dY` `C N&9IUJNL[Su^[uOթS5N݇7ys_d^LUqRN!IX +2 z~䮽w[Rmw~Zk>kR掠djLS.B㠶Y6W/|;I3R,ɻ\ϟ+O#8D@@ XU((WݦZj'&eo`bHg+ 8sg|`tdP]YI7k\\^AT=M;>lxIwU4y>P?;z2^ikӗArblT˓jԉ7 dϙ?!}_Wcwއ- ;n#8yLNQ~=0/<ҮFӮ]#vP|zf.|nzO7 Rpܴ<3~̗ N][ݧ7AԤO7n7GG]W{ƅ~qkKJ\Nei_|< Oz@dӺu7;Oe{9'km&_)MNБq֩jޞvꕗb,U#-|6)Ӟ&kK2? O~.˟+oK8F@@(-Yk˔ő'hJ>z=]uq$)ý+>18M}XqU7Ay:i≓$_ L VTTҒYwϛLњwI&b2C!ͬo`^'g'yIeBNic`s.ة & x{/'UO۩G<o.x56Twhy7Fnjdœ;KlO3v[}_VԜeE)⽜*닕pܬ*?#=RW%+R.1T㮼-l[$ݛxI|ŋW4dZe%Wړٯ'eM;_lFpݱfiwћvc[`sBVnK.jQnb SCl/lGW    ` Xv [ʛ^k\S58dʛ,s-raOMM׼mv5\ZnCe~36ބ\ҥ>3vs4}imm}v-(|uo9T Xdw`l*+`jPMUkjohjSKc+TjW_؀' 2njU]Ǖ7_32 )sWVdOU?Ҹ|kK;nd] _iOrgD8ϯ?FןU#7n&\I85HE]BivZ襮^WnJ6[?@@@;!0csfN~v3୳Ovm|}k[xK4[O'y|786#I&46>n~YlےGXWOT 9hw51aEޜmP7Zo׫ݪgNQuqu`{o0nB&n'<rs8禧2xRzIW{ mR{zzlܤ=9 'G9$H5^L1|ַsh_+X}f ڞTMlzK|n0q0k_@gbR}.1dB@@9|K3˳4&l .GO׭;Vtsl=,vn'Xx/"ZaTxϰ8tn[4/?5_pEn CKvn_?4/$Ko7^ERx:v L\^'vhU}f|?Hfx0*ͼ-y6Yx]lsK`ؙu,Bڤ'KT7aVg>n|޵eGWxs%$C'.R~Ua瀞efXwKkj]#_g趡 ^F;5 |;og=62<@@@V x+ҙ|; ھO-ҧK)b>кO{ݣm5wVmWN)}X0罎hJIS5A/bϺо}gIЎ+?;<Uj8QnOLk2ɼcC>/hYcZ_km^nw(v_ܞ%r3~|L s+(ԖƆ0)ޓl?O]3    p x'omO?=Ϟd<ÞΓz#8.}~cMb2{Z1Jf \ƇjGY4vPg!ms''&X|HC[isдMܥfVk8։=n+gOsV]C76uA}]Wzzm~I395"؜Bk-s?ﻙɠGiK۴)~/_}KZIVnڽtݭ ZsUՈz21"O^XW\fAd    ʜ^Hh.mǟЗ<ԾpRV88{;1Odn?شC ׾fm2pB/gzE^7@'uL)ج]U;8I}ʴ3j^_`4;+:b_*h x7 ݥ~7O ;{<_ .R*u1祕</E5ݼ7ccWRVêז}k{ TXʚf-zϐeऽ3bDzA}DgV.3ߐK+i/</!E>,6jw oq{d۵R`B~.͟Pq   &@h]zTTR,YV} r=z`ڣ˗{t%rMU.=Fz{.iɧ_%^Ġz=1?3t)VѪ:Ifkqw.h`_C<0wUQ{N7&m':kMw&tǞ]гmus*OUMjUjzn4PޯnͩgDSt\8S;vihیGqŇ:5 ngoSK24۞~V/Tרag1SJEd8>E8z?VsmLe봩hެ^֑Ssf`U5?]>K}i**7QzN8du :~xBl?zs   &U pgzXcu/z)7$Y?S'%SIv~k{۱0{etKW,vգz;ޓ4vlxC_O룏loٮ9Sfbn"V~g=*ȽePk[^ףvtGd%j]zowѻG;lmv_DN:KX֝~ϜS/}oeZrJ>yw*/:3}OiG쾻?[Ui7u9V&8d~ ѣA߸qd*v[ͼIyt)?ǯ%ÒύR_/G/{p?{Aсsm~3Ζ}A@@bIHQ ?~+xCuI/ze`荫x?-|~~lu??'uDeG߾` iZS֔6;;~tK7EN}Ҵ,W,ҭ5~'z䜙V?_ ~^%S^1 L9iSdVm:4Q^czO;[|G;hYN:q{aGݿ u5}ҕ$>ND^05ZR;+uDyY&6f֘;uȋz'O2>ށffleˌlۓK^1yq|WNygݛϭ{9vmA!Y^HyBKe?WNU#   p ڳۊMնw'CC7Ufϛǒәf9MLLӭ~}uja4Z6n]IY+U^d UzZWz&ƪ]yEiT]Sj̚fu]켴PLyADW~zDS]rZT8?Յ٫ͺe7k{mզ7$)3i^+깞ܠg<n͒t}m2]VK;O~uK x0s;:4pI ɞܪ%5>>YH?Nr-vg_:9oO&f|)A3-Us\Zef?Wu@@X1f/-Uy׳Ok֬j*k_lw)[=. ESɜRcy׬$f{}+>Or N{68UyVיGc~oyӃI7'ZkA k8tIVޅ/Ltҙ{/St4lHD}uNd:=$i(|g\S$Lr6ζLsޞt۽XL̽?{tKռl>VYYK#   Rx y=<M~x.w]~0/5KaW=G>Φ/|P=@@@@XE_D-?X?Pob|    pG*+UVVnVy7{Hu:ܽPw=vWi9vk6<@y&05g&^ΙܥYƚ˚|a<8s󚙙͡a394' έgMkf͒esP 4/%ҺѹO3R2    @ LPP [K7ٽTZJ 훱:xJ*m:y4422kovPОMA:U׉7dlWeE ̋!z&;ӡn5C@@@})O3`r<lBG'|{_B%vk{@|qQM&&'X;S?K;h.ܹ$[/,).0(/+g_Bfw*4_(xZׄ?==i3{=l ϵH^H@@@@W`rrJFuފvC))Ğ;0sZ;mo TN1 ;[*msgNִNmMлnFYuf7F7k %cVfM[Yv<     @& ŀ6שjnm+JUf|5=11`w+ɭYV𾰰yg2x    V{jjZE**,ҤY*Z vϚn\n& B[#Tz[˱ey/B:j"     YAok6kIl=>1aAo A'P@@@@F%rr^m;W@?jKp&tcYM <S@@@Ho[vjM^s:i@:9u{eVMVagXSfw۽;9ύ#    p ܧZ3j-Ic.:ћ^ХnO{??>h+-qg{&φ{Wi   o𞍮dzoޛV0&jsaZei#    ,}:~;:~iDŖF^JJ֪r}66hKF~9VПz_z.WB_Tp׿mqe Kը    $6 cߛ<ea}#*mF_|AvGǷ^:tO4     L jfx:Z?:=Ewdq݊_qʴc#zZ577qMkv: {$$G+Ȕa[o^O'=XJPÆ HNx|钼2}\SiޮG>~QzrGj*KLxyY/ _9+:/ga+V;VmE}>7gXrn6TkMI]?\׮v]>Y{6WhSuiguܘ/:|ܸ٫c_sU*vbIΝͤUQ`e%:{:3?bIoev5o'٘䨆oPOSy }ѣ'}ТG *sôewJSOzhn~˾5_fl'`m%Ϲ1    }':{QnpG:Ҥo,mlCnTEc&^0dPm}Jm5nQSv٪GЉޙ Zӗ>6'K_NDZQU}TĖִU;ZۯJힶ;l19bm-j-56)ZaOO6>9kag=vsYGUʷǚR$hnїvm;NTlS~=\V@hϼ|`&{C:Ic:10_xZ>ἴ5v8TzK&~/)]gjtWWG7:<o3nƭܠ78Iơ2(~?g4>/ǼU8ة~GM/ 2$a}5wL;fx4wsk'    p ܷ/̬Gt'K6lXCWj`pؓ'噭j /h/~L3klm0(iГO? {'#9U`evcu;`"W54M`11SPk{43k'3:f{hJ(.3<F<z;y)bfem_j]d6|!1m`%GϬ|?wMZU7^IW?ow3/R3KTfm[z)!r.ĘYt,؝xsN@@@@`w~LZ'o^nRf_}CUN#K/>d~\v5ڹ,Y?ԟ?S~i&)N%K0שn|9L|tM>wS{otoԠafv7NA7`FlvYa>xzׂniM }_u7I7Lv՚o g`7Gz6Sb)7zcG{['cciaf:3wޯ3y˕I3KpܵCz̗|c/ו f_sꭷyʛo?:"-ڽzN%Lc^Iy1_x\7`ct)6^3hŭ mkjEΌ%ϹiRmm4_-Iwf,XZǗ@@@@07n͙+yfo|`tdP]YI7k\\^.ަl<ꤌ;O<Yn}=/紵)\BI[1XV5SfiO Rï1@лnwӝ`u<kw(Pky\MiWTiiW@IDATݮ;(>=3O>7=fvn) 8nZܡ-ΣuUWK>_)-fuwn%wm_Ro[űE.)q9-}4x.2>?}wtjr-z{LL?ow5AZ;[/&md]sEܼ9fuU;1ޒ?R]CziRD):?ekyK$I%@@@K9nsAr7f~ N^|n']r~֮zϽ`P_'<"7;I4vu#752O ce׃?5~Y+0IL~mUgYu㗢SvY_r턌w6ޭOέ}g<YK$P+r2g$;gy=" z- R6;2>,Ս6AqK>-gjsRD'ݥX'iZ."   @XD)uڞvE:>xYLM;7"3#ڹf6mlrdimm}v-(|uo9T Xd%ҟ1[J7ߟ}|%jS3KdY64֩BAyfY;ɨHqS<\!2`1uXZǝ}VԛOU?Ҹ_Τd{5$Z&o$UP,$/LksvVrYr6xsD-˙\>鎷T%sk),Sqn2    @HGXCR3S3 V砙k YĄysAh͏皴v;G1l fj=:rMOjO󃖿q|M[j`j.`&]1O_yƯSSo=3yRbOshY3b7g)t hZd>UYd 6vmK:Y׾!Mf9KbfiˎE>鎷T%skkjs   @"w_~Ѡy1Yz;eHjCFyMhfK?ŽkGȜ5hG80^'C`w2xrUooz\~ga]4EШ6C<.MUwmFY"ܳysy.Cgb|̋S?0w23+e,z~V+q;bfoسjꫫTY-n<nY}̬m-:Sq L̗i/ҏَ7g{h$Z/] y<E=NI@@@@`9Vd[1Vmi(%O@ȹl;N}`4Gh[M,]Uիd7yzǾYyp{z"罎IS5A/bϺо}gIЎ+?b[u:ǁ)?q3OSWZ'vg r׽N/I2t ҶV_zQ_:~3Sȍ?>LKne_Py`ߕطTVTkފz{z<tƛ<UPZ-~åφuz?BY @@@==ԪUsgoxğ=_u}BTpUw=ɂ%ָ^}>KY$19szo7<XFɼnV7]<h6>U;⧱z=Ek<P-|`Ndkڦ Un՚5/4zVJϪ %[-:w[\z ڐuufɊdY,glS sZܷ=ygny2x6i.r0WҪERgs+-[z|XFqhݷ':܉\Y;*ic{F/eT.[\7OѾl?f&F5^~ȀF}5@@@xo5=YfGFFI35ʜcTf }I;ϸG*ejۘ󉳷#DPYi?P}s|;z~GOnGw^Pቓ:oVج]U;8I]ʴ3j^_`;+:b_*h 5 ݥ~7O ;{<_ .P*u1祕</̕5ݼ7k4WRVêז}k{ T3ʚf-zϐeऽ3"vt;κ37$#Z_&=RZlyE3~Va/!dIi{YojN`^Ӆ! >ϹURGp@@@d_{{yc+P>99d:,o^^=<X3&YZ/84aZ-zj._ѕ5ݚWC'sL=?n'v~͖ncҖxLjP=Ӟmיm:hV~]ظ ˻Ig4`wb)ֶwUQ{N7m':kMw&t۩[*nN婪I޼QV_t؍rj­98J] w)L:nuԩwsmƣC ͚Hq!z3_ tZ7l{YPg^-/LTX,Q֢gb/PTV=g6²uTv4oV/ȩX93~LڪF}ҥ˃ƾLT[ר~wֶ̚8xv9ݫ/k]wې+:~/m[y\"f9OZ(@@@XB!5U>9_NR,}vgXb_Sn 4Iu5fFٕ"=!,Jjkn-Xێ9+K[ /|7ێzTy~Vyg{R=暟.w ]s8=^oG5?OT߲]3s0اͪE٭zUj {0ǭֶ&G .}^9JԺ1 ǻO0<:q3wUwL]cMٲ|1)ѳGӳu5J;&9_2xʴx|T^ ufҎ}w~Ңo@s^UM:pGÃq8 (1um99ZLJ,YrU4޾/"A]?˗G7xs0'   d$G߫n=H nA ݸU:xg*xh0?E,qUgкe`Ϗ-9馉}~OꈸUG߾` iZS֔6;;~tK7EN}Ҵ,W,ҭ5~'z䜙V H[¥_>:W>H] ^T{sԯkzy6ѩc_|OfqwXMձޓ:i})Z~VfSG~N^.q?{C#xvGMt%;O>xEQL8mJѻ7m5ypí1wtE O+zǏLJ;pLw6#'v9awwvD}fַ3/Yj.$&q2d5xsT=    Yd߾R&K!=њػѓjxT֌Xx:s`w۬< =9ӭ~}uja4ڵ6n]IY+U^dp UzZWz&ƪ]ayEiT]Sj̚fu]켴PLyADW~zDS]rZT8?Յ٫ͺeefVustYb$eF?m«~E=ǍYZնtZΎ.1<:o.)4ÌWz%'0&{fCs֗ gukzm9~v|ddFbkm-Ic%y !   *l_[Ј gsj*(g/sRS$_dcωg_ޯ([2 ޸CtX]4fcxScc$>+Id-e7ްX<1uJUW9rSy?]oW\}SׯkSW4slwٿ@zyHJ`dP='g->=ؚāKMPn{~|5؀Jgid_]D'ב2E瞽OAv܌Dᙩ'yN0E=;^"a&~3[l2$m6-+i?   $&IaaIxxoVT<M~x.w]~0/5KaW=G>ΦU/|Fe@@@@}[&g}2] In^w=e{eu-f+Qc#O*>[g`#yK$A@@@N[҃ML_|f[)53V`y4|s0K  J g} p|΢   ,oi7-k)߽{l 0;[r ꭟDo娴,~6֫LyŐyZzNplϾ=14@@@P E6ŗ&I!@; \`xB@@@_NE=D,i9@@@@@B(@;B@@@@@2 9@@@@@B(@;B@@@@@2 9@@@@@B(@;B@@@@@2Xր|.kRԉ    E`I2*e."p,klybU7@C@@@@T`\xx[*<|ZӟWIOO&E@@@@NПW:_5}`MRdm \D@@@@> #ד񶤉=(xuu~Rc ĐVX(i&."    p <2985Z{4 GΗWW^Y T>%C_,H@@@@esjʹݽ,i-wL ,7OY@@@@iJ/P\`e]p#:c/I*.<gfy4ds>(@@@@6Vە.I3;;g;L\wMI=33e>ZV?&ߺ$-G@@@@ V-ѱP֏J*../E.( ՚t3v}>c!འ?W6WԂ\@@@@@WVT蓒J"G7Me'&4c v߸9wAP?U7nv4 oQ_*vl#    ` \+Бjļ&MдXK׬Q~~gn#gZٙ<LN5Ŏ4>>aZn[/+ٜjZn;is.$٧VTTҒYw[/^655sdffV 0-P4]'OyIm4/̟ҕ-G%uC@@@m1&y],X&69]--Yc oнUTyKu-4ֱwsf'ZbTyv_Df [3ٲ_ӦmXܰd@@@@щ3a[uMϾN;-v''>ɗ캧*r=fA3ѽ93xߙ&S*    +ps&g,b/`b*>{h;tŲ:Ae}hy3{sέ[23;_$jID`uLA@@@@@ l#@@@@@ @ldB@@@@A@@@@$@;@@@@@&@;l=B}@@@@@ F&@@@@@ [P@@@@@@ @@@@@ l#@@@@@ @ldB@@@@A@@@@$@;@@@@@&@;l=B}@@@@@ F&@@@@@ [P@@@@@@ @@@@@ l#@@@@@ @ldB@@@@A@@@@$@;@@@@@&@;l=B}@@@@@ F&@@@@@ [P@@@@@@ @@@@@ l#@@@@@ @ldB@@@@A@@@@$@;@@@@@&@;l=B}@@@@@ F&@@@@@ [P@@@@@@ @@@@@ l#@@@@@ @ldB@@@@A@@@@$@;@@@@@&@;l=B}@@@@@ F&@@@@@ [P@@@@@@ @@@@@ l#@@@@@ @ldB@@@@A@@@@$@;@@@@@&@;l=B}@@@@@ F&@@@@@ [P@@@@@@ @@@@@ l#@@@@@ @ldB@@@@A@@@@$@;@@@@@&@;l=B}@@@@@ F&@@@@@ [P@@@@@@ @@@@@ l#@@@@@ @ldB@@@@A@@@@$@;@@@@@&@;l=B}@@@@@ F&@@@@@ [P@@@@@@ @@@@@ l#@@@@@ @ldB@@@@A@@@@$@;@@@@@&@;l=B}@@@@@ F&@@@@@ [P@@@@@@ @@@@@ l#@@@@@ @ldB@@@@A@@@@$@;@@@@@&@;l=B}@@@@@ F&@@@@@ [P@@@@@@ @@@@@ l#@@@@@ @ldB@@@@A@@@@$@;@@@@@&@;l=B}@@@@@ F&@@@@@ [P@@@@@@ @@@@@ l#@@@@@ @ldB@@@@A@@@@$@;@@@@@&@;l=B}@@@@@ F&@@@@@ [P@@@@@@ @@@@@ l#@@@@@ @ldB@@@@A@@@@$@;@@@@@&@;l=B}@@@@@ F&@@@@@ [P@@@@@@ @@@@@ l#@@@@@ @ldB@@@@A@@@@$@;@@@@@&@;l=B}@@@@@ F&@@@@@ [P@@@@@@ @@@@@ l#@@@@@ @ldB@@@@A@@@@$@;@@@@@&@;l=B}@@@@@ F&@@@@@ [P@@@@@@ @@@@@ l#@@@@@ @ldB@@@@A@@@@$@;@@@@@&@;l=B}@@@@@ F&@@@@@ [P@@@@@@ @@@@@ l#@@@@@ @ldB@@@@A@@@@$@;@@@@@&@;l=B}@@@@@ F&@@@@@ [P@@@@@@ @@@@@ l#@@@@@ @ldB@@@@A@@@@$@;@@@@@&@;l=B}@@@@@ F&@@@@@ [P@@@@@@ @@@@@ l#@@@@@ @ldB@@@@A@@@@$@;@@@@@&@;l=B}@@@@@ F&@@@@@ [P@@@@@@ @@@@@ l#@@@@@ @ldB@@@@A@@@@$@;@@@@@&@;l=B}@@@@@ F&@@@@@ [P@@@@@@ @@@@@ l#@@@@@ @ldB@@@@A@@@@$@;@@@@@&@;l=B}@@@@@ F&@@@@@ [P@@@@@@ @@@@@ l#@@@@@ @ldB@@@@@~*T}X* @@@@@Cfx߇N@@@@@{Q`.)i     @#HA@@@@X^@@@@@r$@;G     ן#    Hw )@@@@@`yx/?OG@@@@ȑAR      ^^     #9@@@@@ ོ<@@@@@ GsI1     +@{yy:     @xb@@@@@Wt@@@@@ $     ,     9 #HA@@@@X^@@@@@r$h{=b@@@@@)@@@@@ ,ݓ( @@@@@;(TV(3??驩>    @QhZeb;>_dt*ȟ}L<D%IfS%&Y<i,[$H*2]h<}6{\(3r@@@$L@v)I.`krܼ퉂n 'ע*N -٦5k)/@vێFüx:zz9=`_Z+9Jʎ)<cexvNqjb_p3/ϗd H e{S`4m͑}ܜ&&-6@@@H!`7*UL/0"WyG1ggg5bfϳm5~**vm;*ײ}>yyHO6hY"/ό:w_lEOMA=j;.M-.w}^_ &,Vq_4˰Ϝi?5 H0D)ޙDz@@@H-gشi es&5of:uV0+ewaa*od Zۓf9bllHq?_d;~) 6   Xvϛٿ3'ҝ Pa̲5EfVv;U&]$+}3cl@Q*լ-Ta|ޖux=8C@@@ *--gsOLu v8Κe`M TQV@KXg͚R3nQiYai|10J-jb@x   (23|W5(ߟ`ά9rY,sbgf2nm voY˸ 2L)3\ViY=Y-p   wP~A)wP9E;_r3~X$ߊ49 ?+ 33#9   LZL2l63zɦDgRg%:#Dw5    "@{Yؗ%l tH   ,&޽=<ϦϗǝX+8   ?&֢&Oi-@3Lwf^F@@@ 2kx[љus(UxDm -G@@@@3C!T@@@Hp&v2yN>~    k5 x&XB`v>W%&<7wt<fȁ T|   MMؠMUZS9i~fZS;縮+b%wp5I$EJ%ReI,;Wcyʓ*9%IU<NYk<eJ,HQ"E\+޷ k|~w9s?6\~钻oˍ⋽(%Knu,o-][d5%H5!}rupͲA;.W]ˑdT:ikrc0Ҳ,+왗%c( @ rO>*\ Wޑ[YWkb+eAwa_N~Nٹ)u[mwmX7n>W]fyԑn{WyG);4d\4<ɲ xW3f @ P.N͙8Ҥm^yٝwN;Q[K*_ UvU64<CcԺuvbE^岼lY.}da<tez1>|B9,:%{. @N$}@ @@GJn6\>%;"_ΆhJX\D\+eL Up|x$M>1[_H1wn>پY +ìk~kgpqyD+o>e< @ @24ӏ>/~b֏4W^yKvv8XA:P>=v9}|3djr׶}*W\h$#i ޙ@ @Olj*<OOG.IYjZJ,], [!U/;D1p>tE[Y:J&տU|Ɲ}4/ޛrSY o -[hM푑!푫}߸JX/K[Juդܿ!7($gSc=*n=}7%;6xiv@~Q\9-jFi HABȟI2x]~dv6^! x @ @@[8OΟ9U`ڭe/l ;Y+|vbl߷_69}Pv[F"ke߼.YwO=&ڐLRw`l%o}R1vپn֛ex]" Um޶x6=r乬;_ӏmxU#f؆#IDAT7iR<{>$g @B; @ @H<VYXbWEFX(P#bwt߽+CCj<1./tVv*}v5t/>sG{vAzo./|9Y$\[<?-d}}U9|#ܒ/ ^ Cٴ<yCLfvet2ʖ;ѐ @ TX{jV#s*ikLF}]Μ(.t({}^oYjR eCS˥;ղٳ_X+ @kg{OiSǬ\$wn'n~yT>l4%LGA8#?5DGXt4yY350CZdhx$t ϛ/WLK7YI='Ϭl/xO^9~ӫ'`3 s"8 @ 4O ~> ?$[ݦ{buZɍ"GC'?9+kSMҢO;q7{ut[w}uk'OUٴvo[nSNNFS9>g̵bMhҀM!x<[.ϯ+B!Ur@9Hrx @ @(2Z<~I'CvhJHdy!CWtHv+]z]+WnGAݎݵSS_ea _fY4@@H@ @O`a>6ѶzlXD<_Rf1f<vR/-Q':hWgv olt@ݒrOw~{;)E-v-}Bv\F`*h{[UN@ܓdW-'=&}6T4~L @ʆU4gDs*q% NMCm۴G/hzGݢWrK?xk!?Ց2nWvjZǶTny=% ZrdFuܻ{ɍ??nXY^a8?.8ȉ, Pِ @ @ 'l m+VB<B#q>|tܾ#jOo7D<$?ڪS\DoNܥ4O[y ߑ=s}⥋eԙvowlG.3] ؽ?=F~{I۟tn){sZ{'J3O$n 3IJP`  @ 7\gGvjl}l\Z3k[_ʯ_}GQZd[.}LG jv*erߍei|\EkPpqL}66@CٶQ=<v{=/n}W.G'_c!o_ NN%8rȻP $qgxsfB @ ;-Y;t:9sG_>9r\6s ]" D+jXob~+7li6q{]xՃ\NCi{|27s*|zt>aVuWgwoMɾef9m尜l%]f}5!@ @ Nٯg_[e˿|iG̗%Mˍ/T0O0`oԹj{䱃/V݆iW:¸~K{Ik}?FH rEK_o$?ak/kpןhsߔl_7<ʶ=8*+Ղ4, @ P9>}븬^lhvT}Gv95zōZe%r q1rgչwJVM+L|,[Q.pOsfgu$NE,]&T~R/wvyv"ڶn/N_kRjU/ߕe^v':QYdJ{vBGgNuͨHòέ5vk=j1?.?Ǘ9)ߐWˑAʴQO Li!%x7K #%@ @@['-`O#|}z˲u۬XvnSrK."[_똶ʖi kk䕟DdOc?5S:~į45</vsom+YSS'>$ߖ'9ՏwIөgmZA*<V?q3wY߫#̲kq)N"y'ߕ^d^ϑEJ!@ @HkrW/}z:\w,.}]}zIw-gV*KGFedD}#O {m2v$-y絿C'.ǛxVaP7G{_9)\o 5`Vs>.)c7;_9|F:O>O v'Q*J1<Vw!<^;Oy0꭭Z[ +EqMC @ `Μ^EȐkmrQD@jS264,]qCj[!7(˯:|Kշ^Fܔ˷qEZeeR71,*!sMn0ԪdAC,&z\zgKz'FȽK~Qjj}֍ qvRz r# ί-Ui'tvP_f zکֱͲ}򊳓m-'j6븪.4tz\/rJV=boB*pii~4Ngxg|lg' @ @enݵ˵ w|~/O}s+7q9VgJMsri9=s2RJ~'cANlI @ $k{'tf&]Q ?Ûu @ @"0 5a6z_^U#`z @ 0[ƚu5g0O;2e-,1$e,ơHWB ޶^_qeUǑ @ :Ԥ!<d. +)M V.@ă @ @(ֹݟCP|Ƒ2ƴ6[Cm 0_@ @ʟvܔ*v}եKOx3G xܰ@ @](kt]= I2(0y)n@Ua3¸@ @#ݓ|1}1&\w~ N?l BFBS["&@ @(* RWWﬨl TT[CNLuP\Uh^d̫) S=/PL !C~1$ @ @֊ckf.)TWWKAhASS5% RU5G&&ِX:ͭ#x~1md<dd!x6Gwg2 YB @@aIR2QM?A) s284ɂ3`XSjQ\/7LS:d풔Y?eʖ~P3D޹QK_  @ sOFmm/jn(4˟kkj,[ ^?KI˼jYdd0}Z<#WT}!RS̤IX Pc yy"abB @H`R% Nj ރڜ,{jgogZ?skg-4b0KcTPy7BQheH @E@ݮnӻVn9 $066v掉E!H .79bL-pۯR:>@ @@B~ tMct!{.@ @ @MsS{"dWRb))hC @ @`(c͑S*s5weX,L @ @@ d3h Q8]={{E7[׮nSC;nN9{ʥ @ @  ꝟu\ʼn%;C曤gA1 @ @>캡Hf̽ sXeyQPi;R?ǎ ---N Zn}zooXu^ @ @ %`vhM90fE.Kkǖfqm1TxOȖ* @ @ R(55YwS[vf[\96^˥eצ+<sqmYmw{Kbowĉ KX/<gLFFGeJ}288( Z\W @ @<IwG V,ۂ0 @ @@B ˄:Zέ@?5G~Y;56ύaY/Ͱ8UAwMB5tKt,6|h v^ CV稕:dp`j:r#uO=e uc֎AyA@ @ $Ⱥfl1 40/?!@ @ DA%0X{ ؄04vxb m77~ۺww8VOx><J @ @ e.-I6wxMW9/L @ @H*Y;M 9M!kɽ D𶧬Ię=ݽ#UUU2:2" Tebv @ @E槵?k(Vw]>25i1^Z^IЩL+b @ @"5?KvA–½j\KsíL}:nМO{#M쥒eDv266*ccIfA @ @C@k}Z_.{@H*O󛩿4` @ @ %i/2qT;.ʸ\JXUiOj 2  @ @HiOk~֗Vf - bI<St/&tۉ^+u]]%u244]'D,@ @  -vkOk}UJvK+-0R#4r ]~1'#<{E)_K-H[['><AuϘ46Woa @ @*;G-[k}-9G96?T `J/rҽ}d[}~#twݓں:;A=As@ @ <4222" ب*SzJ-vOGzp=&MsA x8Բ ,J ~*أ]? rrR6es^KuQZqf9by/CŸBvqŠn?vhA @ i QRjcz qc֟=m7Ǻ+fqj}[ %`WCB*u&6 ׵[m1C<{D:Xy%-Z*s7ԔFZklpWݜo^7qmЉŲ q~h?7@fֽ;>n5{d:c@ @fMt9Bq.|XQmu'bC%핑/=bu/a---=?>ݒ?ڋ֤poXKUnެ7[.YآVO_zMfk =R(ۭ~ q;AtZy)oC @ -%|Y Cl>mm >({MZ.aoR7*8n95~K|ɋoR*Ir-B='g@^4SVz9jx\]gi로@KzZP jT5'v4vމN`}ӗcvꗜ&?gӬMpوVrfH? @ @0H:K?mo%rkq~Lz:azH-xyXWaZki3vƒa"֫W<y39Y/.>\wrzޑA@ͭdSm65~o܏w@ @ nj1^9s8׍L vQUz ۆу-NxzNWw-azctI#PwS@+یWRV6#U7=NaQ DPv^/MF{0;+KAt$}8lsy:r @ @ %I+Iufn5m,M!{Z8z:\7jF12vѲg=\v /YAO<C1ͣL7Kh0i7Ejn @J#n6}3uآnٯX#`M*׌nF~gR޹dG/ @ @6|tqJ b͕F؍}Qt}hpN0u V)➫횟 ydFWPO0vxVGUbD4=@~:n?\݂>Nܙ}}{?[g+ Q]nOw7M3S7)C @ F`Zts6^r3fIw|t2^^!F8w3'V5Zt!`*N&p*Uj^a|Dۧ.,ʗ!xT" e->qnI_ jb=C2:}Cd<pqfk0ױpN% @ @ ڌ_^!K&>]'f apݏ*N!\KqSO7tZ~oX,r !v<RO xub,-1Buza['uXzYf tS5(N8wQe1!"&vhq%M @ @ ]MMZC0RmMH:ŏ鷅Smx^!31} ;dw k$hiWY:#eN $xE\#4s91 8^Wp<^86'㝊1/DZͽWݯL·kcWwEd un =2 @ @UL5&rK]dc0zP}f8]֯Dq}?{jNk xhyB"PcjdNyN{oE xNG{7i`A?]HP/cU<f1)B @ pU"gQ i]g!dUD}SduJn|pP X{}`0F=ұ(V-F8D4$0<WTi*B.f[T,@\{L>O_cg5^roP @ @(s/8v^\_=\ ur{2cSwϔw6TSP !Rč׮ʔoh0ې)׆; @ @8f6LewQӍ?S_T.QO ΢IENDB`
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./scripts/flyway/configdb/V1.0.0__initialization.sql
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; # Create Database # ------------------------------------------------------------ CREATE DATABASE IF NOT EXISTS ApolloConfigDB DEFAULT CHARACTER SET = utf8mb4; Use ApolloConfigDB; # Dump of table app # ------------------------------------------------------------ DROP TABLE IF EXISTS `App`; CREATE TABLE `App` ( `Id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键', `AppId` varchar(500) NOT NULL DEFAULT 'default' COMMENT 'AppID', `Name` varchar(500) NOT NULL DEFAULT 'default' COMMENT '应用名', `OrgId` varchar(32) NOT NULL DEFAULT 'default' COMMENT '部门Id', `OrgName` varchar(64) NOT NULL DEFAULT 'default' COMMENT '部门名字', `OwnerName` varchar(500) NOT NULL DEFAULT 'default' COMMENT 'ownerName', `OwnerEmail` varchar(500) NOT NULL DEFAULT 'default' COMMENT 'ownerEmail', `IsDeleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '1: deleted, 0: normal', `DataChange_CreatedBy` varchar(32) NOT NULL DEFAULT 'default' COMMENT '创建人邮箱前缀', `DataChange_CreatedTime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `DataChange_LastModifiedBy` varchar(32) DEFAULT '' COMMENT '最后修改人邮箱前缀', `DataChange_LastTime` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '最后修改时间', PRIMARY KEY (`Id`), KEY `AppId` (`AppId`(191)), KEY `DataChange_LastTime` (`DataChange_LastTime`), KEY `IX_Name` (`Name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='应用表'; # Dump of table appnamespace # ------------------------------------------------------------ DROP TABLE IF EXISTS `AppNamespace`; CREATE TABLE `AppNamespace` ( `Id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '自增主键', `Name` varchar(32) NOT NULL DEFAULT '' COMMENT 'namespace名字,注意,需要全局唯一', `AppId` varchar(32) NOT NULL DEFAULT '' COMMENT 'app id', `Format` varchar(32) NOT NULL DEFAULT 'properties' COMMENT 'namespace的format类型', `IsPublic` bit(1) NOT NULL DEFAULT b'0' COMMENT 'namespace是否为公共', `Comment` varchar(64) NOT NULL DEFAULT '' COMMENT '注释', `IsDeleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '1: deleted, 0: normal', `DataChange_CreatedBy` varchar(32) NOT NULL DEFAULT '' COMMENT '创建人邮箱前缀', `DataChange_CreatedTime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `DataChange_LastModifiedBy` varchar(32) DEFAULT '' COMMENT '最后修改人邮箱前缀', `DataChange_LastTime` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '最后修改时间', PRIMARY KEY (`Id`), KEY `IX_AppId` (`AppId`), KEY `Name_AppId` (`Name`,`AppId`), KEY `DataChange_LastTime` (`DataChange_LastTime`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='应用namespace定义'; # Dump of table audit # ------------------------------------------------------------ DROP TABLE IF EXISTS `Audit`; CREATE TABLE `Audit` ( `Id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键', `EntityName` varchar(50) NOT NULL DEFAULT 'default' COMMENT '表名', `EntityId` int(10) unsigned DEFAULT NULL COMMENT '记录ID', `OpName` varchar(50) NOT NULL DEFAULT 'default' COMMENT '操作类型', `Comment` varchar(500) DEFAULT NULL COMMENT '备注', `IsDeleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '1: deleted, 0: normal', `DataChange_CreatedBy` varchar(32) NOT NULL DEFAULT 'default' COMMENT '创建人邮箱前缀', `DataChange_CreatedTime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `DataChange_LastModifiedBy` varchar(32) DEFAULT '' COMMENT '最后修改人邮箱前缀', `DataChange_LastTime` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '最后修改时间', PRIMARY KEY (`Id`), KEY `DataChange_LastTime` (`DataChange_LastTime`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='日志审计表'; # Dump of table cluster # ------------------------------------------------------------ DROP TABLE IF EXISTS `Cluster`; CREATE TABLE `Cluster` ( `Id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '自增主键', `Name` varchar(32) NOT NULL DEFAULT '' COMMENT '集群名字', `AppId` varchar(32) NOT NULL DEFAULT '' COMMENT 'App id', `ParentClusterId` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '父cluster', `IsDeleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '1: deleted, 0: normal', `DataChange_CreatedBy` varchar(32) NOT NULL DEFAULT '' COMMENT '创建人邮箱前缀', `DataChange_CreatedTime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `DataChange_LastModifiedBy` varchar(32) DEFAULT '' COMMENT '最后修改人邮箱前缀', `DataChange_LastTime` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '最后修改时间', PRIMARY KEY (`Id`), KEY `IX_AppId_Name` (`AppId`,`Name`), KEY `IX_ParentClusterId` (`ParentClusterId`), KEY `DataChange_LastTime` (`DataChange_LastTime`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='集群'; # Dump of table commit # ------------------------------------------------------------ DROP TABLE IF EXISTS `Commit`; CREATE TABLE `Commit` ( `Id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键', `ChangeSets` longtext NOT NULL COMMENT '修改变更集', `AppId` varchar(500) NOT NULL DEFAULT 'default' COMMENT 'AppID', `ClusterName` varchar(500) NOT NULL DEFAULT 'default' COMMENT 'ClusterName', `NamespaceName` varchar(500) NOT NULL DEFAULT 'default' COMMENT 'namespaceName', `Comment` varchar(500) DEFAULT NULL COMMENT '备注', `IsDeleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '1: deleted, 0: normal', `DataChange_CreatedBy` varchar(32) NOT NULL DEFAULT 'default' COMMENT '创建人邮箱前缀', `DataChange_CreatedTime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `DataChange_LastModifiedBy` varchar(32) DEFAULT '' COMMENT '最后修改人邮箱前缀', `DataChange_LastTime` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '最后修改时间', PRIMARY KEY (`Id`), KEY `DataChange_LastTime` (`DataChange_LastTime`), KEY `AppId` (`AppId`(191)), KEY `ClusterName` (`ClusterName`(191)), KEY `NamespaceName` (`NamespaceName`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='commit 历史表'; # Dump of table grayreleaserule # ------------------------------------------------------------ DROP TABLE IF EXISTS `GrayReleaseRule`; CREATE TABLE `GrayReleaseRule` ( `Id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键', `AppId` varchar(32) NOT NULL DEFAULT 'default' COMMENT 'AppID', `ClusterName` varchar(32) NOT NULL DEFAULT 'default' COMMENT 'Cluster Name', `NamespaceName` varchar(32) NOT NULL DEFAULT 'default' COMMENT 'Namespace Name', `BranchName` varchar(32) NOT NULL DEFAULT 'default' COMMENT 'branch name', `Rules` varchar(16000) DEFAULT '[]' COMMENT '灰度规则', `ReleaseId` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '灰度对应的release', `BranchStatus` tinyint(2) DEFAULT '1' COMMENT '灰度分支状态: 0:删除分支,1:正在使用的规则 2:全量发布', `IsDeleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '1: deleted, 0: normal', `DataChange_CreatedBy` varchar(32) NOT NULL DEFAULT 'default' COMMENT '创建人邮箱前缀', `DataChange_CreatedTime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `DataChange_LastModifiedBy` varchar(32) DEFAULT '' COMMENT '最后修改人邮箱前缀', `DataChange_LastTime` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '最后修改时间', PRIMARY KEY (`Id`), KEY `DataChange_LastTime` (`DataChange_LastTime`), KEY `IX_Namespace` (`AppId`,`ClusterName`,`NamespaceName`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='灰度规则表'; # Dump of table instance # ------------------------------------------------------------ DROP TABLE IF EXISTS `Instance`; CREATE TABLE `Instance` ( `Id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '自增Id', `AppId` varchar(32) NOT NULL DEFAULT 'default' COMMENT 'AppID', `ClusterName` varchar(32) NOT NULL DEFAULT 'default' COMMENT 'ClusterName', `DataCenter` varchar(64) NOT NULL DEFAULT 'default' COMMENT 'Data Center Name', `Ip` varchar(32) NOT NULL DEFAULT '' COMMENT 'instance ip', `DataChange_CreatedTime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `DataChange_LastTime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '最后修改时间', PRIMARY KEY (`Id`), UNIQUE KEY `IX_UNIQUE_KEY` (`AppId`,`ClusterName`,`Ip`,`DataCenter`), KEY `IX_IP` (`Ip`), KEY `IX_DataChange_LastTime` (`DataChange_LastTime`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='使用配置的应用实例'; # Dump of table instanceconfig # ------------------------------------------------------------ DROP TABLE IF EXISTS `InstanceConfig`; CREATE TABLE `InstanceConfig` ( `Id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '自增Id', `InstanceId` int(11) unsigned DEFAULT NULL COMMENT 'Instance Id', `ConfigAppId` varchar(32) NOT NULL DEFAULT 'default' COMMENT 'Config App Id', `ConfigClusterName` varchar(32) NOT NULL DEFAULT 'default' COMMENT 'Config Cluster Name', `ConfigNamespaceName` varchar(32) NOT NULL DEFAULT 'default' COMMENT 'Config Namespace Name', `ReleaseKey` varchar(64) NOT NULL DEFAULT '' COMMENT '发布的Key', `ReleaseDeliveryTime` timestamp NULL DEFAULT NULL COMMENT '配置获取时间', `DataChange_CreatedTime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `DataChange_LastTime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '最后修改时间', PRIMARY KEY (`Id`), UNIQUE KEY `IX_UNIQUE_KEY` (`InstanceId`,`ConfigAppId`,`ConfigNamespaceName`), KEY `IX_ReleaseKey` (`ReleaseKey`), KEY `IX_DataChange_LastTime` (`DataChange_LastTime`), KEY `IX_Valid_Namespace` (`ConfigAppId`,`ConfigClusterName`,`ConfigNamespaceName`,`DataChange_LastTime`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='应用实例的配置信息'; # Dump of table item # ------------------------------------------------------------ DROP TABLE IF EXISTS `Item`; CREATE TABLE `Item` ( `Id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '自增Id', `NamespaceId` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '集群NamespaceId', `Key` varchar(128) NOT NULL DEFAULT 'default' COMMENT '配置项Key', `Value` longtext NOT NULL COMMENT '配置项值', `Comment` varchar(1024) DEFAULT '' COMMENT '注释', `LineNum` int(10) unsigned DEFAULT '0' COMMENT '行号', `IsDeleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '1: deleted, 0: normal', `DataChange_CreatedBy` varchar(32) NOT NULL DEFAULT 'default' COMMENT '创建人邮箱前缀', `DataChange_CreatedTime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `DataChange_LastModifiedBy` varchar(32) DEFAULT '' COMMENT '最后修改人邮箱前缀', `DataChange_LastTime` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '最后修改时间', PRIMARY KEY (`Id`), KEY `IX_GroupId` (`NamespaceId`), KEY `DataChange_LastTime` (`DataChange_LastTime`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='配置项目'; # Dump of table namespace # ------------------------------------------------------------ DROP TABLE IF EXISTS `Namespace`; CREATE TABLE `Namespace` ( `Id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '自增主键', `AppId` varchar(500) NOT NULL DEFAULT 'default' COMMENT 'AppID', `ClusterName` varchar(500) NOT NULL DEFAULT 'default' COMMENT 'Cluster Name', `NamespaceName` varchar(500) NOT NULL DEFAULT 'default' COMMENT 'Namespace Name', `IsDeleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '1: deleted, 0: normal', `DataChange_CreatedBy` varchar(32) NOT NULL DEFAULT 'default' COMMENT '创建人邮箱前缀', `DataChange_CreatedTime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `DataChange_LastModifiedBy` varchar(32) DEFAULT '' COMMENT '最后修改人邮箱前缀', `DataChange_LastTime` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '最后修改时间', PRIMARY KEY (`Id`), KEY `AppId_ClusterName_NamespaceName` (`AppId`(191),`ClusterName`(191),`NamespaceName`(191)), KEY `DataChange_LastTime` (`DataChange_LastTime`), KEY `IX_NamespaceName` (`NamespaceName`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='命名空间'; # Dump of table namespacelock # ------------------------------------------------------------ DROP TABLE IF EXISTS `NamespaceLock`; CREATE TABLE `NamespaceLock` ( `Id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '自增id', `NamespaceId` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '集群NamespaceId', `DataChange_CreatedBy` varchar(32) NOT NULL DEFAULT 'default' COMMENT '创建人邮箱前缀', `DataChange_CreatedTime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `DataChange_LastModifiedBy` varchar(32) DEFAULT 'default' COMMENT '最后修改人邮箱前缀', `DataChange_LastTime` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '最后修改时间', `IsDeleted` bit(1) DEFAULT b'0' COMMENT '软删除', PRIMARY KEY (`Id`), UNIQUE KEY `IX_NamespaceId` (`NamespaceId`), KEY `DataChange_LastTime` (`DataChange_LastTime`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='namespace的编辑锁'; # Dump of table release # ------------------------------------------------------------ DROP TABLE IF EXISTS `Release`; CREATE TABLE `Release` ( `Id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '自增主键', `ReleaseKey` varchar(64) NOT NULL DEFAULT '' COMMENT '发布的Key', `Name` varchar(64) NOT NULL DEFAULT 'default' COMMENT '发布名字', `Comment` varchar(256) DEFAULT NULL COMMENT '发布说明', `AppId` varchar(500) NOT NULL DEFAULT 'default' COMMENT 'AppID', `ClusterName` varchar(500) NOT NULL DEFAULT 'default' COMMENT 'ClusterName', `NamespaceName` varchar(500) NOT NULL DEFAULT 'default' COMMENT 'namespaceName', `Configurations` longtext NOT NULL COMMENT '发布配置', `IsAbandoned` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否废弃', `IsDeleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '1: deleted, 0: normal', `DataChange_CreatedBy` varchar(32) NOT NULL DEFAULT 'default' COMMENT '创建人邮箱前缀', `DataChange_CreatedTime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `DataChange_LastModifiedBy` varchar(32) DEFAULT '' COMMENT '最后修改人邮箱前缀', `DataChange_LastTime` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '最后修改时间', PRIMARY KEY (`Id`), KEY `AppId_ClusterName_GroupName` (`AppId`(191),`ClusterName`(191),`NamespaceName`(191)), KEY `DataChange_LastTime` (`DataChange_LastTime`), KEY `IX_ReleaseKey` (`ReleaseKey`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='发布'; # Dump of table releasehistory # ------------------------------------------------------------ DROP TABLE IF EXISTS `ReleaseHistory`; CREATE TABLE `ReleaseHistory` ( `Id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '自增Id', `AppId` varchar(32) NOT NULL DEFAULT 'default' COMMENT 'AppID', `ClusterName` varchar(32) NOT NULL DEFAULT 'default' COMMENT 'ClusterName', `NamespaceName` varchar(32) NOT NULL DEFAULT 'default' COMMENT 'namespaceName', `BranchName` varchar(32) NOT NULL DEFAULT 'default' COMMENT '发布分支名', `ReleaseId` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '关联的Release Id', `PreviousReleaseId` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '前一次发布的ReleaseId', `Operation` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '发布类型,0: 普通发布,1: 回滚,2: 灰度发布,3: 灰度规则更新,4: 灰度合并回主分支发布,5: 主分支发布灰度自动发布,6: 主分支回滚灰度自动发布,7: 放弃灰度', `OperationContext` longtext NOT NULL COMMENT '发布上下文信息', `IsDeleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '1: deleted, 0: normal', `DataChange_CreatedBy` varchar(32) NOT NULL DEFAULT 'default' COMMENT '创建人邮箱前缀', `DataChange_CreatedTime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `DataChange_LastModifiedBy` varchar(32) DEFAULT '' COMMENT '最后修改人邮箱前缀', `DataChange_LastTime` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '最后修改时间', PRIMARY KEY (`Id`), KEY `IX_Namespace` (`AppId`,`ClusterName`,`NamespaceName`,`BranchName`), KEY `IX_ReleaseId` (`ReleaseId`), KEY `IX_DataChange_LastTime` (`DataChange_LastTime`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='发布历史'; # Dump of table releasemessage # ------------------------------------------------------------ DROP TABLE IF EXISTS `ReleaseMessage`; CREATE TABLE `ReleaseMessage` ( `Id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '自增主键', `Message` varchar(1024) NOT NULL DEFAULT '' COMMENT '发布的消息内容', `DataChange_LastTime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '最后修改时间', PRIMARY KEY (`Id`), KEY `DataChange_LastTime` (`DataChange_LastTime`), KEY `IX_Message` (`Message`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='发布消息'; # Dump of table serverconfig # ------------------------------------------------------------ DROP TABLE IF EXISTS `ServerConfig`; CREATE TABLE `ServerConfig` ( `Id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '自增Id', `Key` varchar(64) NOT NULL DEFAULT 'default' COMMENT '配置项Key', `Cluster` varchar(32) NOT NULL DEFAULT 'default' COMMENT '配置对应的集群,default为不针对特定的集群', `Value` varchar(2048) NOT NULL DEFAULT 'default' COMMENT '配置项值', `Comment` varchar(1024) DEFAULT '' COMMENT '注释', `IsDeleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '1: deleted, 0: normal', `DataChange_CreatedBy` varchar(32) NOT NULL DEFAULT 'default' COMMENT '创建人邮箱前缀', `DataChange_CreatedTime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `DataChange_LastModifiedBy` varchar(32) DEFAULT '' COMMENT '最后修改人邮箱前缀', `DataChange_LastTime` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '最后修改时间', PRIMARY KEY (`Id`), KEY `IX_Key` (`Key`), KEY `DataChange_LastTime` (`DataChange_LastTime`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='配置服务自身配置'; # Config # ------------------------------------------------------------ INSERT INTO `ServerConfig` (`Key`, `Cluster`, `Value`, `Comment`) VALUES ('eureka.service.url', 'default', 'http://localhost:8080/eureka/', 'Eureka服务Url,多个service以英文逗号分隔'), ('namespace.lock.switch', 'default', 'false', '一次发布只能有一个人修改开关'), ('item.key.length.limit', 'default', '128', 'item key 最大长度限制'), ('item.value.length.limit', 'default', '20000', 'item value最大长度限制'), ('config-service.cache.enabled', 'default', 'false', 'ConfigService是否开启缓存,开启后能提高性能,但是会增大内存消耗!'); /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; # Create Database # ------------------------------------------------------------ CREATE DATABASE IF NOT EXISTS ApolloConfigDB DEFAULT CHARACTER SET = utf8mb4; Use ApolloConfigDB; # Dump of table app # ------------------------------------------------------------ DROP TABLE IF EXISTS `App`; CREATE TABLE `App` ( `Id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键', `AppId` varchar(500) NOT NULL DEFAULT 'default' COMMENT 'AppID', `Name` varchar(500) NOT NULL DEFAULT 'default' COMMENT '应用名', `OrgId` varchar(32) NOT NULL DEFAULT 'default' COMMENT '部门Id', `OrgName` varchar(64) NOT NULL DEFAULT 'default' COMMENT '部门名字', `OwnerName` varchar(500) NOT NULL DEFAULT 'default' COMMENT 'ownerName', `OwnerEmail` varchar(500) NOT NULL DEFAULT 'default' COMMENT 'ownerEmail', `IsDeleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '1: deleted, 0: normal', `DataChange_CreatedBy` varchar(32) NOT NULL DEFAULT 'default' COMMENT '创建人邮箱前缀', `DataChange_CreatedTime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `DataChange_LastModifiedBy` varchar(32) DEFAULT '' COMMENT '最后修改人邮箱前缀', `DataChange_LastTime` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '最后修改时间', PRIMARY KEY (`Id`), KEY `AppId` (`AppId`(191)), KEY `DataChange_LastTime` (`DataChange_LastTime`), KEY `IX_Name` (`Name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='应用表'; # Dump of table appnamespace # ------------------------------------------------------------ DROP TABLE IF EXISTS `AppNamespace`; CREATE TABLE `AppNamespace` ( `Id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '自增主键', `Name` varchar(32) NOT NULL DEFAULT '' COMMENT 'namespace名字,注意,需要全局唯一', `AppId` varchar(32) NOT NULL DEFAULT '' COMMENT 'app id', `Format` varchar(32) NOT NULL DEFAULT 'properties' COMMENT 'namespace的format类型', `IsPublic` bit(1) NOT NULL DEFAULT b'0' COMMENT 'namespace是否为公共', `Comment` varchar(64) NOT NULL DEFAULT '' COMMENT '注释', `IsDeleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '1: deleted, 0: normal', `DataChange_CreatedBy` varchar(32) NOT NULL DEFAULT '' COMMENT '创建人邮箱前缀', `DataChange_CreatedTime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `DataChange_LastModifiedBy` varchar(32) DEFAULT '' COMMENT '最后修改人邮箱前缀', `DataChange_LastTime` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '最后修改时间', PRIMARY KEY (`Id`), KEY `IX_AppId` (`AppId`), KEY `Name_AppId` (`Name`,`AppId`), KEY `DataChange_LastTime` (`DataChange_LastTime`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='应用namespace定义'; # Dump of table audit # ------------------------------------------------------------ DROP TABLE IF EXISTS `Audit`; CREATE TABLE `Audit` ( `Id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键', `EntityName` varchar(50) NOT NULL DEFAULT 'default' COMMENT '表名', `EntityId` int(10) unsigned DEFAULT NULL COMMENT '记录ID', `OpName` varchar(50) NOT NULL DEFAULT 'default' COMMENT '操作类型', `Comment` varchar(500) DEFAULT NULL COMMENT '备注', `IsDeleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '1: deleted, 0: normal', `DataChange_CreatedBy` varchar(32) NOT NULL DEFAULT 'default' COMMENT '创建人邮箱前缀', `DataChange_CreatedTime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `DataChange_LastModifiedBy` varchar(32) DEFAULT '' COMMENT '最后修改人邮箱前缀', `DataChange_LastTime` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '最后修改时间', PRIMARY KEY (`Id`), KEY `DataChange_LastTime` (`DataChange_LastTime`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='日志审计表'; # Dump of table cluster # ------------------------------------------------------------ DROP TABLE IF EXISTS `Cluster`; CREATE TABLE `Cluster` ( `Id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '自增主键', `Name` varchar(32) NOT NULL DEFAULT '' COMMENT '集群名字', `AppId` varchar(32) NOT NULL DEFAULT '' COMMENT 'App id', `ParentClusterId` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '父cluster', `IsDeleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '1: deleted, 0: normal', `DataChange_CreatedBy` varchar(32) NOT NULL DEFAULT '' COMMENT '创建人邮箱前缀', `DataChange_CreatedTime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `DataChange_LastModifiedBy` varchar(32) DEFAULT '' COMMENT '最后修改人邮箱前缀', `DataChange_LastTime` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '最后修改时间', PRIMARY KEY (`Id`), KEY `IX_AppId_Name` (`AppId`,`Name`), KEY `IX_ParentClusterId` (`ParentClusterId`), KEY `DataChange_LastTime` (`DataChange_LastTime`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='集群'; # Dump of table commit # ------------------------------------------------------------ DROP TABLE IF EXISTS `Commit`; CREATE TABLE `Commit` ( `Id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键', `ChangeSets` longtext NOT NULL COMMENT '修改变更集', `AppId` varchar(500) NOT NULL DEFAULT 'default' COMMENT 'AppID', `ClusterName` varchar(500) NOT NULL DEFAULT 'default' COMMENT 'ClusterName', `NamespaceName` varchar(500) NOT NULL DEFAULT 'default' COMMENT 'namespaceName', `Comment` varchar(500) DEFAULT NULL COMMENT '备注', `IsDeleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '1: deleted, 0: normal', `DataChange_CreatedBy` varchar(32) NOT NULL DEFAULT 'default' COMMENT '创建人邮箱前缀', `DataChange_CreatedTime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `DataChange_LastModifiedBy` varchar(32) DEFAULT '' COMMENT '最后修改人邮箱前缀', `DataChange_LastTime` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '最后修改时间', PRIMARY KEY (`Id`), KEY `DataChange_LastTime` (`DataChange_LastTime`), KEY `AppId` (`AppId`(191)), KEY `ClusterName` (`ClusterName`(191)), KEY `NamespaceName` (`NamespaceName`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='commit 历史表'; # Dump of table grayreleaserule # ------------------------------------------------------------ DROP TABLE IF EXISTS `GrayReleaseRule`; CREATE TABLE `GrayReleaseRule` ( `Id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键', `AppId` varchar(32) NOT NULL DEFAULT 'default' COMMENT 'AppID', `ClusterName` varchar(32) NOT NULL DEFAULT 'default' COMMENT 'Cluster Name', `NamespaceName` varchar(32) NOT NULL DEFAULT 'default' COMMENT 'Namespace Name', `BranchName` varchar(32) NOT NULL DEFAULT 'default' COMMENT 'branch name', `Rules` varchar(16000) DEFAULT '[]' COMMENT '灰度规则', `ReleaseId` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '灰度对应的release', `BranchStatus` tinyint(2) DEFAULT '1' COMMENT '灰度分支状态: 0:删除分支,1:正在使用的规则 2:全量发布', `IsDeleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '1: deleted, 0: normal', `DataChange_CreatedBy` varchar(32) NOT NULL DEFAULT 'default' COMMENT '创建人邮箱前缀', `DataChange_CreatedTime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `DataChange_LastModifiedBy` varchar(32) DEFAULT '' COMMENT '最后修改人邮箱前缀', `DataChange_LastTime` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '最后修改时间', PRIMARY KEY (`Id`), KEY `DataChange_LastTime` (`DataChange_LastTime`), KEY `IX_Namespace` (`AppId`,`ClusterName`,`NamespaceName`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='灰度规则表'; # Dump of table instance # ------------------------------------------------------------ DROP TABLE IF EXISTS `Instance`; CREATE TABLE `Instance` ( `Id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '自增Id', `AppId` varchar(32) NOT NULL DEFAULT 'default' COMMENT 'AppID', `ClusterName` varchar(32) NOT NULL DEFAULT 'default' COMMENT 'ClusterName', `DataCenter` varchar(64) NOT NULL DEFAULT 'default' COMMENT 'Data Center Name', `Ip` varchar(32) NOT NULL DEFAULT '' COMMENT 'instance ip', `DataChange_CreatedTime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `DataChange_LastTime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '最后修改时间', PRIMARY KEY (`Id`), UNIQUE KEY `IX_UNIQUE_KEY` (`AppId`,`ClusterName`,`Ip`,`DataCenter`), KEY `IX_IP` (`Ip`), KEY `IX_DataChange_LastTime` (`DataChange_LastTime`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='使用配置的应用实例'; # Dump of table instanceconfig # ------------------------------------------------------------ DROP TABLE IF EXISTS `InstanceConfig`; CREATE TABLE `InstanceConfig` ( `Id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '自增Id', `InstanceId` int(11) unsigned DEFAULT NULL COMMENT 'Instance Id', `ConfigAppId` varchar(32) NOT NULL DEFAULT 'default' COMMENT 'Config App Id', `ConfigClusterName` varchar(32) NOT NULL DEFAULT 'default' COMMENT 'Config Cluster Name', `ConfigNamespaceName` varchar(32) NOT NULL DEFAULT 'default' COMMENT 'Config Namespace Name', `ReleaseKey` varchar(64) NOT NULL DEFAULT '' COMMENT '发布的Key', `ReleaseDeliveryTime` timestamp NULL DEFAULT NULL COMMENT '配置获取时间', `DataChange_CreatedTime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `DataChange_LastTime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '最后修改时间', PRIMARY KEY (`Id`), UNIQUE KEY `IX_UNIQUE_KEY` (`InstanceId`,`ConfigAppId`,`ConfigNamespaceName`), KEY `IX_ReleaseKey` (`ReleaseKey`), KEY `IX_DataChange_LastTime` (`DataChange_LastTime`), KEY `IX_Valid_Namespace` (`ConfigAppId`,`ConfigClusterName`,`ConfigNamespaceName`,`DataChange_LastTime`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='应用实例的配置信息'; # Dump of table item # ------------------------------------------------------------ DROP TABLE IF EXISTS `Item`; CREATE TABLE `Item` ( `Id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '自增Id', `NamespaceId` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '集群NamespaceId', `Key` varchar(128) NOT NULL DEFAULT 'default' COMMENT '配置项Key', `Value` longtext NOT NULL COMMENT '配置项值', `Comment` varchar(1024) DEFAULT '' COMMENT '注释', `LineNum` int(10) unsigned DEFAULT '0' COMMENT '行号', `IsDeleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '1: deleted, 0: normal', `DataChange_CreatedBy` varchar(32) NOT NULL DEFAULT 'default' COMMENT '创建人邮箱前缀', `DataChange_CreatedTime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `DataChange_LastModifiedBy` varchar(32) DEFAULT '' COMMENT '最后修改人邮箱前缀', `DataChange_LastTime` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '最后修改时间', PRIMARY KEY (`Id`), KEY `IX_GroupId` (`NamespaceId`), KEY `DataChange_LastTime` (`DataChange_LastTime`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='配置项目'; # Dump of table namespace # ------------------------------------------------------------ DROP TABLE IF EXISTS `Namespace`; CREATE TABLE `Namespace` ( `Id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '自增主键', `AppId` varchar(500) NOT NULL DEFAULT 'default' COMMENT 'AppID', `ClusterName` varchar(500) NOT NULL DEFAULT 'default' COMMENT 'Cluster Name', `NamespaceName` varchar(500) NOT NULL DEFAULT 'default' COMMENT 'Namespace Name', `IsDeleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '1: deleted, 0: normal', `DataChange_CreatedBy` varchar(32) NOT NULL DEFAULT 'default' COMMENT '创建人邮箱前缀', `DataChange_CreatedTime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `DataChange_LastModifiedBy` varchar(32) DEFAULT '' COMMENT '最后修改人邮箱前缀', `DataChange_LastTime` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '最后修改时间', PRIMARY KEY (`Id`), KEY `AppId_ClusterName_NamespaceName` (`AppId`(191),`ClusterName`(191),`NamespaceName`(191)), KEY `DataChange_LastTime` (`DataChange_LastTime`), KEY `IX_NamespaceName` (`NamespaceName`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='命名空间'; # Dump of table namespacelock # ------------------------------------------------------------ DROP TABLE IF EXISTS `NamespaceLock`; CREATE TABLE `NamespaceLock` ( `Id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '自增id', `NamespaceId` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '集群NamespaceId', `DataChange_CreatedBy` varchar(32) NOT NULL DEFAULT 'default' COMMENT '创建人邮箱前缀', `DataChange_CreatedTime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `DataChange_LastModifiedBy` varchar(32) DEFAULT 'default' COMMENT '最后修改人邮箱前缀', `DataChange_LastTime` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '最后修改时间', `IsDeleted` bit(1) DEFAULT b'0' COMMENT '软删除', PRIMARY KEY (`Id`), UNIQUE KEY `IX_NamespaceId` (`NamespaceId`), KEY `DataChange_LastTime` (`DataChange_LastTime`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='namespace的编辑锁'; # Dump of table release # ------------------------------------------------------------ DROP TABLE IF EXISTS `Release`; CREATE TABLE `Release` ( `Id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '自增主键', `ReleaseKey` varchar(64) NOT NULL DEFAULT '' COMMENT '发布的Key', `Name` varchar(64) NOT NULL DEFAULT 'default' COMMENT '发布名字', `Comment` varchar(256) DEFAULT NULL COMMENT '发布说明', `AppId` varchar(500) NOT NULL DEFAULT 'default' COMMENT 'AppID', `ClusterName` varchar(500) NOT NULL DEFAULT 'default' COMMENT 'ClusterName', `NamespaceName` varchar(500) NOT NULL DEFAULT 'default' COMMENT 'namespaceName', `Configurations` longtext NOT NULL COMMENT '发布配置', `IsAbandoned` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否废弃', `IsDeleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '1: deleted, 0: normal', `DataChange_CreatedBy` varchar(32) NOT NULL DEFAULT 'default' COMMENT '创建人邮箱前缀', `DataChange_CreatedTime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `DataChange_LastModifiedBy` varchar(32) DEFAULT '' COMMENT '最后修改人邮箱前缀', `DataChange_LastTime` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '最后修改时间', PRIMARY KEY (`Id`), KEY `AppId_ClusterName_GroupName` (`AppId`(191),`ClusterName`(191),`NamespaceName`(191)), KEY `DataChange_LastTime` (`DataChange_LastTime`), KEY `IX_ReleaseKey` (`ReleaseKey`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='发布'; # Dump of table releasehistory # ------------------------------------------------------------ DROP TABLE IF EXISTS `ReleaseHistory`; CREATE TABLE `ReleaseHistory` ( `Id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '自增Id', `AppId` varchar(32) NOT NULL DEFAULT 'default' COMMENT 'AppID', `ClusterName` varchar(32) NOT NULL DEFAULT 'default' COMMENT 'ClusterName', `NamespaceName` varchar(32) NOT NULL DEFAULT 'default' COMMENT 'namespaceName', `BranchName` varchar(32) NOT NULL DEFAULT 'default' COMMENT '发布分支名', `ReleaseId` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '关联的Release Id', `PreviousReleaseId` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '前一次发布的ReleaseId', `Operation` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '发布类型,0: 普通发布,1: 回滚,2: 灰度发布,3: 灰度规则更新,4: 灰度合并回主分支发布,5: 主分支发布灰度自动发布,6: 主分支回滚灰度自动发布,7: 放弃灰度', `OperationContext` longtext NOT NULL COMMENT '发布上下文信息', `IsDeleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '1: deleted, 0: normal', `DataChange_CreatedBy` varchar(32) NOT NULL DEFAULT 'default' COMMENT '创建人邮箱前缀', `DataChange_CreatedTime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `DataChange_LastModifiedBy` varchar(32) DEFAULT '' COMMENT '最后修改人邮箱前缀', `DataChange_LastTime` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '最后修改时间', PRIMARY KEY (`Id`), KEY `IX_Namespace` (`AppId`,`ClusterName`,`NamespaceName`,`BranchName`), KEY `IX_ReleaseId` (`ReleaseId`), KEY `IX_DataChange_LastTime` (`DataChange_LastTime`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='发布历史'; # Dump of table releasemessage # ------------------------------------------------------------ DROP TABLE IF EXISTS `ReleaseMessage`; CREATE TABLE `ReleaseMessage` ( `Id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '自增主键', `Message` varchar(1024) NOT NULL DEFAULT '' COMMENT '发布的消息内容', `DataChange_LastTime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '最后修改时间', PRIMARY KEY (`Id`), KEY `DataChange_LastTime` (`DataChange_LastTime`), KEY `IX_Message` (`Message`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='发布消息'; # Dump of table serverconfig # ------------------------------------------------------------ DROP TABLE IF EXISTS `ServerConfig`; CREATE TABLE `ServerConfig` ( `Id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '自增Id', `Key` varchar(64) NOT NULL DEFAULT 'default' COMMENT '配置项Key', `Cluster` varchar(32) NOT NULL DEFAULT 'default' COMMENT '配置对应的集群,default为不针对特定的集群', `Value` varchar(2048) NOT NULL DEFAULT 'default' COMMENT '配置项值', `Comment` varchar(1024) DEFAULT '' COMMENT '注释', `IsDeleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '1: deleted, 0: normal', `DataChange_CreatedBy` varchar(32) NOT NULL DEFAULT 'default' COMMENT '创建人邮箱前缀', `DataChange_CreatedTime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `DataChange_LastModifiedBy` varchar(32) DEFAULT '' COMMENT '最后修改人邮箱前缀', `DataChange_LastTime` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '最后修改时间', PRIMARY KEY (`Id`), KEY `IX_Key` (`Key`), KEY `DataChange_LastTime` (`DataChange_LastTime`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='配置服务自身配置'; # Config # ------------------------------------------------------------ INSERT INTO `ServerConfig` (`Key`, `Cluster`, `Value`, `Comment`) VALUES ('eureka.service.url', 'default', 'http://localhost:8080/eureka/', 'Eureka服务Url,多个service以英文逗号分隔'), ('namespace.lock.switch', 'default', 'false', '一次发布只能有一个人修改开关'), ('item.key.length.limit', 'default', '128', 'item key 最大长度限制'), ('item.value.length.limit', 'default', '20000', 'item value最大长度限制'), ('config-service.cache.enabled', 'default', 'false', 'ConfigService是否开启缓存,开启后能提高性能,但是会增大内存消耗!'); /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-portal/src/main/resources/static/img/rollback.png
PNG  IHDRX IDATx^OR[GW&'Y"VOlu lWYTvf/ A8J"vNd H5<~3+Os%Y8},-UYm7H/ٯ'o՜κ6e{ !r՛@Lv$}Y 2%<s RTK ݭzFs& 9޽f[9fo$ V9޽w߽"B$qy 2z!^&P 1"ߞ/vbá*$Z/~>$J P ȑ"Jz P ȑ"Fz"P ȑ*F"P ȑ*B$P ȑ2Bz$\HSH*r $9RGG2$仵L_~B·eָ@tAk:f 6QA\beD9bEBD9r$0 3zF`&A#8OlfA#vˑI1J@aA#E ̕@!A#W*S "o9r$0QH޹R=> Gj A:D Qv֨ O!hM6?ZSp>5rа8LA$ȫ L8B8 A~9T<7Ap %}"\ I66vU'3#VW:aEp-FwO~+ @bloMA5WfQKJ ZY}A${98Ow#q|7$!46/DK~Ir !Mv|G8% ILh IF鲕 $If΅H&d0ۘ@RAdl(΀@rA$ق@) 9 +&P HRq,o"P Hbʈ .T6K&P HR8' *"P HRQ,[@ I $ΒSB$:/.,@6 IɳTIʌJ$ HRb,5@ ܸ$ $%@ւ j $UB$}H6 Iڵ$$d==f~_EvD٠ E8KAbH`GSaf^YII֠˫IB$!߃ֲ|s#HaIwz@Ji% Ax/4 2~ lqA䵊lv QbRa˫o,\o rOݞus+E8GA8p< bF$hƴ@7@'A3ظQ8 1mƍ*'IЌi# 6nT9! NfLq q4c UN FAlܨrBA͘6bF$hƴ@7@'A3ظQ8 1mƍ*'IЌi# 6nT9! NfLq q4c UN FAlܨrBA͘6bF$hƴ@7@'A3ظQ8 1mƍ*'IЌi# 6nT9! NfLq q4c UN FAlܨrBA͘6bF$hƴ@7@'A3ظQ8 1mƍ*'IЌi# 6nT9! NfLq q4c UN FAlܨrBA͘6bF$hƴ@7@'A3ظQ8 1mƍ*'IЌi# 6nT9! NfLq q4c UN FAlܨrBA͘6bF$hƴ@7@'A3ظQ8 1mƍ*'IЌi# 6nT9! NfLq q4c UN FAlܨrBA2zy ̷: -mN\̵vcٴw R?DeX"2 |;[}RVK9n,|RTr}$aJy%h$ӫpKj A7vֵO.AkI;ׂp Z'%$)`fs'^) )>,=P}Ta Q^lnH$%DsaoAg"ïד+|a_[kU} !IENDB`
PNG  IHDRX IDATx^OR[GW&'Y"VOlu lWYTvf/ A8J"vNd H5<~3+Os%Y8},-UYm7H/ٯ'o՜κ6e{ !r՛@Lv$}Y 2%<s RTK ݭzFs& 9޽f[9fo$ V9޽w߽"B$qy 2z!^&P 1"ߞ/vbá*$Z/~>$J P ȑ"Jz P ȑ"Fz"P ȑ*F"P ȑ*B$P ȑ2Bz$\HSH*r $9RGG2$仵L_~B·eָ@tAk:f 6QA\beD9bEBD9r$0 3zF`&A#8OlfA#vˑI1J@aA#E ̕@!A#W*S "o9r$0QH޹R=> Gj A:D Qv֨ O!hM6?ZSp>5rа8LA$ȫ L8B8 A~9T<7Ap %}"\ I66vU'3#VW:aEp-FwO~+ @bloMA5WfQKJ ZY}A${98Ow#q|7$!46/DK~Ir !Mv|G8% ILh IF鲕 $If΅H&d0ۘ@RAdl(΀@rA$ق@) 9 +&P HRq,o"P Hbʈ .T6K&P HR8' *"P HRQ,[@ I $ΒSB$:/.,@6 IɳTIʌJ$ HRb,5@ ܸ$ $%@ւ j $UB$}H6 Iڵ$$d==f~_EvD٠ E8KAbH`GSaf^YII֠˫IB$!߃ֲ|s#HaIwz@Ji% Ax/4 2~ lqA䵊lv QbRa˫o,\o rOݞus+E8GA8p< bF$hƴ@7@'A3ظQ8 1mƍ*'IЌi# 6nT9! NfLq q4c UN FAlܨrBA͘6bF$hƴ@7@'A3ظQ8 1mƍ*'IЌi# 6nT9! NfLq q4c UN FAlܨrBA͘6bF$hƴ@7@'A3ظQ8 1mƍ*'IЌi# 6nT9! NfLq q4c UN FAlܨrBA͘6bF$hƴ@7@'A3ظQ8 1mƍ*'IЌi# 6nT9! NfLq q4c UN FAlܨrBA͘6bF$hƴ@7@'A3ظQ8 1mƍ*'IЌi# 6nT9! NfLq q4c UN FAlܨrBA͘6bF$hƴ@7@'A3ظQ8 1mƍ*'IЌi# 6nT9! NfLq q4c UN FAlܨrBA2zy ̷: -mN\̵vcٴw R?DeX"2 |;[}RVK9n,|RTr}$aJy%h$ӫpKj A7vֵO.AkI;ׂp Z'%$)`fs'^) )>,=P}Ta Q^lnH$%DsaoAg"ïד+|a_[kU} !IENDB`
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-portal/src/main/java/com/ctrip/framework/apollo/portal/spi/ctrip/CtripUserService.java
package com.ctrip.framework.apollo.portal.spi.ctrip; import com.google.common.collect.ImmutableMap; import com.google.common.collect.Lists; import com.google.common.collect.Maps; import com.ctrip.framework.apollo.portal.component.config.PortalConfig; import com.ctrip.framework.apollo.portal.entity.bo.UserInfo; import com.ctrip.framework.apollo.portal.spi.UserService; import org.springframework.core.ParameterizedTypeReference; import org.springframework.http.HttpEntity; import org.springframework.http.HttpMethod; import org.springframework.http.ResponseEntity; import org.springframework.http.client.ClientHttpRequestFactory; import org.springframework.http.client.SimpleClientHttpRequestFactory; import org.springframework.util.CollectionUtils; import org.springframework.web.client.RestTemplate; import java.util.Collections; import java.util.List; import java.util.Map; import java.util.stream.Collectors; /** * @author Jason Song([email protected]) */ public class CtripUserService implements UserService { private RestTemplate restTemplate; private List<String> searchUserMatchFields; private ParameterizedTypeReference<Map<String, List<UserServiceResponse>>> responseType; private PortalConfig portalConfig; public CtripUserService(PortalConfig portalConfig) { this.portalConfig = portalConfig; this.restTemplate = new RestTemplate(clientHttpRequestFactory()); this.searchUserMatchFields = Lists.newArrayList("empcode", "empaccount", "displayname", "c_name", "pinyin"); this.responseType = new ParameterizedTypeReference<Map<String, List<UserServiceResponse>>>() { }; } private ClientHttpRequestFactory clientHttpRequestFactory() { SimpleClientHttpRequestFactory factory = new SimpleClientHttpRequestFactory(); factory.setConnectTimeout(portalConfig.connectTimeout()); factory.setReadTimeout(portalConfig.readTimeout()); return factory; } @Override public List<UserInfo> searchUsers(String keyword, int offset, int limit) { UserServiceRequest request = assembleSearchUserRequest(keyword, offset, limit); HttpEntity<UserServiceRequest> entity = new HttpEntity<>(request); ResponseEntity<Map<String, List<UserServiceResponse>>> response = restTemplate.exchange(portalConfig.userServiceUrl(), HttpMethod.POST, entity, responseType); if (!response.getBody().containsKey("result")) { return Collections.emptyList(); } List<UserInfo> result = Lists.newArrayList(); result.addAll( response.getBody().get("result").stream().map(this::transformUserServiceResponseToUserInfo) .collect(Collectors.toList())); return result; } @Override public UserInfo findByUserId(String userId) { List<UserInfo> userInfoList = this.findByUserIds(Lists.newArrayList(userId)); if (CollectionUtils.isEmpty(userInfoList)) { return null; } return userInfoList.get(0); } @Override public List<UserInfo> findByUserIds(List<String> userIds) { UserServiceRequest request = assembleFindUserRequest(Lists.newArrayList(userIds)); HttpEntity<UserServiceRequest> entity = new HttpEntity<>(request); ResponseEntity<Map<String, List<UserServiceResponse>>> response = restTemplate.exchange(portalConfig.userServiceUrl(), HttpMethod.POST, entity, responseType); if (!response.getBody().containsKey("result")) { return Collections.emptyList(); } List<UserInfo> result = Lists.newArrayList(); result.addAll( response.getBody().get("result").stream().map(this::transformUserServiceResponseToUserInfo) .collect(Collectors.toList())); return result; } private UserInfo transformUserServiceResponseToUserInfo(UserServiceResponse userServiceResponse) { UserInfo userInfo = new UserInfo(); userInfo.setUserId(userServiceResponse.getEmpaccount()); userInfo.setName(userServiceResponse.getDisplayname()); userInfo.setEmail(userServiceResponse.getEmail()); return userInfo; } UserServiceRequest assembleSearchUserRequest(String keyword, int offset, int limit) { Map<String, Object> query = Maps.newHashMap(); Map<String, Object> multiMatchMap = Maps.newHashMap(); multiMatchMap.put("fields", searchUserMatchFields); multiMatchMap.put("operator", "and"); multiMatchMap.put("query", keyword); multiMatchMap.put("type", "best_fields"); query.put("multi_match", multiMatchMap); return assembleUserServiceRequest(query, offset, limit); } UserServiceRequest assembleFindUserRequest(List<String> userIds) { Map<String, Object> query = ImmutableMap.of("filtered", ImmutableMap .of("filter", ImmutableMap.of("terms", ImmutableMap.of("empaccount", userIds)))); return assembleUserServiceRequest(query, 0, userIds.size()); } private UserServiceRequest assembleUserServiceRequest(Map<String, Object> query, int offset, int limit) { UserServiceRequest request = new UserServiceRequest(); request.setAccess_token(portalConfig.userServiceAccessToken()); UserServiceRequestBody requestBody = new UserServiceRequestBody(); requestBody.setIndexAlias("itdb_emloyee"); requestBody.setType("emloyee"); request.setRequest_body(requestBody); Map<String, Object> queryJson = Maps.newHashMap(); requestBody.setQueryJson(queryJson); queryJson.put("query", query); queryJson.put("from", offset); queryJson.put("size", limit); return request; } static class UserServiceRequest { private String access_token; private UserServiceRequestBody request_body; public String getAccess_token() { return access_token; } public void setAccess_token(String access_token) { this.access_token = access_token; } public UserServiceRequestBody getRequest_body() { return request_body; } public void setRequest_body( UserServiceRequestBody request_body) { this.request_body = request_body; } } static class UserServiceRequestBody { private String indexAlias; private String type; private Map<String, Object> queryJson; public String getType() { return type; } public void setType(String type) { this.type = type; } public String getIndexAlias() { return indexAlias; } public void setIndexAlias(String indexAlias) { this.indexAlias = indexAlias; } public Map<String, Object> getQueryJson() { return queryJson; } public void setQueryJson(Map<String, Object> queryJson) { this.queryJson = queryJson; } } static class UserServiceResponse { private String empaccount; private String displayname; private String email; public String getEmpaccount() { return empaccount; } public void setEmpaccount(String empaccount) { this.empaccount = empaccount; } public String getDisplayname() { return displayname; } public void setDisplayname(String displayname) { this.displayname = displayname; } public String getEmail() { return email; } public void setEmail(String email) { this.email = email; } } }
package com.ctrip.framework.apollo.portal.spi.ctrip; import com.google.common.collect.ImmutableMap; import com.google.common.collect.Lists; import com.google.common.collect.Maps; import com.ctrip.framework.apollo.portal.component.config.PortalConfig; import com.ctrip.framework.apollo.portal.entity.bo.UserInfo; import com.ctrip.framework.apollo.portal.spi.UserService; import org.springframework.core.ParameterizedTypeReference; import org.springframework.http.HttpEntity; import org.springframework.http.HttpMethod; import org.springframework.http.ResponseEntity; import org.springframework.http.client.ClientHttpRequestFactory; import org.springframework.http.client.SimpleClientHttpRequestFactory; import org.springframework.util.CollectionUtils; import org.springframework.web.client.RestTemplate; import java.util.Collections; import java.util.List; import java.util.Map; import java.util.stream.Collectors; /** * @author Jason Song([email protected]) */ public class CtripUserService implements UserService { private RestTemplate restTemplate; private List<String> searchUserMatchFields; private ParameterizedTypeReference<Map<String, List<UserServiceResponse>>> responseType; private PortalConfig portalConfig; public CtripUserService(PortalConfig portalConfig) { this.portalConfig = portalConfig; this.restTemplate = new RestTemplate(clientHttpRequestFactory()); this.searchUserMatchFields = Lists.newArrayList("empcode", "empaccount", "displayname", "c_name", "pinyin"); this.responseType = new ParameterizedTypeReference<Map<String, List<UserServiceResponse>>>() { }; } private ClientHttpRequestFactory clientHttpRequestFactory() { SimpleClientHttpRequestFactory factory = new SimpleClientHttpRequestFactory(); factory.setConnectTimeout(portalConfig.connectTimeout()); factory.setReadTimeout(portalConfig.readTimeout()); return factory; } @Override public List<UserInfo> searchUsers(String keyword, int offset, int limit) { UserServiceRequest request = assembleSearchUserRequest(keyword, offset, limit); HttpEntity<UserServiceRequest> entity = new HttpEntity<>(request); ResponseEntity<Map<String, List<UserServiceResponse>>> response = restTemplate.exchange(portalConfig.userServiceUrl(), HttpMethod.POST, entity, responseType); if (!response.getBody().containsKey("result")) { return Collections.emptyList(); } List<UserInfo> result = Lists.newArrayList(); result.addAll( response.getBody().get("result").stream().map(this::transformUserServiceResponseToUserInfo) .collect(Collectors.toList())); return result; } @Override public UserInfo findByUserId(String userId) { List<UserInfo> userInfoList = this.findByUserIds(Lists.newArrayList(userId)); if (CollectionUtils.isEmpty(userInfoList)) { return null; } return userInfoList.get(0); } @Override public List<UserInfo> findByUserIds(List<String> userIds) { UserServiceRequest request = assembleFindUserRequest(Lists.newArrayList(userIds)); HttpEntity<UserServiceRequest> entity = new HttpEntity<>(request); ResponseEntity<Map<String, List<UserServiceResponse>>> response = restTemplate.exchange(portalConfig.userServiceUrl(), HttpMethod.POST, entity, responseType); if (!response.getBody().containsKey("result")) { return Collections.emptyList(); } List<UserInfo> result = Lists.newArrayList(); result.addAll( response.getBody().get("result").stream().map(this::transformUserServiceResponseToUserInfo) .collect(Collectors.toList())); return result; } private UserInfo transformUserServiceResponseToUserInfo(UserServiceResponse userServiceResponse) { UserInfo userInfo = new UserInfo(); userInfo.setUserId(userServiceResponse.getEmpaccount()); userInfo.setName(userServiceResponse.getDisplayname()); userInfo.setEmail(userServiceResponse.getEmail()); return userInfo; } UserServiceRequest assembleSearchUserRequest(String keyword, int offset, int limit) { Map<String, Object> query = Maps.newHashMap(); Map<String, Object> multiMatchMap = Maps.newHashMap(); multiMatchMap.put("fields", searchUserMatchFields); multiMatchMap.put("operator", "and"); multiMatchMap.put("query", keyword); multiMatchMap.put("type", "best_fields"); query.put("multi_match", multiMatchMap); return assembleUserServiceRequest(query, offset, limit); } UserServiceRequest assembleFindUserRequest(List<String> userIds) { Map<String, Object> query = ImmutableMap.of("filtered", ImmutableMap .of("filter", ImmutableMap.of("terms", ImmutableMap.of("empaccount", userIds)))); return assembleUserServiceRequest(query, 0, userIds.size()); } private UserServiceRequest assembleUserServiceRequest(Map<String, Object> query, int offset, int limit) { UserServiceRequest request = new UserServiceRequest(); request.setAccess_token(portalConfig.userServiceAccessToken()); UserServiceRequestBody requestBody = new UserServiceRequestBody(); requestBody.setIndexAlias("itdb_emloyee"); requestBody.setType("emloyee"); request.setRequest_body(requestBody); Map<String, Object> queryJson = Maps.newHashMap(); requestBody.setQueryJson(queryJson); queryJson.put("query", query); queryJson.put("from", offset); queryJson.put("size", limit); return request; } static class UserServiceRequest { private String access_token; private UserServiceRequestBody request_body; public String getAccess_token() { return access_token; } public void setAccess_token(String access_token) { this.access_token = access_token; } public UserServiceRequestBody getRequest_body() { return request_body; } public void setRequest_body( UserServiceRequestBody request_body) { this.request_body = request_body; } } static class UserServiceRequestBody { private String indexAlias; private String type; private Map<String, Object> queryJson; public String getType() { return type; } public void setType(String type) { this.type = type; } public String getIndexAlias() { return indexAlias; } public void setIndexAlias(String indexAlias) { this.indexAlias = indexAlias; } public Map<String, Object> getQueryJson() { return queryJson; } public void setQueryJson(Map<String, Object> queryJson) { this.queryJson = queryJson; } } static class UserServiceResponse { private String empaccount; private String displayname; private String email; public String getEmpaccount() { return empaccount; } public void setEmpaccount(String empaccount) { this.empaccount = empaccount; } public String getDisplayname() { return displayname; } public void setDisplayname(String displayname) { this.displayname = displayname; } public String getEmail() { return email; } public void setEmail(String email) { this.email = email; } } }
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-configservice/src/main/resources/META-INF/app.properties
app.id=100003171 jdkVersion=1.8
app.id=100003171 jdkVersion=1.8
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-portal/src/main/resources/static/img/copy.png
PNG  IHDRXGIDATx^_vƫ' <  `V 0oH<,@BY bM2N| \Ҍzj>_t}?Vi_Wf*-VYj'&rǣvz{M}_k'?U>هHEMM'c~d3W)l"x#lg׀;/T`s6&Ņ> <Evw=%+XBvwOP w~n}8j#HPr+@5^%0=8H|#=0k@Z>7C8:$niwd/8u+ w{vx'jմ螨~LMm &n䁪>I79vJ Aھ“y|tw~0_wש7xLCU1$aJ_dRk8̳[I )勂j/RjNэ@[퍄SD+@B&Av@>_g|HrH Y+ uzM@V) :| !O7~@@|ȷ񾒬 /}J@@gHVdHnշY/ ^!Y Cty;vK;|M u8$ܵ2I.[U߉jwzOEN@:u+\V< +}do N4}[M@;.VxդQ|<qdۺ&bt-)ҥ*@<nE[V,8B"H(@v:9t<+FLI@U Rk8@">Y]5ǗӁ H]WlfdTjP> u$׃)ĕg8ź>:wG\7 HVJqRI@; uU(S*fdbH !! M* )CB@#E@R$6yN bF&vI b8fHX_ Hs5nW@ 2cRF@b\y@D ϭJtJ393,d~ 1GJM $V5&Vd1Aso" !m1/ dpE@h H,d#an^Q$ Žrlwz7⬡<bB6棷B'." ]MUB )<cNDj.$ oG"P.oYݬ! '!zp U,XFJ@T"`)I@H HDJ@D,'R$f9 0ˉ$ YNH$r"% @" `)I@H HDJ@D,'R$f9 0ˉ {po?[Og@&%  QªDNl_d/#e@ElX9|qNey>]z2T\N~Q!Z?=X"m H>kRdya ÉNǣү0]dd> =@8L@JoɨUa' OR8" a踀"]9xoԃ3dTݥPI!U^s(Ad }ͲW@8fw* )+I ߼lzLy\Honp` $JopSf9 0ˉ$ YNH$r"% @" `)I@H HDJ@D,'R$f9 0ˉ$ YNHdꀴvw[S?G[]jre/- u)jcej3l<|m%)Kz{Gp\JH@v:^P}PJ+Hغma Q`p4`_Y p i(0J9Ori^eeƪC@jH~;UPj/5ɟƯ,iHMRer*s7a;?TWڝޡ;LM-; Ow߀)~MFHf2Ѭ͋x?ڝN$.YoT ƕ @(t4jy1 uo @) # YNH$r"% @" `)I@H HDJ@D,'R$f9 0ˉ$ YNH$r"% @"NoZ.f2MxH_ HۛMVT4d 4y)R* ˒cƷlh)KԾ&<2{zXI yz͟D MCKR I `u+HMH涸7+B0-$k{;k 5)]&R-% uyPPN)R{9J|T !|^HS4P r|OUZfr/J"6uxnpI:CiH$0ˉ$ YNH$r"% @" `)I@H HDJ@D,'R$f9 0ˉBV]1-{|7LżVn"b梀AyDwT~+9U7TNf(]M77e2Xҁfl2vHa;U!فa|5{8szvW3̆ɨӵ;@v:=Q{cs~ZRs`D[םs T D~4i1t- \I bˋj١|)ӘܲvrH#QoLiXb\r;\Ǫшk͏e{鞉P-95 uNʈ+Mƅ*7i;e9JqqR4:F}iҬe Jsf-;EP4kٱ,2 Yˎ=8@@<d1)Zv!4HiֲcYd 9@@J{p,bˮxH<cفW폛+|j4j@h `JLM'2# 4}@;Rѧȑd{H؇c6EP,O*D]ũ; H`YG/<j@nQb#GE_,> r j@vGU~q!~9(B"zeATm:#$UHuU;}|Gv2{^w|=N؊ig !* MdSմ칊Dq H~mр@ѻY_\XQdnbstmj؝E[T[рc04{9-c][ Y-]09_\v7yV$+Vs#Ւ/G2 <ՊH4T}ju5\It6(@wJYAB˽7na_{æ耙_d{U^w\V+HӍ9\9~u=往(utKLgM;z0W 4k)T*Ri\%L`&jգ-kU(t{y}M~>q̆"qٟƺP `1+3Uخ>'U93ye'eLNG (BgIENDB`
PNG  IHDRXGIDATx^_vƫ' <  `V 0oH<,@BY bM2N| \Ҍzj>_t}?Vi_Wf*-VYj'&rǣvz{M}_k'?U>هHEMM'c~d3W)l"x#lg׀;/T`s6&Ņ> <Evw=%+XBvwOP w~n}8j#HPr+@5^%0=8H|#=0k@Z>7C8:$niwd/8u+ w{vx'jմ螨~LMm &n䁪>I79vJ Aھ“y|tw~0_wש7xLCU1$aJ_dRk8̳[I )勂j/RjNэ@[퍄SD+@B&Av@>_g|HrH Y+ uzM@V) :| !O7~@@|ȷ񾒬 /}J@@gHVdHnշY/ ^!Y Cty;vK;|M u8$ܵ2I.[U߉jwzOEN@:u+\V< +}do N4}[M@;.VxդQ|<qdۺ&bt-)ҥ*@<nE[V,8B"H(@v:9t<+FLI@U Rk8@">Y]5ǗӁ H]WlfdTjP> u$׃)ĕg8ź>:wG\7 HVJqRI@; uU(S*fdbH !! M* )CB@#E@R$6yN bF&vI b8fHX_ Hs5nW@ 2cRF@b\y@D ϭJtJ393,d~ 1GJM $V5&Vd1Aso" !m1/ dpE@h H,d#an^Q$ Žrlwz7⬡<bB6棷B'." ]MUB )<cNDj.$ oG"P.oYݬ! '!zp U,XFJ@T"`)I@H HDJ@D,'R$f9 0ˉ$ YNH$r"% @" `)I@H HDJ@D,'R$f9 0ˉ {po?[Og@&%  QªDNl_d/#e@ElX9|qNey>]z2T\N~Q!Z?=X"m H>kRdya ÉNǣү0]dd> =@8L@JoɨUa' OR8" a踀"]9xoԃ3dTݥPI!U^s(Ad }ͲW@8fw* )+I ߼lzLy\Honp` $JopSf9 0ˉ$ YNH$r"% @" `)I@H HDJ@D,'R$f9 0ˉ$ YNHdꀴvw[S?G[]jre/- u)jcej3l<|m%)Kz{Gp\JH@v:^P}PJ+Hغma Q`p4`_Y p i(0J9Ori^eeƪC@jH~;UPj/5ɟƯ,iHMRer*s7a;?TWڝޡ;LM-; Ow߀)~MFHf2Ѭ͋x?ڝN$.YoT ƕ @(t4jy1 uo @) # YNH$r"% @" `)I@H HDJ@D,'R$f9 0ˉ$ YNH$r"% @"NoZ.f2MxH_ HۛMVT4d 4y)R* ˒cƷlh)KԾ&<2{zXI yz͟D MCKR I `u+HMH涸7+B0-$k{;k 5)]&R-% uyPPN)R{9J|T !|^HS4P r|OUZfr/J"6uxnpI:CiH$0ˉ$ YNH$r"% @" `)I@H HDJ@D,'R$f9 0ˉBV]1-{|7LżVn"b梀AyDwT~+9U7TNf(]M77e2Xҁfl2vHa;U!فa|5{8szvW3̆ɨӵ;@v:=Q{cs~ZRs`D[םs T D~4i1t- \I bˋj١|)ӘܲvrH#QoLiXb\r;\Ǫшk͏e{鞉P-95 uNʈ+Mƅ*7i;e9JqqR4:F}iҬe Jsf-;EP4kٱ,2 Yˎ=8@@<d1)Zv!4HiֲcYd 9@@J{p,bˮxH<cفW폛+|j4j@h `JLM'2# 4}@;Rѧȑd{H؇c6EP,O*D]ũ; H`YG/<j@nQb#GE_,> r j@vGU~q!~9(B"zeATm:#$UHuU;}|Gv2{^w|=N؊ig !* MdSմ칊Dq H~mр@ѻY_\XQdnbstmj؝E[T[рc04{9-c][ Y-]09_\v7yV$+Vs#Ւ/G2 <ՊH4T}ju5\It6(@wJYAB˽7na_{æ耙_d{U^w\V+HӍ9\9~u=往(utKLgM;z0W 4k)T*Ri\%L`&jգ-kU(t{y}M~>q̆"qٟƺP `1+3Uخ>'U93ye'eLNG (BgIENDB`
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-portal/src/test/java/com/ctrip/framework/apollo/portal/util/ConfigFileUtilsTest.java
package com.ctrip.framework.apollo.portal.util; import static org.junit.Assert.*; import com.ctrip.framework.apollo.common.exception.BadRequestException; import com.ctrip.framework.apollo.core.enums.ConfigFileFormat; import org.junit.Test; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class ConfigFileUtilsTest { private final Logger logger = LoggerFactory.getLogger(this.getClass()); @Test public void checkFormat() { ConfigFileUtils.checkFormat("1234+default+app.properties"); ConfigFileUtils.checkFormat("1234+default+app.yml"); ConfigFileUtils.checkFormat("1234+default+app.json"); } @Test(expected = BadRequestException.class) public void checkFormatWithException0() { ConfigFileUtils.checkFormat("1234+defaultes"); } @Test(expected = BadRequestException.class) public void checkFormatWithException1() { ConfigFileUtils.checkFormat(".json"); } @Test(expected = BadRequestException.class) public void checkFormatWithException2() { ConfigFileUtils.checkFormat("application."); } @Test public void getFormat() { final String properties = ConfigFileUtils.getFormat("application+default+application.properties"); assertEquals("properties", properties); final String yml = ConfigFileUtils.getFormat("application+default+application.yml"); assertEquals("yml", yml); } @Test public void getAppId() { final String application = ConfigFileUtils.getAppId("application+default+application.properties"); assertEquals("application", application); final String abc = ConfigFileUtils.getAppId("abc+default+application.yml"); assertEquals("abc", abc); } @Test public void getClusterName() { final String cluster = ConfigFileUtils.getClusterName("application+default+application.properties"); assertEquals("default", cluster); final String Beijing = ConfigFileUtils.getClusterName("abc+Beijing+application.yml"); assertEquals("Beijing", Beijing); } @Test public void getNamespace() { final String application = ConfigFileUtils.getNamespace("234+default+application.properties"); assertEquals("application", application); final String applicationYml = ConfigFileUtils.getNamespace("abc+default+application.yml"); assertEquals("application.yml", applicationYml); } @Test public void toFilename() { final String propertiesFilename0 = ConfigFileUtils.toFilename("123", "default", "application", ConfigFileFormat.Properties); logger.info("propertiesFilename0 {}", propertiesFilename0); assertEquals("123+default+application.properties", propertiesFilename0); final String ymlFilename0 = ConfigFileUtils.toFilename("666", "none", "cc.yml", ConfigFileFormat.YML); logger.info("ymlFilename0 {}", ymlFilename0); assertEquals("666+none+cc.yml", ymlFilename0); } }
package com.ctrip.framework.apollo.portal.util; import static org.junit.Assert.*; import com.ctrip.framework.apollo.common.exception.BadRequestException; import com.ctrip.framework.apollo.core.enums.ConfigFileFormat; import org.junit.Test; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class ConfigFileUtilsTest { private final Logger logger = LoggerFactory.getLogger(this.getClass()); @Test public void checkFormat() { ConfigFileUtils.checkFormat("1234+default+app.properties"); ConfigFileUtils.checkFormat("1234+default+app.yml"); ConfigFileUtils.checkFormat("1234+default+app.json"); } @Test(expected = BadRequestException.class) public void checkFormatWithException0() { ConfigFileUtils.checkFormat("1234+defaultes"); } @Test(expected = BadRequestException.class) public void checkFormatWithException1() { ConfigFileUtils.checkFormat(".json"); } @Test(expected = BadRequestException.class) public void checkFormatWithException2() { ConfigFileUtils.checkFormat("application."); } @Test public void getFormat() { final String properties = ConfigFileUtils.getFormat("application+default+application.properties"); assertEquals("properties", properties); final String yml = ConfigFileUtils.getFormat("application+default+application.yml"); assertEquals("yml", yml); } @Test public void getAppId() { final String application = ConfigFileUtils.getAppId("application+default+application.properties"); assertEquals("application", application); final String abc = ConfigFileUtils.getAppId("abc+default+application.yml"); assertEquals("abc", abc); } @Test public void getClusterName() { final String cluster = ConfigFileUtils.getClusterName("application+default+application.properties"); assertEquals("default", cluster); final String Beijing = ConfigFileUtils.getClusterName("abc+Beijing+application.yml"); assertEquals("Beijing", Beijing); } @Test public void getNamespace() { final String application = ConfigFileUtils.getNamespace("234+default+application.properties"); assertEquals("application", application); final String applicationYml = ConfigFileUtils.getNamespace("abc+default+application.yml"); assertEquals("application.yml", applicationYml); } @Test public void toFilename() { final String propertiesFilename0 = ConfigFileUtils.toFilename("123", "default", "application", ConfigFileFormat.Properties); logger.info("propertiesFilename0 {}", propertiesFilename0); assertEquals("123+default+application.properties", propertiesFilename0); final String ymlFilename0 = ConfigFileUtils.toFilename("666", "none", "cc.yml", ConfigFileFormat.YML); logger.info("ymlFilename0 {}", ymlFilename0); assertEquals("666+none+cc.yml", ymlFilename0); } }
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-portal/src/main/resources/apollo-env.properties
local.meta=http://localhost:8080 dev.meta=${dev_meta} fat.meta=${fat_meta} uat.meta=${uat_meta} lpt.meta=${lpt_meta} pro.meta=${pro_meta}
local.meta=http://localhost:8080 dev.meta=${dev_meta} fat.meta=${fat_meta} uat.meta=${uat_meta} lpt.meta=${lpt_meta} pro.meta=${pro_meta}
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-portal/src/main/resources/static/scripts/services/FavoriteService.js
appService.service('FavoriteService', ['$resource', '$q', 'AppUtil', function ($resource, $q, AppUtil) { var resource = $resource('', {}, { find_favorites: { method: 'GET', url: AppUtil.prefixPath() + '/favorites', isArray: true }, add_favorite: { method: 'POST', url: AppUtil.prefixPath() + '/favorites' }, delete_favorite: { method: 'DELETE', url: AppUtil.prefixPath() + '/favorites/:favoriteId' }, to_top: { method: 'PUT', url: AppUtil.prefixPath() + '/favorites/:favoriteId' } }); return { findFavorites: function (userId, appId, page, size) { var d = $q.defer(); resource.find_favorites({ userId: userId, appId: appId, page: page, size: size }, function (result) { d.resolve(result); }, function (result) { d.reject(result); }); return d.promise; }, addFavorite: function (favorite) { var d = $q.defer(); resource.add_favorite({}, favorite, function (result) { d.resolve(result); }, function (result) { d.reject(result); }); return d.promise; }, deleteFavorite: function (favoriteId) { var d = $q.defer(); resource.delete_favorite({ favoriteId: favoriteId }, function (result) { d.resolve(result); }, function (result) { d.reject(result); }); return d.promise; }, toTop: function (favoriteId) { var d = $q.defer(); resource.to_top({ favoriteId: favoriteId }, {}, function (result) { d.resolve(result); }, function (result) { d.reject(result); }); return d.promise; } } }]);
appService.service('FavoriteService', ['$resource', '$q', 'AppUtil', function ($resource, $q, AppUtil) { var resource = $resource('', {}, { find_favorites: { method: 'GET', url: AppUtil.prefixPath() + '/favorites', isArray: true }, add_favorite: { method: 'POST', url: AppUtil.prefixPath() + '/favorites' }, delete_favorite: { method: 'DELETE', url: AppUtil.prefixPath() + '/favorites/:favoriteId' }, to_top: { method: 'PUT', url: AppUtil.prefixPath() + '/favorites/:favoriteId' } }); return { findFavorites: function (userId, appId, page, size) { var d = $q.defer(); resource.find_favorites({ userId: userId, appId: appId, page: page, size: size }, function (result) { d.resolve(result); }, function (result) { d.reject(result); }); return d.promise; }, addFavorite: function (favorite) { var d = $q.defer(); resource.add_favorite({}, favorite, function (result) { d.resolve(result); }, function (result) { d.reject(result); }); return d.promise; }, deleteFavorite: function (favoriteId) { var d = $q.defer(); resource.delete_favorite({ favoriteId: favoriteId }, function (result) { d.resolve(result); }, function (result) { d.reject(result); }); return d.promise; }, toTop: function (favoriteId) { var d = $q.defer(); resource.to_top({ favoriteId: favoriteId }, {}, function (result) { d.resolve(result); }, function (result) { d.reject(result); }); return d.promise; } } }]);
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-portal/src/main/resources/static/img/assign.png
PNG  IHDRX IDATx^ygVs-r+B``27*RA LU .ͤ T`ȷ#}XR.m1 ȟ( lUEQ@خ"! <"!  bOAxIH@"hyLO7H$-S@&"Q@d1y  <ݤV$  <&OԊD$) tZ( D2<nR+HZMjE@c@xIH@"hyLOܵw?>98c[-]vzJpHpm)\М}1/ř  LU;lt=jX%󬕤^[K/# 8B}Kfj,2IYԳEHĮÙ¬OSRz.n<)z0tF@1PlCQPz{q4(Dz2uq$nz[v 3V"9O^u E E.yze&VgG4[R2f*kYZ,M٠O.&əU4|KqාrOZs ;Dp_Y>.AMU!vXUGğYoPI d)R2].`j[Il ``·P@ dZ>ֶ:'+L+ >r_rFIJ퐧`(>4MmC{ر[q_3Y{PԀm}1&Eqilgq^lR6dpH_msHeu5R}~dԫ[=s"5J|"S- % fH+҇[t$ x;[ |3lD;\K+da:yȳf3wRwiE~ͥ.i$VT\S#Og'_LVRTZo+Ȼ"8hs HD_fQ/>ϹO|x" كrq<GjNS7qHp+wl "j _^L笺< lcliu6K@_ Z BU-]笵W[Gck7",4 B&otI$*=]ЇT*j(9z5 j;z}nYj<oGmYv]4 f/Өݘw|i0cՂ6 x16#9q̴<+ӷ%'F+S`cٽP!Sbm㠇w9Y18"Uz=0ίA\V`Űdǰ$ 5N3޻fnj;KYx;X7v"@Tdj@@V" iA3.n.VimI؄]b՚mU91KCsȀ!tbsChNH,!"Ѽfl< "C?fѡoU|ȀVo6udݹ6Mi}@% 1hD\pݏa+x@$/N> ]L[~gnX#J`4 9Q%A39עF> }:gu']rli/x@,V |j^q$fY/R]ks_ZXvs~#PQg^I73/n 㬯&Z@U䌹3?1zS-LkZhI}Ɲ|7Mxx썵vD'HM}~g ţ$tܢJ&J˳~(5|Hvb<:ʫq}g`ĻQ z-NEs(߻SVeU:{ƣl3:@"=D|c_u]:s \hME -KJK.5;o![?3 Sd帪9d*DS7m mvתy~hIý.mg$]LFC홴w^6x4tqkR(H?[-!'i.*ծ&_o;xG&vN9a7jg@⺀v0UHS|1};)6kgj1 @_׈)4W@qvApw` ) F[TA peӶ~PIrdG?@L<OHD"91~&@5FUv}iMfw:P@ C'>ۀT~7(UBԱw*0oCz_~OڬEb/"+Y8T,z@b>@* `<<(+}Alg]T/ei ocpm* m{{QRk]ŝnD<ɑuZ,h27Sw׵Wi?xpOz7з|MFo2?x  H~M2f5S@V7aaJ#@ħ\Ip@YB%ɴ4k *=3[!&Ab#TvC@H;Y6[F%^l`ߖ&:ݍ3G\Q_oWcXtbgr|ՅUQDo4P{a;\1D\i@RzdJW_ hM-{., 62o1cRg;a][WI@\7aȲ,Z%V=˯Юi mfЃ[5# ʤ˯GJ/NlH wquAćZej@SJ[ZJl'2Oc扽CXCN:LSɝBsdapy(JGI^c͏ZsfYRebCՋJ7z׀.e9+kPp,jo*or8- i\E_K@l 꼳-z3  VrXη$S.p[T+@rEӐoy>x\ڶRovt"RJöim@pt%P^wi%]c̶{kGSHǶYg<gU+z@W]p>ïK$i\z_EpN?4 gk٬T8KcT xJq<ERsU0u>rпD|"j4@k>KT2ȷ٬xĖ4ꭎW1V}wE @rofQ/dc.Ro!]xt{Ei})yЩ\0 d}gWPr8}: p@;Wȥ T,ΥWV[">ǜuGZNC&dV%ʉWs7W(-^Bf6ËH_#9XJwzɇUP@ι9Q)Q( f/ӠD'ͮ:-ԛ;>p(J0??'pI(s!ͮ:-=>EHB0@j-8V(:dԐHB@WVbd[ [IHpH5!D;pVjua'( "xtbLm`8G!x|)ڃ=d$T8?\}>i(=^n%rө{~M=3~x43 ˄wV j69'p_gU3'b;-)V 3c:A?d{זnn H*afWKBp8㠇x϶Ip #18T($) t)\5jZ!T}|mb&nN!0na=7m $;@Ԭ햷 Ip8C8 v ӚH- r±O/$ 8dH'L(#e^"g QiIp8Wݣ,`E9܁h$ۼ@;U/eUL]\9#2$G4?|pٞ|9jQDw$ݨzp )G%Ũ1s(to?吏9"99FP:U9 ۄY |iΐqQ@!{'E@Jy@]  %  ~d@~oGzWH ?#+Y[ޕRHJV@)yV@{|w%+ <~+PHNIENDB`
PNG  IHDRX IDATx^ygVs-r+B``27*RA LU .ͤ T`ȷ#}XR.m1 ȟ( lUEQ@خ"! <"!  bOAxIH@"hyLO7H$-S@&"Q@d1y  <ݤV$  <&OԊD$) tZ( D2<nR+HZMjE@c@xIH@"hyLOܵw?>98c[-]vzJpHpm)\М}1/ř  LU;lt=jX%󬕤^[K/# 8B}Kfj,2IYԳEHĮÙ¬OSRz.n<)z0tF@1PlCQPz{q4(Dz2uq$nz[v 3V"9O^u E E.yze&VgG4[R2f*kYZ,M٠O.&əU4|KqාrOZs ;Dp_Y>.AMU!vXUGğYoPI d)R2].`j[Il ``·P@ dZ>ֶ:'+L+ >r_rFIJ퐧`(>4MmC{ر[q_3Y{PԀm}1&Eqilgq^lR6dpH_msHeu5R}~dԫ[=s"5J|"S- % fH+҇[t$ x;[ |3lD;\K+da:yȳf3wRwiE~ͥ.i$VT\S#Og'_LVRTZo+Ȼ"8hs HD_fQ/>ϹO|x" كrq<GjNS7qHp+wl "j _^L笺< lcliu6K@_ Z BU-]笵W[Gck7",4 B&otI$*=]ЇT*j(9z5 j;z}nYj<oGmYv]4 f/Өݘw|i0cՂ6 x16#9q̴<+ӷ%'F+S`cٽP!Sbm㠇w9Y18"Uz=0ίA\V`Űdǰ$ 5N3޻fnj;KYx;X7v"@Tdj@@V" iA3.n.VimI؄]b՚mU91KCsȀ!tbsChNH,!"Ѽfl< "C?fѡoU|ȀVo6udݹ6Mi}@% 1hD\pݏa+x@$/N> ]L[~gnX#J`4 9Q%A39עF> }:gu']rli/x@,V |j^q$fY/R]ks_ZXvs~#PQg^I73/n 㬯&Z@U䌹3?1zS-LkZhI}Ɲ|7Mxx썵vD'HM}~g ţ$tܢJ&J˳~(5|Hvb<:ʫq}g`ĻQ z-NEs(߻SVeU:{ƣl3:@"=D|c_u]:s \hME -KJK.5;o![?3 Sd帪9d*DS7m mvתy~hIý.mg$]LFC홴w^6x4tqkR(H?[-!'i.*ծ&_o;xG&vN9a7jg@⺀v0UHS|1};)6kgj1 @_׈)4W@qvApw` ) F[TA peӶ~PIrdG?@L<OHD"91~&@5FUv}iMfw:P@ C'>ۀT~7(UBԱw*0oCz_~OڬEb/"+Y8T,z@b>@* `<<(+}Alg]T/ei ocpm* m{{QRk]ŝnD<ɑuZ,h27Sw׵Wi?xpOz7з|MFo2?x  H~M2f5S@V7aaJ#@ħ\Ip@YB%ɴ4k *=3[!&Ab#TvC@H;Y6[F%^l`ߖ&:ݍ3G\Q_oWcXtbgr|ՅUQDo4P{a;\1D\i@RzdJW_ hM-{., 62o1cRg;a][WI@\7aȲ,Z%V=˯Юi mfЃ[5# ʤ˯GJ/NlH wquAćZej@SJ[ZJl'2Oc扽CXCN:LSɝBsdapy(JGI^c͏ZsfYRebCՋJ7z׀.e9+kPp,jo*or8- i\E_K@l 꼳-z3  VrXη$S.p[T+@rEӐoy>x\ڶRovt"RJöim@pt%P^wi%]c̶{kGSHǶYg<gU+z@W]p>ïK$i\z_EpN?4 gk٬T8KcT xJq<ERsU0u>rпD|"j4@k>KT2ȷ٬xĖ4ꭎW1V}wE @rofQ/dc.Ro!]xt{Ei})yЩ\0 d}gWPr8}: p@;Wȥ T,ΥWV[">ǜuGZNC&dV%ʉWs7W(-^Bf6ËH_#9XJwzɇUP@ι9Q)Q( f/ӠD'ͮ:-ԛ;>p(J0??'pI(s!ͮ:-=>EHB0@j-8V(:dԐHB@WVbd[ [IHpH5!D;pVjua'( "xtbLm`8G!x|)ڃ=d$T8?\}>i(=^n%rө{~M=3~x43 ˄wV j69'p_gU3'b;-)V 3c:A?d{זnn H*afWKBp8㠇x϶Ip #18T($) t)\5jZ!T}|mb&nN!0na=7m $;@Ԭ햷 Ip8C8 v ӚH- r±O/$ 8dH'L(#e^"g QiIp8Wݣ,`E9܁h$ۼ@;U/eUL]\9#2$G4?|pٞ|9jQDw$ݨzp )G%Ũ1s(to?吏9"99FP:U9 ۄY |iΐqQ@!{'E@Jy@]  %  ~d@~oGzWH ?#+Y[ޕRHJV@)yV@{|w%+ <~+PHNIENDB`
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/repository/ItemRepository.java
package com.ctrip.framework.apollo.biz.repository; import com.ctrip.framework.apollo.biz.entity.Item; import org.springframework.data.jpa.repository.Modifying; import org.springframework.data.jpa.repository.Query; import org.springframework.data.repository.PagingAndSortingRepository; import java.util.Date; import java.util.List; public interface ItemRepository extends PagingAndSortingRepository<Item, Long> { Item findByNamespaceIdAndKey(Long namespaceId, String key); List<Item> findByNamespaceIdOrderByLineNumAsc(Long namespaceId); List<Item> findByNamespaceId(Long namespaceId); List<Item> findByNamespaceIdAndDataChangeLastModifiedTimeGreaterThan(Long namespaceId, Date date); Item findFirst1ByNamespaceIdOrderByLineNumDesc(Long namespaceId); @Modifying @Query("update Item set isdeleted=1,DataChange_LastModifiedBy = ?2 where namespaceId = ?1") int deleteByNamespaceId(long namespaceId, String operator); }
package com.ctrip.framework.apollo.biz.repository; import com.ctrip.framework.apollo.biz.entity.Item; import org.springframework.data.jpa.repository.Modifying; import org.springframework.data.jpa.repository.Query; import org.springframework.data.repository.PagingAndSortingRepository; import java.util.Date; import java.util.List; public interface ItemRepository extends PagingAndSortingRepository<Item, Long> { Item findByNamespaceIdAndKey(Long namespaceId, String key); List<Item> findByNamespaceIdOrderByLineNumAsc(Long namespaceId); List<Item> findByNamespaceId(Long namespaceId); List<Item> findByNamespaceIdAndDataChangeLastModifiedTimeGreaterThan(Long namespaceId, Date date); Item findFirst1ByNamespaceIdOrderByLineNumDesc(Long namespaceId); @Modifying @Query("update Item set isdeleted=1,DataChange_LastModifiedBy = ?2 where namespaceId = ?1") int deleteByNamespaceId(long namespaceId, String operator); }
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-openapi/src/main/java/com/ctrip/framework/apollo/openapi/dto/BaseDTO.java
package com.ctrip.framework.apollo.openapi.dto; import java.util.Date; public class BaseDTO { protected String dataChangeCreatedBy; protected String dataChangeLastModifiedBy; protected Date dataChangeCreatedTime; protected Date dataChangeLastModifiedTime; public String getDataChangeCreatedBy() { return dataChangeCreatedBy; } public void setDataChangeCreatedBy(String dataChangeCreatedBy) { this.dataChangeCreatedBy = dataChangeCreatedBy; } public String getDataChangeLastModifiedBy() { return dataChangeLastModifiedBy; } public void setDataChangeLastModifiedBy(String dataChangeLastModifiedBy) { this.dataChangeLastModifiedBy = dataChangeLastModifiedBy; } public Date getDataChangeCreatedTime() { return dataChangeCreatedTime; } public void setDataChangeCreatedTime(Date dataChangeCreatedTime) { this.dataChangeCreatedTime = dataChangeCreatedTime; } public Date getDataChangeLastModifiedTime() { return dataChangeLastModifiedTime; } public void setDataChangeLastModifiedTime(Date dataChangeLastModifiedTime) { this.dataChangeLastModifiedTime = dataChangeLastModifiedTime; } }
package com.ctrip.framework.apollo.openapi.dto; import java.util.Date; public class BaseDTO { protected String dataChangeCreatedBy; protected String dataChangeLastModifiedBy; protected Date dataChangeCreatedTime; protected Date dataChangeLastModifiedTime; public String getDataChangeCreatedBy() { return dataChangeCreatedBy; } public void setDataChangeCreatedBy(String dataChangeCreatedBy) { this.dataChangeCreatedBy = dataChangeCreatedBy; } public String getDataChangeLastModifiedBy() { return dataChangeLastModifiedBy; } public void setDataChangeLastModifiedBy(String dataChangeLastModifiedBy) { this.dataChangeLastModifiedBy = dataChangeLastModifiedBy; } public Date getDataChangeCreatedTime() { return dataChangeCreatedTime; } public void setDataChangeCreatedTime(Date dataChangeCreatedTime) { this.dataChangeCreatedTime = dataChangeCreatedTime; } public Date getDataChangeLastModifiedTime() { return dataChangeLastModifiedTime; } public void setDataChangeLastModifiedTime(Date dataChangeLastModifiedTime) { this.dataChangeLastModifiedTime = dataChangeLastModifiedTime; } }
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-portal/src/main/java/com/ctrip/framework/apollo/portal/controller/ReleaseHistoryController.java
package com.ctrip.framework.apollo.portal.controller; import com.ctrip.framework.apollo.portal.environment.Env; import com.ctrip.framework.apollo.portal.component.PermissionValidator; import com.ctrip.framework.apollo.portal.entity.bo.ReleaseHistoryBO; import com.ctrip.framework.apollo.portal.service.ReleaseHistoryService; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RestController; import java.util.Collections; import java.util.List; @RestController public class ReleaseHistoryController { private final ReleaseHistoryService releaseHistoryService; private final PermissionValidator permissionValidator; public ReleaseHistoryController(final ReleaseHistoryService releaseHistoryService, final PermissionValidator permissionValidator) { this.releaseHistoryService = releaseHistoryService; this.permissionValidator = permissionValidator; } @GetMapping("/apps/{appId}/envs/{env}/clusters/{clusterName}/namespaces/{namespaceName}/releases/histories") public List<ReleaseHistoryBO> findReleaseHistoriesByNamespace(@PathVariable String appId, @PathVariable String env, @PathVariable String clusterName, @PathVariable String namespaceName, @RequestParam(value = "page", defaultValue = "0") int page, @RequestParam(value = "size", defaultValue = "10") int size) { if (permissionValidator.shouldHideConfigToCurrentUser(appId, env, namespaceName)) { return Collections.emptyList(); } return releaseHistoryService.findNamespaceReleaseHistory(appId, Env.valueOf(env), clusterName ,namespaceName, page, size); } }
package com.ctrip.framework.apollo.portal.controller; import com.ctrip.framework.apollo.portal.environment.Env; import com.ctrip.framework.apollo.portal.component.PermissionValidator; import com.ctrip.framework.apollo.portal.entity.bo.ReleaseHistoryBO; import com.ctrip.framework.apollo.portal.service.ReleaseHistoryService; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RestController; import java.util.Collections; import java.util.List; @RestController public class ReleaseHistoryController { private final ReleaseHistoryService releaseHistoryService; private final PermissionValidator permissionValidator; public ReleaseHistoryController(final ReleaseHistoryService releaseHistoryService, final PermissionValidator permissionValidator) { this.releaseHistoryService = releaseHistoryService; this.permissionValidator = permissionValidator; } @GetMapping("/apps/{appId}/envs/{env}/clusters/{clusterName}/namespaces/{namespaceName}/releases/histories") public List<ReleaseHistoryBO> findReleaseHistoriesByNamespace(@PathVariable String appId, @PathVariable String env, @PathVariable String clusterName, @PathVariable String namespaceName, @RequestParam(value = "page", defaultValue = "0") int page, @RequestParam(value = "size", defaultValue = "10") int size) { if (permissionValidator.shouldHideConfigToCurrentUser(appId, env, namespaceName)) { return Collections.emptyList(); } return releaseHistoryService.findNamespaceReleaseHistory(appId, Env.valueOf(env), clusterName ,namespaceName, page, size); } }
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-client/doc/pic/client-local-cache.png
PNG  IHDRgF3 IDATxxE^!h!%@ ` T " V,(Mz@ޓ?7ϓܽsf9۽;(% d2L@& Wx!;! d2L@& 3B d2L@&/" g!" d2L@L0(xvHiI +tx FJKq7 Su6k=Ai;0 'ɄBィ;fKԆ4J-JƥZYc,BdAUc,l.SaYu&NS\C27Z+:+zjR!Q L# SeIJ|%QQZW_~|q(ҫ=cSZƏGo.$/רRo^i̔(%$~[҄R7o?(0/gsU]n#V{*d2?E@<i'ye922Ni=1 ()+lPw s'6%#t|Ϛs͟$˓{ߣFm}m0C;:W$tQ{Yכ^?ɁJ<c8Wr4bX/HK׎,3UDY_zO<VGJډߵ GY.J+kd:׎ ttƾBʧP1l%#Zm4Ƃ5}}7=QMc~d\Wh M9W8qT!"+;w^tcDZ]JX\Ci,0/hWw Ꮇh đhb#qK%CFK~= cȑyȹ:˜d2mP?uvJ?:O2c}{S#]vEM|D ΝLmDE7ٳX$7{8j Úp*8SiCI<k8td%mV#٬uZF24S/p1DQ Igx{|Ns%+A6ᣖХd{|s+N9F-&{d-~N=Ċ(ҷdgY RZ^*':tIp@Y(uFUtc&AffT&h ֯~ B+7 4KLdp'1k"G`vQ$vة57ROxhVbס_sRQz_ .R(]M=̾PS?QZ^̕y^b{ gGcu>=# d2Z0yJ 8k7Pw6~7J3( &*W}ʼnS+(܈l6jbZC(<ñ#s)ȐlZ+ܠam^#ۑ 'a2[|H"W 6[myf4[ҫsb+*-{ ˅b*JYYΞZFyEb аvd***J.}U/_c\/.}g nqi; . Qp,^5\8KxG2wQ6F~\>>s4i8Z%< ţ4JtD<&T7 񆴘Jt8 Q ÿ`RKxk΅J6:b<WVQ^oX%c96%*7bNZ2ΟYE'$rQ#PيH9lDP|4籨|i9K~OZ0V 9k|DAT{q9`1qe)rM"@Y5J p b/sѱŔՋKI>r6Ki s ,+zhbrQˮq5y3kAHPlq8rp>E^n9-~-P})LZ68Wr|h4k[ L@& [mVz#_'⑭eډĄGI=6gz^5!ғSR%OgہN",VxE!q$v,#󸺆b@klXJΰ),-qpJbtl*هO}{o"<fRAwZk` [іϕE[H%ؑaU9td\|u+ƢȀ 1v&w+%-ui/Hh7G^B}>TlЋ~pNyйvcTEe'(peDDNʂd+;>z,7zn$vz"qso.ύ.=&l vmzӥSd$\e J%Fv {78s[ك GӴRB ٰ-*LPrJ!$)W$VoPErRN:BʹŘU~tOgqh/m>AY (L?o4|X:h*- {J~B^o|"l܌ =cN<`Εc)1[jxݗ#(RvZw{p KAC%3OuzyϭBދ#ō|.@Yۗ s9~LGfqBN۫1K?N`-y/8=ݟ6'l#*ڵOsB*/N% d2)eZl8yx2},\{oV>+ vz '[ vΔ&;z$ҶC^^ʪ#9r2(AWsx^NHh1W'\?Isjʑ=_RLiyUOHl0/oׇ *7$}C9.Arbo|P%E/zq-C:,œܰ.4û'PP\DI]ᬼβ{Bǡ;hP=_H\[MطgMq!<vt}WӮ4F7URZOۮdҮǫh .6]iXS%sdee6mIXGbWйǓxG4ŇٰqoC \4ŇXi@!>|.T:E?GTG9a[DIaR}N8å3IϹX{\he:EUަ5 8wqF6H?5U+4F$ݫ\e9XGQ댆 oк+LRV&fS:TvgpF޽N_ fE׋tC|+68x͈JS)+-]һ; ;=qj u80K#8^c q@P!]-.e]aREղm`NN{ n޵=:?ԬC%~P\^ I-|qbѳ-r?d2s^eEtw8Z6O{ϕgt6JxAlzݸJԕ>L_R zE.YSj*@d6y18N  "\N?#l3>zfB_ey9y}۟t Mq(qIkG<JXLN?H{lU|BZoE@ j@$kɞ}(iYG-rٳ7eoM'IVyiѸs|B]Ih]8 i$7hL[Af<=_؄)9iRԁZQʦӤqD^U՚54g/WT^6Vv0qMŻQ, 8zb$Q/k1yiP##>Ym@Uּw χCK(ϵ ":GݱJ MdERٵCR|[ĩ \0647 \˱fM* FS_r6@EٌwNF=puPurvGb@xt# c .&Vku @&  LQY?E ['M<cPUĦD)z)TjinZ*52siMOQlhMؗcP*U= Dj*]0ʼni?sXSZq ɔ⇀ 6K=(1<#PB4w=6rNR9AD C]'oo~^y1*}J7>:k$L7Xqal$C52r>4(b "+ u#"݃Jxݘ%>1p6P[Qjj]xЋظ{(#{v¤VD>}I" \/YDiŦT`KV緉/6R5\=ze&j{$3֫pP(Źp .t A(GYҏԬ~"Ω(ICIs*t-׵dԅH:++z @igTnK(֢~b7 yWWug( ,JL ?\/ Jrc%$QzGM|L@&  ; (z%{W~ʏ^LBhkkV/*O^a%p@Dn`j~L#6^!#NΕ_HϿ$1WAoo]So3 /#7N\۸^f`"۴h>ar9Q s z:>lU)3⠷7΁(ٔK:[%~DxHq;N%MžS0Yj}{jU8\(r3_hB)qh 1ݰdO),.Ei+6QOLDW'ٻSJnk* ^N@LDeپ^r'k aՒ\ɺe#Y|d,2 7{~w,L ]ybMVB-3">jiL|oRn|ʺX*r9yFj5(J=Q$:T :oD$b)ȵQ*u!qU(f/3 ^>^q^4KGơU=eP^rS>4/'QzW F\="Vuz@gu/ ~,XJr|:j=Rq@JWɍSd'+'vS8H^5tFwlSRׄiZ!Fzg*Mu6"!e9Q&  vݿ|ͲO`֙ӀY'$u|+^1{yavlL^S|AJj<9 .%6`qvkJEN6n‘olQz {Ҫ}\>6siP+9ȩ#?Ѿ0F i˸(S6Ӷ͝j@vY||qQ1l]r/'lm(Fݟ$J;aaa )G^s7rc4Bch٪Urh0oFSi;Z)tf~}'vC>gJ7<طI2d}zJ?Z鎟{7)v|_y )0>Q*:aj=Xn)d u:ɓ\0jm=c1lԂ`NvC8{<)9jX9E\=|!^ª0bYYuny]eUn;;k83jn.MmX H@G8 N%]=Ѩ 7+ '!=P⾀nb qqb?Q +=OW\Vn7w_Dhsr@gÊ5=tvҹc7[=LAa:@'Y Thie:FWJktPpm_>*˼3g| .ʤ7).$G0s>Oaf2/ONɍ:+d2H@P(c7|Q-8 jsIP* -J 9n/;#%H+;"@ j+.@ցM9g7?MP:5o7oR-d¨3R.ŌɕsK(6U`t"U+;z&J3i%#8fw¥sK(-7c48Ӄ~8gEpZi8dPj9Mg(+3`1-pW\\4ʚgV/$[Ws_s+p 1͇r+RRyqp C(,HA2dJQv z} e9w*7M\KYA_OwOT! >4l͔Az:2s`p$3?{\BUR\¿)VEAX+Zc NΔ^\\ƥKu9P L'PˊRSt&(jF=ϯٟ ޡR_H?4ZFzz2πڋ-¨xv V FT,(5#пܥd# [˳)vP`tE^?)A8;{m'P;;p~<iSb|Xh %28:Ff1z~MFRa|*z@2L@&"){;F߿oYxlG1YL<a<~Nqiey5kߠ:(+Ic B/ d2EV֊|]ڂ-$,ӒVòr@+䗘KAg\ɉݯqp_fbueiޣ! dFHϙXqJ7b}=k+nV(! d cmre2L@&  r3" d2L@& =rpv{\2L@&  U'wouFRa*bǎ7Eͭtݽp̴o%UGC˸RR*re#L@&  ds8|;ǑDZSɷ7w}t:b7G4aCغWro\G ĭwʌ"6z)]Ͼ6{ށ]{{ښ* d2L'`Y4!om[?KТC",Xj߰5ɹi)3m2M[Ҽ ntzMz:]#,`' O=ƥ\N(-GBL@&  d2MBBQ#XDt.+ # OD,~^NQrb]B1OwsVVoon A<8!kpg,~q)0b/Ke2L@&  n ΂vcG@K_}Ve۲Ov}j2#?c`3|x A|UZ-K?6ݱ?O{6rj:=I75z);v쐊iy*ƌVa޻+QR^Y) d2L@&.'oJ BxFhg`šg<8?<ïNg|YSNOptg2{SX+Bl^F/J<˜;y2häw{ϔ]&  d2n ,f&+*܂Дgq.rGW\]KϢ )k))kTy?W0e\ʑE̞< o~bFf ZL@&  d@DTJVրFɭqc0QYanUA^m\euA F5nbJʹzIӒ 5jMmhd2L@& g4T퍛QF#(\.3;Щ|=([)y,`/χJq!U gO=3 S^AG5Z*JJ:\d 4ka IDATWZzXs~䧞&#!+[ d2L@&'z= '̜"R x Kš5NzyߐD}UtlL69gv۟1<rw\>ctt.WF\"0:9V4 ū7.*[N<;u28㠶_d"?y7N]{2Tr 3a.dU"d2L@& Wh084z&>8'NQTV.9Gy9pʪ90c'˩mCڀQq8RRJBB,֛=k)prvAQa$*¢bl8yӥkr6n@f-n[kC> d2L@&uE& d2L@&3L@&  d2?O@yEL@&  d L@&  d<98e2L@&  4H@D# >n[2,߹ld2" /[L>8+JIxMZ*idœoV`_Ks*(!s|ɺrfͣBnhTG]%K=û>.'yh؇@o2y2Lnj:@0?M ҂Mq6f2SSI˗}G`(:Wi[1|@^Q^Yq[UHbv{QQkt&GA0ʦ_גUq;!(BQ&Wj-{NzY~] j :@Rp%$kj$YdڷROJVS<PCENiyurڗA\I>ůkPY㦊6]ѡyc\8ůnuGfIp5+׶[?RVeZ#Y2/%RrS+SitDFGW 63."W* U;)θտ]QS10dĝ\8jk(;(iyvYCۘ٢ۼkmթ;=1WTz+{a_O* !M#pKF ϞQɉkE@Y΅Ԝ=mkTVTrqTc}ڦ$|+kTA]AҹY_,zˡ!7s3f7oN$E-&=/cޣpۭ]#/MS^A_]G TxIml}|_Hd#$?ڈІ ۹ rOX Ks,q:s0k<:0Dٳ*< gndcy]'$!ڱo+8̷iMEAlRFʱ*6$YߧB6<i}Oiã$͇NV5=|#;+=6-;`6|;4W]gAi`ְs4Ʀ:)ܵk,jv=oqv &0էЦ%ԅ*?5 yj"/CFv>]Ib7[wbe1#Il*JOO1=Χۀ$4b.aLŻdG=]G<rV]I#ar.ڜٟHߤ:v") w$ݤfqLyr 5sNJH|sצPzSs-:IqdrO /)5έ4鍇m:ӱ/?\<4ʲYUC:L{cHtXڵoO=gfC%~ͻ7Hݳsuun~9hxq.,{hebwœXVp)Hp=UѦK}au'w4.?^/(?]f Aҩ>3:o?'a{ /̘P!T[ AhϛVwr;iz񖾼`0oc^u3YX-X7EX;jR+L#5vUjV) V-b܍R! P- AtB\ m<Qu}Tn?~N&V= V/ܜgG ֫bNၾZ Sٿ'bݫVzF/]0ׅy-f<^{]' muo&4\8|pUU>+*AS! ;7"$> ڴ\pk_,|aׄ/*L{@Fz oub= =~X)RnMشc0}$kAC€w;; Cdq;$Ol*DtdۅJ>,&5 v{FO;jQ/k7 nzvVo$ Ht:`]KV O I6m(ttWwRP݄, _No* OW/o] RP*g[}<K/(ohO ~Š-[]Z6hZG[;ZNkoN,8o`:>^r6 {nRYQW`4-Tagoܢ O~-eаj + yU]:6Sln<7ֱ-lرEh2WWOdyuj?<ڮ7CX lYfNh1<$ŗÇ7p=#a1(֕/0q4 `[wʆMЯ]GƦU tᚆ e_~sgl]~oZ'›u%Vn%VeP{vŨVRVVž-Xz~!8⢛'Gal> XKsXh!+7G??2-ݐaؒKG63s7\xqF!ج]:[dV^VeŅ*( gH$i8{胵</o/\Lx`)ϖd& s1Վ+ݾEN:G3(3ۤ,*>m)H>2CI/N:AV***Il`R!,Ґ{p,݋>%&* cxY帤T:9,Ra6ƑRΟLůe A^z* 4j%f 6͘)2\;mUa +D50|@J ԉVAܤ$e}_|ȢG$oJEaZ?ȳZduY<)e7[ҡ\_Թtj uܤ}DYgX?މ{P\XF8Sq/2TɊLtʯ93_Mѩ#ŁdK ;ҞN08qlb퉪Cv}~/ZsqNJaTGR+EjhNyUΥ182OoXՂq@wѧs6+~lkt.sS$Zc (5<ܼqpƜbl 0[Awd1tm\$_Σ؜1#<mZ'7{Qv/èM+^ޞ,] 6  V:O7vvtqr*+b)yEGBw[SP4. k cT͗ՖX>2H/G/G^BZ&w۝k=o>gS%!뚔nN<v(ɻrk yvasX]n܏M]>BёMTz2rLMN%gׅG+WN$_ɤUatijdd|x,.Z,eH4/?I4$7yr\ډ1=B΁msHW9t*pjꁷIjmѕ G60цz5u 7kLQE~0SVJZu;bb|d}C3؜dgvr'-D598NImѻ1ݿ/Zn6͞٨F=IOz|'sl4Ԓaħtd;g 4t)w2N> JwQ^vb=|hۼ*n#͗Ǔzt/W;5[6(/>h|NâPywil)~Mti 7h`Ÿhnp+n;'_&!̕O>ç_|́3X,6[gh؛62o ,AA2p`'W!y[Zׄ1x{D܁g}ߥS'p 7t`F,2{c)5%?O?'N$'G@ U}[EJ@:McBpdK{W,TApMAOHw࡭jJ:uAd?.-lZ;GY5T!xkG|'<z0 jnRSXQHJ3S7CAƂo7g`0-Z$%x^|e"G4oUnF7Ԍ7&M'IsE'\ƦԠP.Rbw?O$K~ލWX$MRx"%6Q~'XI$´Ұ{^8K~ދX.)Lc^Ļ(KهOFR.^?F}u2_\_&j#ON|}j?1_{=<72ٓ'^T#Mw`訑mBT^/G7aYwZxn;s>b^>/Nw=:q4ga +@af$v]]ғ@_B"ѵ#UVo{>yRs<5 w{Yf4 )'LCGϩ&I:l6hۮ nMGʑ|FdpbA·q湩qOvlu]^xҔwekϑ{f?NgԤI7ٷ-ϘFɥc̙=d̜A˭VWpG{*3g\.[|`[z;f1 }oLxw)Luشl{g#zDr:\p(ߚD̙3kBfN'̀_x7^yGw%&FwzO^{{&-30͉8׾V˯3KV^{HN oL|G~Y0뭉{)dߞ=Il߶^}uNL1hb>7Eμ<}Cye+dٳ~J0y=#P\IsZH{V Raо}d#2lGw7-38}ƀ޴lEeet>a4iQYL<4'N #Qw_} ))S7%!~Xmb3#b}ْ{[TUAc#QlE`Z9wTV{Wlÿ-)+,KFw^Myx,5>ZC'*VVey<vfQt~tiӣ8'enco 6AeJ^2r+D$? (1Tp_ĸ' 0\K$b95og`C eL|!<6Fo#+A(b“c33v$YA5|e?-a[?Y?~GټK\|ϧ` H,V}F>JP-^zf8GΟ?\j;ݎ!}@4xK;g?IE4^8{“䕫y3ژ6kA7p IWqn1]GčARBb9n cSq!^?ckWS)/7ȐC8223 f1d`N3<額=lPP*ɻGxkҚ7}F썪TCޕx4C'25yEY<jŴG"t<P\ƣi<lG"| hDv}"C\/, _H׫)Eb;TJ/W1h5x4dQ̍o'&%ށJ3^ՕTj?UJ5JŒBE#ӰYqĸ>|~V J#}n۔f3rto}y~||/~ϋ0cPB>6=gP9qc UQYYث%6ۊNe߼ˆ|,kw̕f0gC ^;x,0FCSL9z\\%I=9!/ӣ'֏Ky}3vTіAa™,\s\e1#huq3K&ŌTw%F߉"0͙Ծatoʹ6b`ЩwX(*tOZDfL>jt'ir C g$̜bؿT*?|1-7a+i n>k=:GFĒ㩅\-2mCجLQn.`ǯqc }4C Rsm)^9Gt;])!"a(m7J+"gO'.r z)ٷ^5nE&0tFmyRkȽ|[If67qJahhܣ8$Cħ &Fe. /{ /T)M>'gJKرs㷳Xu{mkʩ?:1W: ϝaWQ)JaX߉=+<w=EĴq2E9gO 8{5b]ل6 ǡ5CRb'yO)ʾ ~&\|,NzIm/Lʱ T Dee8 /Ժ>wIs . Yv+6 0&T5 M]Ț=~}K 8 \PZ)n$e(?|ݓ4=|X|W)LPR{Ag3^' taU|._9E|=º#17Rqo_:C0&E~fʻTͲO VFpgO 3϶'yR$_ePg* V̹3u떓zEV/1>[3,J=#eaZ|$|κ*nXZ^[p4/=?keL\-$5 8p-gs,SҌ<?}`Z&EYXN({n8{V}á,Z)//Gá>cш3C>ALtc3hՙa㞦ey vonp7u.~=j%&NDyjb<?7fC<Kt FYA?'}H&vA~^4 ᾨUFCb@(*~AmU?l`S ڶ fI:Ḻ'f'uSn}l0k^qOBTZU4is1+4ԏFrp,&|Q5%5h9Ds;8}*A<ʯgo퉂vbȼ|J <u"j5YOV 4rՀׯ3Q&qRё Tx~e[VRJ:ɕzTj5珳~Q)]aR^n`CHf8])/<ͦaL,h-*ڕBEGp2CCclo:źCH7x)ؔ %ٙ-MRo"*AäE{6w%KWK U^!>(TN<TўBIaVZt\OocH7s7叮pQyع3vEZH_:_9yT>[y IDATi&ȡ ˹#)0%ju|ʊuV>fԖ֗-cu 4Vsuѭmn.[#cPZ.BO-x 1:' `Bs]sғ|Cyɨ%/+D+Ř>tBEa.ebϠ"ZS(rG2iތĩhyk{B s#VPTOӔ_%W 7ߒWPRZFVN/hK\Z$+4?>]xNM)a~+LZ- c-ࣺndFH! !XpwmqZJ@ Uh RJ !X%F\sFvCзʜ33g͝3gNЧPd*9rMXIKoBLP0UG@c̙XϘWXn'fOq٥BZU'R& {gp0EJiRʪz#\m*?VZn+?`Jȗ1Ek>$t[:]]`#6ӞSF:_ 2MoJfДPapoldѣT)Qjhܴxr§$ O.qwBtJwJu!c!+6Ы~?N]dZKF<7[6-~F])-+[z۰L =T>qmZL+{ek UMtR(\[k`ǭ8Vkr%V.Ǟ1|-eN'["%&"g/W1vpw-odXhȄJ}`C,5@' ?++7\nV}e>r,:iE2 K2©P`agF*?*w]gc뎋E ǾrezE= ˠR`n#x"Pٯ'bI%׺ԛxi4ِ ᵡ1 ˯r"r1mxRDWCQ!yvEp,Zc&r-^xfVdN`_UiL KJp;!GO`^̻JF(" ќl Qѫ^'{cc瀋3Z3-3 \]p6q$~2\T I)P8еU3|5-|,/+̜ٯ/>nd&dw?p=7g?=Z=0]wn2T*Mxe4Uxҫ__\IOΏʹ=+<jlcͻ^b(Ѻҥe$u,ܭ(+:8(`UgR.{h {Vvڙ ' 3-Z3 <ou*EPKάpvv}Ss3cv"437mp]iLNҜP?<j3w \/r"TqqqNG#-kqN\\]qss {Np}Zw脍ҁ3GXY2 {G']]Qk,8;`gmGU̵I-PԤ=mmʰ!Mx FVZW}  ֌&zo Ο'zUv tqEqvs"3+]\՛qd~RJ90YZN3o[`C¢5v~~ADyjq~!i݃~;vo7u|: 9s3lĞ?`k`vʆ(qEږ&p2@koH]t ε5S'vܹ\NrE.߸kmZ4#)oOJB&n2j0z s-4jIJY L ޼w=ZҸsC++CPFH@mwj7jS'a)5VL8!I₽]OP_Ia_ıۇ wG>,o}rvo&OT%tS 컄`x||5w㯲_h3`$<߂:%r!W17oP:EufP e˿:* z3i<9ј+ٹV􎨃^'[{}aI/]3ڦ/L.̌`lߺhzH8[tI+?m՝E>q{eʊB7ZL)p8&GȬm/ ]Â$z={X{΁LBmW^#.NLdy1``7,Ͱ[Ӭu[젴@Ϩ T1 ihT+>8VGqqqZ/n5 ʟ;ca&4o'k\C[е] ɇ򩃬[J{'-5d}˚TIBYX kWΒW2r%n^~"/ !I0JOSAbr?sX˳e W#%G1==$)~TXcg0u: }-߱<.252Bwd!Қt6A-dԱZYO)IV g~PE2£:3br^,xp?Rev;_~I) Nn]~㳕,ges7|APFve&ŊPy˺ORjz1v_Ţy7˕ɵd9ŜQ,s⵷?E+.ɪP3},Pp/!Ȯ QXl:x㱬;xfKOAenCYy>XIAέ!ؽe-Jۑ+}vJx3(P3gd\cʴU9W'ncE'd|pG,X*_~YR+V櫣UW^3k5 u X֚k~d 1#OΚ6mmcvf%.7ڵjE?|ɏ'RJ^o?]3 g֌Ig'Svz|=c~3/ϝ2eW_Κ`)oŚ^?Bʛ ֘YӺ76j)ΧR}-X1/ulYr).ܧ4-\1/M_lYr ΚZIj5I sW '̙R  q&!}㓰rpxTMSSۯF ydOᗟ%5=㲢Dޙ3oʕ)*Pd{ȸ2j8F61{r2SX'ķʜ~+sƪ~T|J!/Z̝C9S郥$;˾a`Q` /BFjjjhUH(%5)jr u&F0,e ;[EХS4?7Xkסct+}ȶ:_9|$t\\xgrfo]1G7WL.P+wuQ22RP[GxbU+PSP۴`fϹpp~ĸ920 >UC2lcW KKK fQkH=ʹKWe%'ݳ3o!C PX<Jcw㌏9Ɍ+I?=^<UR")IdۧA(eTm9ɷY^yuZA)/sb>‘߿b7y|/Y! rJ1s1b𘑌K%w_raޘ߹'c( q<r1Q3\!NOĩPsAD ~gR)T*A%ƹ*W*kpbΫLdPKrw6P&<BA]kZkP0'@fHPbV;WL.8{ DFj3P^}$o`mQ/1&+Ly{8^h%D5oTv/4kJn)8X롼T1.;w?EVB  ez A$u+h)UyTR7n/6BTh!2xq@$iW,7\6 jrPA`oaJ&]Z[6+ept<ՕWmm6By4*k%̩ p="8x6d2Ih%h)XT#<„6m 8 dJVH`k'1MTYJ}=3ȧ&k':u;kt-Su{K_\cyz{!,jk]QE(T*`<vJtdrAecK"+5Bp:P!ʬWkW u=ShبapD/Vjsp6ܭ 25^h*X–oW!a|1##&;zxKܬ`ѳ߾Z&?Okf+ o z Jz3Cm]<G}M񽨳TʬZԚ 4jx JzJV 6l xWGGTo{%྘ 1 g˺yu</>Ngx&gx&h7rӺҿ@=]ɻhW?DO({_yrR6g7jEGFDż4U.%%Ϙz&gx&gG$P\PJZm_ t Wc|p1UaYUgx&gx&gx&KxsR韕IIIex*;$L$L$L%L9_T&/?˪ ʸV3MI!\̿ YE7mzbG2{8g&Xdplɋ+3)%U)@Bi1EU32štchIw@o##,;#0 b==2k}S3[ƖQ iұ!qP[} r'~AV^4i$vfPZLR-ގ#*Jz245eݾɩ˱FRVTHVjK"IhתCtxS}lժlj3p@wmu%?pW T0&oj7(UmB!k#HaOp?IƸdr-Ь~ Z;/m!hҡ3 .afJ u*qU1d*3HP/\6o%aUד;aq~iY0s:H:|8oOyT7^z˴zZ4 F9LqXUCd2eE=q1LMiӬ!9Iqli73/J>*n|q ‰ *>檦cݥ9 Ǽx(cT";W,+Vd21#u:3S*1wnwKVґtw7V#, t0y$@5 @:#.hw>"*u4:‚<&3h[d143? ĿBaeL_ex.#;ʌ? 힚s(}7lr~}'姃6cܗszS9lFu rא9r#F`s17hΧ j^ G^E/ pb¨Aݟy÷^A~*'<2={0L~_Kr@Ш>[⫵2:Sp >d } Qؽ[O!n*Axul:xg_.[̰v͍Hk7mНx`gi8(ɭFI(O&ެI)duXR9b͜(LTO})/YDF)1m jC|| bDxn^-": b&֭#g,58NRk54ELRYEWY{ԫe}T &1Ŵ1i(Сxn`]줳; ´qIOLi7>^4w*zy'Wպ>TLФP^׍}װt>xDz"$⮱o^th)ځ?i}A+u]t htpO?AW ?Cj$쥝?.&ϹF2r郦*ӨL:OeVJ["C F$"p r NSp>5/VE_KNfZjᛂ qA ~I+\ ,//oEZ{G'NPYԚֳ3 `o'(׭#^Uj`in&c5._߾/dQo_{b9W^_:TՂP ;6  o!ؽT7[_w2aݧSM|`&yd߾kKi+Q(qG} (̅E _D*R<߮O}YxFὉC*{D z7/p^? 2򱁯: "}1oÄC{~5&8+,U?f4^X7a֐n"zup9a@Pn'a߁BC`n/Jm :Kچ6>ZpЯu3.McpYa`{CriQز}wBHN–;$XF~Lo@ز}.$TF˜.M%γcN!:ᴏh`n,,O|v!˅W?\+,>$mū\0i 9Ff\J+$lqo Ȥ46¯[}$=cuEVAa|f[N-]!^Ā&i 򶰶uUYgn! K}UCv"+z*NpvvJ9A0 V+@\]f?WE zӠA}2ZMtf5 n4Ȭ$kMUcz2 v-D1󳁞Rg1':3Y6 [!^ lٗa\غ*FɆ=v;gLx}6׷7n ~c˱k5jˠ t<z(^65|&~!m151xصy Ql?q.Y+?udKP8}--+t4mPă_ٿ{֬߃_(/@OgiI-#)Ysw/OK kjVoL}olP{Wjgpw$NǨ )Y鄹Zƙ`~]ӳQ4ݢ-d禯~i|sF.Ϥnp0$ܾFF ??o|} `e$ܹAF.>q ?QNh^KΤ?x'd:OBa"5M6CGQRT@N%q#C0!Rp hczܹ\{Lf⌷H90ɣV=PPZZ^cUɹShE={dj3t 2RN,2SYsFՋ$:;Oơ0f>ħ4)+7ۮَwĎ |aʔZ‚Is$Co?^=uw~D#FQ&^DzFDrB-dCP[92O'hѬL7]d4Nݱfwsr2Z ց Zh,˥rjCa䜪vbqi)Ld2]pv%)%JR\D]ٰQs'rV>?{6|ō*y,l4PZLnS?Jz܈ IDATR~?p ~޾89X.&88۷nHGn81bXPZ\BiV|tZo-~ʎid9xưR>l vtGW<} .q._~m>'ۙd۹0jX3RɒE ɳdxk_o1C O+Y[c`w\1dO+l*<t fKP!wq7_᪵aШ1@(+875/bX:1DR\\LiA:.l%<@Y1qnfΤ(v`:zmz1~xouӥ9~ ;\~藇eoM߲l/3ATШ0Եbᛌ=OƪwP,bIΑhK9s:chؾ/cJ%/-KsMt}r6 Rͯ.g/(.L ^&c1~h,k?jtuq:Ӧ$H?B_-筛7q̌HZ_8+5)O-9I,c\2z`DN2ek?݈ XyӦkoBB_r0^ĥ'`q06]:Rv6q9 ,}h۵!u_z>Փ=ճއ=7߭vz?l*'Pȝ)R0t2}4p2?@Tt5OMb볩 aW)SjqrѓW\RM8۳aU{3 kJPΜʂyʬ$ Wn M8Oe<3/.P9S^ꅫ esAOٰ"`tzX)qL9o3bd{a`⫯"o;扥o>馌6+xbS RNx9[#8Y"w͛ͭ9| +|RiցWLT2u5 6ēyl:-_.'iԑ 5^}5Wq>,_MFnչՑp;>Cl֞~&A)8|uqA,*PY`ece=C3>;eڄ z- '-oOFxEג,]ZiH%v<?N~ }MԉYʙV8f:|=&}l8BEQ (sxBV!Æ sA/N<8k΢΃M2zcY2%/.ʊr(kV}ɩ{PZeJ3;yth{rZKUT oe23FO_@w K?]F2fL: ̊i|CE^SvL9['^WIS^MFRsߞɵ,k^!lrY|)fv̞&VٺӠ^4߻J8m-(79Qmѧs,5j:vOօ(JY|H Кݾ-'6v|rDm]˗-D[3_+ѝR_~uTΜ9Cѝ`ڋWt";Oجk|״3@r&Sh9eiw.ϛf1^D>[&)sn}вS14>xw^?uGpGx_,fߙX"eҨ)4su>ԩϦ߱of2Cs,!`A ƆԻ1/\b|iҢ!NxX)q Ļog튏9|{e{2a 8ӡWGî~jdQLgΝ\ '̜>g_C-~ Y>s3+;sjA^Ae9 ̟77/9t>&Ec{ I9'PfyF%:)/e~VvN 7=_F̳~Q&\Vm۸AYI)*y-YG\Iy Euo()1| Vύ$<š:ԗJ%ٺ3q|<~: ħA Zx62hA`Sخ?r/-2\~<='CcP|yWN?a+yv!iwؿ]eg>XTG]RQË "ۉGsaB mޒpoc_)9p%a-ի+jbOndGHN䑗`kgQ1iuOP Po9t1  '62rFZG_IWWtoɊcYD-~e➥;̚<N?:LUgI>4Oxta~=YR=o:~m '<ٶk?eˉO]\y/dDI@/wkNQhd$J%QT\l1wu`$ ߙξ|NVikmFd*lfMz!@RqlȨaylZF3GtօRWhb5Jm`J];iwg˽<2+`ҍq射[?jE>3֊Amym<BI ׏f`k/Ko1@ k̀VL}mBNCD#'31 hΔs<JG}iǔQo. :mѧ GFzPɺƌ)Pظbs#ƍ;98{a&+"!+w7{}9NgFDS\T+bJ nMH/ž4PS%iET+/=O9AfꇱLx/k_3Ӫn f\ҖiE⪺W\T9oU2~Cwkel2NgF#ҒR, ׼Q~f"1 3+2w0;A^hZכ}Eۥt(OW}rx4VK8;y<V?抡]]aor=53GRٱݛeae,컋wvӣObr&Q#7~u\!:_CQںܨ飕RUY>+e(l/ӯ{G{p8& ` ɑp`CRKB/R.[1ҥ4ZKu8]\,/>z]gP_v4BoS8ʙ%GjOC/O# ޭ̞* ';/Vc۟!||tN^:؟G=gf,3jރ 2~u@Q,O'ۃ})իás9w$WʠFÇ (2b/)grۗ8w0iظ_X4 ۜҼ?ZD( #5p_qʋݿORJ.pU}VKO1_J^"K|z "r>Bb3B[8vds3wY̗W/g{v`r/YR_l59;Wuhp73͢w({^2B6;~\NJLkKQV i僷:)6澘YYRɎVNbV6cF3v\&e}ZV~,I!'*"X28ph^`LJ1 }UvDL)CQ(ӐRf_*'k1i<#q0Kh0b65P)~#Vn9Kp|2{Iw刡< vՐX\n5޶.ϝɹM+X]^Ϯ ksаl L;ES(6.Omʼn-_q"1^V=0| $%T횬 |]; m~7iOMVmv%ݖk??Öl4Txg.#Qׇ?~L[ZSL2"^Ϗ?}ƕL"%X 2aMEX3=܏?~FLF&Qz <9l%1V5&ΤYBQX[0fJf}3E >b9éYk‰˺ˬSݼy64{;&b}((pvraT_|l)Mtv$w7/{`me#O+喋V\ 2]]hPI׹tװ,kTl5zPȥhh9QfIiNag'G^2kv'&^ iwqPT +Ҳ'yr;3!`Bޓq[ӊ?<&-G(0JJOQnUKy  -IM:Y@G??d$]ȁC%r"2) _)GXⲵ\.rs;S(I烷 [tr HMeī9~`]JKrTkX$gn^:O\}!RyoH3Gˬv%3q y_<Oa@nr3Mѣ$+]ʭ|x)qٱ!='Q}<%-+-CxsQܭÙү3'oF{bÿ|%Ք5z Ln೚Ws0 8fmifU0*Ru%8[-'+>w]jўצL$?+QTI.Ǟ$sJl?OyμU4oّ^ytlF-ƿ3i@mo7[z:owko"Utx0rvfvd '^G NRX!Ne\;/H@@xbL@U!/}MjOl-PTModj==?(fbq+A^Ne& DjTzMY1eHVVQq1p>SۘZ›r7wVKi}$sH)!,+3`56uPg)bb?lc'm6fYЇ[nb#g`֬rm\rbج[Wv\O~7WKsJJ%^8{l/G/&;o+zsff;S|EAQ2G_*|SZkM`_bZ0ۗQJ~Nm!wױGpsBV&Eq~z+OBJiR.G bshեL2()is nNRK^ӟ8(1=jNJ>/ņq3r2i=eTbElV'qpZ`ݭ;F@Xg(>C:,/6E*K]9uXAP+u(UkލT3YW0Q~5WFna>6R<IIj.?P%aF_q' BȄJ%-BNW JA)ExhU8Yp{m2C0^']$SdGAޚ2j.LQɮgFRM|?8f<S ^wZ63ԨLV&WR)~vrY9MOڱ&"7ۿ%j5|O+5Õx7S`oY!auCk;܋/bː1jx.OBJO!1s;-׷rH^ya$݌=;cgojJdUCTRjr{?ׁ3ιIڢ ܈Kmp|Q n޺Hr<zwetF~1*hU)+rbLSg..[gb&W$=%"0}uo?LBӋ:u ꋯuNWdKwPӥ~6,A&P$ui^"Z4V %'#Wݨ+_ᴈf[IDFb|Op|<]$Jt6 ݎ; YL?J kĹYo"iδ2Mo@6L:k>mG =873.]J^1Dy_<KB=a1+3G+yF0# Zg{߽쉎Kvq6ŕqM :TwnΝ+7XӸu81nΧWq;?SK)Z0rX.9㦾L2%#ǎ?y ztȥ v gIvSjfOH;vH<MK 5oҎJq$g*ûӽKk0r2T )vs.y/1?[GLE܋=ř 7$1J$peFAvQi1eť5jCmF02`fX6Ԝ\.RoGPs2ixs'kG'4)~qJkJk19bp)]ңu$MIQ)J%BJq6f3wr"*baäצsv3XD"zk{C{6 0+{BCCNOV|2N˞X&9%E8s[kه0|hOi֢|%%ڵhb]$p*DRDAzq)lٸnĨ{-w@>,-R$巢 ݇3qHV/Ůr{)v7w3c@RU=؊:.sm+Q݆P,{.%'9~Tٿ8/M~?L~;w$z߃lrUtlNZ'7nܽ$)o9I2Lǝ4AK(ڰZG'rHZ8x4YYɜ<v063؜y;Ew<cm4gwcϱyrpv߸p?HN޸[gQ7=*r,=QPaĹɄ Dc(!_Qd.j=MH `[H#!YFi(bgqƀ=б#]!>\̜,]Q ݃& +AZO@/GBy`O Sor£w>aѨ]#}gtHέsv__z:Mүw7Z5v;@r#Ҽ~mv׳KҤk =t!KG-v!a6.w6*W:ڜwڷtE~!.9BK@|jӰqj ^z,{.!<u;k]ǧ_|Mv@Tr5 >Pvl[$] )s"b=oHh+эŕ>^x I&_f܏J ΝA]ا;'|叏* _BQf#X m6{h]:@]h(uWa{>]Hp GS&J.ر~=vg:u+eQWyi2Q:K|ډmqN\OޙfX4?7R1h(}w&'¶U0V-_̟R5h(|a\&L~FKPPWNnJ#8(˧H0cLD]ڭ+^,p/ē|R+N![JbE4:kraRs $3:*gJ?'9 y*\9ͭw9s -{Jm":~N;|4qRw`0qb;Cҭ8d 9 7Klez_h܃>|! rz.<̝Djꁟ?4YǾiBq>h߫:iC1@I%*ΌZ^;zePZ0l@j9kYb12.%GE6[V{~_bCѩe$!uӲuS;Ff~ ?o?4n}T6?7Oi${U.GH3O:%ӹC{ $<Ρ6G&IDATN?![eOΥ3\IH0ytӟ.$1'r3 3G/M"gs\,׈4b8];w>XKwZ`#v1JKP-?Ο8DbaoxnטKqAҡy#BBiѪ1Ƕdudjk{ʵr݋%6[ΐҩ#AZ>|]_'As:4kHzhш+G'k)*8/bie }{tU˖Z8dRÜ+RYJz D툨[ Gq'\|v8SnR{ Ӧ`L-p6ػo?%rGԩy>r'?{ej0&d$EO+x:ZۧwۉF<\E\){z Vqn/f5W_'RG(Uw !u AQ|]\+KM P;P˷XZ5$6; 5]-kL*Y8ABݐ`BgAؓ46nYV Ky=ǽWZZL6^Bhz!fpÜܤؗMЪ%uuwRK꡺ٴ?hTq[zEغnga%XY]SkW ~"Ϭ\o/Ri*7wwA-YzLzK0W=tV<"}B0Y5KO +AqNŸ6\,x85ɴdgH<JfZKkK)LQrzѳwv|/p6OWI&VS[-IiQ3 <3 < D{YCkC[0`/x6m&6sdqSz= 0:%<KiM3+! 1$7%\qGi:_5ãY'To8ҠߕZKv\. )|Y`_Trn:XWGquFӥʋAȞeƜ'=j@@_oB  @ yے/jIENDB`
PNG  IHDRgF3 IDATxxE^!h!%@ ` T " V,(Mz@ޓ?7ϓܽsf9۽;(% d2L@& Wx!;! d2L@& 3B d2L@&/" g!" d2L@L0(xvHiI +tx FJKq7 Su6k=Ai;0 'ɄBィ;fKԆ4J-JƥZYc,BdAUc,l.SaYu&NS\C27Z+:+zjR!Q L# SeIJ|%QQZW_~|q(ҫ=cSZƏGo.$/רRo^i̔(%$~[҄R7o?(0/gsU]n#V{*d2?E@<i'ye922Ni=1 ()+lPw s'6%#t|Ϛs͟$˓{ߣFm}m0C;:W$tQ{Yכ^?ɁJ<c8Wr4bX/HK׎,3UDY_zO<VGJډߵ GY.J+kd:׎ ttƾBʧP1l%#Zm4Ƃ5}}7=QMc~d\Wh M9W8qT!"+;w^tcDZ]JX\Ci,0/hWw Ꮇh đhb#qK%CFK~= cȑyȹ:˜d2mP?uvJ?:O2c}{S#]vEM|D ΝLmDE7ٳX$7{8j Úp*8SiCI<k8td%mV#٬uZF24S/p1DQ Igx{|Ns%+A6ᣖХd{|s+N9F-&{d-~N=Ċ(ҷdgY RZ^*':tIp@Y(uFUtc&AffT&h ֯~ B+7 4KLdp'1k"G`vQ$vة57ROxhVbס_sRQz_ .R(]M=̾PS?QZ^̕y^b{ gGcu>=# d2Z0yJ 8k7Pw6~7J3( &*W}ʼnS+(܈l6jbZC(<ñ#s)ȐlZ+ܠam^#ۑ 'a2[|H"W 6[myf4[ҫsb+*-{ ˅b*JYYΞZFyEb аvd***J.}U/_c\/.}g nqi; . Qp,^5\8KxG2wQ6F~\>>s4i8Z%< ţ4JtD<&T7 񆴘Jt8 Q ÿ`RKxk΅J6:b<WVQ^oX%c96%*7bNZ2ΟYE'$rQ#PيH9lDP|4籨|i9K~OZ0V 9k|DAT{q9`1qe)rM"@Y5J p b/sѱŔՋKI>r6Ki s ,+zhbrQˮq5y3kAHPlq8rp>E^n9-~-P})LZ68Wr|h4k[ L@& [mVz#_'⑭eډĄGI=6gz^5!ғSR%OgہN",VxE!q$v,#󸺆b@klXJΰ),-qpJbtl*هO}{o"<fRAwZk` [іϕE[H%ؑaU9td\|u+ƢȀ 1v&w+%-ui/Hh7G^B}>TlЋ~pNyйvcTEe'(peDDNʂd+;>z,7zn$vz"qso.ύ.=&l vmzӥSd$\e J%Fv {78s[ك GӴRB ٰ-*LPrJ!$)W$VoPErRN:BʹŘU~tOgqh/m>AY (L?o4|X:h*- {J~B^o|"l܌ =cN<`Εc)1[jxݗ#(RvZw{p KAC%3OuzyϭBދ#ō|.@Yۗ s9~LGfqBN۫1K?N`-y/8=ݟ6'l#*ڵOsB*/N% d2)eZl8yx2},\{oV>+ vz '[ vΔ&;z$ҶC^^ʪ#9r2(AWsx^NHh1W'\?Isjʑ=_RLiyUOHl0/oׇ *7$}C9.Arbo|P%E/zq-C:,œܰ.4û'PP\DI]ᬼβ{Bǡ;hP=_H\[MطgMq!<vt}WӮ4F7URZOۮdҮǫh .6]iXS%sdee6mIXGbWйǓxG4ŇٰqoC \4ŇXi@!>|.T:E?GTG9a[DIaR}N8å3IϹX{\he:EUަ5 8wqF6H?5U+4F$ݫ\e9XGQ댆 oк+LRV&fS:TvgpF޽N_ fE׋tC|+68x͈JS)+-]һ; ;=qj u80K#8^c q@P!]-.e]aREղm`NN{ n޵=:?ԬC%~P\^ I-|qbѳ-r?d2s^eEtw8Z6O{ϕgt6JxAlzݸJԕ>L_R zE.YSj*@d6y18N  "\N?#l3>zfB_ey9y}۟t Mq(qIkG<JXLN?H{lU|BZoE@ j@$kɞ}(iYG-rٳ7eoM'IVyiѸs|B]Ih]8 i$7hL[Af<=_؄)9iRԁZQʦӤqD^U՚54g/WT^6Vv0qMŻQ, 8zb$Q/k1yiP##>Ym@Uּw χCK(ϵ ":GݱJ MdERٵCR|[ĩ \0647 \˱fM* FS_r6@EٌwNF=puPurvGb@xt# c .&Vku @&  LQY?E ['M<cPUĦD)z)TjinZ*52siMOQlhMؗcP*U= Dj*]0ʼni?sXSZq ɔ⇀ 6K=(1<#PB4w=6rNR9AD C]'oo~^y1*}J7>:k$L7Xqal$C52r>4(b "+ u#"݃Jxݘ%>1p6P[Qjj]xЋظ{(#{v¤VD>}I" \/YDiŦT`KV緉/6R5\=ze&j{$3֫pP(Źp .t A(GYҏԬ~"Ω(ICIs*t-׵dԅH:++z @igTnK(֢~b7 yWWug( ,JL ?\/ Jrc%$QzGM|L@&  ; (z%{W~ʏ^LBhkkV/*O^a%p@Dn`j~L#6^!#NΕ_HϿ$1WAoo]So3 /#7N\۸^f`"۴h>ar9Q s z:>lU)3⠷7΁(ٔK:[%~DxHq;N%MžS0Yj}{jU8\(r3_hB)qh 1ݰdO),.Ei+6QOLDW'ٻSJnk* ^N@LDeپ^r'k aՒ\ɺe#Y|d,2 7{~w,L ]ybMVB-3">jiL|oRn|ʺX*r9yFj5(J=Q$:T :oD$b)ȵQ*u!qU(f/3 ^>^q^4KGơU=eP^rS>4/'QzW F\="Vuz@gu/ ~,XJr|:j=Rq@JWɍSd'+'vS8H^5tFwlSRׄiZ!Fzg*Mu6"!e9Q&  vݿ|ͲO`֙ӀY'$u|+^1{yavlL^S|AJj<9 .%6`qvkJEN6n‘olQz {Ҫ}\>6siP+9ȩ#?Ѿ0F i˸(S6Ӷ͝j@vY||qQ1l]r/'lm(Fݟ$J;aaa )G^s7rc4Bch٪Urh0oFSi;Z)tf~}'vC>gJ7<طI2d}zJ?Z鎟{7)v|_y )0>Q*:aj=Xn)d u:ɓ\0jm=c1lԂ`NvC8{<)9jX9E\=|!^ª0bYYuny]eUn;;k83jn.MmX H@G8 N%]=Ѩ 7+ '!=P⾀nb qqb?Q +=OW\Vn7w_Dhsr@gÊ5=tvҹc7[=LAa:@'Y Thie:FWJktPpm_>*˼3g| .ʤ7).$G0s>Oaf2/ONɍ:+d2H@P(c7|Q-8 jsIP* -J 9n/;#%H+;"@ j+.@ցM9g7?MP:5o7oR-d¨3R.ŌɕsK(6U`t"U+;z&J3i%#8fw¥sK(-7c48Ӄ~8gEpZi8dPj9Mg(+3`1-pW\\4ʚgV/$[Ws_s+p 1͇r+RRyqp C(,HA2dJQv z} e9w*7M\KYA_OwOT! >4l͔Az:2s`p$3?{\BUR\¿)VEAX+Zc NΔ^\\ƥKu9P L'PˊRSt&(jF=ϯٟ ޡR_H?4ZFzz2πڋ-¨xv V FT,(5#пܥd# [˳)vP`tE^?)A8;{m'P;;p~<iSb|Xh %28:Ff1z~MFRa|*z@2L@&"){;F߿oYxlG1YL<a<~Nqiey5kߠ:(+Ic B/ d2EV֊|]ڂ-$,ӒVòr@+䗘KAg\ɉݯqp_fbueiޣ! dFHϙXqJ7b}=k+nV(! d cmre2L@&  r3" d2L@& =rpv{\2L@&  U'wouFRa*bǎ7Eͭtݽp̴o%UGC˸RR*re#L@&  ds8|;ǑDZSɷ7w}t:b7G4aCغWro\G ĭwʌ"6z)]Ͼ6{ށ]{{ښ* d2L'`Y4!om[?KТC",Xj߰5ɹi)3m2M[Ҽ ntzMz:]#,`' O=ƥ\N(-GBL@&  d2MBBQ#XDt.+ # OD,~^NQrb]B1OwsVVoon A<8!kpg,~q)0b/Ke2L@&  n ΂vcG@K_}Ve۲Ov}j2#?c`3|x A|UZ-K?6ݱ?O{6rj:=I75z);v쐊iy*ƌVa޻+QR^Y) d2L@&.'oJ BxFhg`šg<8?<ïNg|YSNOptg2{SX+Bl^F/J<˜;y2häw{ϔ]&  d2n ,f&+*܂Дgq.rGW\]KϢ )k))kTy?W0e\ʑE̞< o~bFf ZL@&  d@DTJVրFɭqc0QYanUA^m\euA F5nbJʹzIӒ 5jMmhd2L@& g4T퍛QF#(\.3;Щ|=([)y,`/χJq!U gO=3 S^AG5Z*JJ:\d 4ka IDATWZzXs~䧞&#!+[ d2L@&'z= '̜"R x Kš5NzyߐD}UtlL69gv۟1<rw\>ctt.WF\"0:9V4 ū7.*[N<;u28㠶_d"?y7N]{2Tr 3a.dU"d2L@& Wh084z&>8'NQTV.9Gy9pʪ90c'˩mCڀQq8RRJBB,֛=k)prvAQa$*¢bl8yӥkr6n@f-n[kC> d2L@&uE& d2L@&3L@&  d2?O@yEL@&  d L@&  d<98e2L@&  4H@D# >n[2,߹ld2" /[L>8+JIxMZ*idœoV`_Ks*(!s|ɺrfͣBnhTG]%K=û>.'yh؇@o2y2Lnj:@0?M ҂Mq6f2SSI˗}G`(:Wi[1|@^Q^Yq[UHbv{QQkt&GA0ʦ_גUq;!(BQ&Wj-{NzY~] j :@Rp%$kj$YdڷROJVS<PCENiyurڗA\I>ůkPY㦊6]ѡyc\8ůnuGfIp5+׶[?RVeZ#Y2/%RrS+SitDFGW 63."W* U;)θտ]QS10dĝ\8jk(;(iyvYCۘ٢ۼkmթ;=1WTz+{a_O* !M#pKF ϞQɉkE@Y΅Ԝ=mkTVTrqTc}ڦ$|+kTA]AҹY_,zˡ!7s3f7oN$E-&=/cޣpۭ]#/MS^A_]G TxIml}|_Hd#$?ڈІ ۹ rOX Ks,q:s0k<:0Dٳ*< gndcy]'$!ڱo+8̷iMEAlRFʱ*6$YߧB6<i}Oiã$͇NV5=|#;+=6-;`6|;4W]gAi`ְs4Ʀ:)ܵk,jv=oqv &0էЦ%ԅ*?5 yj"/CFv>]Ib7[wbe1#Il*JOO1=Χۀ$4b.aLŻdG=]G<rV]I#ar.ڜٟHߤ:v") w$ݤfqLyr 5sNJH|sצPzSs-:IqdrO /)5έ4鍇m:ӱ/?\<4ʲYUC:L{cHtXڵoO=gfC%~ͻ7Hݳsuun~9hxq.,{hebwœXVp)Hp=UѦK}au'w4.?^/(?]f Aҩ>3:o?'a{ /̘P!T[ AhϛVwr;iz񖾼`0oc^u3YX-X7EX;jR+L#5vUjV) V-b܍R! P- AtB\ m<Qu}Tn?~N&V= V/ܜgG ֫bNၾZ Sٿ'bݫVzF/]0ׅy-f<^{]' muo&4\8|pUU>+*AS! ;7"$> ڴ\pk_,|aׄ/*L{@Fz oub= =~X)RnMشc0}$kAC€w;; Cdq;$Ol*DtdۅJ>,&5 v{FO;jQ/k7 nzvVo$ Ht:`]KV O I6m(ttWwRP݄, _No* OW/o] RP*g[}<K/(ohO ~Š-[]Z6hZG[;ZNkoN,8o`:>^r6 {nRYQW`4-Tagoܢ O~-eаj + yU]:6Sln<7ֱ-lرEh2WWOdyuj?<ڮ7CX lYfNh1<$ŗÇ7p=#a1(֕/0q4 `[wʆMЯ]GƦU tᚆ e_~sgl]~oZ'›u%Vn%VeP{vŨVRVVž-Xz~!8⢛'Gal> XKsXh!+7G??2-ݐaؒKG63s7\xqF!ج]:[dV^VeŅ*( gH$i8{胵</o/\Lx`)ϖd& s1Վ+ݾEN:G3(3ۤ,*>m)H>2CI/N:AV***Il`R!,Ґ{p,݋>%&* cxY帤T:9,Ra6ƑRΟLůe A^z* 4j%f 6͘)2\;mUa +D50|@J ԉVAܤ$e}_|ȢG$oJEaZ?ȳZduY<)e7[ҡ\_Թtj uܤ}DYgX?މ{P\XF8Sq/2TɊLtʯ93_Mѩ#ŁdK ;ҞN08qlb퉪Cv}~/ZsqNJaTGR+EjhNyUΥ182OoXՂq@wѧs6+~lkt.sS$Zc (5<ܼqpƜbl 0[Awd1tm\$_Σ؜1#<mZ'7{Qv/èM+^ޞ,] 6  V:O7vvtqr*+b)yEGBw[SP4. k cT͗ՖX>2H/G/G^BZ&w۝k=o>gS%!뚔nN<v(ɻrk yvasX]n܏M]>BёMTz2rLMN%gׅG+WN$_ɤUatijdd|x,.Z,eH4/?I4$7yr\ډ1=B΁msHW9t*pjꁷIjmѕ G60цz5u 7kLQE~0SVJZu;bb|d}C3؜dgvr'-D598NImѻ1ݿ/Zn6͞٨F=IOz|'sl4Ԓaħtd;g 4t)w2N> JwQ^vb=|hۼ*n#͗Ǔzt/W;5[6(/>h|NâPywil)~Mti 7h`Ÿhnp+n;'_&!̕O>ç_|́3X,6[gh؛62o ,AA2p`'W!y[Zׄ1x{D܁g}ߥS'p 7t`F,2{c)5%?O?'N$'G@ U}[EJ@:McBpdK{W,TApMAOHw࡭jJ:uAd?.-lZ;GY5T!xkG|'<z0 jnRSXQHJ3S7CAƂo7g`0-Z$%x^|e"G4oUnF7Ԍ7&M'IsE'\ƦԠP.Rbw?O$K~ލWX$MRx"%6Q~'XI$´Ұ{^8K~ދX.)Lc^Ļ(KهOFR.^?F}u2_\_&j#ON|}j?1_{=<72ٓ'^T#Mw`訑mBT^/G7aYwZxn;s>b^>/Nw=:q4ga +@af$v]]ғ@_B"ѵ#UVo{>yRs<5 w{Yf4 )'LCGϩ&I:l6hۮ nMGʑ|FdpbA·q湩qOvlu]^xҔwekϑ{f?NgԤI7ٷ-ϘFɥc̙=d̜A˭VWpG{*3g\.[|`[z;f1 }oLxw)Luشl{g#zDr:\p(ߚD̙3kBfN'̀_x7^yGw%&FwzO^{{&-30͉8׾V˯3KV^{HN oL|G~Y0뭉{)dߞ=Il߶^}uNL1hb>7Eμ<}Cye+dٳ~J0y=#P\IsZH{V Raо}d#2lGw7-38}ƀ޴lEeet>a4iQYL<4'N #Qw_} ))S7%!~Xmb3#b}ْ{[TUAc#QlE`Z9wTV{Wlÿ-)+,KFw^Myx,5>ZC'*VVey<vfQt~tiӣ8'enco 6AeJ^2r+D$? (1Tp_ĸ' 0\K$b95og`C eL|!<6Fo#+A(b“c33v$YA5|e?-a[?Y?~GټK\|ϧ` H,V}F>JP-^zf8GΟ?\j;ݎ!}@4xK;g?IE4^8{“䕫y3ژ6kA7p IWqn1]GčARBb9n cSq!^?ckWS)/7ȐC8223 f1d`N3<額=lPP*ɻGxkҚ7}F썪TCޕx4C'25yEY<jŴG"t<P\ƣi<lG"| hDv}"C\/, _H׫)Eb;TJ/W1h5x4dQ̍o'&%ށJ3^ՕTj?UJ5JŒBE#ӰYqĸ>|~V J#}n۔f3rto}y~||/~ϋ0cPB>6=gP9qc UQYYث%6ۊNe߼ˆ|,kw̕f0gC ^;x,0FCSL9z\\%I=9!/ӣ'֏Ky}3vTіAa™,\s\e1#huq3K&ŌTw%F߉"0͙Ծatoʹ6b`ЩwX(*tOZDfL>jt'ir C g$̜bؿT*?|1-7a+i n>k=:GFĒ㩅\-2mCجLQn.`ǯqc }4C Rsm)^9Gt;])!"a(m7J+"gO'.r z)ٷ^5nE&0tFmyRkȽ|[If67qJahhܣ8$Cħ &Fe. /{ /T)M>'gJKرs㷳Xu{mkʩ?:1W: ϝaWQ)JaX߉=+<w=EĴq2E9gO 8{5b]ل6 ǡ5CRb'yO)ʾ ~&\|,NzIm/Lʱ T Dee8 /Ժ>wIs . Yv+6 0&T5 M]Ț=~}K 8 \PZ)n$e(?|ݓ4=|X|W)LPR{Ag3^' taU|._9E|=º#17Rqo_:C0&E~fʻTͲO VFpgO 3϶'yR$_ePg* V̹3u떓zEV/1>[3,J=#eaZ|$|κ*nXZ^[p4/=?keL\-$5 8p-gs,SҌ<?}`Z&EYXN({n8{V}á,Z)//Gá>cш3C>ALtc3hՙa㞦ey vonp7u.~=j%&NDyjb<?7fC<Kt FYA?'}H&vA~^4 ᾨUFCb@(*~AmU?l`S ڶ fI:Ḻ'f'uSn}l0k^qOBTZU4is1+4ԏFrp,&|Q5%5h9Ds;8}*A<ʯgo퉂vbȼ|J <u"j5YOV 4rՀׯ3Q&qRё Tx~e[VRJ:ɕzTj5珳~Q)]aR^n`CHf8])/<ͦaL,h-*ڕBEGp2CCclo:źCH7x)ؔ %ٙ-MRo"*AäE{6w%KWK U^!>(TN<TўBIaVZt\OocH7s7叮pQyع3vEZH_:_9yT>[y IDATi&ȡ ˹#)0%ju|ʊuV>fԖ֗-cu 4Vsuѭmn.[#cPZ.BO-x 1:' `Bs]sғ|Cyɨ%/+D+Ř>tBEa.ebϠ"ZS(rG2iތĩhyk{B s#VPTOӔ_%W 7ߒWPRZFVN/hK\Z$+4?>]xNM)a~+LZ- c-ࣺndFH! !XpwmqZJ@ Uh RJ !X%F\sFvCзʜ33g͝3gNЧPd*9rMXIKoBLP0UG@c̙XϘWXn'fOq٥BZU'R& {gp0EJiRʪz#\m*?VZn+?`Jȗ1Ek>$t[:]]`#6ӞSF:_ 2MoJfДPapoldѣT)Qjhܴxr§$ O.qwBtJwJu!c!+6Ы~?N]dZKF<7[6-~F])-+[z۰L =T>qmZL+{ek UMtR(\[k`ǭ8Vkr%V.Ǟ1|-eN'["%&"g/W1vpw-odXhȄJ}`C,5@' ?++7\nV}e>r,:iE2 K2©P`agF*?*w]gc뎋E ǾrezE= ˠR`n#x"Pٯ'bI%׺ԛxi4ِ ᵡ1 ˯r"r1mxRDWCQ!yvEp,Zc&r-^xfVdN`_UiL KJp;!GO`^̻JF(" ќl Qѫ^'{cc瀋3Z3-3 \]p6q$~2\T I)P8еU3|5-|,/+̜ٯ/>nd&dw?p=7g?=Z=0]wn2T*Mxe4Uxҫ__\IOΏʹ=+<jlcͻ^b(Ѻҥe$u,ܭ(+:8(`UgR.{h {Vvڙ ' 3-Z3 <ou*EPKάpvv}Ss3cv"437mp]iLNҜP?<j3w \/r"TqqqNG#-kqN\\]qss {Np}Zw脍ҁ3GXY2 {G']]Qk,8;`gmGU̵I-PԤ=mmʰ!Mx FVZW}  ֌&zo Ο'zUv tqEqvs"3+]\՛qd~RJ90YZN3o[`C¢5v~~ADyjq~!i݃~;vo7u|: 9s3lĞ?`k`vʆ(qEږ&p2@koH]t ε5S'vܹ\NrE.߸kmZ4#)oOJB&n2j0z s-4jIJY L ޼w=ZҸsC++CPFH@mwj7jS'a)5VL8!I₽]OP_Ia_ıۇ wG>,o}rvo&OT%tS 컄`x||5w㯲_h3`$<߂:%r!W17oP:EufP e˿:* z3i<9ј+ٹV􎨃^'[{}aI/]3ڦ/L.̌`lߺhzH8[tI+?m՝E>q{eʊB7ZL)p8&GȬm/ ]Â$z={X{΁LBmW^#.NLdy1``7,Ͱ[Ӭu[젴@Ϩ T1 ihT+>8VGqqqZ/n5 ʟ;ca&4o'k\C[е] ɇ򩃬[J{'-5d}˚TIBYX kWΒW2r%n^~"/ !I0JOSAbr?sX˳e W#%G1==$)~TXcg0u: }-߱<.252Bwd!Қt6A-dԱZYO)IV g~PE2£:3br^,xp?Rev;_~I) Nn]~㳕,ges7|APFve&ŊPy˺ORjz1v_Ţy7˕ɵd9ŜQ,s⵷?E+.ɪP3},Pp/!Ȯ QXl:x㱬;xfKOAenCYy>XIAέ!ؽe-Jۑ+}vJx3(P3gd\cʴU9W'ncE'd|pG,X*_~YR+V櫣UW^3k5 u X֚k~d 1#OΚ6mmcvf%.7ڵjE?|ɏ'RJ^o?]3 g֌Ig'Svz|=c~3/ϝ2eW_Κ`)oŚ^?Bʛ ֘YӺ76j)ΧR}-X1/ulYr).ܧ4-\1/M_lYr ΚZIj5I sW '̙R  q&!}㓰rpxTMSSۯF ydOᗟ%5=㲢Dޙ3oʕ)*Pd{ȸ2j8F61{r2SX'ķʜ~+sƪ~T|J!/Z̝C9S郥$;˾a`Q` /BFjjjhUH(%5)jr u&F0,e ;[EХS4?7Xkסct+}ȶ:_9|$t\\xgrfo]1G7WL.P+wuQ22RP[GxbU+PSP۴`fϹpp~ĸ920 >UC2lcW KKK fQkH=ʹKWe%'ݳ3o!C PX<Jcw㌏9Ɍ+I?=^<UR")IdۧA(eTm9ɷY^yuZA)/sb>‘߿b7y|/Y! rJ1s1b𘑌K%w_raޘ߹'c( q<r1Q3\!NOĩPsAD ~gR)T*A%ƹ*W*kpbΫLdPKrw6P&<BA]kZkP0'@fHPbV;WL.8{ DFj3P^}$o`mQ/1&+Ly{8^h%D5oTv/4kJn)8X롼T1.;w?EVB  ez A$u+h)UyTR7n/6BTh!2xq@$iW,7\6 jrPA`oaJ&]Z[6+ept<ՕWmm6By4*k%̩ p="8x6d2Ih%h)XT#<„6m 8 dJVH`k'1MTYJ}=3ȧ&k':u;kt-Su{K_\cyz{!,jk]QE(T*`<vJtdrAecK"+5Bp:P!ʬWkW u=ShبapD/Vjsp6ܭ 25^h*X–oW!a|1##&;zxKܬ`ѳ߾Z&?Okf+ o z Jz3Cm]<G}M񽨳TʬZԚ 4jx JzJV 6l xWGGTo{%྘ 1 g˺yu</>Ngx&gx&h7rӺҿ@=]ɻhW?DO({_yrR6g7jEGFDż4U.%%Ϙz&gx&gG$P\PJZm_ t Wc|p1UaYUgx&gx&gx&KxsR韕IIIex*;$L$L$L%L9_T&/?˪ ʸV3MI!\̿ YE7mzbG2{8g&Xdplɋ+3)%U)@Bi1EU32štchIw@o##,;#0 b==2k}S3[ƖQ iұ!qP[} r'~AV^4i$vfPZLR-ގ#*Jz245eݾɩ˱FRVTHVjK"IhתCtxS}lժlj3p@wmu%?pW T0&oj7(UmB!k#HaOp?IƸdr-Ь~ Z;/m!hҡ3 .afJ u*qU1d*3HP/\6o%aUד;aq~iY0s:H:|8oOyT7^z˴zZ4 F9LqXUCd2eE=q1LMiӬ!9Iqli73/J>*n|q ‰ *>檦cݥ9 Ǽx(cT";W,+Vd21#u:3S*1wnwKVґtw7V#, t0y$@5 @:#.hw>"*u4:‚<&3h[d143? ĿBaeL_ex.#;ʌ? 힚s(}7lr~}'姃6cܗszS9lFu rא9r#F`s17hΧ j^ G^E/ pb¨Aݟy÷^A~*'<2={0L~_Kr@Ш>[⫵2:Sp >d } Qؽ[O!n*Axul:xg_.[̰v͍Hk7mНx`gi8(ɭFI(O&ެI)duXR9b͜(LTO})/YDF)1m jC|| bDxn^-": b&֭#g,58NRk54ELRYEWY{ԫe}T &1Ŵ1i(Сxn`]줳; ´qIOLi7>^4w*zy'Wպ>TLФP^׍}װt>xDz"$⮱o^th)ځ?i}A+u]t htpO?AW ?Cj$쥝?.&ϹF2r郦*ӨL:OeVJ["C F$"p r NSp>5/VE_KNfZjᛂ qA ~I+\ ,//oEZ{G'NPYԚֳ3 `o'(׭#^Uj`in&c5._߾/dQo_{b9W^_:TՂP ;6  o!ؽT7[_w2aݧSM|`&yd߾kKi+Q(qG} (̅E _D*R<߮O}YxFὉC*{D z7/p^? 2򱁯: "}1oÄC{~5&8+,U?f4^X7a֐n"zup9a@Pn'a߁BC`n/Jm :Kچ6>ZpЯu3.McpYa`{CriQز}wBHN–;$XF~Lo@ز}.$TF˜.M%γcN!:ᴏh`n,,O|v!˅W?\+,>$mū\0i 9Ff\J+$lqo Ȥ46¯[}$=cuEVAa|f[N-]!^Ā&i 򶰶uUYgn! K}UCv"+z*NpvvJ9A0 V+@\]f?WE zӠA}2ZMtf5 n4Ȭ$kMUcz2 v-D1󳁞Rg1':3Y6 [!^ lٗa\غ*FɆ=v;gLx}6׷7n ~c˱k5jˠ t<z(^65|&~!m151xصy Ql?q.Y+?udKP8}--+t4mPă_ٿ{֬߃_(/@OgiI-#)Ysw/OK kjVoL}olP{Wjgpw$NǨ )Y鄹Zƙ`~]ӳQ4ݢ-d禯~i|sF.Ϥnp0$ܾFF ??o|} `e$ܹAF.>q ?QNh^KΤ?x'd:OBa"5M6CGQRT@N%q#C0!Rp hczܹ\{Lf⌷H90ɣV=PPZZ^cUɹShE={dj3t 2RN,2SYsFՋ$:;Oơ0f>ħ4)+7ۮَwĎ |aʔZ‚Is$Co?^=uw~D#FQ&^DzFDrB-dCP[92O'hѬL7]d4Nݱfwsr2Z ց Zh,˥rjCa䜪vbqi)Ld2]pv%)%JR\D]ٰQs'rV>?{6|ō*y,l4PZLnS?Jz܈ IDATR~?p ~޾89X.&88۷nHGn81bXPZ\BiV|tZo-~ʎid9xưR>l vtGW<} .q._~m>'ۙd۹0jX3RɒE ɳdxk_o1C O+Y[c`w\1dO+l*<t fKP!wq7_᪵aШ1@(+875/bX:1DR\\LiA:.l%<@Y1qnfΤ(v`:zmz1~xouӥ9~ ;\~藇eoM߲l/3ATШ0Եbᛌ=OƪwP,bIΑhK9s:chؾ/cJ%/-KsMt}r6 Rͯ.g/(.L ^&c1~h,k?jtuq:Ӧ$H?B_-筛7q̌HZ_8+5)O-9I,c\2z`DN2ek?݈ XyӦkoBB_r0^ĥ'`q06]:Rv6q9 ,}h۵!u_z>Փ=ճއ=7߭vz?l*'Pȝ)R0t2}4p2?@Tt5OMb볩 aW)SjqrѓW\RM8۳aU{3 kJPΜʂyʬ$ Wn M8Oe<3/.P9S^ꅫ esAOٰ"`tzX)qL9o3bd{a`⫯"o;扥o>馌6+xbS RNx9[#8Y"w͛ͭ9| +|RiցWLT2u5 6ēyl:-_.'iԑ 5^}5Wq>,_MFnչՑp;>Cl֞~&A)8|uqA,*PY`ece=C3>;eڄ z- '-oOFxEג,]ZiH%v<?N~ }MԉYʙV8f:|=&}l8BEQ (sxBV!Æ sA/N<8k΢΃M2zcY2%/.ʊr(kV}ɩ{PZeJ3;yth{rZKUT oe23FO_@w K?]F2fL: ̊i|CE^SvL9['^WIS^MFRsߞɵ,k^!lrY|)fv̞&VٺӠ^4߻J8m-(79Qmѧs,5j:vOօ(JY|H Кݾ-'6v|rDm]˗-D[3_+ѝR_~uTΜ9Cѝ`ڋWt";Oجk|״3@r&Sh9eiw.ϛf1^D>[&)sn}вS14>xw^?uGpGx_,fߙX"eҨ)4su>ԩϦ߱of2Cs,!`A ƆԻ1/\b|iҢ!NxX)q Ļog튏9|{e{2a 8ӡWGî~jdQLgΝ\ '̜>g_C-~ Y>s3+;sjA^Ae9 ̟77/9t>&Ec{ I9'PfyF%:)/e~VvN 7=_F̳~Q&\Vm۸AYI)*y-YG\Iy Euo()1| Vύ$<š:ԗJ%ٺ3q|<~: ħA Zx62hA`Sخ?r/-2\~<='CcP|yWN?a+yv!iwؿ]eg>XTG]RQË "ۉGsaB mޒpoc_)9p%a-ի+jbOndGHN䑗`kgQ1iuOP Po9t1  '62rFZG_IWWtoɊcYD-~e➥;̚<N?:LUgI>4Oxta~=YR=o:~m '<ٶk?eˉO]\y/dDI@/wkNQhd$J%QT\l1wu`$ ߙξ|NVikmFd*lfMz!@RqlȨaylZF3GtօRWhb5Jm`J];iwg˽<2+`ҍq射[?jE>3֊Amym<BI ׏f`k/Ko1@ k̀VL}mBNCD#'31 hΔs<JG}iǔQo. :mѧ GFzPɺƌ)Pظbs#ƍ;98{a&+"!+w7{}9NgFDS\T+bJ nMH/ž4PS%iET+/=O9AfꇱLx/k_3Ӫn f\ҖiE⪺W\T9oU2~Cwkel2NgF#ҒR, ׼Q~f"1 3+2w0;A^hZכ}Eۥt(OW}rx4VK8;y<V?抡]]aor=53GRٱݛeae,컋wvӣObr&Q#7~u\!:_CQںܨ飕RUY>+e(l/ӯ{G{p8& ` ɑp`CRKB/R.[1ҥ4ZKu8]\,/>z]gP_v4BoS8ʙ%GjOC/O# ޭ̞* ';/Vc۟!||tN^:؟G=gf,3jރ 2~u@Q,O'ۃ})իás9w$WʠFÇ (2b/)grۗ8w0iظ_X4 ۜҼ?ZD( #5p_qʋݿORJ.pU}VKO1_J^"K|z "r>Bb3B[8vds3wY̗W/g{v`r/YR_l59;Wuhp73͢w({^2B6;~\NJLkKQV i僷:)6澘YYRɎVNbV6cF3v\&e}ZV~,I!'*"X28ph^`LJ1 }UvDL)CQ(ӐRf_*'k1i<#q0Kh0b65P)~#Vn9Kp|2{Iw刡< vՐX\n5޶.ϝɹM+X]^Ϯ ksаl L;ES(6.Omʼn-_q"1^V=0| $%T횬 |]; m~7iOMVmv%ݖk??Öl4Txg.#Qׇ?~L[ZSL2"^Ϗ?}ƕL"%X 2aMEX3=܏?~FLF&Qz <9l%1V5&ΤYBQX[0fJf}3E >b9éYk‰˺ˬSݼy64{;&b}((pvraT_|l)Mtv$w7/{`me#O+喋V\ 2]]hPI׹tװ,kTl5zPȥhh9QfIiNag'G^2kv'&^ iwqPT +Ҳ'yr;3!`Bޓq[ӊ?<&-G(0JJOQnUKy  -IM:Y@G??d$]ȁC%r"2) _)GXⲵ\.rs;S(I烷 [tr HMeī9~`]JKrTkX$gn^:O\}!RyoH3Gˬv%3q y_<Oa@nr3Mѣ$+]ʭ|x)qٱ!='Q}<%-+-CxsQܭÙү3'oF{bÿ|%Ք5z Ln೚Ws0 8fmifU0*Ru%8[-'+>w]jўצL$?+QTI.Ǟ$sJl?OyμU4oّ^ytlF-ƿ3i@mo7[z:owko"Utx0rvfvd '^G NRX!Ne\;/H@@xbL@U!/}MjOl-PTModj==?(fbq+A^Ne& DjTzMY1eHVVQq1p>SۘZ›r7wVKi}$sH)!,+3`56uPg)bb?lc'm6fYЇ[nb#g`֬rm\rbج[Wv\O~7WKsJJ%^8{l/G/&;o+zsff;S|EAQ2G_*|SZkM`_bZ0ۗQJ~Nm!wױGpsBV&Eq~z+OBJiR.G bshեL2()is nNRK^ӟ8(1=jNJ>/ņq3r2i=eTbElV'qpZ`ݭ;F@Xg(>C:,/6E*K]9uXAP+u(UkލT3YW0Q~5WFna>6R<IIj.?P%aF_q' BȄJ%-BNW JA)ExhU8Yp{m2C0^']$SdGAޚ2j.LQɮgFRM|?8f<S ^wZ63ԨLV&WR)~vrY9MOڱ&"7ۿ%j5|O+5Õx7S`oY!auCk;܋/bː1jx.OBJO!1s;-׷rH^ya$݌=;cgojJdUCTRjr{?ׁ3ιIڢ ܈Kmp|Q n޺Hr<zwetF~1*hU)+rbLSg..[gb&W$=%"0}uo?LBӋ:u ꋯuNWdKwPӥ~6,A&P$ui^"Z4V %'#Wݨ+_ᴈf[IDFb|Op|<]$Jt6 ݎ; YL?J kĹYo"iδ2Mo@6L:k>mG =873.]J^1Dy_<KB=a1+3G+yF0# Zg{߽쉎Kvq6ŕqM :TwnΝ+7XӸu81nΧWq;?SK)Z0rX.9㦾L2%#ǎ?y ztȥ v gIvSjfOH;vH<MK 5oҎJq$g*ûӽKk0r2T )vs.y/1?[GLE܋=ř 7$1J$peFAvQi1eť5jCmF02`fX6Ԝ\.RoGPs2ixs'kG'4)~qJkJk19bp)]ңu$MIQ)J%BJq6f3wr"*baäצsv3XD"zk{C{6 0+{BCCNOV|2N˞X&9%E8s[kه0|hOi֢|%%ڵhb]$p*DRDAzq)lٸnĨ{-w@>,-R$巢 ݇3qHV/Ůr{)v7w3c@RU=؊:.sm+Q݆P,{.%'9~Tٿ8/M~?L~;w$z߃lrUtlNZ'7nܽ$)o9I2Lǝ4AK(ڰZG'rHZ8x4YYɜ<v063؜y;Ew<cm4gwcϱyrpv߸p?HN޸[gQ7=*r,=QPaĹɄ Dc(!_Qd.j=MH `[H#!YFi(bgqƀ=б#]!>\̜,]Q ݃& +AZO@/GBy`O Sor£w>aѨ]#}gtHέsv__z:Mүw7Z5v;@r#Ҽ~mv׳KҤk =t!KG-v!a6.w6*W:ڜwڷtE~!.9BK@|jӰqj ^z,{.!<u;k]ǧ_|Mv@Tr5 >Pvl[$] )s"b=oHh+эŕ>^x I&_f܏J ΝA]ا;'|叏* _BQf#X m6{h]:@]h(uWa{>]Hp GS&J.ر~=vg:u+eQWyi2Q:K|ډmqN\OޙfX4?7R1h(}w&'¶U0V-_̟R5h(|a\&L~FKPPWNnJ#8(˧H0cLD]ڭ+^,p/ē|R+N![JbE4:kraRs $3:*gJ?'9 y*\9ͭw9s -{Jm":~N;|4qRw`0qb;Cҭ8d 9 7Klez_h܃>|! rz.<̝Djꁟ?4YǾiBq>h߫:iC1@I%*ΌZ^;zePZ0l@j9kYb12.%GE6[V{~_bCѩe$!uӲuS;Ff~ ?o?4n}T6?7Oi${U.GH3O:%ӹC{ $<Ρ6G&IDATN?![eOΥ3\IH0ytӟ.$1'r3 3G/M"gs\,׈4b8];w>XKwZ`#v1JKP-?Ο8DbaoxnטKqAҡy#BBiѪ1Ƕdudjk{ʵr݋%6[ΐҩ#AZ>|]_'As:4kHzhш+G'k)*8/bie }{tU˖Z8dRÜ+RYJz D툨[ Gq'\|v8SnR{ Ӧ`L-p6ػo?%rGԩy>r'?{ej0&d$EO+x:ZۧwۉF<\E\){z Vqn/f5W_'RG(Uw !u AQ|]\+KM P;P˷XZ5$6; 5]-kL*Y8ABݐ`BgAؓ46nYV Ky=ǽWZZL6^Bhz!fpÜܤؗMЪ%uuwRK꡺ٴ?hTq[zEغnga%XY]SkW ~"Ϭ\o/Ri*7wwA-YzLzK0W=tV<"}B0Y5KO +AqNŸ6\,x85ɴdgH<JfZKkK)LQrzѳwv|/p6OWI&VS[-IiQ3 <3 < D{YCkC[0`/x6m&6sdqSz= 0:%<KiM3+! 1$7%\qGi:_5ãY'To8ҠߕZKv\. )|Y`_Trn:XWGquFӥʋAȞeƜ'=j@@_oB  @ yے/jIENDB`
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-adminservice/src/test/java/com/ctrip/framework/apollo/adminservice/controller/NamespaceControllerTest.java
package com.ctrip.framework.apollo.adminservice.controller; import com.ctrip.framework.apollo.common.dto.NamespaceDTO; import com.ctrip.framework.apollo.common.utils.InputValidator; import org.junit.Assert; import org.junit.Test; import org.springframework.web.client.HttpClientErrorException; import static org.hamcrest.Matchers.containsString; /** * Created by kezhenxu at 2019/1/8 16:27. * * @author kezhenxu ([email protected]) */ public class NamespaceControllerTest extends AbstractControllerTest { @Test public void create() { try { NamespaceDTO namespaceDTO = new NamespaceDTO(); namespaceDTO.setClusterName("cluster"); namespaceDTO.setNamespaceName("invalid name"); namespaceDTO.setAppId("whatever"); restTemplate.postForEntity( url("/apps/{appId}/clusters/{clusterName}/namespaces"), namespaceDTO, NamespaceDTO.class, namespaceDTO.getAppId(), namespaceDTO.getClusterName()); Assert.fail("Should throw"); } catch (HttpClientErrorException e) { Assert.assertThat(new String(e.getResponseBodyAsByteArray()), containsString(InputValidator.INVALID_CLUSTER_NAMESPACE_MESSAGE)); } } }
package com.ctrip.framework.apollo.adminservice.controller; import com.ctrip.framework.apollo.common.dto.NamespaceDTO; import com.ctrip.framework.apollo.common.utils.InputValidator; import org.junit.Assert; import org.junit.Test; import org.springframework.web.client.HttpClientErrorException; import static org.hamcrest.Matchers.containsString; /** * Created by kezhenxu at 2019/1/8 16:27. * * @author kezhenxu ([email protected]) */ public class NamespaceControllerTest extends AbstractControllerTest { @Test public void create() { try { NamespaceDTO namespaceDTO = new NamespaceDTO(); namespaceDTO.setClusterName("cluster"); namespaceDTO.setNamespaceName("invalid name"); namespaceDTO.setAppId("whatever"); restTemplate.postForEntity( url("/apps/{appId}/clusters/{clusterName}/namespaces"), namespaceDTO, NamespaceDTO.class, namespaceDTO.getAppId(), namespaceDTO.getClusterName()); Assert.fail("Should throw"); } catch (HttpClientErrorException e) { Assert.assertThat(new String(e.getResponseBodyAsByteArray()), containsString(InputValidator.INVALID_CLUSTER_NAMESPACE_MESSAGE)); } } }
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-portal/src/main/resources/static/index.html
<!doctype html> <html ng-app="index"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <link rel="icon" href="./img/config.png"> <!-- styles --> <link rel="stylesheet" type="text/css" href="vendor/bootstrap/css/bootstrap.min.css"> <link rel="stylesheet" type="text/css" href="vendor/angular/angular-toastr-1.4.1.min.css"> <link rel="stylesheet" type="text/css" href="vendor/select2/select2.min.css"> <link rel="stylesheet" type="text/css" media='all' href="vendor/angular/loading-bar.min.css"> <link rel="stylesheet" type="text/css" media='all' href="vendor/font-awesome.min.css"> <link rel="stylesheet" type="text/css" href="styles/common-style.css"> <title>{{'Common.Title' | translate }}</title> </head> <body> <apollonav></apollonav> <div id="app-list" class="hidden" ng-controller="IndexController"> <section class="media create-app-list"> <aside class="media-left text-center"> <h5>{{'Index.MyProject' | translate }}</h5> </aside> <aside class="media-body"> <div class="app-panel col-md-2 text-center" ng-click="goToCreateAppPage()" ng-if="hasCreateApplicationPermission"> <div href="#" class="thumbnail create-btn hover cursor-pointer"> <img src="img/plus-white.png" /> <h5>{{'Index.CreateProject' | translate }}</h5> </div> </div> <div class="app-panel col-md-2 text-center" ng-repeat="app in createdApps" ng-click="goToAppHomePage(app.appId)"> <div href="#" class="thumbnail hover cursor-pointer"> <h4 ng-bind="app.appId"></h4> <h5 ng-bind="app.name"></h5> </div> </div> <div class="app-panel col-md-2 text-center" ng-show="hasMoreCreatedApps" ng-click="getUserCreatedApps()"> <div href="#" class="thumbnail hover cursor-pointer"> <img class="more-img" src="img/more.png" /> <h5>{{'Index.LoadMore' | translate }}</h5> </div> </div> </aside> </section> <section class="media favorites-app-list"> <aside class="media-left text-center"> <h5>{{'Index.FavoriteItems' | translate }}</h5> </aside> <aside class="media-body"> <div class="app-panel col-md-2 text-center" ng-repeat="app in favorites" ng-click="goToAppHomePage(app.appId)" ng-mouseover="toggleOperationBtn(app)" ng-mouseout="toggleOperationBtn(app)"> <div class="thumbnail hover"> <h4 ng-bind="app.appId"></h4> <h5 ng-bind="app.name"></h5> <p class="operate-panel" ng-show="app.showOperationBtn"> <button class="btn btn-default btn-xs" title="{{'Index.Topping' | translate }}" ng-click="toTop(app.favoriteId);$event.stopPropagation();"> <img src="img/top.png" class="i-15"> </button> <button class="btn btn-default btn-xs" title="{{'Index.FavoriteCancel' | translate }}" ng-click="deleteFavorite(app.favoriteId);$event.stopPropagation();"> <img src="img/like.png" class="i-15"> </button> </p> </div> </div> <div class="col-md-2 text-center" ng-show="hasMoreFavorites" ng-click="getUserFavorites()"> <div href="#" class="thumbnail hover cursor-pointer"> <img class="more-img" src="img/more.png" /> <h5>{{'Index.LoadMore' | translate }}</h5> </div> </div> <div class="no-favorites text-center" ng-show="!favorites || favorites.length == 0"> <h4>{{'Index.FavoriteTip' | translate }}</h4> </div> </aside> </section> <section class="media visit-app-list" ng-show="visitedApps && visitedApps.length"> <aside class="media-left text-center"> <h5>{{'Index.RecentlyViewedItems' | translate }}</h5> </aside> <aside class="media-body"> <div class="app-panel col-md-2 text-center" ng-repeat="app in visitedApps" ng-click="goToAppHomePage(app.appId)"> <div class="thumbnail hover"> <h4 ng-bind="app.appId"></h4> <h5 ng-bind="app.name"></h5> </div> </div> </aside> </section> </div> <div ng-include="'views/common/footer.html'"></div> <!--angular--> <script src="vendor/angular/angular.min.js"></script> <script src="vendor/angular/angular-resource.min.js"></script> <script src="vendor/angular/angular-toastr-1.4.1.tpls.min.js"></script> <script src="vendor/angular/loading-bar.min.js"></script> <script src="vendor/angular/angular-cookies.min.js"></script> <script src="vendor/angular/angular-translate.2.18.1/angular-translate.min.js"></script> <script src="vendor/angular/angular-translate.2.18.1/angular-translate-loader-static-files.min.js"></script> <script src="vendor/angular/angular-translate.2.18.1/angular-translate-storage-cookie.min.js"></script> <!-- jquery.js --> <script src="vendor/jquery.min.js" type="text/javascript"></script> <script src="vendor/select2/select2.min.js" type="text/javascript"></script> <!-- bootstrap.js --> <script src="vendor/bootstrap/js/bootstrap.min.js" type="text/javascript"></script> <script type="application/javascript" src="scripts/app.js"></script> <script type="application/javascript" src="scripts/services/AppService.js"></script> <script type="application/javascript" src="scripts/services/EnvService.js"></script> <script type="application/javascript" src="scripts/services/UserService.js"></script> <script type="application/javascript" src="scripts/services/CommonService.js"></script> <script type="application/javascript" src="scripts/services/FavoriteService.js"></script> <script type="application/javascript" src="scripts/services/PermissionService.js"></script> <script type="application/javascript" src="scripts/AppUtils.js"></script> <script type="application/javascript" src="scripts/directive/directive.js"></script> <script type="application/javascript" src="scripts/controller/IndexController.js"></script> </body> </html>
<!doctype html> <html ng-app="index"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <link rel="icon" href="./img/config.png"> <!-- styles --> <link rel="stylesheet" type="text/css" href="vendor/bootstrap/css/bootstrap.min.css"> <link rel="stylesheet" type="text/css" href="vendor/angular/angular-toastr-1.4.1.min.css"> <link rel="stylesheet" type="text/css" href="vendor/select2/select2.min.css"> <link rel="stylesheet" type="text/css" media='all' href="vendor/angular/loading-bar.min.css"> <link rel="stylesheet" type="text/css" media='all' href="vendor/font-awesome.min.css"> <link rel="stylesheet" type="text/css" href="styles/common-style.css"> <title>{{'Common.Title' | translate }}</title> </head> <body> <apollonav></apollonav> <div id="app-list" class="hidden" ng-controller="IndexController"> <section class="media create-app-list"> <aside class="media-left text-center"> <h5>{{'Index.MyProject' | translate }}</h5> </aside> <aside class="media-body"> <div class="app-panel col-md-2 text-center" ng-click="goToCreateAppPage()" ng-if="hasCreateApplicationPermission"> <div href="#" class="thumbnail create-btn hover cursor-pointer"> <img src="img/plus-white.png" /> <h5>{{'Index.CreateProject' | translate }}</h5> </div> </div> <div class="app-panel col-md-2 text-center" ng-repeat="app in createdApps" ng-click="goToAppHomePage(app.appId)"> <div href="#" class="thumbnail hover cursor-pointer"> <h4 ng-bind="app.appId"></h4> <h5 ng-bind="app.name"></h5> </div> </div> <div class="app-panel col-md-2 text-center" ng-show="hasMoreCreatedApps" ng-click="getUserCreatedApps()"> <div href="#" class="thumbnail hover cursor-pointer"> <img class="more-img" src="img/more.png" /> <h5>{{'Index.LoadMore' | translate }}</h5> </div> </div> </aside> </section> <section class="media favorites-app-list"> <aside class="media-left text-center"> <h5>{{'Index.FavoriteItems' | translate }}</h5> </aside> <aside class="media-body"> <div class="app-panel col-md-2 text-center" ng-repeat="app in favorites" ng-click="goToAppHomePage(app.appId)" ng-mouseover="toggleOperationBtn(app)" ng-mouseout="toggleOperationBtn(app)"> <div class="thumbnail hover"> <h4 ng-bind="app.appId"></h4> <h5 ng-bind="app.name"></h5> <p class="operate-panel" ng-show="app.showOperationBtn"> <button class="btn btn-default btn-xs" title="{{'Index.Topping' | translate }}" ng-click="toTop(app.favoriteId);$event.stopPropagation();"> <img src="img/top.png" class="i-15"> </button> <button class="btn btn-default btn-xs" title="{{'Index.FavoriteCancel' | translate }}" ng-click="deleteFavorite(app.favoriteId);$event.stopPropagation();"> <img src="img/like.png" class="i-15"> </button> </p> </div> </div> <div class="col-md-2 text-center" ng-show="hasMoreFavorites" ng-click="getUserFavorites()"> <div href="#" class="thumbnail hover cursor-pointer"> <img class="more-img" src="img/more.png" /> <h5>{{'Index.LoadMore' | translate }}</h5> </div> </div> <div class="no-favorites text-center" ng-show="!favorites || favorites.length == 0"> <h4>{{'Index.FavoriteTip' | translate }}</h4> </div> </aside> </section> <section class="media visit-app-list" ng-show="visitedApps && visitedApps.length"> <aside class="media-left text-center"> <h5>{{'Index.RecentlyViewedItems' | translate }}</h5> </aside> <aside class="media-body"> <div class="app-panel col-md-2 text-center" ng-repeat="app in visitedApps" ng-click="goToAppHomePage(app.appId)"> <div class="thumbnail hover"> <h4 ng-bind="app.appId"></h4> <h5 ng-bind="app.name"></h5> </div> </div> </aside> </section> </div> <div ng-include="'views/common/footer.html'"></div> <!--angular--> <script src="vendor/angular/angular.min.js"></script> <script src="vendor/angular/angular-resource.min.js"></script> <script src="vendor/angular/angular-toastr-1.4.1.tpls.min.js"></script> <script src="vendor/angular/loading-bar.min.js"></script> <script src="vendor/angular/angular-cookies.min.js"></script> <script src="vendor/angular/angular-translate.2.18.1/angular-translate.min.js"></script> <script src="vendor/angular/angular-translate.2.18.1/angular-translate-loader-static-files.min.js"></script> <script src="vendor/angular/angular-translate.2.18.1/angular-translate-storage-cookie.min.js"></script> <!-- jquery.js --> <script src="vendor/jquery.min.js" type="text/javascript"></script> <script src="vendor/select2/select2.min.js" type="text/javascript"></script> <!-- bootstrap.js --> <script src="vendor/bootstrap/js/bootstrap.min.js" type="text/javascript"></script> <script type="application/javascript" src="scripts/app.js"></script> <script type="application/javascript" src="scripts/services/AppService.js"></script> <script type="application/javascript" src="scripts/services/EnvService.js"></script> <script type="application/javascript" src="scripts/services/UserService.js"></script> <script type="application/javascript" src="scripts/services/CommonService.js"></script> <script type="application/javascript" src="scripts/services/FavoriteService.js"></script> <script type="application/javascript" src="scripts/services/PermissionService.js"></script> <script type="application/javascript" src="scripts/AppUtils.js"></script> <script type="application/javascript" src="scripts/directive/directive.js"></script> <script type="application/javascript" src="scripts/controller/IndexController.js"></script> </body> </html>
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-portal/src/main/java/com/ctrip/framework/apollo/portal/spi/defaultimpl/DefaultEmailService.java
package com.ctrip.framework.apollo.portal.spi.defaultimpl; import com.ctrip.framework.apollo.portal.component.config.PortalConfig; import com.ctrip.framework.apollo.portal.entity.bo.Email; import com.ctrip.framework.apollo.portal.spi.EmailService; import com.ctrip.framework.apollo.tracer.Tracer; import com.sun.mail.smtp.SMTPTransport; import java.io.ByteArrayInputStream; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.util.Properties; import javax.activation.DataHandler; import javax.activation.DataSource; import javax.annotation.Resource; import javax.mail.Message; import javax.mail.Session; import javax.mail.internet.InternetAddress; import javax.mail.internet.MimeMessage; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class DefaultEmailService implements EmailService { private final Logger logger = LoggerFactory.getLogger(DefaultEmailService.class); @Resource private PortalConfig portalConfig; @Override public void send(Email email) { if (!portalConfig.isEmailEnabled()) { return; } SMTPTransport t = null; try { Properties prop = System.getProperties(); Session session = Session.getInstance(prop, null); Message msg = new MimeMessage(session); msg.setFrom(new InternetAddress(email.getSenderEmailAddress())); msg.setRecipients(Message.RecipientType.TO, InternetAddress.parse(email.getRecipientsString(), false)); msg.setSubject(email.getSubject()); msg.setDataHandler(new DataHandler(new HTMLDataSource(email.getBody()))); String host = portalConfig.emailConfigHost(); String user = portalConfig.emailConfigUser(); String password = portalConfig.emailConfigPassword(); t = (SMTPTransport) session.getTransport("smtp"); t.connect(host, user, password); msg.saveChanges(); t.sendMessage(msg, msg.getAllRecipients()); logger.debug("email response: {}", t.getLastServerResponse()); } catch (Exception e) { logger.error("send email failed.", e); Tracer.logError("send email failed.", e); } finally { if (t != null) { try { t.close(); } catch (Exception e) { // nothing } } } } static class HTMLDataSource implements DataSource { private String html; HTMLDataSource(String htmlString) { html = htmlString; } @Override public InputStream getInputStream() throws IOException { if (html == null) { throw new IOException("html message is null!"); } return new ByteArrayInputStream(html.getBytes()); } @Override public OutputStream getOutputStream() throws IOException { throw new IOException("This DataHandler cannot write HTML"); } @Override public String getContentType() { return "text/html"; } @Override public String getName() { return "HTMLDataSource"; } } }
package com.ctrip.framework.apollo.portal.spi.defaultimpl; import com.ctrip.framework.apollo.portal.component.config.PortalConfig; import com.ctrip.framework.apollo.portal.entity.bo.Email; import com.ctrip.framework.apollo.portal.spi.EmailService; import com.ctrip.framework.apollo.tracer.Tracer; import com.sun.mail.smtp.SMTPTransport; import java.io.ByteArrayInputStream; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.util.Properties; import javax.activation.DataHandler; import javax.activation.DataSource; import javax.annotation.Resource; import javax.mail.Message; import javax.mail.Session; import javax.mail.internet.InternetAddress; import javax.mail.internet.MimeMessage; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class DefaultEmailService implements EmailService { private final Logger logger = LoggerFactory.getLogger(DefaultEmailService.class); @Resource private PortalConfig portalConfig; @Override public void send(Email email) { if (!portalConfig.isEmailEnabled()) { return; } SMTPTransport t = null; try { Properties prop = System.getProperties(); Session session = Session.getInstance(prop, null); Message msg = new MimeMessage(session); msg.setFrom(new InternetAddress(email.getSenderEmailAddress())); msg.setRecipients(Message.RecipientType.TO, InternetAddress.parse(email.getRecipientsString(), false)); msg.setSubject(email.getSubject()); msg.setDataHandler(new DataHandler(new HTMLDataSource(email.getBody()))); String host = portalConfig.emailConfigHost(); String user = portalConfig.emailConfigUser(); String password = portalConfig.emailConfigPassword(); t = (SMTPTransport) session.getTransport("smtp"); t.connect(host, user, password); msg.saveChanges(); t.sendMessage(msg, msg.getAllRecipients()); logger.debug("email response: {}", t.getLastServerResponse()); } catch (Exception e) { logger.error("send email failed.", e); Tracer.logError("send email failed.", e); } finally { if (t != null) { try { t.close(); } catch (Exception e) { // nothing } } } } static class HTMLDataSource implements DataSource { private String html; HTMLDataSource(String htmlString) { html = htmlString; } @Override public InputStream getInputStream() throws IOException { if (html == null) { throw new IOException("html message is null!"); } return new ByteArrayInputStream(html.getBytes()); } @Override public OutputStream getOutputStream() throws IOException { throw new IOException("This DataHandler cannot write HTML"); } @Override public String getContentType() { return "text/html"; } @Override public String getName() { return "HTMLDataSource"; } } }
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-core/src/main/java/com/ctrip/framework/apollo/tracer/internals/cat/CatNames.java
package com.ctrip.framework.apollo.tracer.internals.cat; /** * @author Jason Song([email protected]) */ public interface CatNames { String CAT_CLASS = "com.dianping.cat.Cat"; String LOG_ERROR_METHOD = "logError"; String LOG_EVENT_METHOD = "logEvent"; String NEW_TRANSACTION_METHOD = "newTransaction"; String CAT_TRANSACTION_CLASS = "com.dianping.cat.message.Transaction"; String SET_STATUS_METHOD = "setStatus"; String ADD_DATA_METHOD = "addData"; String COMPLETE_METHOD = "complete"; }
package com.ctrip.framework.apollo.tracer.internals.cat; /** * @author Jason Song([email protected]) */ public interface CatNames { String CAT_CLASS = "com.dianping.cat.Cat"; String LOG_ERROR_METHOD = "logError"; String LOG_EVENT_METHOD = "logEvent"; String NEW_TRANSACTION_METHOD = "newTransaction"; String CAT_TRANSACTION_CLASS = "com.dianping.cat.message.Transaction"; String SET_STATUS_METHOD = "setStatus"; String ADD_DATA_METHOD = "addData"; String COMPLETE_METHOD = "complete"; }
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./doc/images/create-app.png
PNG  IHDRXMܕi IDATxmG񊻻 qwq7!!x :0`@ @!@]{H={n{[z眽kkvz뭷JR@@@@JJA!!!!@VNgX 4Ņ@@@@V΁gX 4Ņ@@@@V΁gX 4Ņ@@@@V΁g%eM̿o NDz_{?L5Te={1ǔ[,W_-<H!&|z̼[UXyem- -Pݮ1;,'lR5S_L9?㏗_~yL}SL1EgyX H(:3ʣ>Z {D:3ZdEK/cb:zꩧ,R>OO><Cu;sǗiq/|b-jw}wDoQfmr%_|e=ܵmO_o2L3UwGv7+f;?zlΎxI`]q.+_uY/~Bp<Izk(iV%Y>Uk/˲2TWÕHmFe/sNT3=XO<Q79eV+GZrc=|(M7]e] ,6+wK  !0VumN:lJz{[92s^麓mIguVV\pA1s=WNdcr-˺[_,^;Pߟ}rUWU /\s5ˌ3XC,Z}%ld{@@@ 1 ,{Z}ի O,Am]^\q-֩ .Ul-U8"[lD8.~3u=ܲKVr-W|Z^w ,qg,vż} ,[0Zj6lS]~5㎫!1S]w]pNLqyRrXXbVD5\e}) VYeZOQ⬴WK/ *vhWo^!!!!>ѱ뮻VaV6l2WuyQ܆R_qKDk$݂<@ WYXfK"Vq+}eeu (߉&A+WtP}ln} ,ga6D-w-9~M7=nAŰKZqk@'ڝcxcrcCN  %0FfRcj;{j"XN?Z. /SM}oVܔ,mYc#!!!c#0VY%&(kJ-Kb /TK2 Dvqz"Ft)Œ Q<X\E;=Xơ7a(=uw!!!!06,]YEmu֩H|G}t+(YrK-yb,w-Z뮻 |b6p|m"K֙v1Xx+qKx P@@@3qX[oS0k%.-'x+P,8J(*T?[PTrAK1~QN;UW%F3)3)B B B &qXMg{Z|6|]|4q54w#nZXmOɲ WwXn8 EDy,Wbgz-V/w3Z{@@@+ ,Fgy*PlE$6Qm]+&41vM7s*?"$rCyF)6/BG;sekeҖPGxN^)nĉ)ӲW'A}!0[t:J%$9Yak:T[`ឳ4 xpW2$JA=2ݖ+1XTXce#:[* ByԎ6u;SYzu 1}!!!! ͣɖ 55B B B ƅ@ָPJX+YC B B B`\D`  55B B B ƅ@ָPJX+YC B B B`\D`  55B B B ƅ@ָPJX+YC B B B`\D`  0/:ٓ5B B B B`l&{o5L!!!!0&{뭷"ƝWr@@@X $k!B B B Ə@J+"J?X+C B B B`"Ɗ(B B B B`D`+d#5~;B B B J k!B B B Ə@J+"J?X+C B B B`"Ɗ(B B B B`L9~ٓ;F%u]G-;- zL=ey)K.djIҌJ`\yB .o%XL?+RC`+L3ĩ8@HX#rӷzkylP&<Re]V*2UL  #<RZj '*^<:Q+Ne!#@ֈ,ϲiJ8n믗7|sTZB F$9t@@@H);B B B`DÞN@@@ $5tSvK.\q__3<Sn3ds]VZimtPn /ܳ-B B B`H#t)^x瞅`{m,)h|Yf)/xm<PN>fw={^Ƕ&+c+3<s4hߟzrw~{^];k)(m)6.lYq_fnO>dYdEk*x``N;m*nm:l&UW]Ulu4@kVWy s9Ms1GN;{@@q4L]Wחᆪe2Yq+֌z饗o2s9E+DDX4E8O,_}kV{CZ>Md5H⋅(s<W^ye=v"#Hӟ%}ꩧVQD(}. -P-CYw yC=yOw疯}ke})kw[X`k!!B k\(K9RN;O,*k]ʂ H(6ln0b7kIvauF[TCU˗%zwq`jEh9_QłO~ ew&|Ϊ]%^{o۞+ca 3P}38cY.F[]m?Ϫ#,A/ZI\eu{$!@;s|\qT)x)(˅./|r- 'PX~EȽG4 ~7x%g}I`#{"t?,W_}u7Q-Z\w\o+U+\wV''.YYštE]T~7L3un (1ag K<7{j";qVlt+G.mn&_wZ@@zt瘣}]vG V[Rx n1B2p$[nA e@ބĂsM7xN:BmCN%.E]~8?яVAO~z<ٞ)'ރ|%V nV"5\[nrY85bX.e~Gduޗukt!"&dpx*eKX:J|b|XEL޿կzg_|&nTap,Mw_~L[ 痾*@Yf} .AlMZq61db%ʾ矿-d^xag 7ܰ4z"bLdmO|Xwq?WZHx&@"5!?RۯwɚjQJs M흋{fM7-,;܂,*)N auYK s YMH0q(q!Fs+Ent\\pAe*W7fkzUn[g\-.Jmh],bb'+jFbVU!Ý@ք?oWeYaQqgm':K/>\˔~B$ Nːlo&QaAF<#j\m*`kNGxGպ|~bX:%@s1b)M IM kG@; %k )YmᔖZjn=bRβ1"N?[%Xkye=(\+ +λ--b]i,֯2t'v۸ `^ ʟzg0@`!5#ADȸ[2 ׶{Xhkl wQ–剘L UGXS^{U~Vۿ+ScKYGL̛; ^[ꍩ<܁bzdͱ믿?:OFh6΃iYp'5Fx`?  eKb$їť5դ/IcێēJ7[˒x,0$bz5x]^wbMwS[<3OoƄ8'g&!!c"5&:h Xe M ^EGԶusmwyr 7DXp[N<YH DPUaDOKwꪫjnU8ޒr, [1,~n}ގ϶s`y筋&{qVmJXt:@w|/6~iY|($-%OǔzFt'δ.Ԙ)w]3,!!C`stXNæG@KveΆx&>D`&L@l`}1eI!0otv !C@AJq`l[}pzN|!B 1XBokUu[S}_A#S?HWyiw&@@(#\Kp 3-IeR:I!!0")3Fts^[m77M "!!!@ߘE!!!C@4?B B B`|c@@@ qXC|G kIZ!!!0 D` LC B B 7&iQ@@'50|"ߘE!!!C@4?B B B`|c@@@ qXC|G`פhx뭷j@`&LC  2CoFys=W^#SNYfq2B B` LVwXM\u]7,6[&a=Csg}Xb%TSM5;@ ZXvhyjZh fHnߒDC=Tz d{|Ys24Ӕ'D` }#?p:oB B` D` R&kKSL1Bzne~x9gʣ'ou cÓB l/P)B D`;!!!0 D`3 w^`HE7)0B B B` }'XxYgW7tSyxwށk!!!!$0O_"^{rgԵO0=S|?.I(Ysf(lMn_r},<hnv믿^{Q֫Z./曯:os7rWYe |G˵^[J+?B B B &#</, k]ʻ= 9[nggA+[zǫh"^z*,B8mjyvZ?2Vvᇏ[X=<Cnr'5X&sI'CY`y-+TƠ;×_~VV.mʶO6;?駟{WDr{?9_U !!CXkCd}s F5,o}>,A?|YveDnb4<u=ǘM>`-gd%0! Xokѱ&~ VXf%l3zN8I uu7Zi<LmL3T_7?peM7t;r7MjyW-6z}],-آN=s9{U=ܳ,u~z`s=wg}zo۞sa%mҶ'XSK)Zo$VG=yV[wܱG:js[gu*j!!0, /rq<P),R K"xX ;\| _BU\sMG̰F;GQ-e1U@p ;Sq_UY;6pò[c<>Gg"*;SO:geAљo(|&.袋`Y{M|媫*{~GW/~?я8z"Bh2'?IYnvmW.v~]Xq?,*~vy*Y(,qc=#ָ?ϗo5sBnr衇V+(w4z/v[SD>@@ iCG`=h)b~R=g-e9G e&X(Zj^_Z- &=VNWI]vءZgkH ;K",R6hB DK=H:묳K/]i}OI>zu_tE\sUӟ lnW_] a믯co}uwgWk-Lygg?[)8z>W-L,LWZ+v,!,Sկ@z窘jvmq]zU};)/|vmV7+yW_za9{]7)B B`x:4F)܄&SO-.0.blX{L,I&in:; (RFK%I!XZc>P.}ET":+oEn ^mu w.?V}kCKͥg3c1v8e IDATyKXeU-KGw?^%|[L8-RĖvpg\i\+DA}sf֪yw܃f?G 3)B B`x:,ۃYxqb&wrWԉwɒE%cEB-w3I߄)˄j.)ݬQfr%'Lwvk6qM8,jS b/BuG}oqf?N>-/Uc wxRYgM4V⵴#ʸIH~,s܇>Z@ۜ-)y q% -y_ WR@!0X&d"$<bF2˅喸gL\o.Z:͘,Y=t?1Fjb\]26 r&|v|/sR`w(>Ӹh-߸]gw\p:-%<qc+s8sqGjc]mԧ>UXic9Ƈ̶K`X ,F4̒4W\ /ĕ}-q9lIGXHt ,VVw1jrr , =`zC,ꓶO\rh֧֟Q)QE5뗼 6XD7e?!ޒK,M\ƏuH /KY@!z9ximM,X߂ⰜO!!0< 6.4w;LN8rQGX?lrPZ,NK&sCL,Rn7UĬ, %/e7l:9kd?7#oyMLS |Hsgx!bZ0CLTfKx ,Gmضehb#c+5\}5nx*Hw5 @%9]e(Y7-i28`6}g4 -L&a‡UBɗ`i.E nFʄɂ$;?OIUMgz{Sd3Yh(ho#z-}wKFC@"l(&ZU ƛ E?ך; Y րsȲ b, ]09~WպSCA+gGn$Ptw*E:k,iĻsذhgcnf-ǸԒڮ6΍CC B 6G2pMnS"Lj2`-2W\6Ɗ[R^DI`)ʫ3{mwYejt[ሕ~u-+֤#HZٲ IXhT"fG;.Rk]w<74_c`b~Qlc~ϱT/kf=-8}cXⶈCVNJz뭫H#ЬUIH'B B`Hni< g7xmh r,j$0bn ) u#T9Aui$ YX:ݿIOUwFK0(ӱVnv&.7,wM>c/KYR[Vg<pv&aR@ 2 c?M뗢'T`K#RH'!qAcLm7/Ň@@@ asI!!!!0"Y13 &5r@@@@@֘do@@@7FwAZj")lJ#$54mP5Ch-EFҨ!0dѡ7fŞAVS\A6 M ~x0_%@@(#\Xc]8B}v[#<ܓB B` D` $T6@k9|v# 9&@ XCdC ACg!B k T9:.{キw-?|yGFQJ{饗F'_moQ]z=SJB B B +xwS/rgz<s=|,>lvFW]uUgGbc"(폏?x9˵^[}}c9餓9S_J=h~?\_q'|rpQq7l'0pW3O<UK/taVBd=ee>*VXa"X+ʡZ?+ .(ӟc=V30CY`FH\zeWKEj]r7XR3<SӼ[z.&N>b}/bE^k_|*.q7|s n1s //34SYxᅻW_}uYuUG9Xr˕3<rv\R@#0ī*5 G<@˧> t1ǔ_lvx0m٪Y QfM-;+fmV_*?jQ"o'ҸkNyk/*!۽*XȔIPkD^Ea5/6}b [r%_׺nB[omag>Su]WŖ|뮻nmڭ\E<ԭD,R}mK:3dݧn!G k؎Z:Ϋn7D:SE+|WEO vm Bu'B騣٧vک :y %Xߕ˚ NR~WVlATnc"s-EY~_i$ƴp-`/YQ'K~uY~G"u}mcSIkmw?MJi3zꩧֶw[:%տ<GTi&pkfx .7!L뭷^UZ VE8d4 "颋. ZLPl&e箂¶9眳f&$-:L-m%\RcXϸGy%.7T.&#'qWk Սk5,KYVAxGTw&j.SN9,bUrk K<.lb-Udq$!!0>|u鄇IJj8;ae;Q!Ί0abj#%ώ;X>O6ڨ-~mb>V(ګ˸*{*jHi+QFID|1Xc?AŚԬhė;4QLY%~H*O|WW^ ^ kZkUBe;Va! !+\c ?QHX&@@L<`M<îfi#X]&zIݬ/K-TDCp=F<sxi}epr!5["f#<Z~ BGY!L1Mt5m?Ԓ,L$X,031V;PKDq꧲[[>]J;v۹=C B ۳Ց)&bK\yG]d:=1 Z -D,Y YNy,gm{{w am;TCcy,S9`]-;{%'⊰j9nD;4@1Vm;+{1}>$:ᦝrQr)Gy]B B &X&aW袋V w7۞{YN8rAUA5ao1eAB3[ou]sXѦnZnYˈn$>N*P-)W1]`-R5KEEYQjMH$yjIWYex#yI,GwM:<'RHypkbrGoyh>@@ 0<pY?}'P!27 Җ "rfQ"vbye!$ɱ}-J-,"B{6T|.O,Ze"v@puR-LbDTYfa8N,ZBS^-bXwF5kglAnM}8+RL[YF>@@ :J<k 2A¢뫽\FNsa{ 2o :meuN;W/ O x"&a[Q_+[P]>Mgbr"7ju;`0!k}!!6YS@@@ E/SH@@@M m!!!B _0x@,)B B B @V`L!!!!!6YS@@@ ~BB B B BmXoȧX1@@@"fO!!!!/"c  D`"B B B B_D` !!!ozE>@@@@)$B B B &0)97|[＀!dMV&<6I8îa7CzyG /POS[@)4Ley-SM5U?bF2ފa$;hf+SL1C B`Rx7O?]\זXbI5èa4+>`yW ,PU{R_@@d=Ce馫׵*;Lqq^s 5\ei)B B`(&d'bAF k Pj_{bbJ@FHtMsmK %[&&?>V~!06tv'kO!!!Ó@*B B B`k[t;6G[I:Sn!nq)0B B B_ wD//RЇ>Tfa9y.䒺fӷnѳkgSN)^{mmʻ.s`)<3婧 x>õ-nm9c ||R<oW;/\Ju׿u]ai;\W* btN;mC4SW!BRK"׿;GTz+rz뭋χ~xmc[<+ qnguھ^;!!!XZ/~QWC`Yi]KYyQFs=U4+,LIjnPNٶW1C9{ח?=K8(_mV /\-Q\ 7P+H]UYgU>яVKW_]Z?|9jaW,(}_*`WXaA߾Z<W[mz !!0B Ouᅥs?KxцX"XckV5\  9昣VXwec{/߹E]T%X!dhNV4m.lAͣep*GO>duM9e-)Nŕw}slFee=Cז .WZi<ڣM@$03>|r)b^M61"ĺDd0{deurۉ߿G8e`?{V1e(SO-|pYuU kk %J5QE`|5.rm)&olո Vfdۏ<ضvKj9|<3X-_g{[|4|4mZ |W/K'54KXL/|VJ,I2K~{czM7ݴZK9v}7xc9{N{GNLyX>p~(7_O~u}3)GqDQvir}նw ݓpOAA/>tM/Ma|i2ۮ8խ{9%\wyQql܄ n-U^%P/fwܱZ`K~YY1Ըl&=}Q<[=Qy&KLuQ\;G:f }bbij HB B`Xk]Jvׁܱ"L;SAYL^t(&^DmB$Ryw`Xlg@ݱdS曥H`2zdޤmeNF.JND_W^yeyǪ t<袋:  B}kUr*o[ZYguʣ>ZO1rsLY +8e?F6+ou]W8㌲bU1*)xI'նZ2zoF-H4nV +q[~*(-g?p GkO6@@ S`[acbsB`f]b)i_ŲM')Ä,YE,Ǜȉ+B@^z[Ͳ,M駟^R''hD;LC)jo~o}rOۯl[/x]D'&ĕ;.W1/|qi<,IGu]{n }.:cכ X֫%"u}_ A7(4>_Wh"/V '>zW:n`cm# ^ 2usQ=B B`p[dif5ᾳ\ Ea%ie49a;KDt@pf7lZG+;+cLAz"K]cmc!#YXX~ؔ6_ GeH~3OJJnRGP,on|,p@=^;kZ/KE(gyX$nLep;s*ۍ,R+e7XG\ "k78XZH@@L2#V`LKL\J'|ruq_K,G 'Yd2Y:!I&U&UǙY/M,&rhL@pK \C)CKQ< >#FJY$b39nywy#TCXM \\1u1ޕ}wcj|-ٯMyl:ObyF>u!!XDa"cR1qY,2,Ғ$e}'({Ò V!w,8+_ 7 A %61֟ }&Z`8g2WyƖdwJEg !D4sA_k@<\oBhNbUtn)đl2B vϭ,F" 8;XњE?!!XDKqrtZL^%4\, ԒIԱ,!@4r5Og┇DP;F~y~r@p."mS'PKބDkm,{@Oӕe-[<Uy|n{+{k%⭈9ttߵ{<[]ìL[mUx93VM`,C"vhSwW,.uӮږIG`D ,nA#LuoC!!dUfYhKK@jeu 6Mֻ":}&LNWAŊ&vz~! 햪"X:`}wa/ǪvfӬ<މ)bE~U3P,I\Ds[oY6$dlYXCaP@v'?ImNչ IDAT|o"mY;yw~߭}&&θ.YӴW8%@@ 56u1xښ 2,,r&IHHNAۈ&LqYnf!h%hMtvi+ 3FLDv >x;L[]?tEi/Gpu&0$(b%lLe&7$ڪ}7qcyB`DZ&Xpbxi⨕Nش6љ&z[k7 t峲M 7Wyd_||:Py}ܨI!!@l tum47M H"&T3< }xmz!B kBOŌx!!0 ,/=ʦ| XB/dž@@@@/"zM!!!!0!"&?VB B`pMKlpIۏIHnEv `&@p!hmI!09|Ŵx#K!0 x?^`ŋ`wA@ k PnǶ<%.#&-Sq5υ}VXl3 n !L#zV> D`MB:B B B`xH*B B B`[\|j{C=Ծ?3W_sϕ￿rZRmV^y啺[ouzZWX}  u'p7_{W@@LSpLzR0&SOᄏL>c-]vYO9Sr-.n^hjßry略^ %:}i)G}tYxᅋDDz˗iu]巿m=+\sg aV\rrꩧVA /sO˵^[EhuǗVZu{o ugj<w]}׬sԯhSX@/bJ6SN9ZfuֲW2enogM!^xZn[fmr駗#8#'xjE |le^q嬳Ϊb˺\{nněK/UBK_/_nJʲ.[V\qrEU1kٌ %<:\pA M5T妛nmjz@ AS6ɃKѳN;U1DXo*'|rY&zn+n(zGlMF_|qʖ[nY.*tO_UDaE0qis1GwOqv 0G,Nm "QbsX!(ly~2 3XKL:fYfcg}jku;-onw܋/X~(8lYc6djc=[>ۧlB7|y3Oi,Jf_SkK;woXj.b=L0~1JLWsGWm'V+骫ӿڗm!!0"&?hE.aq 'ɏh5׬_~ ou׭"X2eW.sLb-o\]_\/^vq_LDiV~mZk w}Q!R9*[UD<oʦnZ]J^{U-6}G`*Y޶z*>:y|SM6 Gy&JaÆP#vuʳuaA`bKذt u-?O?:6XH!я~ (vBu}\Eeyڞ{Ys֔;*lv[fbOS82{wm;&ǟ}XW8g\.T+:@{_+my|X[B B`D` P.q!x L,*,W]uU` z,*&F1RĊkԘ(1D bL&eYZŶjױ^_-EkMc0I7QG4A&_MqIU E|+_"PĘi[zhZVXӎ% :餓zDRK-U.`A[n?DϕW^Ya&%,#BEH;qD<tA5 c剨jU/,Qx"KuLKĠ6!gQ<ZFk|~{W,q$1J,9/#tꃱWϘ8p7>ĺ}g+rb[ujvEKC B?D`^ qð Zk$&5Bj be PD}rc^dEz$&C7 ؄le"L\rIPK Śb"sYn<N:EHĆ1uD J`?#ȲGx4Pau#" V1y.[{++)%!Zr,C(p$l.v%k5H"?8XGRX.m3 ,@ݮ,ٙ\n&m1ƞf#}&։EewcLP|&ԝ#|\Oyku4ǂn:!!"-d WKEh}6a v"%/?e2eIvd2s)0_X,0bīN&:Mmr&ވreBWk&{9뚉ȓ_fgmYÂHm&Z#?vK[XXմ <}&YaŃqQmI?[ºs޹xR?7|^ub̈́!Rf<Qyl,hK!O|fPnwplg.e%@@]Evbbb|6YL`H&@mkw9kɒ@aq"JL+_Yw޹ZbŲZF&D<),6p<\L`eBg"M d7sᢿ @R#kYD v'<XGLČ6:F(z.?1e"P<ƳPV1gbHID; R ^fIÌ#ƐfpS"qg-dGJߴW;ck;FK " @嚠Lh$m277ɼMx&l<apwt?; &q%8"`-Q’db&Lk\V֙'?ΝGYgujbܢ 6}jwqno߻ދXis5KW/ELt''NP"ZB0DzU<? %ZMOM#B]͋vNәdя~T# cr'@#Dגmx$XvEUlb "p6'B @E8PdGH,.ub"ooBDOxJ&Gwp/Ac+V"Ӱj7bܼ{Vp8-w)FtKLJ?*>m"'|'&Z3nv!V6fNx8%G 41ֶψbVba.l3bI"cV*| o̔Bf{kϭ}D+ӲX+ rmb}jIXf._^7^X,17MZd='?Y[;6!!",dnfm-:S&m&A #hHR DtN&l߻nwm!Zm#bbۯ'H|B>i K}ijs{߹7Y| D1E!I k 鎐 VNKz& &1[h̄p(r4&n`WNq!!s B B B ۑ\p J k|!!!0`" m "Fȧ!!!F kЦJ k|!!!0`" m "Fȧ!!!F kЦJ k|!!!0`" m "Fȧ!!!F kЦJ k|!!!0`" m O/\x-4@@ "0SivZ5N/=\K/lb2,VZL7tcdo[c̑!_|\xe(z׻4LGlOo/O=T` 8E` d=kݫ$kC*MK.):kYve:A}ɎYdeVZhOOXcē}Y^jd{@@ K_1-kx3B B B Ɵ@3!!!!0FXcē!08p>쳥~½+cl;>%V&0,2 e&+38xCv駟~\d7䓏u ΃;u7:q'`Tq?\z`ΫN=է-,LYkzrUW?O{U/~}{_YwukL3]yCZ/\Zb-yHo&1jgdCWbb^i_~x~-34Sϯvl9jh7߬LFmT{ =ܲ曗%XNvsBz?ܳ_[<z..袽 69C˂ .XvyQ1ؿʺf_k7uvۭG?*K/t~G7;:nǹ[n{__mV _B]̾O||馛ʷ{GyW \}c"n֢LK-ܲ׿3<S;ro>(1ʵNʒN=.#H12ڦw_^~ӟƊ|ʇ??^{3P,|K^qOK-Ty{[kVꫯo׆΃N;r7sg|y:R;uLG}tin'n>.kOؘwzuѽk"$V"fy֯UW]ue29O[eyigxMY\O<Ğ|ڶ^g[mjIM&(iodh#uEKn=묳 <jw}wP}:*2wa}٧\wuK_R=/9r'yP+r#{.b.*sOO{o7Q{/,\W{c:?<Cm?#:&B"CPqL珏VV;{f\ Z+cLkY:r 7UȶkB~bKB BX/\W 7rxݾzXKq>C. eLygEfmjy,(&k׫/cuN,/#嫯ձW+[G{eMK.dPұ~19VlfVZ YiX.mBs\av FfxI>{rLVUz9s4}V&6I:1*m~ ύ7޸ t ],=X .YXO UN:<M4XvBL[òƻvƱmk:1;c4|Uv:y1 B1a-R-6hq>|z}{߫ۿ[-wc_icwI?OkrGǞ0X~[WG{w # k^[b9[eUjڡ9昣Z2]n}wRN;F,B $N|k;3; 5GK9 Jgy+kFv׋%4L\@8㌺K]]}_ZrڅMY.NbdMj&6t-..6&G>Ԓk_Z -Lfad"lIn"+Q%u"",ǐUDN$quTM&&.-"k\Wz Lwj?d]_qW:f1RMu&TqX-ʾW\RFO= E}"L]pUɎe]~$0eL$<*YugE<2MMlqjn%K?j{~UuQ2|?ncI8'|">X\Oeg>PY>O=أ{w]='p&tK'?t5n9k1W a;ǘ8>ġ>8?]/>uNMp97A=yL<3%f~?IwҪv [N-eYJ.땬@Ȝp ױ_4Fl3!sqsݙ}r8*/~$ KKemsje.g}vXu꓉h%dB'LH7~lvn]w-j,$ae$T|㝨b2pb v.>$ODdj&j& B(#VXEۮg?VY c-uNH&f?*%O\5 Hh?ja!ru[x|Rgۘh/aOwcڋ󃈸"Kqsk.ncJU4iE.@OicXԱ;w‡EHwj]#Vm'Ğ97mG<#ښq.9_rWZ\X!/ ve8KPR0GlV5 Ԯm7pw,m6홸9yw&U+v=T+]R.~rUmrth2z+TFJ+%nD@W6w)[wK09ђ풁= %kqŵmlûXuX'dGlCD$X&rMҭ."ec|ѬLU̻ ,\oyźV71At$lbc#B}&и;8 kxɹno|0&V"A;݁-4bXJ\l,yw&l=΁v FOŸ n0疳M""jKxp)*Y#1Z C"T?Tz]c3V-r?V(.di5׬5wuPfN?T06}q6=B`TnKG۷/ܲ/Wć EEdFIEA.H{2uHυ_.K.&+KmRJu,~AO:$):ڱYbL큒&$SPMAk瘴m1rIaBYqi)St;M7ݴN#~ vvls'>j]BdM,4i"+m7ד ˠ+K&{?Xzg=] ?ca %G ٞN7{-9Ymc`#}f2),;_ג]kY< IDAT:u?t.Ef6)ʼnu&4;v3Rkv!c' |h-?t\;|vm48E̅d<ߙwՒq&!Bʅ] ZnAݎ|g01ԭ<._Жx0@4Y>f&{;:u0عNl ctݬ[,Zb7\)z;mm&hck<S9JLYQct&]1R\C8Ŋ]U ktfy ۤ=^8L>k1xqd=X);u~w,]u)G'$\AbF/S=3 +뇤V~wj ZbA%w&]QR? :'su}{;'z&Aa!\LX&)Yte1h)->,2d71p0{F|LC& ‡@|}v\;c\9 7kFy~is EDʊbb 8ZXsչ}67ac<QsnuL Fq$ ޒCopp0Kq.t&(D.F9(G7"KIM6F/+wK ބvt޸t3g mƠ BsF0r-5~'8u ,cPvqCf Vĵo +PY@B>7p's"inCgIg^}˝uiyiۘ7vy?zmT+_.hTx Z/qiBra3صMȒ΅3ftqw >+GgM~EgevZ'Յ^,6Q2r!I>ھ:6qgz5~GGIs'X,qvv#7=k@?&?–ٸ%mrL&tLj~ pݝxZ2!<m6~,XMdgwlWUg|}zUGۍ1"¸J!&X*?(fcߎU&gZK=*zNTBJ!XNvfqhlq6&}&,爀wh1fAn,c jeS[/J]sc;L!0I LVo$mU& _b\l\\twg ԅڅJ<.`M܈p4л Ĺ\h$N9.:~ 8 Lz`4)"n54ʥ\(w&[_=.0gv1NB/u+>Wm┯~m[[Y8 6cmR;g{w[аϋSc}lS@3˃ö߾XyC,8 We95ɲ^f8W]_?p0'Aխ~Qyt3_R'۶(!xַ{YFgy/"D<&,z[yD^n P8SwQ6b=ܩR^Lo՛xt?"u6mn>9:'[[-m{zVWC 0z j}!or!ĩHJ.^~eoB+/ aĕc Qb;X[ _&uۉ%vI5/_wqz!8.XB}RKX&2*c9,NsB|[_X1 c/{B6u6ƮY߾,iwnp Ģmv.֎ԝzd|bZ; 6DDQ-_{m!k֙V*)0kǏ#%yƖ\1ǸkJwMēx-of<jR֎.clqy4 66pqBؙi1d/cJE ,gutqWH&jlEŽrKxqmY" 5E[oB߉ KCx> pNUqmYE@]~wUjy&N ))B` ְX(_E` VE!!!0E`M"Ɣ!!!Î@ְ҉!UbB B B`$0-$k$WAݖ.L @>ni7`E&JI&5˝\;} LGnBcX0߹#|L7E`#XdsB B B`d͘ĕG` ׳ d5ЧJ kl!!!0Lqgt$@?\9_!UNk>"qV4ny/ѭ/[^1#hmnenEq+ŋ;kID1i[ǣ(#~6obvxOhO >j+{l>:sKtUWvX'q:Z{+8?[K;ʐs=~ƥ6yL{4εV>siXt5m^ms8^>yΣLym__IE@no,a_cxh1vζ}_o'Ov{(u<9pc#1%+kVSώEc*+B`?0C8 pw(Ʌ]d=,ۅEs 7JyL/YޝGUUw/yH&1 2( pRJBtEUgmV+T2R (S!e  $I^!;x<4`^ސ}z~a9w^B~B;EN?Dh_.*}1 rqH^1cV坑^;swLyQ1;Kfux]駟ތ 7oF4+%?׿&GpZޝC1IoK>2!)K?/=CZI^Do4IKܽK9M87 1F]Y8zI5G9n2)~s]?*(:z=~?]veË; {|GpD~ċ<oo/V7oCYw"+t]_3Yp3^ #}YxQN^{mGx|EYo9zФmrpL^{m,Xd8c[ ;ڂ@"52g~Y}^E/Cgs(s]q/f cN^Wf xyg2򝟋-jem2%@cg3GnCՏxz}l>/@ //Üu] {fgਣP=뮻6)ȡ03n) 3 3w\C Y`x>k7!CdЗLtzplL>sd$"%Ќ;Y#4s+9sh|Ӊ'I8JzjKȕ#3wmF&69MK"I'GNÑVtGRy0EP(&/[խ]"Z{9;ܮs._&r˄D >dҖ ,$G@z7؈|Cw .aBw}KG튌1Ns\]?aliILc5![niP?Gboơ{Cj\3~遐c}FVg|ȋս -vN`G8oL!lO=vDVW֮N}hR<0Q)zE&y cK†ʚ}C^Cbm{''{/+!Pk8TF#pXtivi͐_s5Ƒs ̎E1r6-R#1}fNG)1/TuIbapE Rsh:iA_r%9}[email protected]$F=)af[;Y8zKH#."+ Po+'981+n$cTv8JNF#1 A#]-~6BvE7aisTPK(SݮsF2ySX9y1tg6]d$LI'Ԝ 'М<3qMѤ$ԞuY(崑t} ~:ɍ|v͟>2s^!ǯo]?K]wբH ,ky2!Ǝ1c`!fLK"g2FET:G=܈ٕ7EJ6c//Q`*fKIdѹ#<(?IyQ~A!Ns8f& #6 Is?%DKY\"XáR6K!eEwkg9F4e HK#` b-at&#<3ry=?# l&T}Ce7_]"|盄0ə#mhD(tW_}uӯMF=8M铎U&2WD wN?ɲd:=%+?pC1}`*@o+SΓst?2 yS'l_ۢq,tH $xAE|e0qn٦#y2H~$ç:|ZpH"v/C?Gze]֜=2A ƁthNU):Áf">'zg2uYƂ:L"/2e(^E:ܯƘqAڵ4mr<Ƃ{YBBȔ㻳}hB@F툈GIT7MaGQ3a䆅3 =o7]6(IUW]R^Lpv$#pK.ԿB`=Ej(bЬQB)1sRϖ*21rJۻ¹p cʼn,0\Y`9.q`I\'/wی>#m9)bq$?y8.DEY|Eg$<D8uK@8Bmlp 8$K0+<3x!^h3dQN$DcXe_(bX3!P3}8&}Dz=H GK.m:$I]Mt?ϾRdAnDaDK}Wf0Fn23↨i[-\%mT!2"tkcWk1u˸- D&$8# 0SI_l۟ƾ觲0 mV6Y2=mxFc9p g!,#}̤ 1JZZu^xad ,D9ƅH$%X)f aO[s[.Eܾ$3B BF1 C=FJ2+^47Kfg4 `8 Aed%v#?mK#mS:CL6˧# xtI9d 7qNo lfܙ_ 2H套^ڈ.h%7D8*fD;` 3q}>D>1&89N P:/:|8O$>z8y8NZ[ !ٳ(.NTu&#Ky3}kE-!粞|";-JCOM&Y bh"2sN;epՉ\u {Lwԗ B/}")2G$&}膄G!~qm#]%%n6=c u^T7V?r8JHv9zF\p٣%ҭz{wXr,w $UU9ЏuꖱfhXl  uugt2>2ke-!aΤ>34Җ1Lv9t 2?uglj!+!eD@qI;fۈ1"N?ewHɛ2\9LtG4>COG%$I&<y,,I9$K1IÉ*%Y"~d+zKY[}  6&_'Ҿ_GwRvryj_4 $+ u$q)"x#drI^?٘u>} YA&QGI R>eSB^13Er%tY":K/eoH=|l2'{Muʜ򱲢r9k$C!uY1ѽD }wry ?c]T.9fi:υ@Ej b01Lf{8379{u1e-%0TffY&+l&^ bmt=[s`mn6g0E ̀-'$62p&dcs\ <Gsܜ " _,_eَ2Фa3vX20Gʉ) p^g:"zpx"H98!YI +}aS q, fȖrZ)d}dsr}l#gjߓv%?\}ItQntQ^cQF=|D^ʔ5]əI;u&e3q\9_ >˛ ׉qg)R1]z,C;نk5~ x1%{?2!HorHqEƉ`~0QBxLwymy~>C3%!r?+ _`&y5Ft2>spLM6X=e|V*CpԹBA㬐#miO'eS^$ _Bs$B>c XBsaL<"uq =2hS.p3̈k>NzKaXJ;ܙ3H)X~8 F"/MGrŽCT6$}@7 WyˆkwGG*us9I;. K~3# \I $9#h;R!pߖpgC81dNgLtLCŒ5Ğ8mm//>tT9cg B#qEue"6OFKd66'~EB0ȁ%8m#6#Q'+j*rhI'|r?xl1@Fx40?&6"ڗu3BI\'|6OD)8\ce2Wf&g|U*CpԹFqDu a=sI4<183f2 <;p 8J_yx!p6is"a DdRsz':'qeb ptXؙɡu&1c9q$<&G 1A,!Ô [m~$ ǛGGO N&ms_(:I&Nɞ#d9s2>'1-C[;V_j3(cs r+c~եx+ ćC&ЦhL'I&;s]tDD?0/Sߍ{HkHL6Dlo2@BLƓteڼ'ܛ\\sjפ3,n<9zˣIK>x=-9x4Do#zl%xDYrLs,`' J \3阿 5e88F,y5@3SJpt T*~D:D%!ۘۘ:z;ge~e#GljMy^}Ka1TơwJq~@)t?8fug IDATY6wD1 Q4s9tFs9T7l~)py_,31}}Kygi8nDLdkOɬ{8Kk\ңD# :ϿT=u~D֖Tk LB(&:54>.^E^^( B( ߉ƭj*C!P@!P@"P+c!P@!P"XȪ( B( DV"QB( B(6E6UM!P@!P@D@!P@!Pl"`m" B( B("XD B( BDD@V5@!P@!P$E:@!P@!(j B( BH`%u, B( B`!PkY@!P@!J$X@!P&B&) B( B u,^)bgc՚u]Q*71uaۙ1sQ- Bhh=w~X"VY7UL29v;+= wVs@!PX4<'>o1cƌ4i|8z{{csGȃW-@!PLhƧG]2~mVf[r>}FN_X?~:$- B2>1m iSOϭPR@!PY`ٮۂTzƶ/C:5}702JUB( Bz1&uf#@j.nP>@!PEFj( B(&6E&vv@!P@!0 Ы eC= B( @=ht,$Iݬ|eou}1#&uuŔPiݓbkfbޘ<vPmACT- B`L#PkLwo ww^8ckf(kc+?րXןWE^=kj\|!įWy_aYY&L~19u, B(F "X#l;,(R9}r̙="B1?fN{Ɖ#mom?zw8/fL_?K{z=^9zx7&bY._?z`DzİB( @'V\{ہ;v~UD`j^i8+<sg=Vq1{c`p0V:Wo0eD,)d_]?^Fؚb@!Pc"Xc/&$(͘bm7}?νiZie>-E^==G.7;>y=ѳz](o'/j$k(r5V)XD6N"!J6we~W݇b)ھՓ+%+QjjϒK{}&5q;ăOy&>e`8ͻ~{3g7皨^@!Pc`~R!J|re칦 M\eZXOɞgw6?|-lK3L+{[~w[M}`f{\B( B`d[A3O/~_ysjXז5nsfřo=69>}!\H{Ukbmg?Xv uϓqQLJc^!bB( B`Dֈ[w"ࡠM|>;/z>sUk۹M5}Ū5}mygKn=vmدi{`W(؆NYs!P@!0It"?~nm8l9qK#g9㇏Ƣˈ/Y'M0 uoO}߹ֽWpςZT/z @!Pljp\DDxgプ nZl+m;n7#&MFl[s~  T-Y cIOpː* B( ͍@E67[x{:_ sbrWW;'S,[5KVitN?biS{ڒ%<4O_3kv:ۯυ@!PH Pk$P:ECAE]-n>?~p~?ڻ7]-k[y2v;3wxV~Iw>Ǽa^nGTv#OǺz=R' B(F "X#lb׾ff{NmJ}ڦsz]{[<`W?y񷧼+Ͼmw?~--w?/N>t8-ub9L!P@!0t zHBe"`ԜcQOĔ)S6YXXz] Y.Y~c*3gY٤׀6XZYgL펽wOVaۙSe, B("PE,OkGWO-Yj]w=N~35m䶏Gnuo,QB( -"X[\ݓlvGMvy|CU( B- n!P@!PLX`Mخ- B( B`(5ZW@!P@!0a(5a+ B( Bh!?۵|6cdzZi1Y( B`(5}0n%8F_XOׁzs}6[M}R@!P 1 cƥ'{ҸG"&OI<`Cw{U\p1}Q( B`t'.<߻8[c0>5޴8=b^~+ B=T@!PC`;KB( B؂(uvZ@!P"Xj( B( `mA]@!PAZ) B( -3 McIENDB`
PNG  IHDRXMܕi IDATxmG񊻻 qwq7!!x :0`@ @!@]{H={n{[z眽kkvz뭷JR@@@@JJA!!!!@VNgX 4Ņ@@@@V΁gX 4Ņ@@@@V΁gX 4Ņ@@@@V΁g%eM̿o NDz_{?L5Te={1ǔ[,W_-<H!&|z̼[UXyem- -Pݮ1;,'lR5S_L9?㏗_~yL}SL1EgyX H(:3ʣ>Z {D:3ZdEK/cb:zꩧ,R>OO><Cu;sǗiq/|b-jw}wDoQfmr%_|e=ܵmO_o2L3UwGv7+f;?zlΎxI`]q.+_uY/~Bp<Izk(iV%Y>Uk/˲2TWÕHmFe/sNT3=XO<Q79eV+GZrc=|(M7]e] ,6+wK  !0VumN:lJz{[92s^麓mIguVV\pA1s=WNdcr-˺[_,^;Pߟ}rUWU /\s5ˌ3XC,Z}%ld{@@@ 1 ,{Z}ի O,Am]^\q-֩ .Ul-U8"[lD8.~3u=ܲKVr-W|Z^w ,qg,vż} ,[0Zj6lS]~5㎫!1S]w]pNLqyRrXXbVD5\e}) VYeZOQ⬴WK/ *vhWo^!!!!>ѱ뮻VaV6l2WuyQ܆R_qKDk$݂<@ WYXfK"Vq+}eeu (߉&A+WtP}ln} ,ga6D-w-9~M7=nAŰKZqk@'ڝcxcrcCN  %0FfRcj;{j"XN?Z. /SM}oVܔ,mYc#!!!c#0VY%&(kJ-Kb /TK2 Dvqz"Ft)Œ Q<X\E;=Xơ7a(=uw!!!!06,]YEmu֩H|G}t+(YrK-yb,w-Z뮻 |b6p|m"K֙v1Xx+qKx P@@@3qX[oS0k%.-'x+P,8J(*T?[PTrAK1~QN;UW%F3)3)B B B &qXMg{Z|6|]|4q54w#nZXmOɲ WwXn8 EDy,Wbgz-V/w3Z{@@@+ ,Fgy*PlE$6Qm]+&41vM7s*?"$rCyF)6/BG;sekeҖPGxN^)nĉ)ӲW'A}!0[t:J%$9Yak:T[`ឳ4 xpW2$JA=2ݖ+1XTXce#:[* ByԎ6u;SYzu 1}!!!! ͣɖ 55B B B ƅ@ָPJX+YC B B B`\D`  55B B B ƅ@ָPJX+YC B B B`\D`  55B B B ƅ@ָPJX+YC B B B`\D`  0/:ٓ5B B B B`l&{o5L!!!!0&{뭷"ƝWr@@@X $k!B B B Ə@J+"J?X+C B B B`"Ɗ(B B B B`D`+d#5~;B B B J k!B B B Ə@J+"J?X+C B B B`"Ɗ(B B B B`L9~ٓ;F%u]G-;- zL=ey)K.djIҌJ`\yB .o%XL?+RC`+L3ĩ8@HX#rӷzkylP&<Re]V*2UL  #<RZj '*^<:Q+Ne!#@ֈ,ϲiJ8n믗7|sTZB F$9t@@@H);B B B`DÞN@@@ $5tSvK.\q__3<Sn3ds]VZimtPn /ܳ-B B B`H#t)^x瞅`{m,)h|Yf)/xm<PN>fw={^Ƕ&+c+3<s4hߟzrw~{^];k)(m)6.lYq_fnO>dYdEk*x``N;m*nm:l&UW]Ulu4@kVWy s9Ms1GN;{@@q4L]Wחᆪe2Yq+֌z饗o2s9E+DDX4E8O,_}kV{CZ>Md5H⋅(s<W^ye=v"#Hӟ%}ꩧVQD(}. -P-CYw yC=yOw疯}ke})kw[X`k!!B k\(K9RN;O,*k]ʂ H(6ln0b7kIvauF[TCU˗%zwq`jEh9_QłO~ ew&|Ϊ]%^{o۞+ca 3P}38cY.F[]m?Ϫ#,A/ZI\eu{$!@;s|\qT)x)(˅./|r- 'PX~EȽG4 ~7x%g}I`#{"t?,W_}u7Q-Z\w\o+U+\wV''.YYštE]T~7L3un (1ag K<7{j";qVlt+G.mn&_wZ@@zt瘣}]vG V[Rx n1B2p$[nA e@ބĂsM7xN:BmCN%.E]~8?яVAO~z<ٞ)'ރ|%V nV"5\[nrY85bX.e~Gduޗukt!"&dpx*eKX:J|b|XEL޿կzg_|&nTap,Mw_~L[ 痾*@Yf} .AlMZq61db%ʾ矿-d^xag 7ܰ4z"bLdmO|Xwq?WZHx&@"5!?RۯwɚjQJs M흋{fM7-,;܂,*)N auYK s YMH0q(q!Fs+Ent\\pAe*W7fkzUn[g\-.Jmh],bb'+jFbVU!Ý@ք?oWeYaQqgm':K/>\˔~B$ Nːlo&QaAF<#j\m*`kNGxGպ|~bX:%@s1b)M IM kG@; %k )YmᔖZjn=bRβ1"N?[%Xkye=(\+ +λ--b]i,֯2t'v۸ `^ ʟzg0@`!5#ADȸ[2 ׶{Xhkl wQ–剘L UGXS^{U~Vۿ+ScKYGL̛; ^[ꍩ<܁bzdͱ믿?:OFh6΃iYp'5Fx`?  eKb$їť5դ/IcێēJ7[˒x,0$bz5x]^wbMwS[<3OoƄ8'g&!!c"5&:h Xe M ^EGԶusmwyr 7DXp[N<YH DPUaDOKwꪫjnU8ޒr, [1,~n}ގ϶s`y筋&{qVmJXt:@w|/6~iY|($-%OǔzFt'δ.Ԙ)w]3,!!C`stXNæG@KveΆx&>D`&L@l`}1eI!0otv !C@AJq`l[}pzN|!B 1XBokUu[S}_A#S?HWyiw&@@(#\Kp 3-IeR:I!!0")3Fts^[m77M "!!!@ߘE!!!C@4?B B B`|c@@@ qXC|G kIZ!!!0 D` LC B B 7&iQ@@'50|"ߘE!!!C@4?B B B`|c@@@ qXC|G`פhx뭷j@`&LC  2CoFys=W^#SNYfq2B B` LVwXM\u]7,6[&a=Csg}Xb%TSM5;@ ZXvhyjZh fHnߒDC=Tz d{|Ys24Ӕ'D` }#?p:oB B` D` R&kKSL1Bzne~x9gʣ'ou cÓB l/P)B D`;!!!0 D`3 w^`HE7)0B B B` }'XxYgW7tSyxwށk!!!!$0O_"^{rgԵO0=S|?.I(Ysf(lMn_r},<hnv믿^{Q֫Z./曯:os7rWYe |G˵^[J+?B B B &#</, k]ʻ= 9[nggA+[zǫh"^z*,B8mjyvZ?2Vvᇏ[X=<Cnr'5X&sI'CY`y-+TƠ;×_~VV.mʶO6;?駟{WDr{?9_U !!CXkCd}s F5,o}>,A?|YveDnb4<u=ǘM>`-gd%0! Xokѱ&~ VXf%l3zN8I uu7Zi<LmL3T_7?peM7t;r7MjyW-6z}],-آN=s9{U=ܳ,u~z`s=wg}zo۞sa%mҶ'XSK)Zo$VG=yV[wܱG:js[gu*j!!0, /rq<P),R K"xX ;\| _BU\sMG̰F;GQ-e1U@p ;Sq_UY;6pò[c<>Gg"*;SO:geAљo(|&.袋`Y{M|媫*{~GW/~?я8z"Bh2'?IYnvmW.v~]Xq?,*~vy*Y(,qc=#ָ?ϗo5sBnr衇V+(w4z/v[SD>@@ iCG`=h)b~R=g-e9G e&X(Zj^_Z- &=VNWI]vءZgkH ;K",R6hB DK=H:묳K/]i}OI>zu_tE\sUӟ lnW_] a믯co}uwgWk-Lygg?[)8z>W-L,LWZ+v,!,Sկ@z窘jvmq]zU};)/|vmV7+yW_za9{]7)B B`x:4F)܄&SO-.0.blX{L,I&in:; (RFK%I!XZc>P.}ET":+oEn ^mu w.?V}kCKͥg3c1v8e IDATyKXeU-KGw?^%|[L8-RĖvpg\i\+DA}sf֪yw܃f?G 3)B B`x:,ۃYxqb&wrWԉwɒE%cEB-w3I߄)˄j.)ݬQfr%'Lwvk6qM8,jS b/BuG}oqf?N>-/Uc wxRYgM4V⵴#ʸIH~,s܇>Z@ۜ-)y q% -y_ WR@!0X&d"$<bF2˅喸gL\o.Z:͘,Y=t?1Fjb\]26 r&|v|/sR`w(>Ӹh-߸]gw\p:-%<qc+s8sqGjc]mԧ>UXic9Ƈ̶K`X ,F4̒4W\ /ĕ}-q9lIGXHt ,VVw1jrr , =`zC,ꓶO\rh֧֟Q)QE5뗼 6XD7e?!ޒK,M\ƏuH /KY@!z9ximM,X߂ⰜO!!0< 6.4w;LN8rQGX?lrPZ,NK&sCL,Rn7UĬ, %/e7l:9kd?7#oyMLS |Hsgx!bZ0CLTfKx ,Gmضehb#c+5\}5nx*Hw5 @%9]e(Y7-i28`6}g4 -L&a‡UBɗ`i.E nFʄɂ$;?OIUMgz{Sd3Yh(ho#z-}wKFC@"l(&ZU ƛ E?ך; Y րsȲ b, ]09~WպSCA+gGn$Ptw*E:k,iĻsذhgcnf-ǸԒڮ6΍CC B 6G2pMnS"Lj2`-2W\6Ɗ[R^DI`)ʫ3{mwYejt[ሕ~u-+֤#HZٲ IXhT"fG;.Rk]w<74_c`b~Qlc~ϱT/kf=-8}cXⶈCVNJz뭫H#ЬUIH'B B`Hni< g7xmh r,j$0bn ) u#T9Aui$ YX:ݿIOUwFK0(ӱVnv&.7,wM>c/KYR[Vg<pv&aR@ 2 c?M뗢'T`K#RH'!qAcLm7/Ň@@@ asI!!!!0"Y13 &5r@@@@@֘do@@@7FwAZj")lJ#$54mP5Ch-EFҨ!0dѡ7fŞAVS\A6 M ~x0_%@@(#\Xc]8B}v[#<ܓB B` D` $T6@k9|v# 9&@ XCdC ACg!B k T9:.{キw-?|yGFQJ{饗F'_moQ]z=SJB B B +xwS/rgz<s=|,>lvFW]uUgGbc"(폏?x9˵^[}}c9餓9S_J=h~?\_q'|rpQq7l'0pW3O<UK/taVBd=ee>*VXa"X+ʡZ?+ .(ӟc=V30CY`FH\zeWKEj]r7XR3<SӼ[z.&N>b}/bE^k_|*.q7|s n1s //34SYxᅻW_}uYuUG9Xr˕3<rv\R@#0ī*5 G<@˧> t1ǔ_lvx0m٪Y QfM-;+fmV_*?jQ"o'ҸkNyk/*!۽*XȔIPkD^Ea5/6}b [r%_׺nB[omag>Su]WŖ|뮻nmڭ\E<ԭD,R}mK:3dݧn!G k؎Z:Ϋn7D:SE+|WEO vm Bu'B騣٧vک :y %Xߕ˚ NR~WVlATnc"s-EY~_i$ƴp-`/YQ'K~uY~G"u}mcSIkmw?MJi3zꩧֶw[:%տ<GTi&pkfx .7!L뭷^UZ VE8d4 "颋. ZLPl&e箂¶9眳f&$-:L-m%\RcXϸGy%.7T.&#'qWk Սk5,KYVAxGTw&j.SN9,bUrk K<.lb-Udq$!!0>|u鄇IJj8;ae;Q!Ί0abj#%ώ;X>O6ڨ-~mb>V(ګ˸*{*jHi+QFID|1Xc?AŚԬhė;4QLY%~H*O|WW^ ^ kZkUBe;Va! !+\c ?QHX&@@L<`M<îfi#X]&zIݬ/K-TDCp=F<sxi}epr!5["f#<Z~ BGY!L1Mt5m?Ԓ,L$X,031V;PKDq꧲[[>]J;v۹=C B ۳Ց)&bK\yG]d:=1 Z -D,Y YNy,gm{{w am;TCcy,S9`]-;{%'⊰j9nD;4@1Vm;+{1}>$:ᦝrQr)Gy]B B &X&aW袋V w7۞{YN8rAUA5ao1eAB3[ou]sXѦnZnYˈn$>N*P-)W1]`-R5KEEYQjMH$yjIWYex#yI,GwM:<'RHypkbrGoyh>@@ 0<pY?}'P!27 Җ "rfQ"vbye!$ɱ}-J-,"B{6T|.O,Ze"v@puR-LbDTYfa8N,ZBS^-bXwF5kglAnM}8+RL[YF>@@ :J<k 2A¢뫽\FNsa{ 2o :meuN;W/ O x"&a[Q_+[P]>Mgbr"7ju;`0!k}!!6YS@@@ E/SH@@@M m!!!B _0x@,)B B B @V`L!!!!!6YS@@@ ~BB B B BmXoȧX1@@@"fO!!!!/"c  D`"B B B B_D` !!!ozE>@@@@)$B B B &0)97|[＀!dMV&<6I8îa7CzyG /POS[@)4Ley-SM5U?bF2ފa$;hf+SL1C B`Rx7O?]\זXbI5èa4+>`yW ,PU{R_@@d=Ce馫׵*;Lqq^s 5\ei)B B`(&d'bAF k Pj_{bbJ@FHtMsmK %[&&?>V~!06tv'kO!!!Ó@*B B B`k[t;6G[I:Sn!nq)0B B B_ wD//RЇ>Tfa9y.䒺fӷnѳkgSN)^{mmʻ.s`)<3婧 x>õ-nm9c ||R<oW;/\Ju׿u]ai;\W* btN;mC4SW!BRK"׿;GTz+rz뭋χ~xmc[<+ qnguھ^;!!!XZ/~QWC`Yi]KYyQFs=U4+,LIjnPNٶW1C9{ח?=K8(_mV /\-Q\ 7P+H]UYgU>яVKW_]Z?|9jaW,(}_*`WXaA߾Z<W[mz !!0B Ouᅥs?KxцX"XckV5\  9昣VXwec{/߹E]T%X!dhNV4m.lAͣep*GO>duM9e-)Nŕw}slFee=Cז .WZi<ڣM@$03>|r)b^M61"ĺDd0{deurۉ߿G8e`?{V1e(SO-|pYuU kk %J5QE`|5.rm)&olո Vfdۏ<ضvKj9|<3X-_g{[|4|4mZ |W/K'54KXL/|VJ,I2K~{czM7ݴZK9v}7xc9{N{GNLyX>p~(7_O~u}3)GqDQvir}նw ݓpOAA/>tM/Ma|i2ۮ8խ{9%\wyQql܄ n-U^%P/fwܱZ`K~YY1Ըl&=}Q<[=Qy&KLuQ\;G:f }bbij HB B`Xk]Jvׁܱ"L;SAYL^t(&^DmB$Ryw`Xlg@ݱdS曥H`2zdޤmeNF.JND_W^yeyǪ t<袋:  B}kUr*o[ZYguʣ>ZO1rsLY +8e?F6+ou]W8㌲bU1*)xI'նZ2zoF-H4nV +q[~*(-g?p GkO6@@ S`[acbsB`f]b)i_ŲM')Ä,YE,Ǜȉ+B@^z[Ͳ,M駟^R''hD;LC)jo~o}rOۯl[/x]D'&ĕ;.W1/|qi<,IGu]{n }.:cכ X֫%"u}_ A7(4>_Wh"/V '>zW:n`cm# ^ 2usQ=B B`p[dif5ᾳ\ Ea%ie49a;KDt@pf7lZG+;+cLAz"K]cmc!#YXX~ؔ6_ GeH~3OJJnRGP,on|,p@=^;kZ/KE(gyX$nLep;s*ۍ,R+e7XG\ "k78XZH@@L2#V`LKL\J'|ruq_K,G 'Yd2Y:!I&U&UǙY/M,&rhL@pK \C)CKQ< >#FJY$b39nywy#TCXM \\1u1ޕ}wcj|-ٯMyl:ObyF>u!!XDa"cR1qY,2,Ғ$e}'({Ò V!w,8+_ 7 A %61֟ }&Z`8g2WyƖdwJEg !D4sA_k@<\oBhNbUtn)đl2B vϭ,F" 8;XњE?!!XDKqrtZL^%4\, ԒIԱ,!@4r5Og┇DP;F~y~r@p."mS'PKބDkm,{@Oӕe-[<Uy|n{+{k%⭈9ttߵ{<[]ìL[mUx93VM`,C"vhSwW,.uӮږIG`D ,nA#LuoC!!dUfYhKK@jeu 6Mֻ":}&LNWAŊ&vz~! 햪"X:`}wa/ǪvfӬ<މ)bE~U3P,I\Ds[oY6$dlYXCaP@v'?ImNչ IDAT|o"mY;yw~߭}&&θ.YӴW8%@@ 56u1xښ 2,,r&IHHNAۈ&LqYnf!h%hMtvi+ 3FLDv >x;L[]?tEi/Gpu&0$(b%lLe&7$ڪ}7qcyB`DZ&Xpbxi⨕Nش6љ&z[k7 t峲M 7Wyd_||:Py}ܨI!!@l tum47M H"&T3< }xmz!B kBOŌx!!0 ,/=ʦ| XB/dž@@@@/"zM!!!!0!"&?VB B`pMKlpIۏIHnEv `&@p!hmI!09|Ŵx#K!0 x?^`ŋ`wA@ k PnǶ<%.#&-Sq5υ}VXl3 n !L#zV> D`MB:B B B`xH*B B B`[\|j{C=Ծ?3W_sϕ￿rZRmV^y啺[ouzZWX}  u'p7_{W@@LSpLzR0&SOᄏL>c-]vYO9Sr-.n^hjßry略^ %:}i)G}tYxᅋDDz˗iu]巿m=+\sg aV\rrꩧVA /sO˵^[EhuǗVZu{o ugj<w]}׬sԯhSX@/bJ6SN9ZfuֲW2enogM!^xZn[fmr駗#8#'xjE |le^q嬳Ϊb˺\{nněK/UBK_/_nJʲ.[V\qrEU1kٌ %<:\pA M5T妛nmjz@ AS6ɃKѳN;U1DXo*'|rY&zn+n(zGlMF_|qʖ[nY.*tO_UDaE0qis1GwOqv 0G,Nm "QbsX!(ly~2 3XKL:fYfcg}jku;-onw܋/X~(8lYc6djc=[>ۧlB7|y3Oi,Jf_SkK;woXj.b=L0~1JLWsGWm'V+骫ӿڗm!!0"&?hE.aq 'ɏh5׬_~ ou׭"X2eW.sLb-o\]_\/^vq_LDiV~mZk w}Q!R9*[UD<oʦnZ]J^{U-6}G`*Y޶z*>:y|SM6 Gy&JaÆP#vuʳuaA`bKذt u-?O?:6XH!я~ (vBu}\Eeyڞ{Ys֔;*lv[fbOS82{wm;&ǟ}XW8g\.T+:@{_+my|X[B B`D` P.q!x L,*,W]uU` z,*&F1RĊkԘ(1D bL&eYZŶjױ^_-EkMc0I7QG4A&_MqIU E|+_"PĘi[zhZVXӎ% :餓zDRK-U.`A[n?DϕW^Ya&%,#BEH;qD<tA5 c剨jU/,Qx"KuLKĠ6!gQ<ZFk|~{W,q$1J,9/#tꃱWϘ8p7>ĺ}g+rb[ujvEKC B?D`^ qð Zk$&5Bj be PD}rc^dEz$&C7 ؄le"L\rIPK Śb"sYn<N:EHĆ1uD J`?#ȲGx4Pau#" V1y.[{++)%!Zr,C(p$l.v%k5H"?8XGRX.m3 ,@ݮ,ٙ\n&m1ƞf#}&։EewcLP|&ԝ#|\Oyku4ǂn:!!"-d WKEh}6a v"%/?e2eIvd2s)0_X,0bīN&:Mmr&ވreBWk&{9뚉ȓ_fgmYÂHm&Z#?vK[XXմ <}&YaŃqQmI?[ºs޹xR?7|^ub̈́!Rf<Qyl,hK!O|fPnwplg.e%@@]Evbbb|6YL`H&@mkw9kɒ@aq"JL+_Yw޹ZbŲZF&D<),6p<\L`eBg"M d7sᢿ @R#kYD v'<XGLČ6:F(z.?1e"P<ƳPV1gbHID; R ^fIÌ#ƐfpS"qg-dGJߴW;ck;FK " @嚠Lh$m277ɼMx&l<apwt?; &q%8"`-Q’db&Lk\V֙'?ΝGYgujbܢ 6}jwqno߻ދXis5KW/ELt''NP"ZB0DzU<? %ZMOM#B]͋vNәdя~T# cr'@#Dגmx$XvEUlb "p6'B @E8PdGH,.ub"ooBDOxJ&Gwp/Ac+V"Ӱj7bܼ{Vp8-w)FtKLJ?*>m"'|'&Z3nv!V6fNx8%G 41ֶψbVba.l3bI"cV*| o̔Bf{kϭ}D+ӲX+ rmb}jIXf._^7^X,17MZd='?Y[;6!!",dnfm-:S&m&A #hHR DtN&l߻nwm!Zm#bbۯ'H|B>i K}ijs{߹7Y| D1E!I k 鎐 VNKz& &1[h̄p(r4&n`WNq!!s B B B ۑ\p J k|!!!0`" m "Fȧ!!!F kЦJ k|!!!0`" m "Fȧ!!!F kЦJ k|!!!0`" m "Fȧ!!!F kЦJ k|!!!0`" m O/\x-4@@ "0SivZ5N/=\K/lb2,VZL7tcdo[c̑!_|\xe(z׻4LGlOo/O=T` 8E` d=kݫ$kC*MK.):kYve:A}ɎYdeVZhOOXcē}Y^jd{@@ K_1-kx3B B B Ɵ@3!!!!0FXcē!08p>쳥~½+cl;>%V&0,2 e&+38xCv駟~\d7䓏u ΃;u7:q'`Tq?\z`ΫN=է-,LYkzrUW?O{U/~}{_YwukL3]yCZ/\Zb-yHo&1jgdCWbb^i_~x~-34Sϯvl9jh7߬LFmT{ =ܲ曗%XNvsBz?ܳ_[<z..袽 69C˂ .XvyQ1ؿʺf_k7uvۭG?*K/t~G7;:nǹ[n{__mV _B]̾O||馛ʷ{GyW \}c"n֢LK-ܲ׿3<S;ro>(1ʵNʒN=.#H12ڦw_^~ӟƊ|ʇ??^{3P,|K^qOK-Ty{[kVꫯo׆΃N;r7sg|y:R;uLG}tin'n>.kOؘwzuѽk"$V"fy֯UW]ue29O[eyigxMY\O<Ğ|ڶ^g[mjIM&(iodh#uEKn=묳 <jw}wP}:*2wa}٧\wuK_R=/9r'yP+r#{.b.*sOO{o7Q{/,\W{c:?<Cm?#:&B"CPqL珏VV;{f\ Z+cLkY:r 7UȶkB~bKB BX/\W 7rxݾzXKq>C. eLygEfmjy,(&k׫/cuN,/#嫯ձW+[G{eMK.dPұ~19VlfVZ YiX.mBs\av FfxI>{rLVUz9s4}V&6I:1*m~ ύ7޸ t ],=X .YXO UN:<M4XvBL[òƻvƱmk:1;c4|Uv:y1 B1a-R-6hq>|z}{߫ۿ[-wc_icwI?OkrGǞ0X~[WG{w # k^[b9[eUjڡ9昣Z2]n}wRN;F,B $N|k;3; 5GK9 Jgy+kFv׋%4L\@8㌺K]]}_ZrڅMY.NbdMj&6t-..6&G>Ԓk_Z -Lfad"lIn"+Q%u"",ǐUDN$quTM&&.-"k\Wz Lwj?d]_qW:f1RMu&TqX-ʾW\RFO= E}"L]pUɎe]~$0eL$<*YugE<2MMlqjn%K?j{~UuQ2|?ncI8'|">X\Oeg>PY>O=أ{w]='p&tK'?t5n9k1W a;ǘ8>ġ>8?]/>uNMp97A=yL<3%f~?IwҪv [N-eYJ.땬@Ȝp ױ_4Fl3!sqsݙ}r8*/~$ KKemsje.g}vXu꓉h%dB'LH7~lvn]w-j,$ae$T|㝨b2pb v.>$ODdj&j& B(#VXEۮg?VY c-uNH&f?*%O\5 Hh?ja!ru[x|Rgۘh/aOwcڋ󃈸"Kqsk.ncJU4iE.@OicXԱ;w‡EHwj]#Vm'Ğ97mG<#ښq.9_rWZ\X!/ ve8KPR0GlV5 Ԯm7pw,m6홸9yw&U+v=T+]R.~rUmrth2z+TFJ+%nD@W6w)[wK09ђ풁= %kqŵmlûXuX'dGlCD$X&rMҭ."ec|ѬLU̻ ,\oyźV71At$lbc#B}&и;8 kxɹno|0&V"A;݁-4bXJ\l,yw&l=΁v FOŸ n0疳M""jKxp)*Y#1Z C"T?Tz]c3V-r?V(.di5׬5wuPfN?T06}q6=B`TnKG۷/ܲ/Wć EEdFIEA.H{2uHυ_.K.&+KmRJu,~AO:$):ڱYbL큒&$SPMAk瘴m1rIaBYqi)St;M7ݴN#~ vvls'>j]BdM,4i"+m7ד ˠ+K&{?Xzg=] ?ca %G ٞN7{-9Ymc`#}f2),;_ג]kY< IDAT:u?t.Ef6)ʼnu&4;v3Rkv!c' |h-?t\;|vm48E̅d<ߙwՒq&!Bʅ] ZnAݎ|g01ԭ<._Жx0@4Y>f&{;:u0عNl ctݬ[,Zb7\)z;mm&hck<S9JLYQct&]1R\C8Ŋ]U ktfy ۤ=^8L>k1xqd=X);u~w,]u)G'$\AbF/S=3 +뇤V~wj ZbA%w&]QR? :'su}{;'z&Aa!\LX&)Yte1h)->,2d71p0{F|LC& ‡@|}v\;c\9 7kFy~is EDʊbb 8ZXsչ}67ac<QsnuL Fq$ ޒCopp0Kq.t&(D.F9(G7"KIM6F/+wK ބvt޸t3g mƠ BsF0r-5~'8u ,cPvqCf Vĵo +PY@B>7p's"inCgIg^}˝uiyiۘ7vy?zmT+_.hTx Z/qiBra3صMȒ΅3ftqw >+GgM~EgevZ'Յ^,6Q2r!I>ھ:6qgz5~GGIs'X,qvv#7=k@?&?–ٸ%mrL&tLj~ pݝxZ2!<m6~,XMdgwlWUg|}zUGۍ1"¸J!&X*?(fcߎU&gZK=*zNTBJ!XNvfqhlq6&}&,爀wh1fAn,c jeS[/J]sc;L!0I LVo$mU& _b\l\\twg ԅڅJ<.`M܈p4л Ĺ\h$N9.:~ 8 Lz`4)"n54ʥ\(w&[_=.0gv1NB/u+>Wm┯~m[[Y8 6cmR;g{w[аϋSc}lS@3˃ö߾XyC,8 We95ɲ^f8W]_?p0'Aխ~Qyt3_R'۶(!xַ{YFgy/"D<&,z[yD^n P8SwQ6b=ܩR^Lo՛xt?"u6mn>9:'[[-m{zVWC 0z j}!or!ĩHJ.^~eoB+/ aĕc Qb;X[ _&uۉ%vI5/_wqz!8.XB}RKX&2*c9,NsB|[_X1 c/{B6u6ƮY߾,iwnp Ģmv.֎ԝzd|bZ; 6DDQ-_{m!k֙V*)0kǏ#%yƖ\1ǸkJwMēx-of<jR֎.clqy4 66pqBؙi1d/cJE ,gutqWH&jlEŽrKxqmY" 5E[oB߉ KCx> pNUqmYE@]~wUjy&N ))B` ְX(_E` VE!!!0E`M"Ɣ!!!Î@ְ҉!UbB B B`$0-$k$WAݖ.L @>ni7`E&JI&5˝\;} LGnBcX0߹#|L7E`#XdsB B B`d͘ĕG` ׳ d5ЧJ kl!!!0Lqgt$@?\9_!UNk>"qV4ny/ѭ/[^1#hmnenEq+ŋ;kID1i[ǣ(#~6obvxOhO >j+{l>:sKtUWvX'q:Z{+8?[K;ʐs=~ƥ6yL{4εV>siXt5m^ms8^>yΣLym__IE@no,a_cxh1vζ}_o'Ov{(u<9pc#1%+kVSώEc*+B`?0C8 pw(Ʌ]d=,ۅEs 7JyL/YޝGUUw/yH&1 2( pRJBtEUgmV+T2R (S!e  $I^!;x<4`^ސ}z~a9w^B~B;EN?Dh_.*}1 rqH^1cV坑^;swLyQ1;Kfux]駟ތ 7oF4+%?׿&GpZޝC1IoK>2!)K?/=CZI^Do4IKܽK9M87 1F]Y8zI5G9n2)~s]?*(:z=~?]veË; {|GpD~ċ<oo/V7oCYw"+t]_3Yp3^ #}YxQN^{mGx|EYo9zФmrpL^{m,Xd8c[ ;ڂ@"52g~Y}^E/Cgs(s]q/f cN^Wf xyg2򝟋-jem2%@cg3GnCՏxz}l>/@ //Üu] {fgਣP=뮻6)ȡ03n) 3 3w\C Y`x>k7!CdЗLtzplL>sd$"%Ќ;Y#4s+9sh|Ӊ'I8JzjKȕ#3wmF&69MK"I'GNÑVtGRy0EP(&/[խ]"Z{9;ܮs._&r˄D >dҖ ,$G@z7؈|Cw .aBw}KG튌1Ns\]?aliILc5![niP?Gboơ{Cj\3~遐c}FVg|ȋս -vN`G8oL!lO=vDVW֮N}hR<0Q)zE&y cK†ʚ}C^Cbm{''{/+!Pk8TF#pXtivi͐_s5Ƒs ̎E1r6-R#1}fNG)1/TuIbapE Rsh:iA_r%9}[email protected]$F=)af[;Y8zKH#."+ Po+'981+n$cTv8JNF#1 A#]-~6BvE7aisTPK(SݮsF2ySX9y1tg6]d$LI'Ԝ 'М<3qMѤ$ԞuY(崑t} ~:ɍ|v͟>2s^!ǯo]?K]wբH ,ky2!Ǝ1c`!fLK"g2FET:G=܈ٕ7EJ6c//Q`*fKIdѹ#<(?IyQ~A!Ns8f& #6 Is?%DKY\"XáR6K!eEwkg9F4e HK#` b-at&#<3ry=?# l&T}Ce7_]"|盄0ə#mhD(tW_}uӯMF=8M铎U&2WD wN?ɲd:=%+?pC1}`*@o+SΓst?2 yS'l_ۢq,tH $xAE|e0qn٦#y2H~$ç:|ZpH"v/C?Gze]֜=2A ƁthNU):Áf">'zg2uYƂ:L"/2e(^E:ܯƘqAڵ4mr<Ƃ{YBBȔ㻳}hB@F툈GIT7MaGQ3a䆅3 =o7]6(IUW]R^Lpv$#pK.ԿB`=Ej(bЬQB)1sRϖ*21rJۻ¹p cʼn,0\Y`9.q`I\'/wی>#m9)bq$?y8.DEY|Eg$<D8uK@8Bmlp 8$K0+<3x!^h3dQN$DcXe_(bX3!P3}8&}Dz=H GK.m:$I]Mt?ϾRdAnDaDK}Wf0Fn23↨i[-\%mT!2"tkcWk1u˸- D&$8# 0SI_l۟ƾ觲0 mV6Y2=mxFc9p g!,#}̤ 1JZZu^xad ,D9ƅH$%X)f aO[s[.Eܾ$3B BF1 C=FJ2+^47Kfg4 `8 Aed%v#?mK#mS:CL6˧# xtI9d 7qNo lfܙ_ 2H套^ڈ.h%7D8*fD;` 3q}>D>1&89N P:/:|8O$>z8y8NZ[ !ٳ(.NTu&#Ky3}kE-!粞|";-JCOM&Y bh"2sN;epՉ\u {Lwԗ B/}")2G$&}膄G!~qm#]%%n6=c u^T7V?r8JHv9zF\p٣%ҭz{wXr,w $UU9ЏuꖱfhXl  uugt2>2ke-!aΤ>34Җ1Lv9t 2?uglj!+!eD@qI;fۈ1"N?ewHɛ2\9LtG4>COG%$I&<y,,I9$K1IÉ*%Y"~d+zKY[}  6&_'Ҿ_GwRvryj_4 $+ u$q)"x#drI^?٘u>} YA&QGI R>eSB^13Er%tY":K/eoH=|l2'{Muʜ򱲢r9k$C!uY1ѽD }wry ?c]T.9fi:υ@Ej b01Lf{8379{u1e-%0TffY&+l&^ bmt=[s`mn6g0E ̀-'$62p&dcs\ <Gsܜ " _,_eَ2Фa3vX20Gʉ) p^g:"zpx"H98!YI +}aS q, fȖrZ)d}dsr}l#gjߓv%?\}ItQntQ^cQF=|D^ʔ5]əI;u&e3q\9_ >˛ ׉qg)R1]z,C;نk5~ x1%{?2!HorHqEƉ`~0QBxLwymy~>C3%!r?+ _`&y5Ft2>spLM6X=e|V*CpԹBA㬐#miO'eS^$ _Bs$B>c XBsaL<"uq =2hS.p3̈k>NzKaXJ;ܙ3H)X~8 F"/MGrŽCT6$}@7 WyˆkwGG*us9I;. K~3# \I $9#h;R!pߖpgC81dNgLtLCŒ5Ğ8mm//>tT9cg B#qEue"6OFKd66'~EB0ȁ%8m#6#Q'+j*rhI'|r?xl1@Fx40?&6"ڗu3BI\'|6OD)8\ce2Wf&g|U*CpԹFqDu a=sI4<183f2 <;p 8J_yx!p6is"a DdRsz':'qeb ptXؙɡu&1c9q$<&G 1A,!Ô [m~$ ǛGGO N&ms_(:I&Nɞ#d9s2>'1-C[;V_j3(cs r+c~եx+ ćC&ЦhL'I&;s]tDD?0/Sߍ{HkHL6Dlo2@BLƓteڼ'ܛ\\sjפ3,n<9zˣIK>x=-9x4Do#zl%xDYrLs,`' J \3阿 5e88F,y5@3SJpt T*~D:D%!ۘۘ:z;ge~e#GljMy^}Ka1TơwJq~@)t?8fug IDATY6wD1 Q4s9tFs9T7l~)py_,31}}Kygi8nDLdkOɬ{8Kk\ңD# :ϿT=u~D֖Tk LB(&:54>.^E^^( B( ߉ƭj*C!P@!P@"P+c!P@!P"XȪ( B( DV"QB( B(6E6UM!P@!P@D@!P@!Pl"`m" B( B("XD B( BDD@V5@!P@!P$E:@!P@!(j B( BH`%u, B( B`!PkY@!P@!J$X@!P&B&) B( B u,^)bgc՚u]Q*71uaۙ1sQ- Bhh=w~X"VY7UL29v;+= wVs@!PX4<'>o1cƌ4i|8z{{csGȃW-@!PLhƧG]2~mVf[r>}FN_X?~:$- B2>1m iSOϭPR@!PY`ٮۂTzƶ/C:5}702JUB( Bz1&uf#@j.nP>@!PEFj( B(&6E&vv@!P@!0 Ы eC= B( @=ht,$Iݬ|eou}1#&uuŔPiݓbkfbޘ<vPmACT- B`L#PkLwo ww^8ckf(kc+?րXןWE^=kj\|!įWy_aYY&L~19u, B(F "X#l;,(R9}r̙="B1?fN{Ɖ#mom?zw8/fL_?K{z=^9zx7&bY._?z`DzİB( @'V\{ہ;v~UD`j^i8+<sg=Vq1{c`p0V:Wo0eD,)d_]?^Fؚb@!Pc"Xc/&$(͘bm7}?νiZie>-E^==G.7;>y=ѳz](o'/j$k(r5V)XD6N"!J6we~W݇b)ھՓ+%+QjjϒK{}&5q;ăOy&>e`8ͻ~{3g7皨^@!Pc`~R!J|re칦 M\eZXOɞgw6?|-lK3L+{[~w[M}`f{\B( B`d[A3O/~_ysjXז5nsfřo=69>}!\H{Ukbmg?Xv uϓqQLJc^!bB( B`Dֈ[w"ࡠM|>;/z>sUk۹M5}Ū5}mygKn=vmدi{`W(؆NYs!P@!0It"?~nm8l9qK#g9㇏Ƣˈ/Y'M0 uoO}߹ֽWpςZT/z @!Pljp\DDxgプ nZl+m;n7#&MFl[s~  T-Y cIOpː* B( ͍@E67[x{:_ sbrWW;'S,[5KVitN?biS{ڒ%<4O_3kv:ۯυ@!PH Pk$P:ECAE]-n>?~p~?ڻ7]-k[y2v;3wxV~Iw>Ǽa^nGTv#OǺz=R' B(F "X#lb׾ff{NmJ}ڦsz]{[<`W?y񷧼+Ͼmw?~--w?/N>t8-ub9L!P@!0t zHBe"`ԜcQOĔ)S6YXXz] Y.Y~c*3gY٤׀6XZYgL펽wOVaۙSe, B("PE,OkGWO-Yj]w=N~35m䶏Gnuo,QB( -"X[\ݓlvGMvy|CU( B- n!P@!PLX`Mخ- B( B`(5ZW@!P@!0a(5a+ B( Bh!?۵|6cdzZi1Y( B`(5}0n%8F_XOׁzs}6[M}R@!P 1 cƥ'{ҸG"&OI<`Cw{U\p1}Q( B`t'.<߻8[c0>5޴8=b^~+ B=T@!PC`;KB( B؂(uvZ@!P"Xj( B( `mA]@!PAZ) B( -3 McIENDB`
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-biz/src/main/java/com/ctrip/framework/apollo/biz/repository/ReleaseHistoryRepository.java
package com.ctrip.framework.apollo.biz.repository; import com.ctrip.framework.apollo.biz.entity.ReleaseHistory; import java.util.Set; import org.springframework.data.domain.Page; import org.springframework.data.domain.Pageable; import org.springframework.data.jpa.repository.Modifying; import org.springframework.data.jpa.repository.Query; import org.springframework.data.repository.PagingAndSortingRepository; /** * @author Jason Song([email protected]) */ public interface ReleaseHistoryRepository extends PagingAndSortingRepository<ReleaseHistory, Long> { Page<ReleaseHistory> findByAppIdAndClusterNameAndNamespaceNameOrderByIdDesc(String appId, String clusterName, String namespaceName, Pageable pageable); Page<ReleaseHistory> findByReleaseIdAndOperationOrderByIdDesc(long releaseId, int operation, Pageable pageable); Page<ReleaseHistory> findByPreviousReleaseIdAndOperationOrderByIdDesc(long previousReleaseId, int operation, Pageable pageable); Page<ReleaseHistory> findByReleaseIdAndOperationInOrderByIdDesc(long releaseId, Set<Integer> operations, Pageable pageable); @Modifying @Query("update ReleaseHistory set isdeleted=1,DataChange_LastModifiedBy = ?4 where appId=?1 and clusterName=?2 and namespaceName = ?3") int batchDelete(String appId, String clusterName, String namespaceName, String operator); }
package com.ctrip.framework.apollo.biz.repository; import com.ctrip.framework.apollo.biz.entity.ReleaseHistory; import java.util.Set; import org.springframework.data.domain.Page; import org.springframework.data.domain.Pageable; import org.springframework.data.jpa.repository.Modifying; import org.springframework.data.jpa.repository.Query; import org.springframework.data.repository.PagingAndSortingRepository; /** * @author Jason Song([email protected]) */ public interface ReleaseHistoryRepository extends PagingAndSortingRepository<ReleaseHistory, Long> { Page<ReleaseHistory> findByAppIdAndClusterNameAndNamespaceNameOrderByIdDesc(String appId, String clusterName, String namespaceName, Pageable pageable); Page<ReleaseHistory> findByReleaseIdAndOperationOrderByIdDesc(long releaseId, int operation, Pageable pageable); Page<ReleaseHistory> findByPreviousReleaseIdAndOperationOrderByIdDesc(long previousReleaseId, int operation, Pageable pageable); Page<ReleaseHistory> findByReleaseIdAndOperationInOrderByIdDesc(long releaseId, Set<Integer> operations, Pageable pageable); @Modifying @Query("update ReleaseHistory set isdeleted=1,DataChange_LastModifiedBy = ?4 where appId=?1 and clusterName=?2 and namespaceName = ?3") int batchDelete(String appId, String clusterName, String namespaceName, String operator); }
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-biz/src/test/java/com/ctrip/framework/apollo/biz/repository/InstanceConfigRepositoryTest.java
package com.ctrip.framework.apollo.biz.repository; import com.ctrip.framework.apollo.biz.AbstractIntegrationTest; import com.ctrip.framework.apollo.biz.entity.Instance; import com.ctrip.framework.apollo.biz.entity.InstanceConfig; import java.util.Date; import org.junit.Test; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.data.domain.Page; import org.springframework.data.domain.PageRequest; import org.springframework.test.annotation.Rollback; import static org.hamcrest.Matchers.hasSize; import static org.junit.Assert.assertThat; /** * Created by kezhenxu94 at 2019/1/18 15:33. * * @author kezhenxu94 (kezhenxu94 at 163 dot com) */ public class InstanceConfigRepositoryTest extends AbstractIntegrationTest { @Autowired private InstanceConfigRepository instanceConfigRepository; @Autowired private InstanceRepository instanceRepository; @Rollback @Test public void shouldPaginated() { for (int i = 0; i < 25; i++) { Instance instance = new Instance(); instance.setAppId("appId"); instanceRepository.save(instance); final InstanceConfig instanceConfig = new InstanceConfig(); instanceConfig.setConfigAppId("appId"); instanceConfig.setInstanceId(instance.getId()); instanceConfig.setConfigClusterName("cluster"); instanceConfig.setConfigNamespaceName("namespace"); instanceConfigRepository.save(instanceConfig); } Page<Object> ids = instanceConfigRepository.findInstanceIdsByNamespaceAndInstanceAppId( "appId", "appId", "cluster", "namespace", new Date(0), PageRequest.of(0, 10) ); assertThat(ids.getContent(), hasSize(10)); ids = instanceConfigRepository.findInstanceIdsByNamespaceAndInstanceAppId( "appId", "appId", "cluster", "namespace", new Date(0), PageRequest.of(1, 10) ); assertThat(ids.getContent(), hasSize(10)); ids = instanceConfigRepository.findInstanceIdsByNamespaceAndInstanceAppId( "appId", "appId", "cluster", "namespace", new Date(0), PageRequest.of(2, 10) ); assertThat(ids.getContent(), hasSize(5)); } }
package com.ctrip.framework.apollo.biz.repository; import com.ctrip.framework.apollo.biz.AbstractIntegrationTest; import com.ctrip.framework.apollo.biz.entity.Instance; import com.ctrip.framework.apollo.biz.entity.InstanceConfig; import java.util.Date; import org.junit.Test; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.data.domain.Page; import org.springframework.data.domain.PageRequest; import org.springframework.test.annotation.Rollback; import static org.hamcrest.Matchers.hasSize; import static org.junit.Assert.assertThat; /** * Created by kezhenxu94 at 2019/1/18 15:33. * * @author kezhenxu94 (kezhenxu94 at 163 dot com) */ public class InstanceConfigRepositoryTest extends AbstractIntegrationTest { @Autowired private InstanceConfigRepository instanceConfigRepository; @Autowired private InstanceRepository instanceRepository; @Rollback @Test public void shouldPaginated() { for (int i = 0; i < 25; i++) { Instance instance = new Instance(); instance.setAppId("appId"); instanceRepository.save(instance); final InstanceConfig instanceConfig = new InstanceConfig(); instanceConfig.setConfigAppId("appId"); instanceConfig.setInstanceId(instance.getId()); instanceConfig.setConfigClusterName("cluster"); instanceConfig.setConfigNamespaceName("namespace"); instanceConfigRepository.save(instanceConfig); } Page<Object> ids = instanceConfigRepository.findInstanceIdsByNamespaceAndInstanceAppId( "appId", "appId", "cluster", "namespace", new Date(0), PageRequest.of(0, 10) ); assertThat(ids.getContent(), hasSize(10)); ids = instanceConfigRepository.findInstanceIdsByNamespaceAndInstanceAppId( "appId", "appId", "cluster", "namespace", new Date(0), PageRequest.of(1, 10) ); assertThat(ids.getContent(), hasSize(10)); ids = instanceConfigRepository.findInstanceIdsByNamespaceAndInstanceAppId( "appId", "appId", "cluster", "namespace", new Date(0), PageRequest.of(2, 10) ); assertThat(ids.getContent(), hasSize(5)); } }
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-portal/src/main/java/com/ctrip/framework/apollo/portal/entity/bo/ReleaseHistoryBO.java
package com.ctrip.framework.apollo.portal.entity.bo; import com.ctrip.framework.apollo.common.entity.EntityPair; import java.util.Date; import java.util.List; import java.util.Map; public class ReleaseHistoryBO { private long id; private String appId; private String clusterName; private String namespaceName; private String branchName; private String operator; private long releaseId; private String releaseTitle; private String releaseComment; private Date releaseTime; private String releaseTimeFormatted; private List<EntityPair<String>> configuration; private boolean isReleaseAbandoned; private long previousReleaseId; private int operation; private Map<String, Object> operationContext; public long getId() { return id; } public void setId(long id) { this.id = id; } public String getAppId() { return appId; } public void setAppId(String appId) { this.appId = appId; } public String getClusterName() { return clusterName; } public void setClusterName(String clusterName) { this.clusterName = clusterName; } public String getNamespaceName() { return namespaceName; } public void setNamespaceName(String namespaceName) { this.namespaceName = namespaceName; } public String getBranchName() { return branchName; } public void setBranchName(String branchName) { this.branchName = branchName; } public long getReleaseId() { return releaseId; } public void setReleaseId(long releaseId) { this.releaseId = releaseId; } public long getPreviousReleaseId() { return previousReleaseId; } public void setPreviousReleaseId(long previousReleaseId) { this.previousReleaseId = previousReleaseId; } public int getOperation() { return operation; } public void setOperation(int operation) { this.operation = operation; } public Map<String, Object> getOperationContext() { return operationContext; } public void setOperationContext(Map<String, Object> operationContext) { this.operationContext = operationContext; } public String getOperator() { return operator; } public void setOperator(String operator) { this.operator = operator; } public String getReleaseTitle() { return releaseTitle; } public void setReleaseTitle(String releaseTitle) { this.releaseTitle = releaseTitle; } public String getReleaseComment() { return releaseComment; } public void setReleaseComment(String releaseComment) { this.releaseComment = releaseComment; } public Date getReleaseTime() { return releaseTime; } public void setReleaseTime(Date releaseTime) { this.releaseTime = releaseTime; } public String getReleaseTimeFormatted() { return releaseTimeFormatted; } public void setReleaseTimeFormatted(String releaseTimeFormatted) { this.releaseTimeFormatted = releaseTimeFormatted; } public List<EntityPair<String>> getConfiguration() { return configuration; } public void setConfiguration( List<EntityPair<String>> configuration) { this.configuration = configuration; } public boolean isReleaseAbandoned() { return isReleaseAbandoned; } public void setReleaseAbandoned(boolean releaseAbandoned) { isReleaseAbandoned = releaseAbandoned; } }
package com.ctrip.framework.apollo.portal.entity.bo; import com.ctrip.framework.apollo.common.entity.EntityPair; import java.util.Date; import java.util.List; import java.util.Map; public class ReleaseHistoryBO { private long id; private String appId; private String clusterName; private String namespaceName; private String branchName; private String operator; private long releaseId; private String releaseTitle; private String releaseComment; private Date releaseTime; private String releaseTimeFormatted; private List<EntityPair<String>> configuration; private boolean isReleaseAbandoned; private long previousReleaseId; private int operation; private Map<String, Object> operationContext; public long getId() { return id; } public void setId(long id) { this.id = id; } public String getAppId() { return appId; } public void setAppId(String appId) { this.appId = appId; } public String getClusterName() { return clusterName; } public void setClusterName(String clusterName) { this.clusterName = clusterName; } public String getNamespaceName() { return namespaceName; } public void setNamespaceName(String namespaceName) { this.namespaceName = namespaceName; } public String getBranchName() { return branchName; } public void setBranchName(String branchName) { this.branchName = branchName; } public long getReleaseId() { return releaseId; } public void setReleaseId(long releaseId) { this.releaseId = releaseId; } public long getPreviousReleaseId() { return previousReleaseId; } public void setPreviousReleaseId(long previousReleaseId) { this.previousReleaseId = previousReleaseId; } public int getOperation() { return operation; } public void setOperation(int operation) { this.operation = operation; } public Map<String, Object> getOperationContext() { return operationContext; } public void setOperationContext(Map<String, Object> operationContext) { this.operationContext = operationContext; } public String getOperator() { return operator; } public void setOperator(String operator) { this.operator = operator; } public String getReleaseTitle() { return releaseTitle; } public void setReleaseTitle(String releaseTitle) { this.releaseTitle = releaseTitle; } public String getReleaseComment() { return releaseComment; } public void setReleaseComment(String releaseComment) { this.releaseComment = releaseComment; } public Date getReleaseTime() { return releaseTime; } public void setReleaseTime(Date releaseTime) { this.releaseTime = releaseTime; } public String getReleaseTimeFormatted() { return releaseTimeFormatted; } public void setReleaseTimeFormatted(String releaseTimeFormatted) { this.releaseTimeFormatted = releaseTimeFormatted; } public List<EntityPair<String>> getConfiguration() { return configuration; } public void setConfiguration( List<EntityPair<String>> configuration) { this.configuration = configuration; } public boolean isReleaseAbandoned() { return isReleaseAbandoned; } public void setReleaseAbandoned(boolean releaseAbandoned) { isReleaseAbandoned = releaseAbandoned; } }
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-biz/src/test/resources/data.sql
INSERT INTO AppNamespace (AppId, Name, IsPublic) VALUES ('100003171', 'application', false); INSERT INTO AppNamespace (AppId, Name, IsPublic) VALUES ('100003171', 'fx.apollo.config', true); INSERT INTO AppNamespace (AppId, Name, IsPublic) VALUES ('100003172', 'application', false); INSERT INTO AppNamespace (AppId, Name, IsPublic) VALUES ('100003172', 'fx.apollo.admin', true); INSERT INTO AppNamespace (AppId, Name, IsPublic) VALUES ('100003173', 'application', false); INSERT INTO AppNamespace (AppId, Name, IsPublic) VALUES ('100003173', 'fx.apollo.portal', true); INSERT INTO AppNamespace (AppID, Name, IsPublic) VALUES ('fxhermesproducer', 'fx.hermes.producer', true);
INSERT INTO AppNamespace (AppId, Name, IsPublic) VALUES ('100003171', 'application', false); INSERT INTO AppNamespace (AppId, Name, IsPublic) VALUES ('100003171', 'fx.apollo.config', true); INSERT INTO AppNamespace (AppId, Name, IsPublic) VALUES ('100003172', 'application', false); INSERT INTO AppNamespace (AppId, Name, IsPublic) VALUES ('100003172', 'fx.apollo.admin', true); INSERT INTO AppNamespace (AppId, Name, IsPublic) VALUES ('100003173', 'application', false); INSERT INTO AppNamespace (AppId, Name, IsPublic) VALUES ('100003173', 'fx.apollo.portal', true); INSERT INTO AppNamespace (AppID, Name, IsPublic) VALUES ('fxhermesproducer', 'fx.hermes.producer', true);
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-portal/src/main/resources/static/vendor/ui-ace/ace.js
(function(){function o(n){var i=e;n&&(e[n]||(e[n]={}),i=e[n]);if(!i.define||!i.define.packaged)t.original=i.define,i.define=t,i.define.packaged=!0;if(!i.require||!i.require.packaged)r.original=i.require,i.require=r,i.require.packaged=!0}var ACE_NAMESPACE="",e=function(){return this}();!e&&typeof window!="undefined"&&(e=window);if(!ACE_NAMESPACE&&typeof requirejs!="undefined")return;var t=function(e,n,r){if(typeof e!="string"){t.original?t.original.apply(this,arguments):(console.error("dropping module because define wasn't a string."),console.trace());return}arguments.length==2&&(r=n),t.modules[e]||(t.payloads[e]=r,t.modules[e]=null)};t.modules={},t.payloads={};var n=function(e,t,n){if(typeof t=="string"){var i=s(e,t);if(i!=undefined)return n&&n(),i}else if(Object.prototype.toString.call(t)==="[object Array]"){var o=[];for(var u=0,a=t.length;u<a;++u){var f=s(e,t[u]);if(f==undefined&&r.original)return;o.push(f)}return n&&n.apply(null,o)||!0}},r=function(e,t){var i=n("",e,t);return i==undefined&&r.original?r.original.apply(this,arguments):i},i=function(e,t){if(t.indexOf("!")!==-1){var n=t.split("!");return i(e,n[0])+"!"+i(e,n[1])}if(t.charAt(0)=="."){var r=e.split("/").slice(0,-1).join("/");t=r+"/"+t;while(t.indexOf(".")!==-1&&s!=t){var s=t;t=t.replace(/\/\.\//,"/").replace(/[^\/]+\/\.\.\//,"")}}return t},s=function(e,r){r=i(e,r);var s=t.modules[r];if(!s){s=t.payloads[r];if(typeof s=="function"){var o={},u={id:r,uri:"",exports:o,packaged:!0},a=function(e,t){return n(r,e,t)},f=s(a,o,u);o=f||u.exports,t.modules[r]=o,delete t.payloads[r]}s=t.modules[r]=o||s}return s};o(ACE_NAMESPACE)})(),define("ace/lib/regexp",["require","exports","module"],function(e,t,n){"use strict";function o(e){return(e.global?"g":"")+(e.ignoreCase?"i":"")+(e.multiline?"m":"")+(e.extended?"x":"")+(e.sticky?"y":"")}function u(e,t,n){if(Array.prototype.indexOf)return e.indexOf(t,n);for(var r=n||0;r<e.length;r++)if(e[r]===t)return r;return-1}var r={exec:RegExp.prototype.exec,test:RegExp.prototype.test,match:String.prototype.match,replace:String.prototype.replace,split:String.prototype.split},i=r.exec.call(/()??/,"")[1]===undefined,s=function(){var e=/^/g;return r.test.call(e,""),!e.lastIndex}();if(s&&i)return;RegExp.prototype.exec=function(e){var t=r.exec.apply(this,arguments),n,a;if(typeof e=="string"&&t){!i&&t.length>1&&u(t,"")>-1&&(a=RegExp(this.source,r.replace.call(o(this),"g","")),r.replace.call(e.slice(t.index),a,function(){for(var e=1;e<arguments.length-2;e++)arguments[e]===undefined&&(t[e]=undefined)}));if(this._xregexp&&this._xregexp.captureNames)for(var f=1;f<t.length;f++)n=this._xregexp.captureNames[f-1],n&&(t[n]=t[f]);!s&&this.global&&!t[0].length&&this.lastIndex>t.index&&this.lastIndex--}return t},s||(RegExp.prototype.test=function(e){var t=r.exec.call(this,e);return t&&this.global&&!t[0].length&&this.lastIndex>t.index&&this.lastIndex--,!!t})}),define("ace/lib/es5-shim",["require","exports","module"],function(e,t,n){function r(){}function w(e){try{return Object.defineProperty(e,"sentinel",{}),"sentinel"in e}catch(t){}}function H(e){return e=+e,e!==e?e=0:e!==0&&e!==1/0&&e!==-1/0&&(e=(e>0||-1)*Math.floor(Math.abs(e))),e}function B(e){var t=typeof e;return e===null||t==="undefined"||t==="boolean"||t==="number"||t==="string"}function j(e){var t,n,r;if(B(e))return e;n=e.valueOf;if(typeof n=="function"){t=n.call(e);if(B(t))return t}r=e.toString;if(typeof r=="function"){t=r.call(e);if(B(t))return t}throw new TypeError}Function.prototype.bind||(Function.prototype.bind=function(t){var n=this;if(typeof n!="function")throw new TypeError("Function.prototype.bind called on incompatible "+n);var i=u.call(arguments,1),s=function(){if(this instanceof s){var e=n.apply(this,i.concat(u.call(arguments)));return Object(e)===e?e:this}return n.apply(t,i.concat(u.call(arguments)))};return n.prototype&&(r.prototype=n.prototype,s.prototype=new r,r.prototype=null),s});var i=Function.prototype.call,s=Array.prototype,o=Object.prototype,u=s.slice,a=i.bind(o.toString),f=i.bind(o.hasOwnProperty),l,c,h,p,d;if(d=f(o,"__defineGetter__"))l=i.bind(o.__defineGetter__),c=i.bind(o.__defineSetter__),h=i.bind(o.__lookupGetter__),p=i.bind(o.__lookupSetter__);if([1,2].splice(0).length!=2)if(!function(){function e(e){var t=new Array(e+2);return t[0]=t[1]=0,t}var t=[],n;t.splice.apply(t,e(20)),t.splice.apply(t,e(26)),n=t.length,t.splice(5,0,"XXX"),n+1==t.length;if(n+1==t.length)return!0}())Array.prototype.splice=function(e,t){var n=this.length;e>0?e>n&&(e=n):e==void 0?e=0:e<0&&(e=Math.max(n+e,0)),e+t<n||(t=n-e);var r=this.slice(e,e+t),i=u.call(arguments,2),s=i.length;if(e===n)s&&this.push.apply(this,i);else{var o=Math.min(t,n-e),a=e+o,f=a+s-o,l=n-a,c=n-o;if(f<a)for(var h=0;h<l;++h)this[f+h]=this[a+h];else if(f>a)for(h=l;h--;)this[f+h]=this[a+h];if(s&&e===c)this.length=c,this.push.apply(this,i);else{this.length=c+s;for(h=0;h<s;++h)this[e+h]=i[h]}}return r};else{var v=Array.prototype.splice;Array.prototype.splice=function(e,t){return arguments.length?v.apply(this,[e===void 0?0:e,t===void 0?this.length-e:t].concat(u.call(arguments,2))):[]}}Array.isArray||(Array.isArray=function(t){return a(t)=="[object Array]"});var m=Object("a"),g=m[0]!="a"||!(0 in m);Array.prototype.forEach||(Array.prototype.forEach=function(t){var n=F(this),r=g&&a(this)=="[object String]"?this.split(""):n,i=arguments[1],s=-1,o=r.length>>>0;if(a(t)!="[object Function]")throw new TypeError;while(++s<o)s in r&&t.call(i,r[s],s,n)}),Array.prototype.map||(Array.prototype.map=function(t){var n=F(this),r=g&&a(this)=="[object String]"?this.split(""):n,i=r.length>>>0,s=Array(i),o=arguments[1];if(a(t)!="[object Function]")throw new TypeError(t+" is not a function");for(var u=0;u<i;u++)u in r&&(s[u]=t.call(o,r[u],u,n));return s}),Array.prototype.filter||(Array.prototype.filter=function(t){var n=F(this),r=g&&a(this)=="[object String]"?this.split(""):n,i=r.length>>>0,s=[],o,u=arguments[1];if(a(t)!="[object Function]")throw new TypeError(t+" is not a function");for(var f=0;f<i;f++)f in r&&(o=r[f],t.call(u,o,f,n)&&s.push(o));return s}),Array.prototype.every||(Array.prototype.every=function(t){var n=F(this),r=g&&a(this)=="[object String]"?this.split(""):n,i=r.length>>>0,s=arguments[1];if(a(t)!="[object Function]")throw new TypeError(t+" is not a function");for(var o=0;o<i;o++)if(o in r&&!t.call(s,r[o],o,n))return!1;return!0}),Array.prototype.some||(Array.prototype.some=function(t){var n=F(this),r=g&&a(this)=="[object String]"?this.split(""):n,i=r.length>>>0,s=arguments[1];if(a(t)!="[object Function]")throw new TypeError(t+" is not a function");for(var o=0;o<i;o++)if(o in r&&t.call(s,r[o],o,n))return!0;return!1}),Array.prototype.reduce||(Array.prototype.reduce=function(t){var n=F(this),r=g&&a(this)=="[object String]"?this.split(""):n,i=r.length>>>0;if(a(t)!="[object Function]")throw new TypeError(t+" is not a function");if(!i&&arguments.length==1)throw new TypeError("reduce of empty array with no initial value");var s=0,o;if(arguments.length>=2)o=arguments[1];else do{if(s in r){o=r[s++];break}if(++s>=i)throw new TypeError("reduce of empty array with no initial value")}while(!0);for(;s<i;s++)s in r&&(o=t.call(void 0,o,r[s],s,n));return o}),Array.prototype.reduceRight||(Array.prototype.reduceRight=function(t){var n=F(this),r=g&&a(this)=="[object String]"?this.split(""):n,i=r.length>>>0;if(a(t)!="[object Function]")throw new TypeError(t+" is not a function");if(!i&&arguments.length==1)throw new TypeError("reduceRight of empty array with no initial value");var s,o=i-1;if(arguments.length>=2)s=arguments[1];else do{if(o in r){s=r[o--];break}if(--o<0)throw new TypeError("reduceRight of empty array with no initial value")}while(!0);do o in this&&(s=t.call(void 0,s,r[o],o,n));while(o--);return s});if(!Array.prototype.indexOf||[0,1].indexOf(1,2)!=-1)Array.prototype.indexOf=function(t){var n=g&&a(this)=="[object String]"?this.split(""):F(this),r=n.length>>>0;if(!r)return-1;var i=0;arguments.length>1&&(i=H(arguments[1])),i=i>=0?i:Math.max(0,r+i);for(;i<r;i++)if(i in n&&n[i]===t)return i;return-1};if(!Array.prototype.lastIndexOf||[0,1].lastIndexOf(0,-3)!=-1)Array.prototype.lastIndexOf=function(t){var n=g&&a(this)=="[object String]"?this.split(""):F(this),r=n.length>>>0;if(!r)return-1;var i=r-1;arguments.length>1&&(i=Math.min(i,H(arguments[1]))),i=i>=0?i:r-Math.abs(i);for(;i>=0;i--)if(i in n&&t===n[i])return i;return-1};Object.getPrototypeOf||(Object.getPrototypeOf=function(t){return t.__proto__||(t.constructor?t.constructor.prototype:o)});if(!Object.getOwnPropertyDescriptor){var y="Object.getOwnPropertyDescriptor called on a non-object: ";Object.getOwnPropertyDescriptor=function(t,n){if(typeof t!="object"&&typeof t!="function"||t===null)throw new TypeError(y+t);if(!f(t,n))return;var r,i,s;r={enumerable:!0,configurable:!0};if(d){var u=t.__proto__;t.__proto__=o;var i=h(t,n),s=p(t,n);t.__proto__=u;if(i||s)return i&&(r.get=i),s&&(r.set=s),r}return r.value=t[n],r}}Object.getOwnPropertyNames||(Object.getOwnPropertyNames=function(t){return Object.keys(t)});if(!Object.create){var b;Object.prototype.__proto__===null?b=function(){return{__proto__:null}}:b=function(){var e={};for(var t in e)e[t]=null;return e.constructor=e.hasOwnProperty=e.propertyIsEnumerable=e.isPrototypeOf=e.toLocaleString=e.toString=e.valueOf=e.__proto__=null,e},Object.create=function(t,n){var r;if(t===null)r=b();else{if(typeof t!="object")throw new TypeError("typeof prototype["+typeof t+"] != 'object'");var i=function(){};i.prototype=t,r=new i,r.__proto__=t}return n!==void 0&&Object.defineProperties(r,n),r}}if(Object.defineProperty){var E=w({}),S=typeof document=="undefined"||w(document.createElement("div"));if(!E||!S)var x=Object.defineProperty}if(!Object.defineProperty||x){var T="Property description must be an object: ",N="Object.defineProperty called on non-object: ",C="getters & setters can not be defined on this javascript engine";Object.defineProperty=function(t,n,r){if(typeof t!="object"&&typeof t!="function"||t===null)throw new TypeError(N+t);if(typeof r!="object"&&typeof r!="function"||r===null)throw new TypeError(T+r);if(x)try{return x.call(Object,t,n,r)}catch(i){}if(f(r,"value"))if(d&&(h(t,n)||p(t,n))){var s=t.__proto__;t.__proto__=o,delete t[n],t[n]=r.value,t.__proto__=s}else t[n]=r.value;else{if(!d)throw new TypeError(C);f(r,"get")&&l(t,n,r.get),f(r,"set")&&c(t,n,r.set)}return t}}Object.defineProperties||(Object.defineProperties=function(t,n){for(var r in n)f(n,r)&&Object.defineProperty(t,r,n[r]);return t}),Object.seal||(Object.seal=function(t){return t}),Object.freeze||(Object.freeze=function(t){return t});try{Object.freeze(function(){})}catch(k){Object.freeze=function(t){return function(n){return typeof n=="function"?n:t(n)}}(Object.freeze)}Object.preventExtensions||(Object.preventExtensions=function(t){return t}),Object.isSealed||(Object.isSealed=function(t){return!1}),Object.isFrozen||(Object.isFrozen=function(t){return!1}),Object.isExtensible||(Object.isExtensible=function(t){if(Object(t)===t)throw new TypeError;var n="";while(f(t,n))n+="?";t[n]=!0;var r=f(t,n);return delete t[n],r});if(!Object.keys){var L=!0,A=["toString","toLocaleString","valueOf","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","constructor"],O=A.length;for(var M in{toString:null})L=!1;Object.keys=function I(e){if(typeof e!="object"&&typeof e!="function"||e===null)throw new TypeError("Object.keys called on a non-object");var I=[];for(var t in e)f(e,t)&&I.push(t);if(L)for(var n=0,r=O;n<r;n++){var i=A[n];f(e,i)&&I.push(i)}return I}}Date.now||(Date.now=function(){return(new Date).getTime()});var _=" \n \f\r \u00a0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029\ufeff";if(!String.prototype.trim||_.trim()){_="["+_+"]";var D=new RegExp("^"+_+_+"*"),P=new RegExp(_+_+"*$");String.prototype.trim=function(){return String(this).replace(D,"").replace(P,"")}}var F=function(e){if(e==null)throw new TypeError("can't convert "+e+" to object");return Object(e)}}),define("ace/lib/fixoldbrowsers",["require","exports","module","ace/lib/regexp","ace/lib/es5-shim"],function(e,t,n){"use strict";e("./regexp"),e("./es5-shim")}),define("ace/lib/dom",["require","exports","module"],function(e,t,n){"use strict";var r="http://www.w3.org/1999/xhtml";t.getDocumentHead=function(e){return e||(e=document),e.head||e.getElementsByTagName("head")[0]||e.documentElement},t.createElement=function(e,t){return document.createElementNS?document.createElementNS(t||r,e):document.createElement(e)},t.hasCssClass=function(e,t){var n=(e.className+"").split(/\s+/g);return n.indexOf(t)!==-1},t.addCssClass=function(e,n){t.hasCssClass(e,n)||(e.className+=" "+n)},t.removeCssClass=function(e,t){var n=e.className.split(/\s+/g);for(;;){var r=n.indexOf(t);if(r==-1)break;n.splice(r,1)}e.className=n.join(" ")},t.toggleCssClass=function(e,t){var n=e.className.split(/\s+/g),r=!0;for(;;){var i=n.indexOf(t);if(i==-1)break;r=!1,n.splice(i,1)}return r&&n.push(t),e.className=n.join(" "),r},t.setCssClass=function(e,n,r){r?t.addCssClass(e,n):t.removeCssClass(e,n)},t.hasCssString=function(e,t){var n=0,r;t=t||document;if(t.createStyleSheet&&(r=t.styleSheets)){while(n<r.length)if(r[n++].owningElement.id===e)return!0}else if(r=t.getElementsByTagName("style"))while(n<r.length)if(r[n++].id===e)return!0;return!1},t.importCssString=function(n,r,i){i=i||document;if(r&&t.hasCssString(r,i))return null;var s;r&&(n+="\n/*# sourceURL=ace/css/"+r+" */"),i.createStyleSheet?(s=i.createStyleSheet(),s.cssText=n,r&&(s.owningElement.id=r)):(s=t.createElement("style"),s.appendChild(i.createTextNode(n)),r&&(s.id=r),t.getDocumentHead(i).appendChild(s))},t.importCssStylsheet=function(e,n){if(n.createStyleSheet)n.createStyleSheet(e);else{var r=t.createElement("link");r.rel="stylesheet",r.href=e,t.getDocumentHead(n).appendChild(r)}},t.getInnerWidth=function(e){return parseInt(t.computedStyle(e,"paddingLeft"),10)+parseInt(t.computedStyle(e,"paddingRight"),10)+e.clientWidth},t.getInnerHeight=function(e){return parseInt(t.computedStyle(e,"paddingTop"),10)+parseInt(t.computedStyle(e,"paddingBottom"),10)+e.clientHeight},t.scrollbarWidth=function(e){var n=t.createElement("ace_inner");n.style.width="100%",n.style.minWidth="0px",n.style.height="200px",n.style.display="block";var r=t.createElement("ace_outer"),i=r.style;i.position="absolute",i.left="-10000px",i.overflow="hidden",i.width="200px",i.minWidth="0px",i.height="150px",i.display="block",r.appendChild(n);var s=e.documentElement;s.appendChild(r);var o=n.offsetWidth;i.overflow="scroll";var u=n.offsetWidth;return o==u&&(u=r.clientWidth),s.removeChild(r),o-u};if(typeof document=="undefined"){t.importCssString=function(){};return}window.pageYOffset!==undefined?(t.getPageScrollTop=function(){return window.pageYOffset},t.getPageScrollLeft=function(){return window.pageXOffset}):(t.getPageScrollTop=function(){return document.body.scrollTop},t.getPageScrollLeft=function(){return document.body.scrollLeft}),window.getComputedStyle?t.computedStyle=function(e,t){return t?(window.getComputedStyle(e,"")||{})[t]||"":window.getComputedStyle(e,"")||{}}:t.computedStyle=function(e,t){return t?e.currentStyle[t]:e.currentStyle},t.setInnerHtml=function(e,t){var n=e.cloneNode(!1);return n.innerHTML=t,e.parentNode.replaceChild(n,e),n},"textContent"in document.documentElement?(t.setInnerText=function(e,t){e.textContent=t},t.getInnerText=function(e){return e.textContent}):(t.setInnerText=function(e,t){e.innerText=t},t.getInnerText=function(e){return e.innerText}),t.getParentWindow=function(e){return e.defaultView||e.parentWindow}}),define("ace/lib/oop",["require","exports","module"],function(e,t,n){"use strict";t.inherits=function(e,t){e.super_=t,e.prototype=Object.create(t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}})},t.mixin=function(e,t){for(var n in t)e[n]=t[n];return e},t.implement=function(e,n){t.mixin(e,n)}}),define("ace/lib/keys",["require","exports","module","ace/lib/fixoldbrowsers","ace/lib/oop"],function(e,t,n){"use strict";e("./fixoldbrowsers");var r=e("./oop"),i=function(){var e={MODIFIER_KEYS:{16:"Shift",17:"Ctrl",18:"Alt",224:"Meta"},KEY_MODS:{ctrl:1,alt:2,option:2,shift:4,"super":8,meta:8,command:8,cmd:8},FUNCTION_KEYS:{8:"Backspace",9:"Tab",13:"Return",19:"Pause",27:"Esc",32:"Space",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"Left",38:"Up",39:"Right",40:"Down",44:"Print",45:"Insert",46:"Delete",96:"Numpad0",97:"Numpad1",98:"Numpad2",99:"Numpad3",100:"Numpad4",101:"Numpad5",102:"Numpad6",103:"Numpad7",104:"Numpad8",105:"Numpad9","-13":"NumpadEnter",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"},PRINTABLE_KEYS:{32:" ",48:"0",49:"1",50:"2",51:"3",52:"4",53:"5",54:"6",55:"7",56:"8",57:"9",59:";",61:"=",65:"a",66:"b",67:"c",68:"d",69:"e",70:"f",71:"g",72:"h",73:"i",74:"j",75:"k",76:"l",77:"m",78:"n",79:"o",80:"p",81:"q",82:"r",83:"s",84:"t",85:"u",86:"v",87:"w",88:"x",89:"y",90:"z",107:"+",109:"-",110:".",186:";",187:"=",188:",",189:"-",190:".",191:"/",192:"`",219:"[",220:"\\",221:"]",222:"'",111:"/",106:"*"}},t,n;for(n in e.FUNCTION_KEYS)t=e.FUNCTION_KEYS[n].toLowerCase(),e[t]=parseInt(n,10);for(n in e.PRINTABLE_KEYS)t=e.PRINTABLE_KEYS[n].toLowerCase(),e[t]=parseInt(n,10);return r.mixin(e,e.MODIFIER_KEYS),r.mixin(e,e.PRINTABLE_KEYS),r.mixin(e,e.FUNCTION_KEYS),e.enter=e["return"],e.escape=e.esc,e.del=e["delete"],e[173]="-",function(){var t=["cmd","ctrl","alt","shift"];for(var n=Math.pow(2,t.length);n--;)e.KEY_MODS[n]=t.filter(function(t){return n&e.KEY_MODS[t]}).join("-")+"-"}(),e.KEY_MODS[0]="",e.KEY_MODS[-1]="input-",e}();r.mixin(t,i),t.keyCodeToString=function(e){var t=i[e];return typeof t!="string"&&(t=String.fromCharCode(e)),t.toLowerCase()}}),define("ace/lib/useragent",["require","exports","module"],function(e,t,n){"use strict";t.OS={LINUX:"LINUX",MAC:"MAC",WINDOWS:"WINDOWS"},t.getOS=function(){return t.isMac?t.OS.MAC:t.isLinux?t.OS.LINUX:t.OS.WINDOWS};if(typeof navigator!="object")return;var r=(navigator.platform.match(/mac|win|linux/i)||["other"])[0].toLowerCase(),i=navigator.userAgent;t.isWin=r=="win",t.isMac=r=="mac",t.isLinux=r=="linux",t.isIE=navigator.appName=="Microsoft Internet Explorer"||navigator.appName.indexOf("MSAppHost")>=0?parseFloat((i.match(/(?:MSIE |Trident\/[0-9]+[\.0-9]+;.*rv:)([0-9]+[\.0-9]+)/)||[])[1]):parseFloat((i.match(/(?:Trident\/[0-9]+[\.0-9]+;.*rv:)([0-9]+[\.0-9]+)/)||[])[1]),t.isOldIE=t.isIE&&t.isIE<9,t.isGecko=t.isMozilla=(window.Controllers||window.controllers)&&window.navigator.product==="Gecko",t.isOldGecko=t.isGecko&&parseInt((i.match(/rv:(\d+)/)||[])[1],10)<4,t.isOpera=window.opera&&Object.prototype.toString.call(window.opera)=="[object Opera]",t.isWebKit=parseFloat(i.split("WebKit/")[1])||undefined,t.isChrome=parseFloat(i.split(" Chrome/")[1])||undefined,t.isAIR=i.indexOf("AdobeAIR")>=0,t.isIPad=i.indexOf("iPad")>=0,t.isChromeOS=i.indexOf(" CrOS ")>=0,t.isIOS=/iPad|iPhone|iPod/.test(i)&&!window.MSStream,t.isIOS&&(t.isMac=!0)}),define("ace/lib/event",["require","exports","module","ace/lib/keys","ace/lib/useragent"],function(e,t,n){"use strict";function a(e,t,n){var a=u(t);if(!i.isMac&&s){t.getModifierState&&(t.getModifierState("OS")||t.getModifierState("Win"))&&(a|=8);if(s.altGr){if((3&a)==3)return;s.altGr=0}if(n===18||n===17){var f="location"in t?t.location:t.keyLocation;if(n===17&&f===1)s[n]==1&&(o=t.timeStamp);else if(n===18&&a===3&&f===2){var l=t.timeStamp-o;l<50&&(s.altGr=!0)}}}n in r.MODIFIER_KEYS&&(n=-1),a&8&&n>=91&&n<=93&&(n=-1);if(!a&&n===13){var f="location"in t?t.location:t.keyLocation;if(f===3){e(t,a,-n);if(t.defaultPrevented)return}}if(i.isChromeOS&&a&8){e(t,a,n);if(t.defaultPrevented)return;a&=-9}return!!a||n in r.FUNCTION_KEYS||n in r.PRINTABLE_KEYS?e(t,a,n):!1}function f(){s=Object.create(null)}var r=e("./keys"),i=e("./useragent"),s=null,o=0;t.addListener=function(e,t,n){if(e.addEventListener)return e.addEventListener(t,n,!1);if(e.attachEvent){var r=function(){n.call(e,window.event)};n._wrapper=r,e.attachEvent("on"+t,r)}},t.removeListener=function(e,t,n){if(e.removeEventListener)return e.removeEventListener(t,n,!1);e.detachEvent&&e.detachEvent("on"+t,n._wrapper||n)},t.stopEvent=function(e){return t.stopPropagation(e),t.preventDefault(e),!1},t.stopPropagation=function(e){e.stopPropagation?e.stopPropagation():e.cancelBubble=!0},t.preventDefault=function(e){e.preventDefault?e.preventDefault():e.returnValue=!1},t.getButton=function(e){return e.type=="dblclick"?0:e.type=="contextmenu"||i.isMac&&e.ctrlKey&&!e.altKey&&!e.shiftKey?2:e.preventDefault?e.button:{1:0,2:2,4:1}[e.button]},t.capture=function(e,n,r){function i(e){n&&n(e),r&&r(e),t.removeListener(document,"mousemove",n,!0),t.removeListener(document,"mouseup",i,!0),t.removeListener(document,"dragstart",i,!0)}return t.addListener(document,"mousemove",n,!0),t.addListener(document,"mouseup",i,!0),t.addListener(document,"dragstart",i,!0),i},t.addTouchMoveListener=function(e,n){var r,i;t.addListener(e,"touchstart",function(e){var t=e.touches,n=t[0];r=n.clientX,i=n.clientY}),t.addListener(e,"touchmove",function(e){var t=e.touches;if(t.length>1)return;var s=t[0];e.wheelX=r-s.clientX,e.wheelY=i-s.clientY,r=s.clientX,i=s.clientY,n(e)})},t.addMouseWheelListener=function(e,n){"onmousewheel"in e?t.addListener(e,"mousewheel",function(e){var t=8;e.wheelDeltaX!==undefined?(e.wheelX=-e.wheelDeltaX/t,e.wheelY=-e.wheelDeltaY/t):(e.wheelX=0,e.wheelY=-e.wheelDelta/t),n(e)}):"onwheel"in e?t.addListener(e,"wheel",function(e){var t=.35;switch(e.deltaMode){case e.DOM_DELTA_PIXEL:e.wheelX=e.deltaX*t||0,e.wheelY=e.deltaY*t||0;break;case e.DOM_DELTA_LINE:case e.DOM_DELTA_PAGE:e.wheelX=(e.deltaX||0)*5,e.wheelY=(e.deltaY||0)*5}n(e)}):t.addListener(e,"DOMMouseScroll",function(e){e.axis&&e.axis==e.HORIZONTAL_AXIS?(e.wheelX=(e.detail||0)*5,e.wheelY=0):(e.wheelX=0,e.wheelY=(e.detail||0)*5),n(e)})},t.addMultiMouseDownListener=function(e,n,r,s){function c(e){t.getButton(e)!==0?o=0:e.detail>1?(o++,o>4&&(o=1)):o=1;if(i.isIE){var c=Math.abs(e.clientX-u)>5||Math.abs(e.clientY-a)>5;if(!f||c)o=1;f&&clearTimeout(f),f=setTimeout(function(){f=null},n[o-1]||600),o==1&&(u=e.clientX,a=e.clientY)}e._clicks=o,r[s]("mousedown",e);if(o>4)o=0;else if(o>1)return r[s](l[o],e)}function h(e){o=2,f&&clearTimeout(f),f=setTimeout(function(){f=null},n[o-1]||600),r[s]("mousedown",e),r[s](l[o],e)}var o=0,u,a,f,l={2:"dblclick",3:"tripleclick",4:"quadclick"};Array.isArray(e)||(e=[e]),e.forEach(function(e){t.addListener(e,"mousedown",c),i.isOldIE&&t.addListener(e,"dblclick",h)})};var u=!i.isMac||!i.isOpera||"KeyboardEvent"in window?function(e){return 0|(e.ctrlKey?1:0)|(e.altKey?2:0)|(e.shiftKey?4:0)|(e.metaKey?8:0)}:function(e){return 0|(e.metaKey?1:0)|(e.altKey?2:0)|(e.shiftKey?4:0)|(e.ctrlKey?8:0)};t.getModifierString=function(e){return r.KEY_MODS[u(e)]},t.addCommandKeyListener=function(e,n){var r=t.addListener;if(i.isOldGecko||i.isOpera&&!("KeyboardEvent"in window)){var o=null;r(e,"keydown",function(e){o=e.keyCode}),r(e,"keypress",function(e){return a(n,e,o)})}else{var u=null;r(e,"keydown",function(e){s[e.keyCode]=(s[e.keyCode]||0)+1;var t=a(n,e,e.keyCode);return u=e.defaultPrevented,t}),r(e,"keypress",function(e){u&&(e.ctrlKey||e.altKey||e.shiftKey||e.metaKey)&&(t.stopEvent(e),u=null)}),r(e,"keyup",function(e){s[e.keyCode]=null}),s||(f(),r(window,"focus",f))}};if(typeof window=="object"&&window.postMessage&&!i.isOldIE){var l=1;t.nextTick=function(e,n){n=n||window;var r="zero-timeout-message-"+l;t.addListener(n,"message",function i(s){s.data==r&&(t.stopPropagation(s),t.removeListener(n,"message",i),e())}),n.postMessage(r,"*")}}t.nextFrame=typeof window=="object"&&(window.requestAnimationFrame||window.mozRequestAnimationFrame||window.webkitRequestAnimationFrame||window.msRequestAnimationFrame||window.oRequestAnimationFrame),t.nextFrame?t.nextFrame=t.nextFrame.bind(window):t.nextFrame=function(e){setTimeout(e,17)}}),define("ace/lib/lang",["require","exports","module"],function(e,t,n){"use strict";t.last=function(e){return e[e.length-1]},t.stringReverse=function(e){return e.split("").reverse().join("")},t.stringRepeat=function(e,t){var n="";while(t>0){t&1&&(n+=e);if(t>>=1)e+=e}return n};var r=/^\s\s*/,i=/\s\s*$/;t.stringTrimLeft=function(e){return e.replace(r,"")},t.stringTrimRight=function(e){return e.replace(i,"")},t.copyObject=function(e){var t={};for(var n in e)t[n]=e[n];return t},t.copyArray=function(e){var t=[];for(var n=0,r=e.length;n<r;n++)e[n]&&typeof e[n]=="object"?t[n]=this.copyObject(e[n]):t[n]=e[n];return t},t.deepCopy=function s(e){if(typeof e!="object"||!e)return e;var t;if(Array.isArray(e)){t=[];for(var n=0;n<e.length;n++)t[n]=s(e[n]);return t}if(Object.prototype.toString.call(e)!=="[object Object]")return e;t={};for(var n in e)t[n]=s(e[n]);return t},t.arrayToMap=function(e){var t={};for(var n=0;n<e.length;n++)t[e[n]]=1;return t},t.createMap=function(e){var t=Object.create(null);for(var n in e)t[n]=e[n];return t},t.arrayRemove=function(e,t){for(var n=0;n<=e.length;n++)t===e[n]&&e.splice(n,1)},t.escapeRegExp=function(e){return e.replace(/([.*+?^${}()|[\]\/\\])/g,"\\$1")},t.escapeHTML=function(e){return e.replace(/&/g,"&#38;").replace(/"/g,"&#34;").replace(/'/g,"&#39;").replace(/</g,"&#60;")},t.getMatchOffsets=function(e,t){var n=[];return e.replace(t,function(e){n.push({offset:arguments[arguments.length-2],length:e.length})}),n},t.deferredCall=function(e){var t=null,n=function(){t=null,e()},r=function(e){return r.cancel(),t=setTimeout(n,e||0),r};return r.schedule=r,r.call=function(){return this.cancel(),e(),r},r.cancel=function(){return clearTimeout(t),t=null,r},r.isPending=function(){return t},r},t.delayedCall=function(e,t){var n=null,r=function(){n=null,e()},i=function(e){n==null&&(n=setTimeout(r,e||t))};return i.delay=function(e){n&&clearTimeout(n),n=setTimeout(r,e||t)},i.schedule=i,i.call=function(){this.cancel(),e()},i.cancel=function(){n&&clearTimeout(n),n=null},i.isPending=function(){return n},i}}),define("ace/keyboard/textinput_ios",["require","exports","module","ace/lib/event","ace/lib/useragent","ace/lib/dom","ace/lib/lang","ace/lib/keys"],function(e,t,n){"use strict";var r=e("../lib/event"),i=e("../lib/useragent"),s=e("../lib/dom"),o=e("../lib/lang"),u=e("../lib/keys"),a=u.KEY_MODS,f=i.isChrome<18,l=i.isIE,c=function(e,t){function x(e){if(m)return;m=!0;if(k)t=0,n=e?0:c.value.length-1;else var t=4,n=5;try{c.setSelectionRange(t,n)}catch(r){}m=!1}function T(){if(m)return;c.value=h,i.isWebKit&&S.schedule()}function R(){clearTimeout(q),q=setTimeout(function(){g&&(c.style.cssText=g,g=""),t.renderer.$keepTextAreaAtCursor==null&&(t.renderer.$keepTextAreaAtCursor=!0,t.renderer.$moveTextAreaToCursor())},0)}var n=this,c=s.createElement("textarea");c.className=i.isIOS?"ace_text-input ace_text-input-ios":"ace_text-input",i.isTouchPad&&c.setAttribute("x-palm-disable-auto-cap",!0),c.setAttribute("wrap","off"),c.setAttribute("autocorrect","off"),c.setAttribute("autocapitalize","off"),c.setAttribute("spellcheck",!1),c.style.opacity="0",e.insertBefore(c,e.firstChild);var h="\n aaaa a\n",p=!1,d=!1,v=!1,m=!1,g="",y=!0;try{var b=document.activeElement===c}catch(w){}r.addListener(c,"blur",function(e){t.onBlur(e),b=!1}),r.addListener(c,"focus",function(e){b=!0,t.onFocus(e),x()}),this.focus=function(){if(g)return c.focus();c.style.position="fixed",c.focus()},this.blur=function(){c.blur()},this.isFocused=function(){return b};var E=o.delayedCall(function(){b&&x(y)}),S=o.delayedCall(function(){m||(c.value=h,b&&x())});i.isWebKit||t.addEventListener("changeSelection",function(){t.selection.isEmpty()!=y&&(y=!y,E.schedule())}),T(),b&&t.onFocus();var N=function(e){return e.selectionStart===0&&e.selectionEnd===e.value.length},C=function(e){N(c)?(t.selectAll(),x()):k&&x(t.selection.isEmpty())},k=null;this.setInputHandler=function(e){k=e},this.getInputHandler=function(){return k};var L=!1,A=function(e){if(c.selectionStart===4&&c.selectionEnd===5)return;k&&(e=k(e),k=null),v?(x(),e&&t.onPaste(e),v=!1):e==h.substr(0)&&c.selectionStart===4?L?t.execCommand("del",{source:"ace"}):t.execCommand("backspace",{source:"ace"}):p||(e.substring(0,9)==h&&e.length>h.length?e=e.substr(9):e.substr(0,4)==h.substr(0,4)?e=e.substr(4,e.length-h.length+1):e.charAt(e.length-1)==h.charAt(0)&&(e=e.slice(0,-1)),e!=h.charAt(0)&&e.charAt(e.length-1)==h.charAt(0)&&(e=e.slice(0,-1)),e&&t.onTextInput(e)),p&&(p=!1),L&&(L=!1)},O=function(e){if(m)return;var t=c.value;A(t),T()},M=function(e,t,n){var r=e.clipboardData||window.clipboardData;if(!r||f)return;var i=l||n?"Text":"text/plain";try{return t?r.setData(i,t)!==!1:r.getData(i)}catch(e){if(!n)return M(e,t,!0)}},_=function(e,n){var s=t.getCopyText();if(!s)return r.preventDefault(e);M(e,s)?(i.isIOS&&(d=n,c.value="\n aa"+s+"a a\n",c.setSelectionRange(4,4+s.length),p={value:s}),n?t.onCut():t.onCopy(),i.isIOS||r.preventDefault(e)):(p=!0,c.value=s,c.select(),setTimeout(function(){p=!1,T(),x(),n?t.onCut():t.onCopy()}))},D=function(e){_(e,!0)},P=function(e){_(e,!1)},H=function(e){var n=M(e);typeof n=="string"?(n&&t.onPaste(n,e),i.isIE&&setTimeout(x),r.preventDefault(e)):(c.value="",v=!0)};r.addCommandKeyListener(c,t.onCommandKey.bind(t)),r.addListener(c,"select",C),r.addListener(c,"input",O),r.addListener(c,"cut",D),r.addListener(c,"copy",P),r.addListener(c,"paste",H);var B=function(e){if(m||!t.onCompositionStart||t.$readOnly)return;m={},m.canUndo=t.session.$undoManager,t.onCompositionStart(),setTimeout(j,0),t.on("mousedown",F),m.canUndo&&!t.selection.isEmpty()&&(t.insert(""),t.session.markUndoGroup(),t.selection.clearSelection()),t.session.markUndoGroup()},j=function(){if(!m||!t.onCompositionUpdate||t.$readOnly)return;var e=c.value.replace(/\x01/g,"");if(m.lastValue===e)return;t.onCompositionUpdate(e),m.lastValue&&t.undo(),m.canUndo&&(m.lastValue=e);if(m.lastValue){var n=t.selection.getRange();t.insert(m.lastValue),t.session.markUndoGroup(),m.range=t.selection.getRange(),t.selection.setRange(n),t.selection.clearSelection()}},F=function(e){if(!t.onCompositionEnd||t.$readOnly)return;var n=m;m=!1;var r=setTimeout(function(){r=null;var e=c.value.replace(/\x01/g,"");if(m)return;e==n.lastValue?T():!n.lastValue&&e&&(T(),A(e))});k=function(i){return r&&clearTimeout(r),i=i.replace(/\x01/g,""),i==n.lastValue?"":(n.lastValue&&r&&t.undo(),i)},t.onCompositionEnd(),t.removeListener("mousedown",F),e.type=="compositionend"&&n.range&&t.selection.setRange(n.range);var s=!!i.isChrome&&i.isChrome>=53||!!i.isWebKit&&i.isWebKit>=603;s&&O()},I=o.delayedCall(j,50);r.addListener(c,"compositionstart",B),i.isGecko?r.addListener(c,"text",function(){I.schedule()}):(r.addListener(c,"keyup",function(){I.schedule()}),r.addListener(c,"keydown",function(){I.schedule()})),r.addListener(c,"compositionend",F),this.getElement=function(){return c},this.setReadOnly=function(e){c.readOnly=e},this.onContextMenu=function(e){L=!0,x(t.selection.isEmpty()),t._emit("nativecontextmenu",{target:t,domEvent:e}),this.moveToMouse(e,!0)},this.moveToMouse=function(e,n){g||(g=c.style.cssText),c.style.cssText=(n?"z-index:100000;":"")+"height:"+c.style.height+";"+(i.isIE?"opacity:0.1;":"");var o=t.container.getBoundingClientRect(),u=s.computedStyle(t.container),a=o.top+(parseInt(u.borderTopWidth)||0),f=o.left+(parseInt(o.borderLeftWidth)||0),l=o.bottom-a-c.clientHeight-2,h=function(e){c.style.left=e.clientX-f-2+"px",c.style.top=Math.min(e.clientY-a-2,l)+"px"};h(e);if(e.type!="mousedown")return;t.renderer.$keepTextAreaAtCursor&&(t.renderer.$keepTextAreaAtCursor=null),clearTimeout(q),i.isWin&&r.capture(t.container,h,R)},this.onContextMenuClose=R;var q,U=function(e){t.textInput.onContextMenu(e),R()};r.addListener(c,"mouseup",U),r.addListener(c,"mousedown",function(e){e.preventDefault(),R()}),r.addListener(t.renderer.scroller,"contextmenu",U),r.addListener(c,"contextmenu",U);if(i.isIOS){var z=null,W=!1;e.addEventListener("keydown",function(e){z&&clearTimeout(z),W=!0}),e.addEventListener("keyup",function(e){z=setTimeout(function(){W=!1},100)});var X=function(e){if(document.activeElement!==c)return;if(W)return;if(d)return setTimeout(function(){d=!1},100);var n=c.selectionStart,r=c.selectionEnd;c.setSelectionRange(4,5);if(n==r)switch(n){case 0:t.onCommandKey(null,0,u.up);break;case 1:t.onCommandKey(null,0,u.home);break;case 2:t.onCommandKey(null,a.option,u.left);break;case 4:t.onCommandKey(null,0,u.left);break;case 5:t.onCommandKey(null,0,u.right);break;case 7:t.onCommandKey(null,a.option,u.right);break;case 8:t.onCommandKey(null,0,u.end);break;case 9:t.onCommandKey(null,0,u.down)}else{switch(r){case 6:t.onCommandKey(null,a.shift,u.right);break;case 7:t.onCommandKey(null,a.shift|a.option,u.right);break;case 8:t.onCommandKey(null,a.shift,u.end);break;case 9:t.onCommandKey(null,a.shift,u.down)}switch(n){case 0:t.onCommandKey(null,a.shift,u.up);break;case 1:t.onCommandKey(null,a.shift,u.home);break;case 2:t.onCommandKey(null,a.shift|a.option,u.left);break;case 3:t.onCommandKey(null,a.shift,u.left)}}};document.addEventListener("selectionchange",X),t.on("destroy",function(){document.removeEventListener("selectionchange",X)})}};t.TextInput=c}),define("ace/keyboard/textinput",["require","exports","module","ace/lib/event","ace/lib/useragent","ace/lib/dom","ace/lib/lang","ace/keyboard/textinput_ios"],function(e,t,n){"use strict";var r=e("../lib/event"),i=e("../lib/useragent"),s=e("../lib/dom"),o=e("../lib/lang"),u=i.isChrome<18,a=i.isIE,f=e("./textinput_ios").TextInput,l=function(e,t){function w(e){if(p)return;p=!0;if(T)var t=0,r=e?0:n.value.length-1;else var t=e?2:1,r=2;try{n.setSelectionRange(t,r)}catch(i){}p=!1}function E(){if(p)return;n.value=l,i.isWebKit&&b.schedule()}function F(){clearTimeout(j),j=setTimeout(function(){d&&(n.style.cssText=d,d=""),t.renderer.$keepTextAreaAtCursor==null&&(t.renderer.$keepTextAreaAtCursor=!0,t.renderer.$moveTextAreaToCursor())},0)}if(i.isIOS)return f.call(this,e,t);var n=s.createElement("textarea");n.className="ace_text-input",n.setAttribute("wrap","off"),n.setAttribute("autocorrect","off"),n.setAttribute("autocapitalize","off"),n.setAttribute("spellcheck",!1),n.style.opacity="0",e.insertBefore(n,e.firstChild);var l="\u2028\u2028",c=!1,h=!1,p=!1,d="",v=!0;try{var m=document.activeElement===n}catch(g){}r.addListener(n,"blur",function(e){t.onBlur(e),m=!1}),r.addListener(n,"focus",function(e){m=!0,t.onFocus(e),w()}),this.focus=function(){if(d)return n.focus();var e=n.style.top;n.style.position="fixed",n.style.top="0px",n.focus(),setTimeout(function(){n.style.position="",n.style.top=="0px"&&(n.style.top=e)},0)},this.blur=function(){n.blur()},this.isFocused=function(){return m};var y=o.delayedCall(function(){m&&w(v)}),b=o.delayedCall(function(){p||(n.value=l,m&&w())});i.isWebKit||t.addEventListener("changeSelection",function(){t.selection.isEmpty()!=v&&(v=!v,y.schedule())}),E(),m&&t.onFocus();var S=function(e){return e.selectionStart===0&&e.selectionEnd===e.value.length},x=function(e){c?c=!1:S(n)?(t.selectAll(),w()):T&&w(t.selection.isEmpty())},T=null;this.setInputHandler=function(e){T=e},this.getInputHandler=function(){return T};var N=!1,C=function(e){T&&(e=T(e),T=null),h?(w(),e&&t.onPaste(e),h=!1):e==l.charAt(0)?N?t.execCommand("del",{source:"ace"}):t.execCommand("backspace",{source:"ace"}):(e.substring(0,2)==l?e=e.substr(2):e.charAt(0)==l.charAt(0)?e=e.substr(1):e.charAt(e.length-1)==l.charAt(0)&&(e=e.slice(0,-1)),e.charAt(e.length-1)==l.charAt(0)&&(e=e.slice(0,-1)),e&&t.onTextInput(e)),N&&(N=!1)},k=function(e){if(p)return;var t=n.value;C(t),E()},L=function(e,t,n){var r=e.clipboardData||window.clipboardData;if(!r||u)return;var i=a||n?"Text":"text/plain";try{return t?r.setData(i,t)!==!1:r.getData(i)}catch(e){if(!n)return L(e,t,!0)}},A=function(e,i){var s=t.getCopyText();if(!s)return r.preventDefault(e);L(e,s)?(i?t.onCut():t.onCopy(),r.preventDefault(e)):(c=!0,n.value=s,n.select(),setTimeout(function(){c=!1,E(),w(),i?t.onCut():t.onCopy()}))},O=function(e){A(e,!0)},M=function(e){A(e,!1)},_=function(e){var s=L(e);typeof s=="string"?(s&&t.onPaste(s,e),i.isIE&&setTimeout(w),r.preventDefault(e)):(n.value="",h=!0)};r.addCommandKeyListener(n,t.onCommandKey.bind(t)),r.addListener(n,"select",x),r.addListener(n,"input",k),r.addListener(n,"cut",O),r.addListener(n,"copy",M),r.addListener(n,"paste",_),(!("oncut"in n)||!("oncopy"in n)||!("onpaste"in n))&&r.addListener(e,"keydown",function(e){if(i.isMac&&!e.metaKey||!e.ctrlKey)return;switch(e.keyCode){case 67:M(e);break;case 86:_(e);break;case 88:O(e)}});var D=function(e){if(p||!t.onCompositionStart||t.$readOnly)return;p={},p.canUndo=t.session.$undoManager,t.onCompositionStart(),setTimeout(P,0),t.on("mousedown",H),p.canUndo&&!t.selection.isEmpty()&&(t.insert(""),t.session.markUndoGroup(),t.selection.clearSelection()),t.session.markUndoGroup()},P=function(){if(!p||!t.onCompositionUpdate||t.$readOnly)return;var e=n.value.replace(/\u2028/g,"");if(p.lastValue===e)return;t.onCompositionUpdate(e),p.lastValue&&t.undo(),p.canUndo&&(p.lastValue=e);if(p.lastValue){var r=t.selection.getRange();t.insert(p.lastValue),t.session.markUndoGroup(),p.range=t.selection.getRange(),t.selection.setRange(r),t.selection.clearSelection()}},H=function(e){if(!t.onCompositionEnd||t.$readOnly)return;var r=p;p=!1;var s=setTimeout(function(){s=null;var e=n.value.replace(/\u2028/g,"");if(p)return;e==r.lastValue?E():!r.lastValue&&e&&(E(),C(e))});T=function(n){return s&&clearTimeout(s),n=n.replace(/\u2028/g,""),n==r.lastValue?"":(r.lastValue&&s&&t.undo(),n)},t.onCompositionEnd(),t.removeListener("mousedown",H),e.type=="compositionend"&&r.range&&t.selection.setRange(r.range);var o=!!i.isChrome&&i.isChrome>=53||!!i.isWebKit&&i.isWebKit>=603;o&&k()},B=o.delayedCall(P,50);r.addListener(n,"compositionstart",D),i.isGecko?r.addListener(n,"text",function(){B.schedule()}):(r.addListener(n,"keyup",function(){B.schedule()}),r.addListener(n,"keydown",function(){B.schedule()})),r.addListener(n,"compositionend",H),this.getElement=function(){return n},this.setReadOnly=function(e){n.readOnly=e},this.onContextMenu=function(e){N=!0,w(t.selection.isEmpty()),t._emit("nativecontextmenu",{target:t,domEvent:e}),this.moveToMouse(e,!0)},this.moveToMouse=function(e,o){d||(d=n.style.cssText),n.style.cssText=(o?"z-index:100000;":"")+"height:"+n.style.height+";"+(i.isIE?"opacity:0.1;":"");var u=t.container.getBoundingClientRect(),a=s.computedStyle(t.container),f=u.top+(parseInt(a.borderTopWidth)||0),l=u.left+(parseInt(u.borderLeftWidth)||0),c=u.bottom-f-n.clientHeight-2,h=function(e){n.style.left=e.clientX-l-2+"px",n.style.top=Math.min(e.clientY-f-2,c)+"px"};h(e);if(e.type!="mousedown")return;t.renderer.$keepTextAreaAtCursor&&(t.renderer.$keepTextAreaAtCursor=null),clearTimeout(j),i.isWin&&r.capture(t.container,h,F)},this.onContextMenuClose=F;var j,I=function(e){t.textInput.onContextMenu(e),F()};r.addListener(n,"mouseup",I),r.addListener(n,"mousedown",function(e){e.preventDefault(),F()}),r.addListener(t.renderer.scroller,"contextmenu",I),r.addListener(n,"contextmenu",I)};t.TextInput=l}),define("ace/mouse/default_handlers",["require","exports","module","ace/lib/dom","ace/lib/event","ace/lib/useragent"],function(e,t,n){"use strict";function a(e){e.$clickSelection=null;var t=e.editor;t.setDefaultHandler("mousedown",this.onMouseDown.bind(e)),t.setDefaultHandler("dblclick",this.onDoubleClick.bind(e)),t.setDefaultHandler("tripleclick",this.onTripleClick.bind(e)),t.setDefaultHandler("quadclick",this.onQuadClick.bind(e)),t.setDefaultHandler("mousewheel",this.onMouseWheel.bind(e)),t.setDefaultHandler("touchmove",this.onTouchMove.bind(e));var n=["select","startSelect","selectEnd","selectAllEnd","selectByWordsEnd","selectByLinesEnd","dragWait","dragWaitEnd","focusWait"];n.forEach(function(t){e[t]=this[t]},this),e.selectByLines=this.extendSelectionBy.bind(e,"getLineRange"),e.selectByWords=this.extendSelectionBy.bind(e,"getWordRange")}function f(e,t,n,r){return Math.sqrt(Math.pow(n-e,2)+Math.pow(r-t,2))}function l(e,t){if(e.start.row==e.end.row)var n=2*t.column-e.start.column-e.end.column;else if(e.start.row==e.end.row-1&&!e.start.column&&!e.end.column)var n=t.column-4;else var n=2*t.row-e.start.row-e.end.row;return n<0?{cursor:e.start,anchor:e.end}:{cursor:e.end,anchor:e.start}}var r=e("../lib/dom"),i=e("../lib/event"),s=e("../lib/useragent"),o=0,u=250;(function(){this.onMouseDown=function(e){var t=e.inSelection(),n=e.getDocumentPosition();this.mousedownEvent=e;var r=this.editor,i=e.getButton();if(i!==0){var o=r.getSelectionRange(),u=o.isEmpty();r.$blockScrolling++,(u||i==1)&&r.selection.moveToPosition(n),r.$blockScrolling--,i==2&&(r.textInput.onContextMenu(e.domEvent),s.isMozilla||e.preventDefault());return}this.mousedownEvent.time=Date.now();if(t&&!r.isFocused()){r.focus();if(this.$focusTimout&&!this.$clickSelection&&!r.inMultiSelectMode){this.setState("focusWait"),this.captureMouse(e);return}}return this.captureMouse(e),this.startSelect(n,e.domEvent._clicks>1),e.preventDefault()},this.startSelect=function(e,t){e=e||this.editor.renderer.screenToTextCoordinates(this.x,this.y);var n=this.editor;n.$blockScrolling++,this.mousedownEvent.getShiftKey()?n.selection.selectToPosition(e):t||n.selection.moveToPosition(e),t||this.select(),n.renderer.scroller.setCapture&&n.renderer.scroller.setCapture(),n.setStyle("ace_selecting"),this.setState("select"),n.$blockScrolling--},this.select=function(){var e,t=this.editor,n=t.renderer.screenToTextCoordinates(this.x,this.y);t.$blockScrolling++;if(this.$clickSelection){var r=this.$clickSelection.comparePoint(n);if(r==-1)e=this.$clickSelection.end;else if(r==1)e=this.$clickSelection.start;else{var i=l(this.$clickSelection,n);n=i.cursor,e=i.anchor}t.selection.setSelectionAnchor(e.row,e.column)}t.selection.selectToPosition(n),t.$blockScrolling--,t.renderer.scrollCursorIntoView()},this.extendSelectionBy=function(e){var t,n=this.editor,r=n.renderer.screenToTextCoordinates(this.x,this.y),i=n.selection[e](r.row,r.column);n.$blockScrolling++;if(this.$clickSelection){var s=this.$clickSelection.comparePoint(i.start),o=this.$clickSelection.comparePoint(i.end);if(s==-1&&o<=0){t=this.$clickSelection.end;if(i.end.row!=r.row||i.end.column!=r.column)r=i.start}else if(o==1&&s>=0){t=this.$clickSelection.start;if(i.start.row!=r.row||i.start.column!=r.column)r=i.end}else if(s==-1&&o==1)r=i.end,t=i.start;else{var u=l(this.$clickSelection,r);r=u.cursor,t=u.anchor}n.selection.setSelectionAnchor(t.row,t.column)}n.selection.selectToPosition(r),n.$blockScrolling--,n.renderer.scrollCursorIntoView()},this.selectEnd=this.selectAllEnd=this.selectByWordsEnd=this.selectByLinesEnd=function(){this.$clickSelection=null,this.editor.unsetStyle("ace_selecting"),this.editor.renderer.scroller.releaseCapture&&this.editor.renderer.scroller.releaseCapture()},this.focusWait=function(){var e=f(this.mousedownEvent.x,this.mousedownEvent.y,this.x,this.y),t=Date.now();(e>o||t-this.mousedownEvent.time>this.$focusTimout)&&this.startSelect(this.mousedownEvent.getDocumentPosition())},this.onDoubleClick=function(e){var t=e.getDocumentPosition(),n=this.editor,r=n.session,i=r.getBracketRange(t);i?(i.isEmpty()&&(i.start.column--,i.end.column++),this.setState("select")):(i=n.selection.getWordRange(t.row,t.column),this.setState("selectByWords")),this.$clickSelection=i,this.select()},this.onTripleClick=function(e){var t=e.getDocumentPosition(),n=this.editor;this.setState("selectByLines");var r=n.getSelectionRange();r.isMultiLine()&&r.contains(t.row,t.column)?(this.$clickSelection=n.selection.getLineRange(r.start.row),this.$clickSelection.end=n.selection.getLineRange(r.end.row).end):this.$clickSelection=n.selection.getLineRange(t.row),this.select()},this.onQuadClick=function(e){var t=this.editor;t.selectAll(),this.$clickSelection=t.getSelectionRange(),this.setState("selectAll")},this.onMouseWheel=function(e){if(e.getAccelKey())return;e.getShiftKey()&&e.wheelY&&!e.wheelX&&(e.wheelX=e.wheelY,e.wheelY=0);var t=this.editor;this.$lastScroll||(this.$lastScroll={t:0,vx:0,vy:0,allowed:0});var n=this.$lastScroll,r=e.domEvent.timeStamp,i=r-n.t,s=e.wheelX/i,o=e.wheelY/i;i<u&&(s=(s+n.vx)/2,o=(o+n.vy)/2);var a=Math.abs(s/o),f=!1;a>=1&&t.renderer.isScrollableBy(e.wheelX*e.speed,0)&&(f=!0),a<=1&&t.renderer.isScrollableBy(0,e.wheelY*e.speed)&&(f=!0);if(f)n.allowed=r;else if(r-n.allowed<u){var l=Math.abs(s)<=1.1*Math.abs(n.vx)&&Math.abs(o)<=1.1*Math.abs(n.vy);l?(f=!0,n.allowed=r):n.allowed=0}n.t=r,n.vx=s,n.vy=o;if(f)return t.renderer.scrollBy(e.wheelX*e.speed,e.wheelY*e.speed),e.stop()},this.onTouchMove=function(e){this.editor._emit("mousewheel",e)}}).call(a.prototype),t.DefaultHandlers=a}),define("ace/tooltip",["require","exports","module","ace/lib/oop","ace/lib/dom"],function(e,t,n){"use strict";function s(e){this.isOpen=!1,this.$element=null,this.$parentNode=e}var r=e("./lib/oop"),i=e("./lib/dom");(function(){this.$init=function(){return this.$element=i.createElement("div"),this.$element.className="ace_tooltip",this.$element.style.display="none",this.$parentNode.appendChild(this.$element),this.$element},this.getElement=function(){return this.$element||this.$init()},this.setText=function(e){i.setInnerText(this.getElement(),e)},this.setHtml=function(e){this.getElement().innerHTML=e},this.setPosition=function(e,t){this.getElement().style.left=e+"px",this.getElement().style.top=t+"px"},this.setClassName=function(e){i.addCssClass(this.getElement(),e)},this.show=function(e,t,n){e!=null&&this.setText(e),t!=null&&n!=null&&this.setPosition(t,n),this.isOpen||(this.getElement().style.display="block",this.isOpen=!0)},this.hide=function(){this.isOpen&&(this.getElement().style.display="none",this.isOpen=!1)},this.getHeight=function(){return this.getElement().offsetHeight},this.getWidth=function(){return this.getElement().offsetWidth},this.destroy=function(){this.isOpen=!1,this.$element&&this.$element.parentNode&&this.$element.parentNode.removeChild(this.$element)}}).call(s.prototype),t.Tooltip=s}),define("ace/mouse/default_gutter_handler",["require","exports","module","ace/lib/dom","ace/lib/oop","ace/lib/event","ace/tooltip"],function(e,t,n){"use strict";function u(e){function l(){var r=u.getDocumentPosition().row,s=n.$annotations[r];if(!s)return c();var o=t.session.getLength();if(r==o){var a=t.renderer.pixelToScreenCoordinates(0,u.y).row,l=u.$pos;if(a>t.session.documentToScreenRow(l.row,l.column))return c()}if(f==s)return;f=s.text.join("<br/>"),i.setHtml(f),i.show(),t._signal("showGutterTooltip",i),t.on("mousewheel",c);if(e.$tooltipFollowsMouse)h(u);else{var p=u.domEvent.target,d=p.getBoundingClientRect(),v=i.getElement().style;v.left=d.right+"px",v.top=d.bottom+"px"}}function c(){o&&(o=clearTimeout(o)),f&&(i.hide(),f=null,t._signal("hideGutterTooltip",i),t.removeEventListener("mousewheel",c))}function h(e){i.setPosition(e.x,e.y)}var t=e.editor,n=t.renderer.$gutterLayer,i=new a(t.container);e.editor.setDefaultHandler("guttermousedown",function(r){if(!t.isFocused()||r.getButton()!=0)return;var i=n.getRegion(r);if(i=="foldWidgets")return;var s=r.getDocumentPosition().row,o=t.session.selection;if(r.getShiftKey())o.selectTo(s,0);else{if(r.domEvent.detail==2)return t.selectAll(),r.preventDefault();e.$clickSelection=t.selection.getLineRange(s)}return e.setState("selectByLines"),e.captureMouse(r),r.preventDefault()});var o,u,f;e.editor.setDefaultHandler("guttermousemove",function(t){var n=t.domEvent.target||t.domEvent.srcElement;if(r.hasCssClass(n,"ace_fold-widget"))return c();f&&e.$tooltipFollowsMouse&&h(t),u=t;if(o)return;o=setTimeout(function(){o=null,u&&!e.isMousePressed?l():c()},50)}),s.addListener(t.renderer.$gutter,"mouseout",function(e){u=null;if(!f||o)return;o=setTimeout(function(){o=null,c()},50)}),t.on("changeSession",c)}function a(e){o.call(this,e)}var r=e("../lib/dom"),i=e("../lib/oop"),s=e("../lib/event"),o=e("../tooltip").Tooltip;i.inherits(a,o),function(){this.setPosition=function(e,t){var n=window.innerWidth||document.documentElement.clientWidth,r=window.innerHeight||document.documentElement.clientHeight,i=this.getWidth(),s=this.getHeight();e+=15,t+=15,e+i>n&&(e-=e+i-n),t+s>r&&(t-=20+s),o.prototype.setPosition.call(this,e,t)}}.call(a.prototype),t.GutterHandler=u}),define("ace/mouse/mouse_event",["require","exports","module","ace/lib/event","ace/lib/useragent"],function(e,t,n){"use strict";var r=e("../lib/event"),i=e("../lib/useragent"),s=t.MouseEvent=function(e,t){this.domEvent=e,this.editor=t,this.x=this.clientX=e.clientX,this.y=this.clientY=e.clientY,this.$pos=null,this.$inSelection=null,this.propagationStopped=!1,this.defaultPrevented=!1};(function(){this.stopPropagation=function(){r.stopPropagation(this.domEvent),this.propagationStopped=!0},this.preventDefault=function(){r.preventDefault(this.domEvent),this.defaultPrevented=!0},this.stop=function(){this.stopPropagation(),this.preventDefault()},this.getDocumentPosition=function(){return this.$pos?this.$pos:(this.$pos=this.editor.renderer.screenToTextCoordinates(this.clientX,this.clientY),this.$pos)},this.inSelection=function(){if(this.$inSelection!==null)return this.$inSelection;var e=this.editor,t=e.getSelectionRange();if(t.isEmpty())this.$inSelection=!1;else{var n=this.getDocumentPosition();this.$inSelection=t.contains(n.row,n.column)}return this.$inSelection},this.getButton=function(){return r.getButton(this.domEvent)},this.getShiftKey=function(){return this.domEvent.shiftKey},this.getAccelKey=i.isMac?function(){return this.domEvent.metaKey}:function(){return this.domEvent.ctrlKey}}).call(s.prototype)}),define("ace/mouse/dragdrop_handler",["require","exports","module","ace/lib/dom","ace/lib/event","ace/lib/useragent"],function(e,t,n){"use strict";function f(e){function T(e,n){var r=Date.now(),i=!n||e.row!=n.row,s=!n||e.column!=n.column;if(!S||i||s)t.$blockScrolling+=1,t.moveCursorToPosition(e),t.$blockScrolling-=1,S=r,x={x:p,y:d};else{var o=l(x.x,x.y,p,d);o>a?S=null:r-S>=u&&(t.renderer.scrollCursorIntoView(),S=null)}}function N(e,n){var r=Date.now(),i=t.renderer.layerConfig.lineHeight,s=t.renderer.layerConfig.characterWidth,u=t.renderer.scroller.getBoundingClientRect(),a={x:{left:p-u.left,right:u.right-p},y:{top:d-u.top,bottom:u.bottom-d}},f=Math.min(a.x.left,a.x.right),l=Math.min(a.y.top,a.y.bottom),c={row:e.row,column:e.column};f/s<=2&&(c.column+=a.x.left<a.x.right?-3:2),l/i<=1&&(c.row+=a.y.top<a.y.bottom?-1:1);var h=e.row!=c.row,v=e.column!=c.column,m=!n||e.row!=n.row;h||v&&!m?E?r-E>=o&&t.renderer.scrollCursorIntoView(c):E=r:E=null}function C(){var e=g;g=t.renderer.screenToTextCoordinates(p,d),T(g,e),N(g,e)}function k(){m=t.selection.toOrientedRange(),h=t.session.addMarker(m,"ace_selection",t.getSelectionStyle()),t.clearSelection(),t.isFocused()&&t.renderer.$cursorLayer.setBlinking(!1),clearInterval(v),C(),v=setInterval(C,20),y=0,i.addListener(document,"mousemove",O)}function L(){clearInterval(v),t.session.removeMarker(h),h=null,t.$blockScrolling+=1,t.selection.fromOrientedRange(m),t.$blockScrolling-=1,t.isFocused()&&!w&&t.renderer.$cursorLayer.setBlinking(!t.getReadOnly()),m=null,g=null,y=0,E=null,S=null,i.removeListener(document,"mousemove",O)}function O(){A==null&&(A=setTimeout(function(){A!=null&&h&&L()},20))}function M(e){var t=e.types;return!t||Array.prototype.some.call(t,function(e){return e=="text/plain"||e=="Text"})}function _(e){var t=["copy","copymove","all","uninitialized"],n=["move","copymove","linkmove","all","uninitialized"],r=s.isMac?e.altKey:e.ctrlKey,i="uninitialized";try{i=e.dataTransfer.effectAllowed.toLowerCase()}catch(e){}var o="none";return r&&t.indexOf(i)>=0?o="copy":n.indexOf(i)>=0?o="move":t.indexOf(i)>=0&&(o="copy"),o}var t=e.editor,n=r.createElement("img");n.src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==",s.isOpera&&(n.style.cssText="width:1px;height:1px;position:fixed;top:0;left:0;z-index:2147483647;opacity:0;");var f=["dragWait","dragWaitEnd","startDrag","dragReadyEnd","onMouseDrag"];f.forEach(function(t){e[t]=this[t]},this),t.addEventListener("mousedown",this.onMouseDown.bind(e));var c=t.container,h,p,d,v,m,g,y=0,b,w,E,S,x;this.onDragStart=function(e){if(this.cancelDrag||!c.draggable){var r=this;return setTimeout(function(){r.startSelect(),r.captureMouse(e)},0),e.preventDefault()}m=t.getSelectionRange();var i=e.dataTransfer;i.effectAllowed=t.getReadOnly()?"copy":"copyMove",s.isOpera&&(t.container.appendChild(n),n.scrollTop=0),i.setDragImage&&i.setDragImage(n,0,0),s.isOpera&&t.container.removeChild(n),i.clearData(),i.setData("Text",t.session.getTextRange()),w=!0,this.setState("drag")},this.onDragEnd=function(e){c.draggable=!1,w=!1,this.setState(null);if(!t.getReadOnly()){var n=e.dataTransfer.dropEffect;!b&&n=="move"&&t.session.remove(t.getSelectionRange()),t.renderer.$cursorLayer.setBlinking(!0)}this.editor.unsetStyle("ace_dragging"),this.editor.renderer.setCursorStyle("")},this.onDragEnter=function(e){if(t.getReadOnly()||!M(e.dataTransfer))return;return p=e.clientX,d=e.clientY,h||k(),y++,e.dataTransfer.dropEffect=b=_(e),i.preventDefault(e)},this.onDragOver=function(e){if(t.getReadOnly()||!M(e.dataTransfer))return;return p=e.clientX,d=e.clientY,h||(k(),y++),A!==null&&(A=null),e.dataTransfer.dropEffect=b=_(e),i.preventDefault(e)},this.onDragLeave=function(e){y--;if(y<=0&&h)return L(),b=null,i.preventDefault(e)},this.onDrop=function(e){if(!g)return;var n=e.dataTransfer;if(w)switch(b){case"move":m.contains(g.row,g.column)?m={start:g,end:g}:m=t.moveText(m,g);break;case"copy":m=t.moveText(m,g,!0)}else{var r=n.getData("Text");m={start:g,end:t.session.insert(g,r)},t.focus(),b=null}return L(),i.preventDefault(e)},i.addListener(c,"dragstart",this.onDragStart.bind(e)),i.addListener(c,"dragend",this.onDragEnd.bind(e)),i.addListener(c,"dragenter",this.onDragEnter.bind(e)),i.addListener(c,"dragover",this.onDragOver.bind(e)),i.addListener(c,"dragleave",this.onDragLeave.bind(e)),i.addListener(c,"drop",this.onDrop.bind(e));var A=null}function l(e,t,n,r){return Math.sqrt(Math.pow(n-e,2)+Math.pow(r-t,2))}var r=e("../lib/dom"),i=e("../lib/event"),s=e("../lib/useragent"),o=200,u=200,a=5;(function(){this.dragWait=function(){var e=Date.now()-this.mousedownEvent.time;e>this.editor.getDragDelay()&&this.startDrag()},this.dragWaitEnd=function(){var e=this.editor.container;e.draggable=!1,this.startSelect(this.mousedownEvent.getDocumentPosition()),this.selectEnd()},this.dragReadyEnd=function(e){this.editor.renderer.$cursorLayer.setBlinking(!this.editor.getReadOnly()),this.editor.unsetStyle("ace_dragging"),this.editor.renderer.setCursorStyle(""),this.dragWaitEnd()},this.startDrag=function(){this.cancelDrag=!1;var e=this.editor,t=e.container;t.draggable=!0,e.renderer.$cursorLayer.setBlinking(!1),e.setStyle("ace_dragging");var n=s.isWin?"default":"move";e.renderer.setCursorStyle(n),this.setState("dragReady")},this.onMouseDrag=function(e){var t=this.editor.container;if(s.isIE&&this.state=="dragReady"){var n=l(this.mousedownEvent.x,this.mousedownEvent.y,this.x,this.y);n>3&&t.dragDrop()}if(this.state==="dragWait"){var n=l(this.mousedownEvent.x,this.mousedownEvent.y,this.x,this.y);n>0&&(t.draggable=!1,this.startSelect(this.mousedownEvent.getDocumentPosition()))}},this.onMouseDown=function(e){if(!this.$dragEnabled)return;this.mousedownEvent=e;var t=this.editor,n=e.inSelection(),r=e.getButton(),i=e.domEvent.detail||1;if(i===1&&r===0&&n){if(e.editor.inMultiSelectMode&&(e.getAccelKey()||e.getShiftKey()))return;this.mousedownEvent.time=Date.now();var o=e.domEvent.target||e.domEvent.srcElement;"unselectable"in o&&(o.unselectable="on");if(t.getDragDelay()){if(s.isWebKit){this.cancelDrag=!0;var u=t.container;u.draggable=!0}this.setState("dragWait")}else this.startDrag();this.captureMouse(e,this.onMouseDrag.bind(this)),e.defaultPrevented=!0}}}).call(f.prototype),t.DragdropHandler=f}),define("ace/lib/net",["require","exports","module","ace/lib/dom"],function(e,t,n){"use strict";var r=e("./dom");t.get=function(e,t){var n=new XMLHttpRequest;n.open("GET",e,!0),n.onreadystatechange=function(){n.readyState===4&&t(n.responseText)},n.send(null)},t.loadScript=function(e,t){var n=r.getDocumentHead(),i=document.createElement("script");i.src=e,n.appendChild(i),i.onload=i.onreadystatechange=function(e,n){if(n||!i.readyState||i.readyState=="loaded"||i.readyState=="complete")i=i.onload=i.onreadystatechange=null,n||t()}},t.qualifyURL=function(e){var t=document.createElement("a");return t.href=e,t.href}}),define("ace/lib/event_emitter",["require","exports","module"],function(e,t,n){"use strict";var r={},i=function(){this.propagationStopped=!0},s=function(){this.defaultPrevented=!0};r._emit=r._dispatchEvent=function(e,t){this._eventRegistry||(this._eventRegistry={}),this._defaultHandlers||(this._defaultHandlers={});var n=this._eventRegistry[e]||[],r=this._defaultHandlers[e];if(!n.length&&!r)return;if(typeof t!="object"||!t)t={};t.type||(t.type=e),t.stopPropagation||(t.stopPropagation=i),t.preventDefault||(t.preventDefault=s),n=n.slice();for(var o=0;o<n.length;o++){n[o](t,this);if(t.propagationStopped)break}if(r&&!t.defaultPrevented)return r(t,this)},r._signal=function(e,t){var n=(this._eventRegistry||{})[e];if(!n)return;n=n.slice();for(var r=0;r<n.length;r++)n[r](t,this)},r.once=function(e,t){var n=this;t&&this.addEventListener(e,function r(){n.removeEventListener(e,r),t.apply(null,arguments)})},r.setDefaultHandler=function(e,t){var n=this._defaultHandlers;n||(n=this._defaultHandlers={_disabled_:{}});if(n[e]){var r=n[e],i=n._disabled_[e];i||(n._disabled_[e]=i=[]),i.push(r);var s=i.indexOf(t);s!=-1&&i.splice(s,1)}n[e]=t},r.removeDefaultHandler=function(e,t){var n=this._defaultHandlers;if(!n)return;var r=n._disabled_[e];if(n[e]==t){var i=n[e];r&&this.setDefaultHandler(e,r.pop())}else if(r){var s=r.indexOf(t);s!=-1&&r.splice(s,1)}},r.on=r.addEventListener=function(e,t,n){this._eventRegistry=this._eventRegistry||{};var r=this._eventRegistry[e];return r||(r=this._eventRegistry[e]=[]),r.indexOf(t)==-1&&r[n?"unshift":"push"](t),t},r.off=r.removeListener=r.removeEventListener=function(e,t){this._eventRegistry=this._eventRegistry||{};var n=this._eventRegistry[e];if(!n)return;var r=n.indexOf(t);r!==-1&&n.splice(r,1)},r.removeAllListeners=function(e){this._eventRegistry&&(this._eventRegistry[e]=[])},t.EventEmitter=r}),define("ace/lib/app_config",["require","exports","module","ace/lib/oop","ace/lib/event_emitter"],function(e,t,n){"no use strict";function o(e){typeof console!="undefined"&&console.warn&&console.warn.apply(console,arguments)}function u(e,t){var n=new Error(e);n.data=t,typeof console=="object"&&console.error&&console.error(n),setTimeout(function(){throw n})}var r=e("./oop"),i=e("./event_emitter").EventEmitter,s={setOptions:function(e){Object.keys(e).forEach(function(t){this.setOption(t,e[t])},this)},getOptions:function(e){var t={};return e?Array.isArray(e)||(t=e,e=Object.keys(t)):e=Object.keys(this.$options),e.forEach(function(e){t[e]=this.getOption(e)},this),t},setOption:function(e,t){if(this["$"+e]===t)return;var n=this.$options[e];if(!n)return o('misspelled option "'+e+'"');if(n.forwardTo)return this[n.forwardTo]&&this[n.forwardTo].setOption(e,t);n.handlesSet||(this["$"+e]=t),n&&n.set&&n.set.call(this,t)},getOption:function(e){var t=this.$options[e];return t?t.forwardTo?this[t.forwardTo]&&this[t.forwardTo].getOption(e):t&&t.get?t.get.call(this):this["$"+e]:o('misspelled option "'+e+'"')}},a=function(){this.$defaultOptions={}};(function(){r.implement(this,i),this.defineOptions=function(e,t,n){return e.$options||(this.$defaultOptions[t]=e.$options={}),Object.keys(n).forEach(function(t){var r=n[t];typeof r=="string"&&(r={forwardTo:r}),r.name||(r.name=t),e.$options[r.name]=r,"initialValue"in r&&(e["$"+r.name]=r.initialValue)}),r.implement(e,s),this},this.resetOptions=function(e){Object.keys(e.$options).forEach(function(t){var n=e.$options[t];"value"in n&&e.setOption(t,n.value)})},this.setDefaultValue=function(e,t,n){var r=this.$defaultOptions[e]||(this.$defaultOptions[e]={});r[t]&&(r.forwardTo?this.setDefaultValue(r.forwardTo,t,n):r[t].value=n)},this.setDefaultValues=function(e,t){Object.keys(t).forEach(function(n){this.setDefaultValue(e,n,t[n])},this)},this.warn=o,this.reportError=u}).call(a.prototype),t.AppConfig=a}),define("ace/config",["require","exports","module","ace/lib/lang","ace/lib/oop","ace/lib/net","ace/lib/app_config"],function(e,t,n){"no use strict";function f(r){if(!u||!u.document)return;a.packaged=r||e.packaged||n.packaged||u.define&&define.packaged;var i={},s="",o=document.currentScript||document._currentScript,f=o&&o.ownerDocument||document,c=f.getElementsByTagName("script");for(var h=0;h<c.length;h++){var p=c[h],d=p.src||p.getAttribute("src");if(!d)continue;var v=p.attributes;for(var m=0,g=v.length;m<g;m++){var y=v[m];y.name.indexOf("data-ace-")===0&&(i[l(y.name.replace(/^data-ace-/,""))]=y.value)}var b=d.match(/^(.*)\/ace(\-\w+)?\.js(\?|$)/);b&&(s=b[1])}s&&(i.base=i.base||s,i.packaged=!0),i.basePath=i.base,i.workerPath=i.workerPath||i.base,i.modePath=i.modePath||i.base,i.themePath=i.themePath||i.base,delete i.base;for(var w in i)typeof i[w]!="undefined"&&t.set(w,i[w])}function l(e){return e.replace(/-(.)/g,function(e,t){return t.toUpperCase()})}var r=e("./lib/lang"),i=e("./lib/oop"),s=e("./lib/net"),o=e("./lib/app_config").AppConfig;n.exports=t=new o;var u=function(){return this||typeof window!="undefined"&&window}(),a={packaged:!1,workerPath:null,modePath:null,themePath:null,basePath:"",suffix:".js",$moduleUrls:{}};t.get=function(e){if(!a.hasOwnProperty(e))throw new Error("Unknown config key: "+e);return a[e]},t.set=function(e,t){if(!a.hasOwnProperty(e))throw new Error("Unknown config key: "+e);a[e]=t},t.all=function(){return r.copyObject(a)},t.moduleUrl=function(e,t){if(a.$moduleUrls[e])return a.$moduleUrls[e];var n=e.split("/");t=t||n[n.length-2]||"";var r=t=="snippets"?"/":"-",i=n[n.length-1];if(t=="worker"&&r=="-"){var s=new RegExp("^"+t+"[\\-_]|[\\-_]"+t+"$","g");i=i.replace(s,"")}(!i||i==t)&&n.length>1&&(i=n[n.length-2]);var o=a[t+"Path"];return o==null?o=a.basePath:r=="/"&&(t=r=""),o&&o.slice(-1)!="/"&&(o+="/"),o+t+r+i+this.get("suffix")},t.setModuleUrl=function(e,t){return a.$moduleUrls[e]=t},t.$loading={},t.loadModule=function(n,r){var i,o;Array.isArray(n)&&(o=n[0],n=n[1]);try{i=e(n)}catch(u){}if(i&&!t.$loading[n])return r&&r(i);t.$loading[n]||(t.$loading[n]=[]),t.$loading[n].push(r);if(t.$loading[n].length>1)return;var a=function(){e([n],function(e){t._emit("load.module",{name:n,module:e});var r=t.$loading[n];t.$loading[n]=null,r.forEach(function(t){t&&t(e)})})};if(!t.get("packaged"))return a();s.loadScript(t.moduleUrl(n,o),a)},t.init=f}),define("ace/mouse/mouse_handler",["require","exports","module","ace/lib/event","ace/lib/useragent","ace/mouse/default_handlers","ace/mouse/default_gutter_handler","ace/mouse/mouse_event","ace/mouse/dragdrop_handler","ace/config"],function(e,t,n){"use strict";var r=e("../lib/event"),i=e("../lib/useragent"),s=e("./default_handlers").DefaultHandlers,o=e("./default_gutter_handler").GutterHandler,u=e("./mouse_event").MouseEvent,a=e("./dragdrop_handler").DragdropHandler,f=e("../config"),l=function(e){var t=this;this.editor=e,new s(this),new o(this),new a(this);var n=function(t){var n=!document.hasFocus||!document.hasFocus()||!e.isFocused()&&document.activeElement==(e.textInput&&e.textInput.getElement());n&&window.focus(),e.focus()},u=e.renderer.getMouseEventTarget();r.addListener(u,"click",this.onMouseEvent.bind(this,"click")),r.addListener(u,"mousemove",this.onMouseMove.bind(this,"mousemove")),r.addMultiMouseDownListener([u,e.renderer.scrollBarV&&e.renderer.scrollBarV.inner,e.renderer.scrollBarH&&e.renderer.scrollBarH.inner,e.textInput&&e.textInput.getElement()].filter(Boolean),[400,300,250],this,"onMouseEvent"),r.addMouseWheelListener(e.container,this.onMouseWheel.bind(this,"mousewheel")),r.addTouchMoveListener(e.container,this.onTouchMove.bind(this,"touchmove"));var f=e.renderer.$gutter;r.addListener(f,"mousedown",this.onMouseEvent.bind(this,"guttermousedown")),r.addListener(f,"click",this.onMouseEvent.bind(this,"gutterclick")),r.addListener(f,"dblclick",this.onMouseEvent.bind(this,"gutterdblclick")),r.addListener(f,"mousemove",this.onMouseEvent.bind(this,"guttermousemove")),r.addListener(u,"mousedown",n),r.addListener(f,"mousedown",n),i.isIE&&e.renderer.scrollBarV&&(r.addListener(e.renderer.scrollBarV.element,"mousedown",n),r.addListener(e.renderer.scrollBarH.element,"mousedown",n)),e.on("mousemove",function(n){if(t.state||t.$dragDelay||!t.$dragEnabled)return;var r=e.renderer.screenToTextCoordinates(n.x,n.y),i=e.session.selection.getRange(),s=e.renderer;!i.isEmpty()&&i.insideStart(r.row,r.column)?s.setCursorStyle("default"):s.setCursorStyle("")})};(function(){this.onMouseEvent=function(e,t){this.editor._emit(e,new u(t,this.editor))},this.onMouseMove=function(e,t){var n=this.editor._eventRegistry&&this.editor._eventRegistry.mousemove;if(!n||!n.length)return;this.editor._emit(e,new u(t,this.editor))},this.onMouseWheel=function(e,t){var n=new u(t,this.editor);n.speed=this.$scrollSpeed*2,n.wheelX=t.wheelX,n.wheelY=t.wheelY,this.editor._emit(e,n)},this.onTouchMove=function(e,t){var n=new u(t,this.editor);n.speed=1,n.wheelX=t.wheelX,n.wheelY=t.wheelY,this.editor._emit(e,n)},this.setState=function(e){this.state=e},this.captureMouse=function(e,t){this.x=e.x,this.y=e.y,this.isMousePressed=!0;var n=this.editor.renderer;n.$keepTextAreaAtCursor&&(n.$keepTextAreaAtCursor=null);var s=this,o=function(e){if(!e)return;if(i.isWebKit&&!e.which&&s.releaseMouse)return s.releaseMouse();s.x=e.clientX,s.y=e.clientY,t&&t(e),s.mouseEvent=new u(e,s.editor),s.$mouseMoved=!0},a=function(e){clearInterval(l),f(),s[s.state+"End"]&&s[s.state+"End"](e),s.state="",n.$keepTextAreaAtCursor==null&&(n.$keepTextAreaAtCursor=!0,n.$moveTextAreaToCursor()),s.isMousePressed=!1,s.$onCaptureMouseMove=s.releaseMouse=null,e&&s.onMouseEvent("mouseup",e)},f=function(){s[s.state]&&s[s.state](),s.$mouseMoved=!1};if(i.isOldIE&&e.domEvent.type=="dblclick")return setTimeout(function(){a(e)});s.$onCaptureMouseMove=o,s.releaseMouse=r.capture(this.editor.container,o,a);var l=setInterval(f,20)},this.releaseMouse=null,this.cancelContextMenu=function(){var e=function(t){if(t&&t.domEvent&&t.domEvent.type!="contextmenu")return;this.editor.off("nativecontextmenu",e),t&&t.domEvent&&r.stopEvent(t.domEvent)}.bind(this);setTimeout(e,10),this.editor.on("nativecontextmenu",e)}}).call(l.prototype),f.defineOptions(l.prototype,"mouseHandler",{scrollSpeed:{initialValue:2},dragDelay:{initialValue:i.isMac?150:0},dragEnabled:{initialValue:!0},focusTimout:{initialValue:0},tooltipFollowsMouse:{initialValue:!0}}),t.MouseHandler=l}),define("ace/mouse/fold_handler",["require","exports","module"],function(e,t,n){"use strict";function r(e){e.on("click",function(t){var n=t.getDocumentPosition(),r=e.session,i=r.getFoldAt(n.row,n.column,1);i&&(t.getAccelKey()?r.removeFold(i):r.expandFold(i),t.stop())}),e.on("gutterclick",function(t){var n=e.renderer.$gutterLayer.getRegion(t);if(n=="foldWidgets"){var r=t.getDocumentPosition().row,i=e.session;i.foldWidgets&&i.foldWidgets[r]&&e.session.onFoldWidgetClick(r,t),e.isFocused()||e.focus(),t.stop()}}),e.on("gutterdblclick",function(t){var n=e.renderer.$gutterLayer.getRegion(t);if(n=="foldWidgets"){var r=t.getDocumentPosition().row,i=e.session,s=i.getParentFoldRangeData(r,!0),o=s.range||s.firstRange;if(o){r=o.start.row;var u=i.getFoldAt(r,i.getLine(r).length,1);u?i.removeFold(u):(i.addFold("...",o),e.renderer.scrollCursorIntoView({row:o.start.row,column:0}))}t.stop()}})}t.FoldHandler=r}),define("ace/keyboard/keybinding",["require","exports","module","ace/lib/keys","ace/lib/event"],function(e,t,n){"use strict";var r=e("../lib/keys"),i=e("../lib/event"),s=function(e){this.$editor=e,this.$data={editor:e},this.$handlers=[],this.setDefaultHandler(e.commands)};(function(){this.setDefaultHandler=function(e){this.removeKeyboardHandler(this.$defaultHandler),this.$defaultHandler=e,this.addKeyboardHandler(e,0)},this.setKeyboardHandler=function(e){var t=this.$handlers;if(t[t.length-1]==e)return;while(t[t.length-1]&&t[t.length-1]!=this.$defaultHandler)this.removeKeyboardHandler(t[t.length-1]);this.addKeyboardHandler(e,1)},this.addKeyboardHandler=function(e,t){if(!e)return;typeof e=="function"&&!e.handleKeyboard&&(e.handleKeyboard=e);var n=this.$handlers.indexOf(e);n!=-1&&this.$handlers.splice(n,1),t==undefined?this.$handlers.push(e):this.$handlers.splice(t,0,e),n==-1&&e.attach&&e.attach(this.$editor)},this.removeKeyboardHandler=function(e){var t=this.$handlers.indexOf(e);return t==-1?!1:(this.$handlers.splice(t,1),e.detach&&e.detach(this.$editor),!0)},this.getKeyboardHandler=function(){return this.$handlers[this.$handlers.length-1]},this.getStatusText=function(){var e=this.$data,t=e.editor;return this.$handlers.map(function(n){return n.getStatusText&&n.getStatusText(t,e)||""}).filter(Boolean).join(" ")},this.$callKeyboardHandlers=function(e,t,n,r){var s,o=!1,u=this.$editor.commands;for(var a=this.$handlers.length;a--;){s=this.$handlers[a].handleKeyboard(this.$data,e,t,n,r);if(!s||!s.command)continue;s.command=="null"?o=!0:o=u.exec(s.command,this.$editor,s.args,r),o&&r&&e!=-1&&s.passEvent!=1&&s.command.passEvent!=1&&i.stopEvent(r);if(o)break}return!o&&e==-1&&(s={command:"insertstring"},o=u.exec("insertstring",this.$editor,t)),o&&this.$editor._signal&&this.$editor._signal("keyboardActivity",s),o},this.onCommandKey=function(e,t,n){var i=r.keyCodeToString(n);this.$callKeyboardHandlers(t,i,n,e)},this.onTextInput=function(e){this.$callKeyboardHandlers(-1,e)}}).call(s.prototype),t.KeyBinding=s}),define("ace/lib/bidiutil",["require","exports","module"],function(e,t,n){"use strict";function F(e,t,n,r){var i=s?d:p,c=null,h=null,v=null,m=0,g=null,y=null,b=-1,w=null,E=null,T=[];if(!r)for(w=0,r=[];w<n;w++)r[w]=R(e[w]);o=s,u=!1,a=!1,f=!1,l=!1;for(E=0;E<n;E++){c=m,T[E]=h=q(e,r,T,E),m=i[c][h],g=m&240,m&=15,t[E]=v=i[m][5];if(g>0)if(g==16){for(w=b;w<E;w++)t[w]=1;b=-1}else b=-1;y=i[m][6];if(y)b==-1&&(b=E);else if(b>-1){for(w=b;w<E;w++)t[w]=v;b=-1}r[E]==S&&(t[E]=0),o|=v}if(l)for(w=0;w<n;w++)if(r[w]==x){t[w]=s;for(var C=w-1;C>=0;C--){if(r[C]!=N)break;t[C]=s}}}function I(e,t,n){if(o<e)return;if(e==1&&s==m&&!f){n.reverse();return}var r=n.length,i=0,u,a,l,c;while(i<r){if(t[i]>=e){u=i+1;while(u<r&&t[u]>=e)u++;for(a=i,l=u-1;a<l;a++,l--)c=n[a],n[a]=n[l],n[l]=c;i=u}i++}}function q(e,t,n,r){var i=t[r],o,c,h,p;switch(i){case g:case y:u=!1;case E:case w:return i;case b:return u?w:b;case T:return u=!0,a=!0,y;case N:return E;case C:if(r<1||r+1>=t.length||(o=n[r-1])!=b&&o!=w||(c=t[r+1])!=b&&c!=w)return E;return u&&(c=w),c==o?c:E;case k:o=r>0?n[r-1]:S;if(o==b&&r+1<t.length&&t[r+1]==b)return b;return E;case L:if(r>0&&n[r-1]==b)return b;if(u)return E;p=r+1,h=t.length;while(p<h&&t[p]==L)p++;if(p<h&&t[p]==b)return b;return E;case A:h=t.length,p=r+1;while(p<h&&t[p]==A)p++;if(p<h){var d=e[r],v=d>=1425&&d<=2303||d==64286;o=t[p];if(v&&(o==y||o==T))return y}if(r<1||(o=t[r-1])==S)return E;return n[r-1];case S:return u=!1,f=!0,s;case x:return l=!0,E;case O:case M:case D:case P:case _:u=!1;case H:return E}}function R(e){var t=e.charCodeAt(0),n=t>>8;return n==0?t>191?g:B[t]:n==5?/[\u0591-\u05f4]/.test(e)?y:g:n==6?/[\u0610-\u061a\u064b-\u065f\u06d6-\u06e4\u06e7-\u06ed]/.test(e)?A:/[\u0660-\u0669\u066b-\u066c]/.test(e)?w:t==1642?L:/[\u06f0-\u06f9]/.test(e)?b:T:n==32&&t<=8287?j[t&255]:n==254?t>=65136?T:E:E}function U(e){return e>="\u064b"&&e<="\u0655"}var r=["\u0621","\u0641"],i=["\u063a","\u064a"],s=0,o=0,u=!1,a=!1,f=!1,l=!1,c=!1,h=!1,p=[[0,3,0,1,0,0,0],[0,3,0,1,2,2,0],[0,3,0,17,2,0,1],[0,3,5,5,4,1,0],[0,3,21,21,4,0,1],[0,3,5,5,4,2,0]],d=[[2,0,1,1,0,1,0],[2,0,1,1,0,2,0],[2,0,2,1,3,2,0],[2,0,2,33,3,1,1]],v=0,m=1,g=0,y=1,b=2,w=3,E=4,S=5,x=6,T=7,N=8,C=9,k=10,L=11,A=12,O=13,M=14,_=15,D=16,P=17,H=18,B=[H,H,H,H,H,H,H,H,H,x,S,x,N,S,H,H,H,H,H,H,H,H,H,H,H,H,H,H,S,S,S,x,N,E,E,L,L,L,E,E,E,E,E,k,C,k,C,C,b,b,b,b,b,b,b,b,b,b,C,E,E,E,E,E,E,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,E,E,E,E,E,E,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,E,E,E,E,H,H,H,H,H,H,S,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,C,E,L,L,L,L,E,E,E,E,g,E,E,H,E,E,L,L,b,b,E,g,E,E,E,b,g,E,E,E,E,E],j=[N,N,N,N,N,N,N,N,N,N,N,H,H,H,g,y,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,N,S,O,M,_,D,P,C,L,L,L,L,L,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,C,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,N];t.L=g,t.R=y,t.EN=b,t.ON_R=3,t.AN=4,t.R_H=5,t.B=6,t.DOT="\u00b7",t.doBidiReorder=function(e,n,r){if(e.length<2)return{};var i=e.split(""),o=new Array(i.length),u=new Array(i.length),a=[];s=r?m:v,F(i,a,i.length,n);for(var f=0;f<o.length;o[f]=f,f++);I(2,a,o),I(1,a,o);for(var f=0;f<o.length-1;f++)n[f]===w?a[f]=t.AN:a[f]===y&&(n[f]>T&&n[f]<O||n[f]===E||n[f]===H)?a[f]=t.ON_R:f>0&&i[f-1]==="\u0644"&&/\u0622|\u0623|\u0625|\u0627/.test(i[f])&&(a[f-1]=a[f]=t.R_H,f++);i[i.length-1]===t.DOT&&(a[i.length-1]=t.B);for(var f=0;f<o.length;f++)u[f]=a[o[f]];return{logicalFromVisual:o,bidiLevels:u}},t.hasBidiCharacters=function(e,t){var n=!1;for(var r=0;r<e.length;r++)t[r]=R(e.charAt(r)),!n&&(t[r]==y||t[r]==T)&&(n=!0);return n},t.getVisualFromLogicalIdx=function(e,t){for(var n=0;n<t.logicalFromVisual.length;n++)if(t.logicalFromVisual[n]==e)return n;return 0}}),define("ace/bidihandler",["require","exports","module","ace/lib/bidiutil","ace/lib/lang","ace/lib/useragent"],function(e,t,n){"use strict";var r=e("./lib/bidiutil"),i=e("./lib/lang"),s=e("./lib/useragent"),o=/[\u0590-\u05f4\u0600-\u06ff\u0700-\u08ac]/,u=function(e){this.session=e,this.bidiMap={},this.currentRow=null,this.bidiUtil=r,this.charWidths=[],this.EOL="\u00ac",this.showInvisibles=!0,this.isRtlDir=!1,this.line="",this.wrapIndent=0,this.isLastRow=!1,this.EOF="\u00b6",this.seenBidi=!1};(function(){this.isBidiRow=function(e,t,n){return this.seenBidi?(e!==this.currentRow&&(this.currentRow=e,this.updateRowLine(t,n),this.updateBidiMap()),this.bidiMap.bidiLevels):!1},this.onChange=function(e){this.seenBidi?this.currentRow=null:e.action=="insert"&&o.test(e.lines.join("\n"))&&(this.seenBidi=!0,this.currentRow=null)},this.getDocumentRow=function(){var e=0,t=this.session.$screenRowCache;if(t.length){var n=this.session.$getRowCacheIndex(t,this.currentRow);n>=0&&(e=this.session.$docRowCache[n])}return e},this.getSplitIndex=function(){var e=0,t=this.session.$screenRowCache;if(t.length){var n,r=this.session.$getRowCacheIndex(t,this.currentRow);while(this.currentRow-e>0){n=this.session.$getRowCacheIndex(t,this.currentRow-e-1);if(n!==r)break;r=n,e++}}return e},this.updateRowLine=function(e,t){e===undefined&&(e=this.getDocumentRow()),this.wrapIndent=0,this.isLastRow=e===this.session.getLength()-1,this.line=this.session.getLine(e);if(this.session.$useWrapMode){var n=this.session.$wrapData[e];n&&(t===undefined&&(t=this.getSplitIndex()),t>0&&n.length?(this.wrapIndent=n.indent,this.line=t<n.length?this.line.substring(n[t-1],n[n.length-1]):this.line.substring(n[n.length-1])):this.line=this.line.substring(0,n[t]))}var s=this.session,o=0,u;this.line=this.line.replace(/\t|[\u1100-\u2029, \u202F-\uFFE6]/g,function(e,t){return e===" "||s.isFullWidth(e.charCodeAt(0))?(u=e===" "?s.getScreenTabSize(t+o):2,o+=u-1,i.stringRepeat(r.DOT,u)):e})},this.updateBidiMap=function(){var e=[],t=this.isLastRow?this.EOF:this.EOL,n=this.line+(this.showInvisibles?t:r.DOT);r.hasBidiCharacters(n,e)?this.bidiMap=r.doBidiReorder(n,e,this.isRtlDir):this.bidiMap={}},this.markAsDirty=function(){this.currentRow=null},this.updateCharacterWidths=function(e){if(!this.seenBidi)return;if(this.characterWidth===e.$characterSize.width)return;var t=this.characterWidth=e.$characterSize.width,n=e.$measureCharWidth("\u05d4");this.charWidths[r.L]=this.charWidths[r.EN]=this.charWidths[r.ON_R]=t,this.charWidths[r.R]=this.charWidths[r.AN]=n,this.charWidths[r.R_H]=s.isChrome?n:n*.45,this.charWidths[r.B]=0,this.currentRow=null},this.getShowInvisibles=function(){return this.showInvisibles},this.setShowInvisibles=function(e){this.showInvisibles=e,this.currentRow=null},this.setEolChar=function(e){this.EOL=e},this.setTextDir=function(e){this.isRtlDir=e},this.getPosLeft=function(e){e-=this.wrapIndent;var t=r.getVisualFromLogicalIdx(e>0?e-1:0,this.bidiMap),n=this.bidiMap.bidiLevels,i=0;e===0&&n[t]%2!==0&&t++;for(var s=0;s<t;s++)i+=this.charWidths[n[s]];return e!==0&&n[t]%2===0&&(i+=this.charWidths[n[t]]),this.wrapIndent&&(i+=this.wrapIndent*this.charWidths[r.L]),i},this.getSelections=function(e,t){var n=this.bidiMap,i=n.bidiLevels,s,o=this.wrapIndent*this.charWidths[r.L],u=[],a=Math.min(e,t)-this.wrapIndent,f=Math.max(e,t)-this.wrapIndent,l=!1,c=!1,h=0;for(var p,d=0;d<i.length;d++)p=n.logicalFromVisual[d],s=i[d],l=p>=a&&p<f,l&&!c?h=o:!l&&c&&u.push({left:h,width:o-h}),o+=this.charWidths[s],c=l;return l&&d===i.length&&u.push({left:h,width:o-h}),u},this.offsetToCol=function(e){var t=0,e=Math.max(e,0),n=0,i=0,s=this.bidiMap.bidiLevels,o=this.charWidths[s[i]];this.wrapIndent&&(e-=this.wrapIndent*this.charWidths[r.L]);while(e>n+o/2){n+=o;if(i===s.length-1){o=0;break}o=this.charWidths[s[++i]]}return i>0&&s[i-1]%2!==0&&s[i]%2===0?(e<n&&i--,t=this.bidiMap.logicalFromVisual[i]):i>0&&s[i-1]%2===0&&s[i]%2!==0?t=1+(e>n?this.bidiMap.logicalFromVisual[i]:this.bidiMap.logicalFromVisual[i-1]):this.isRtlDir&&i===s.length-1&&o===0&&s[i-1]%2===0||!this.isRtlDir&&i===0&&s[i]%2!==0?t=1+this.bidiMap.logicalFromVisual[i]:(i>0&&s[i-1]%2!==0&&o!==0&&i--,t=this.bidiMap.logicalFromVisual[i]),t+this.wrapIndent}}).call(u.prototype),t.BidiHandler=u}),define("ace/range",["require","exports","module"],function(e,t,n){"use strict";var r=function(e,t){return e.row-t.row||e.column-t.column},i=function(e,t,n,r){this.start={row:e,column:t},this.end={row:n,column:r}};(function(){this.isEqual=function(e){return this.start.row===e.start.row&&this.end.row===e.end.row&&this.start.column===e.start.column&&this.end.column===e.end.column},this.toString=function(){return"Range: ["+this.start.row+"/"+this.start.column+"] -> ["+this.end.row+"/"+this.end.column+"]"},this.contains=function(e,t){return this.compare(e,t)==0},this.compareRange=function(e){var t,n=e.end,r=e.start;return t=this.compare(n.row,n.column),t==1?(t=this.compare(r.row,r.column),t==1?2:t==0?1:0):t==-1?-2:(t=this.compare(r.row,r.column),t==-1?-1:t==1?42:0)},this.comparePoint=function(e){return this.compare(e.row,e.column)},this.containsRange=function(e){return this.comparePoint(e.start)==0&&this.comparePoint(e.end)==0},this.intersects=function(e){var t=this.compareRange(e);return t==-1||t==0||t==1},this.isEnd=function(e,t){return this.end.row==e&&this.end.column==t},this.isStart=function(e,t){return this.start.row==e&&this.start.column==t},this.setStart=function(e,t){typeof e=="object"?(this.start.column=e.column,this.start.row=e.row):(this.start.row=e,this.start.column=t)},this.setEnd=function(e,t){typeof e=="object"?(this.end.column=e.column,this.end.row=e.row):(this.end.row=e,this.end.column=t)},this.inside=function(e,t){return this.compare(e,t)==0?this.isEnd(e,t)||this.isStart(e,t)?!1:!0:!1},this.insideStart=function(e,t){return this.compare(e,t)==0?this.isEnd(e,t)?!1:!0:!1},this.insideEnd=function(e,t){return this.compare(e,t)==0?this.isStart(e,t)?!1:!0:!1},this.compare=function(e,t){return!this.isMultiLine()&&e===this.start.row?t<this.start.column?-1:t>this.end.column?1:0:e<this.start.row?-1:e>this.end.row?1:this.start.row===e?t>=this.start.column?0:-1:this.end.row===e?t<=this.end.column?0:1:0},this.compareStart=function(e,t){return this.start.row==e&&this.start.column==t?-1:this.compare(e,t)},this.compareEnd=function(e,t){return this.end.row==e&&this.end.column==t?1:this.compare(e,t)},this.compareInside=function(e,t){return this.end.row==e&&this.end.column==t?1:this.start.row==e&&this.start.column==t?-1:this.compare(e,t)},this.clipRows=function(e,t){if(this.end.row>t)var n={row:t+1,column:0};else if(this.end.row<e)var n={row:e,column:0};if(this.start.row>t)var r={row:t+1,column:0};else if(this.start.row<e)var r={row:e,column:0};return i.fromPoints(r||this.start,n||this.end)},this.extend=function(e,t){var n=this.compare(e,t);if(n==0)return this;if(n==-1)var r={row:e,column:t};else var s={row:e,column:t};return i.fromPoints(r||this.start,s||this.end)},this.isEmpty=function(){return this.start.row===this.end.row&&this.start.column===this.end.column},this.isMultiLine=function(){return this.start.row!==this.end.row},this.clone=function(){return i.fromPoints(this.start,this.end)},this.collapseRows=function(){return this.end.column==0?new i(this.start.row,0,Math.max(this.start.row,this.end.row-1),0):new i(this.start.row,0,this.end.row,0)},this.toScreenRange=function(e){var t=e.documentToScreenPosition(this.start),n=e.documentToScreenPosition(this.end);return new i(t.row,t.column,n.row,n.column)},this.moveBy=function(e,t){this.start.row+=e,this.start.column+=t,this.end.row+=e,this.end.column+=t}}).call(i.prototype),i.fromPoints=function(e,t){return new i(e.row,e.column,t.row,t.column)},i.comparePoints=r,i.comparePoints=function(e,t){return e.row-t.row||e.column-t.column},t.Range=i}),define("ace/selection",["require","exports","module","ace/lib/oop","ace/lib/lang","ace/lib/event_emitter","ace/range"],function(e,t,n){"use strict";var r=e("./lib/oop"),i=e("./lib/lang"),s=e("./lib/event_emitter").EventEmitter,o=e("./range").Range,u=function(e){this.session=e,this.doc=e.getDocument(),this.clearSelection(),this.lead=this.selectionLead=this.doc.createAnchor(0,0),this.anchor=this.selectionAnchor=this.doc.createAnchor(0,0);var t=this;this.lead.on("change",function(e){t._emit("changeCursor"),t.$isEmpty||t._emit("changeSelection"),!t.$keepDesiredColumnOnChange&&e.old.column!=e.value.column&&(t.$desiredColumn=null)}),this.selectionAnchor.on("change",function(){t.$isEmpty||t._emit("changeSelection")})};(function(){r.implement(this,s),this.isEmpty=function(){return this.$isEmpty||this.anchor.row==this.lead.row&&this.anchor.column==this.lead.column},this.isMultiLine=function(){return this.isEmpty()?!1:this.getRange().isMultiLine()},this.getCursor=function(){return this.lead.getPosition()},this.setSelectionAnchor=function(e,t){this.anchor.setPosition(e,t),this.$isEmpty&&(this.$isEmpty=!1,this._emit("changeSelection"))},this.getSelectionAnchor=function(){return this.$isEmpty?this.getSelectionLead():this.anchor.getPosition()},this.getSelectionLead=function(){return this.lead.getPosition()},this.shiftSelection=function(e){if(this.$isEmpty){this.moveCursorTo(this.lead.row,this.lead.column+e);return}var t=this.getSelectionAnchor(),n=this.getSelectionLead(),r=this.isBackwards();(!r||t.column!==0)&&this.setSelectionAnchor(t.row,t.column+e),(r||n.column!==0)&&this.$moveSelection(function(){this.moveCursorTo(n.row,n.column+e)})},this.isBackwards=function(){var e=this.anchor,t=this.lead;return e.row>t.row||e.row==t.row&&e.column>t.column},this.getRange=function(){var e=this.anchor,t=this.lead;return this.isEmpty()?o.fromPoints(t,t):this.isBackwards()?o.fromPoints(t,e):o.fromPoints(e,t)},this.clearSelection=function(){this.$isEmpty||(this.$isEmpty=!0,this._emit("changeSelection"))},this.selectAll=function(){var e=this.doc.getLength()-1;this.setSelectionAnchor(0,0),this.moveCursorTo(e,this.doc.getLine(e).length)},this.setRange=this.setSelectionRange=function(e,t){t?(this.setSelectionAnchor(e.end.row,e.end.column),this.selectTo(e.start.row,e.start.column)):(this.setSelectionAnchor(e.start.row,e.start.column),this.selectTo(e.end.row,e.end.column)),this.getRange().isEmpty()&&(this.$isEmpty=!0),this.$desiredColumn=null},this.$moveSelection=function(e){var t=this.lead;this.$isEmpty&&this.setSelectionAnchor(t.row,t.column),e.call(this)},this.selectTo=function(e,t){this.$moveSelection(function(){this.moveCursorTo(e,t)})},this.selectToPosition=function(e){this.$moveSelection(function(){this.moveCursorToPosition(e)})},this.moveTo=function(e,t){this.clearSelection(),this.moveCursorTo(e,t)},this.moveToPosition=function(e){this.clearSelection(),this.moveCursorToPosition(e)},this.selectUp=function(){this.$moveSelection(this.moveCursorUp)},this.selectDown=function(){this.$moveSelection(this.moveCursorDown)},this.selectRight=function(){this.$moveSelection(this.moveCursorRight)},this.selectLeft=function(){this.$moveSelection(this.moveCursorLeft)},this.selectLineStart=function(){this.$moveSelection(this.moveCursorLineStart)},this.selectLineEnd=function(){this.$moveSelection(this.moveCursorLineEnd)},this.selectFileEnd=function(){this.$moveSelection(this.moveCursorFileEnd)},this.selectFileStart=function(){this.$moveSelection(this.moveCursorFileStart)},this.selectWordRight=function(){this.$moveSelection(this.moveCursorWordRight)},this.selectWordLeft=function(){this.$moveSelection(this.moveCursorWordLeft)},this.getWordRange=function(e,t){if(typeof t=="undefined"){var n=e||this.lead;e=n.row,t=n.column}return this.session.getWordRange(e,t)},this.selectWord=function(){this.setSelectionRange(this.getWordRange())},this.selectAWord=function(){var e=this.getCursor(),t=this.session.getAWordRange(e.row,e.column);this.setSelectionRange(t)},this.getLineRange=function(e,t){var n=typeof e=="number"?e:this.lead.row,r,i=this.session.getFoldLine(n);return i?(n=i.start.row,r=i.end.row):r=n,t===!0?new o(n,0,r,this.session.getLine(r).length):new o(n,0,r+1,0)},this.selectLine=function(){this.setSelectionRange(this.getLineRange())},this.moveCursorUp=function(){this.moveCursorBy(-1,0)},this.moveCursorDown=function(){this.moveCursorBy(1,0)},this.wouldMoveIntoSoftTab=function(e,t,n){var r=e.column,i=e.column+t;return n<0&&(r=e.column-t,i=e.column),this.session.isTabStop(e)&&this.doc.getLine(e.row).slice(r,i).split(" ").length-1==t},this.moveCursorLeft=function(){var e=this.lead.getPosition(),t;if(t=this.session.getFoldAt(e.row,e.column,-1))this.moveCursorTo(t.start.row,t.start.column);else if(e.column===0)e.row>0&&this.moveCursorTo(e.row-1,this.doc.getLine(e.row-1).length);else{var n=this.session.getTabSize();this.wouldMoveIntoSoftTab(e,n,-1)&&!this.session.getNavigateWithinSoftTabs()?this.moveCursorBy(0,-n):this.moveCursorBy(0,-1)}},this.moveCursorRight=function(){var e=this.lead.getPosition(),t;if(t=this.session.getFoldAt(e.row,e.column,1))this.moveCursorTo(t.end.row,t.end.column);else if(this.lead.column==this.doc.getLine(this.lead.row).length)this.lead.row<this.doc.getLength()-1&&this.moveCursorTo(this.lead.row+1,0);else{var n=this.session.getTabSize(),e=this.lead;this.wouldMoveIntoSoftTab(e,n,1)&&!this.session.getNavigateWithinSoftTabs()?this.moveCursorBy(0,n):this.moveCursorBy(0,1)}},this.moveCursorLineStart=function(){var e=this.lead.row,t=this.lead.column,n=this.session.documentToScreenRow(e,t),r=this.session.screenToDocumentPosition(n,0),i=this.session.getDisplayLine(e,null,r.row,r.column),s=i.match(/^\s*/);s[0].length!=t&&!this.session.$useEmacsStyleLineStart&&(r.column+=s[0].length),this.moveCursorToPosition(r)},this.moveCursorLineEnd=function(){var e=this.lead,t=this.session.getDocumentLastRowColumnPosition(e.row,e.column);if(this.lead.column==t.column){var n=this.session.getLine(t.row);if(t.column==n.length){var r=n.search(/\s+$/);r>0&&(t.column=r)}}this.moveCursorTo(t.row,t.column)},this.moveCursorFileEnd=function(){var e=this.doc.getLength()-1,t=this.doc.getLine(e).length;this.moveCursorTo(e,t)},this.moveCursorFileStart=function(){this.moveCursorTo(0,0)},this.moveCursorLongWordRight=function(){var e=this.lead.row,t=this.lead.column,n=this.doc.getLine(e),r=n.substring(t),i;this.session.nonTokenRe.lastIndex=0,this.session.tokenRe.lastIndex=0;var s=this.session.getFoldAt(e,t,1);if(s){this.moveCursorTo(s.end.row,s.end.column);return}if(i=this.session.nonTokenRe.exec(r))t+=this.session.nonTokenRe.lastIndex,this.session.nonTokenRe.lastIndex=0,r=n.substring(t);if(t>=n.length){this.moveCursorTo(e,n.length),this.moveCursorRight(),e<this.doc.getLength()-1&&this.moveCursorWordRight();return}if(i=this.session.tokenRe.exec(r))t+=this.session.tokenRe.lastIndex,this.session.tokenRe.lastIndex=0;this.moveCursorTo(e,t)},this.moveCursorLongWordLeft=function(){var e=this.lead.row,t=this.lead.column,n;if(n=this.session.getFoldAt(e,t,-1)){this.moveCursorTo(n.start.row,n.start.column);return}var r=this.session.getFoldStringAt(e,t,-1);r==null&&(r=this.doc.getLine(e).substring(0,t));var s=i.stringReverse(r),o;this.session.nonTokenRe.lastIndex=0,this.session.tokenRe.lastIndex=0;if(o=this.session.nonTokenRe.exec(s))t-=this.session.nonTokenRe.lastIndex,s=s.slice(this.session.nonTokenRe.lastIndex),this.session.nonTokenRe.lastIndex=0;if(t<=0){this.moveCursorTo(e,0),this.moveCursorLeft(),e>0&&this.moveCursorWordLeft();return}if(o=this.session.tokenRe.exec(s))t-=this.session.tokenRe.lastIndex,this.session.tokenRe.lastIndex=0;this.moveCursorTo(e,t)},this.$shortWordEndIndex=function(e){var t,n=0,r,i=/\s/,s=this.session.tokenRe;s.lastIndex=0;if(t=this.session.tokenRe.exec(e))n=this.session.tokenRe.lastIndex;else{while((r=e[n])&&i.test(r))n++;if(n<1){s.lastIndex=0;while((r=e[n])&&!s.test(r)){s.lastIndex=0,n++;if(i.test(r)){if(n>2){n--;break}while((r=e[n])&&i.test(r))n++;if(n>2)break}}}}return s.lastIndex=0,n},this.moveCursorShortWordRight=function(){var e=this.lead.row,t=this.lead.column,n=this.doc.getLine(e),r=n.substring(t),i=this.session.getFoldAt(e,t,1);if(i)return this.moveCursorTo(i.end.row,i.end.column);if(t==n.length){var s=this.doc.getLength();do e++,r=this.doc.getLine(e);while(e<s&&/^\s*$/.test(r));/^\s+/.test(r)||(r=""),t=0}var o=this.$shortWordEndIndex(r);this.moveCursorTo(e,t+o)},this.moveCursorShortWordLeft=function(){var e=this.lead.row,t=this.lead.column,n;if(n=this.session.getFoldAt(e,t,-1))return this.moveCursorTo(n.start.row,n.start.column);var r=this.session.getLine(e).substring(0,t);if(t===0){do e--,r=this.doc.getLine(e);while(e>0&&/^\s*$/.test(r));t=r.length,/\s+$/.test(r)||(r="")}var s=i.stringReverse(r),o=this.$shortWordEndIndex(s);return this.moveCursorTo(e,t-o)},this.moveCursorWordRight=function(){this.session.$selectLongWords?this.moveCursorLongWordRight():this.moveCursorShortWordRight()},this.moveCursorWordLeft=function(){this.session.$selectLongWords?this.moveCursorLongWordLeft():this.moveCursorShortWordLeft()},this.moveCursorBy=function(e,t){var n=this.session.documentToScreenPosition(this.lead.row,this.lead.column),r;t===0&&(e!==0&&(this.session.$bidiHandler.isBidiRow(n.row,this.lead.row)?(r=this.session.$bidiHandler.getPosLeft(n.column),n.column=Math.round(r/this.session.$bidiHandler.charWidths[0])):r=n.column*this.session.$bidiHandler.charWidths[0]),this.$desiredColumn?n.column=this.$desiredColumn:this.$desiredColumn=n.column);var i=this.session.screenToDocumentPosition(n.row+e,n.column,r);e!==0&&t===0&&i.row===this.lead.row&&i.column===this.lead.column&&this.session.lineWidgets&&this.session.lineWidgets[i.row]&&(i.row>0||e>0)&&i.row++,this.moveCursorTo(i.row,i.column+t,t===0)},this.moveCursorToPosition=function(e){this.moveCursorTo(e.row,e.column)},this.moveCursorTo=function(e,t,n){var r=this.session.getFoldAt(e,t,1);r&&(e=r.start.row,t=r.start.column),this.$keepDesiredColumnOnChange=!0;var i=this.session.getLine(e);/[\uDC00-\uDFFF]/.test(i.charAt(t))&&i.charAt(t-1)&&(this.lead.row==e&&this.lead.column==t+1?t-=1:t+=1),this.lead.setPosition(e,t),this.$keepDesiredColumnOnChange=!1,n||(this.$desiredColumn=null)},this.moveCursorToScreen=function(e,t,n){var r=this.session.screenToDocumentPosition(e,t);this.moveCursorTo(r.row,r.column,n)},this.detach=function(){this.lead.detach(),this.anchor.detach(),this.session=this.doc=null},this.fromOrientedRange=function(e){this.setSelectionRange(e,e.cursor==e.start),this.$desiredColumn=e.desiredColumn||this.$desiredColumn},this.toOrientedRange=function(e){var t=this.getRange();return e?(e.start.column=t.start.column,e.start.row=t.start.row,e.end.column=t.end.column,e.end.row=t.end.row):e=t,e.cursor=this.isBackwards()?e.start:e.end,e.desiredColumn=this.$desiredColumn,e},this.getRangeOfMovements=function(e){var t=this.getCursor();try{e(this);var n=this.getCursor();return o.fromPoints(t,n)}catch(r){return o.fromPoints(t,t)}finally{this.moveCursorToPosition(t)}},this.toJSON=function(){if(this.rangeCount)var e=this.ranges.map(function(e){var t=e.clone();return t.isBackwards=e.cursor==e.start,t});else{var e=this.getRange();e.isBackwards=this.isBackwards()}return e},this.fromJSON=function(e){if(e.start==undefined){if(this.rangeList){this.toSingleRange(e[0]);for(var t=e.length;t--;){var n=o.fromPoints(e[t].start,e[t].end);e[t].isBackwards&&(n.cursor=n.start),this.addRange(n,!0)}return}e=e[0]}this.rangeList&&this.toSingleRange(e),this.setSelectionRange(e,e.isBackwards)},this.isEqual=function(e){if((e.length||this.rangeCount)&&e.length!=this.rangeCount)return!1;if(!e.length||!this.ranges)return this.getRange().isEqual(e);for(var t=this.ranges.length;t--;)if(!this.ranges[t].isEqual(e[t]))return!1;return!0}}).call(u.prototype),t.Selection=u}),define("ace/tokenizer",["require","exports","module","ace/config"],function(e,t,n){"use strict";var r=e("./config"),i=2e3,s=function(e){this.states=e,this.regExps={},this.matchMappings={};for(var t in this.states){var n=this.states[t],r=[],i=0,s=this.matchMappings[t]={defaultToken:"text"},o="g",u=[];for(var a=0;a<n.length;a++){var f=n[a];f.defaultToken&&(s.defaultToken=f.defaultToken),f.caseInsensitive&&(o="gi");if(f.regex==null)continue;f.regex instanceof RegExp&&(f.regex=f.regex.toString().slice(1,-1));var l=f.regex,c=(new RegExp("(?:("+l+")|(.))")).exec("a").length-2;Array.isArray(f.token)?f.token.length==1||c==1?f.token=f.token[0]:c-1!=f.token.length?(this.reportError("number of classes and regexp groups doesn't match",{rule:f,groupCount:c-1}),f.token=f.token[0]):(f.tokenArray=f.token,f.token=null,f.onMatch=this.$arrayTokens):typeof f.token=="function"&&!f.onMatch&&(c>1?f.onMatch=this.$applyToken:f.onMatch=f.token),c>1&&(/\\\d/.test(f.regex)?l=f.regex.replace(/\\([0-9]+)/g,function(e,t){return"\\"+(parseInt(t,10)+i+1)}):(c=1,l=this.removeCapturingGroups(f.regex)),!f.splitRegex&&typeof f.token!="string"&&u.push(f)),s[i]=a,i+=c,r.push(l),f.onMatch||(f.onMatch=null)}r.length||(s[0]=0,r.push("$")),u.forEach(function(e){e.splitRegex=this.createSplitterRegexp(e.regex,o)},this),this.regExps[t]=new RegExp("("+r.join(")|(")+")|($)",o)}};(function(){this.$setMaxTokenCount=function(e){i=e|0},this.$applyToken=function(e){var t=this.splitRegex.exec(e).slice(1),n=this.token.apply(this,t);if(typeof n=="string")return[{type:n,value:e}];var r=[];for(var i=0,s=n.length;i<s;i++)t[i]&&(r[r.length]={type:n[i],value:t[i]});return r},this.$arrayTokens=function(e){if(!e)return[];var t=this.splitRegex.exec(e);if(!t)return"text";var n=[],r=this.tokenArray;for(var i=0,s=r.length;i<s;i++)t[i+1]&&(n[n.length]={type:r[i],value:t[i+1]});return n},this.removeCapturingGroups=function(e){var t=e.replace(/\[(?:\\.|[^\]])*?\]|\\.|\(\?[:=!]|(\()/g,function(e,t){return t?"(?:":e});return t},this.createSplitterRegexp=function(e,t){if(e.indexOf("(?=")!=-1){var n=0,r=!1,i={};e.replace(/(\\.)|(\((?:\?[=!])?)|(\))|([\[\]])/g,function(e,t,s,o,u,a){return r?r=u!="]":u?r=!0:o?(n==i.stack&&(i.end=a+1,i.stack=-1),n--):s&&(n++,s.length!=1&&(i.stack=n,i.start=a)),e}),i.end!=null&&/^\)*$/.test(e.substr(i.end))&&(e=e.substring(0,i.start)+e.substr(i.end))}return e.charAt(0)!="^"&&(e="^"+e),e.charAt(e.length-1)!="$"&&(e+="$"),new RegExp(e,(t||"").replace("g",""))},this.getLineTokens=function(e,t){if(t&&typeof t!="string"){var n=t.slice(0);t=n[0],t==="#tmp"&&(n.shift(),t=n.shift())}else var n=[];var r=t||"start",s=this.states[r];s||(r="start",s=this.states[r]);var o=this.matchMappings[r],u=this.regExps[r];u.lastIndex=0;var a,f=[],l=0,c=0,h={type:null,value:""};while(a=u.exec(e)){var p=o.defaultToken,d=null,v=a[0],m=u.lastIndex;if(m-v.length>l){var g=e.substring(l,m-v.length);h.type==p?h.value+=g:(h.type&&f.push(h),h={type:p,value:g})}for(var y=0;y<a.length-2;y++){if(a[y+1]===undefined)continue;d=s[o[y]],d.onMatch?p=d.onMatch(v,r,n,e):p=d.token,d.next&&(typeof d.next=="string"?r=d.next:r=d.next(r,n),s=this.states[r],s||(this.reportError("state doesn't exist",r),r="start",s=this.states[r]),o=this.matchMappings[r],l=m,u=this.regExps[r],u.lastIndex=m),d.consumeLineEnd&&(l=m);break}if(v)if(typeof p=="string")!!d&&d.merge===!1||h.type!==p?(h.type&&f.push(h),h={type:p,value:v}):h.value+=v;else if(p){h.type&&f.push(h),h={type:null,value:""};for(var y=0;y<p.length;y++)f.push(p[y])}if(l==e.length)break;l=m;if(c++>i){c>2*e.length&&this.reportError("infinite loop with in ace tokenizer",{startState:t,line:e});while(l<e.length)h.type&&f.push(h),h={value:e.substring(l,l+=2e3),type:"overflow"};r="start",n=[];break}}return h.type&&f.push(h),n.length>1&&n[0]!==r&&n.unshift("#tmp",r),{tokens:f,state:n.length?n:r}},this.reportError=r.reportError}).call(s.prototype),t.Tokenizer=s}),define("ace/mode/text_highlight_rules",["require","exports","module","ace/lib/lang"],function(e,t,n){"use strict";var r=e("../lib/lang"),i=function(){this.$rules={start:[{token:"empty_line",regex:"^$"},{defaultToken:"text"}]}};(function(){this.addRules=function(e,t){if(!t){for(var n in e)this.$rules[n]=e[n];return}for(var n in e){var r=e[n];for(var i=0;i<r.length;i++){var s=r[i];if(s.next||s.onMatch)typeof s.next=="string"&&s.next.indexOf(t)!==0&&(s.next=t+s.next),s.nextState&&s.nextState.indexOf(t)!==0&&(s.nextState=t+s.nextState)}this.$rules[t+n]=r}},this.getRules=function(){return this.$rules},this.embedRules=function(e,t,n,i,s){var o=typeof e=="function"?(new e).getRules():e;if(i)for(var u=0;u<i.length;u++)i[u]=t+i[u];else{i=[];for(var a in o)i.push(t+a)}this.addRules(o,t);if(n){var f=Array.prototype[s?"push":"unshift"];for(var u=0;u<i.length;u++)f.apply(this.$rules[i[u]],r.deepCopy(n))}this.$embeds||(this.$embeds=[]),this.$embeds.push(t)},this.getEmbeds=function(){return this.$embeds};var e=function(e,t){return(e!="start"||t.length)&&t.unshift(this.nextState,e),this.nextState},t=function(e,t){return t.shift(),t.shift()||"start"};this.normalizeRules=function(){function i(s){var o=r[s];o.processed=!0;for(var u=0;u<o.length;u++){var a=o[u],f=null;Array.isArray(a)&&(f=a,a={}),!a.regex&&a.start&&(a.regex=a.start,a.next||(a.next=[]),a.next.push({defaultToken:a.token},{token:a.token+".end",regex:a.end||a.start,next:"pop"}),a.token=a.token+".start",a.push=!0);var l=a.next||a.push;if(l&&Array.isArray(l)){var c=a.stateName;c||(c=a.token,typeof c!="string"&&(c=c[0]||""),r[c]&&(c+=n++)),r[c]=l,a.next=c,i(c)}else l=="pop"&&(a.next=t);a.push&&(a.nextState=a.next||a.push,a.next=e,delete a.push);if(a.rules)for(var h in a.rules)r[h]?r[h].push&&r[h].push.apply(r[h],a.rules[h]):r[h]=a.rules[h];var p=typeof a=="string"?a:a.include;p&&(Array.isArray(p)?f=p.map(function(e){return r[e]}):f=r[p]);if(f){var d=[u,1].concat(f);a.noEscape&&(d=d.filter(function(e){return!e.next})),o.splice.apply(o,d),u--}a.keywordMap&&(a.token=this.createKeywordMapper(a.keywordMap,a.defaultToken||"text",a.caseInsensitive),delete a.defaultToken)}}var n=0,r=this.$rules;Object.keys(r).forEach(i,this)},this.createKeywordMapper=function(e,t,n,r){var i=Object.create(null);return Object.keys(e).forEach(function(t){var s=e[t];n&&(s=s.toLowerCase());var o=s.split(r||"|");for(var u=o.length;u--;)i[o[u]]=t}),Object.getPrototypeOf(i)&&(i.__proto__=null),this.$keywordList=Object.keys(i),e=null,n?function(e){return i[e.toLowerCase()]||t}:function(e){return i[e]||t}},this.getKeywords=function(){return this.$keywords}}).call(i.prototype),t.TextHighlightRules=i}),define("ace/mode/behaviour",["require","exports","module"],function(e,t,n){"use strict";var r=function(){this.$behaviours={}};(function(){this.add=function(e,t,n){switch(undefined){case this.$behaviours:this.$behaviours={};case this.$behaviours[e]:this.$behaviours[e]={}}this.$behaviours[e][t]=n},this.addBehaviours=function(e){for(var t in e)for(var n in e[t])this.add(t,n,e[t][n])},this.remove=function(e){this.$behaviours&&this.$behaviours[e]&&delete this.$behaviours[e]},this.inherit=function(e,t){if(typeof e=="function")var n=(new e).getBehaviours(t);else var n=e.getBehaviours(t);this.addBehaviours(n)},this.getBehaviours=function(e){if(!e)return this.$behaviours;var t={};for(var n=0;n<e.length;n++)this.$behaviours[e[n]]&&(t[e[n]]=this.$behaviours[e[n]]);return t}}).call(r.prototype),t.Behaviour=r}),define("ace/token_iterator",["require","exports","module","ace/range"],function(e,t,n){"use strict";var r=e("./range").Range,i=function(e,t,n){this.$session=e,this.$row=t,this.$rowTokens=e.getTokens(t);var r=e.getTokenAt(t,n);this.$tokenIndex=r?r.index:-1};(function(){this.stepBackward=function(){this.$tokenIndex-=1;while(this.$tokenIndex<0){this.$row-=1;if(this.$row<0)return this.$row=0,null;this.$rowTokens=this.$session.getTokens(this.$row),this.$tokenIndex=this.$rowTokens.length-1}return this.$rowTokens[this.$tokenIndex]},this.stepForward=function(){this.$tokenIndex+=1;var e;while(this.$tokenIndex>=this.$rowTokens.length){this.$row+=1,e||(e=this.$session.getLength());if(this.$row>=e)return this.$row=e-1,null;this.$rowTokens=this.$session.getTokens(this.$row),this.$tokenIndex=0}return this.$rowTokens[this.$tokenIndex]},this.getCurrentToken=function(){return this.$rowTokens[this.$tokenIndex]},this.getCurrentTokenRow=function(){return this.$row},this.getCurrentTokenColumn=function(){var e=this.$rowTokens,t=this.$tokenIndex,n=e[t].start;if(n!==undefined)return n;n=0;while(t>0)t-=1,n+=e[t].value.length;return n},this.getCurrentTokenPosition=function(){return{row:this.$row,column:this.getCurrentTokenColumn()}},this.getCurrentTokenRange=function(){var e=this.$rowTokens[this.$tokenIndex],t=this.getCurrentTokenColumn();return new r(this.$row,t,this.$row,t+e.value.length)}}).call(i.prototype),t.TokenIterator=i}),define("ace/mode/behaviour/cstyle",["require","exports","module","ace/lib/oop","ace/mode/behaviour","ace/token_iterator","ace/lib/lang"],function(e,t,n){"use strict";var r=e("../../lib/oop"),i=e("../behaviour").Behaviour,s=e("../../token_iterator").TokenIterator,o=e("../../lib/lang"),u=["text","paren.rparen","punctuation.operator"],a=["text","paren.rparen","punctuation.operator","comment"],f,l={},c={'"':'"',"'":"'"},h=function(e){var t=-1;e.multiSelect&&(t=e.selection.index,l.rangeCount!=e.multiSelect.rangeCount&&(l={rangeCount:e.multiSelect.rangeCount}));if(l[t])return f=l[t];f=l[t]={autoInsertedBrackets:0,autoInsertedRow:-1,autoInsertedLineEnd:"",maybeInsertedBrackets:0,maybeInsertedRow:-1,maybeInsertedLineStart:"",maybeInsertedLineEnd:""}},p=function(e,t,n,r){var i=e.end.row-e.start.row;return{text:n+t+r,selection:[0,e.start.column+1,i,e.end.column+(i?0:1)]}},d=function(e){this.add("braces","insertion",function(t,n,r,i,s){var u=r.getCursorPosition(),a=i.doc.getLine(u.row);if(s=="{"){h(r);var l=r.getSelectionRange(),c=i.doc.getTextRange(l);if(c!==""&&c!=="{"&&r.getWrapBehavioursEnabled())return p(l,c,"{","}");if(d.isSaneInsertion(r,i))return/[\]\}\)]/.test(a[u.column])||r.inMultiSelectMode||e&&e.braces?(d.recordAutoInsert(r,i,"}"),{text:"{}",selection:[1,1]}):(d.recordMaybeInsert(r,i,"{"),{text:"{",selection:[1,1]})}else if(s=="}"){h(r);var v=a.substring(u.column,u.column+1);if(v=="}"){var m=i.$findOpeningBracket("}",{column:u.column+1,row:u.row});if(m!==null&&d.isAutoInsertedClosing(u,a,s))return d.popAutoInsertedClosing(),{text:"",selection:[1,1]}}}else{if(s=="\n"||s=="\r\n"){h(r);var g="";d.isMaybeInsertedClosing(u,a)&&(g=o.stringRepeat("}",f.maybeInsertedBrackets),d.clearMaybeInsertedClosing());var v=a.substring(u.column,u.column+1);if(v==="}"){var y=i.findMatchingBracket({row:u.row,column:u.column+1},"}");if(!y)return null;var b=this.$getIndent(i.getLine(y.row))}else{if(!g){d.clearMaybeInsertedClosing();return}var b=this.$getIndent(a)}var w=b+i.getTabString();return{text:"\n"+w+"\n"+b+g,selection:[1,w.length,1,w.length]}}d.clearMaybeInsertedClosing()}}),this.add("braces","deletion",function(e,t,n,r,i){var s=r.doc.getTextRange(i);if(!i.isMultiLine()&&s=="{"){h(n);var o=r.doc.getLine(i.start.row),u=o.substring(i.end.column,i.end.column+1);if(u=="}")return i.end.column++,i;f.maybeInsertedBrackets--}}),this.add("parens","insertion",function(e,t,n,r,i){if(i=="("){h(n);var s=n.getSelectionRange(),o=r.doc.getTextRange(s);if(o!==""&&n.getWrapBehavioursEnabled())return p(s,o,"(",")");if(d.isSaneInsertion(n,r))return d.recordAutoInsert(n,r,")"),{text:"()",selection:[1,1]}}else if(i==")"){h(n);var u=n.getCursorPosition(),a=r.doc.getLine(u.row),f=a.substring(u.column,u.column+1);if(f==")"){var l=r.$findOpeningBracket(")",{column:u.column+1,row:u.row});if(l!==null&&d.isAutoInsertedClosing(u,a,i))return d.popAutoInsertedClosing(),{text:"",selection:[1,1]}}}}),this.add("parens","deletion",function(e,t,n,r,i){var s=r.doc.getTextRange(i);if(!i.isMultiLine()&&s=="("){h(n);var o=r.doc.getLine(i.start.row),u=o.substring(i.start.column+1,i.start.column+2);if(u==")")return i.end.column++,i}}),this.add("brackets","insertion",function(e,t,n,r,i){if(i=="["){h(n);var s=n.getSelectionRange(),o=r.doc.getTextRange(s);if(o!==""&&n.getWrapBehavioursEnabled())return p(s,o,"[","]");if(d.isSaneInsertion(n,r))return d.recordAutoInsert(n,r,"]"),{text:"[]",selection:[1,1]}}else if(i=="]"){h(n);var u=n.getCursorPosition(),a=r.doc.getLine(u.row),f=a.substring(u.column,u.column+1);if(f=="]"){var l=r.$findOpeningBracket("]",{column:u.column+1,row:u.row});if(l!==null&&d.isAutoInsertedClosing(u,a,i))return d.popAutoInsertedClosing(),{text:"",selection:[1,1]}}}}),this.add("brackets","deletion",function(e,t,n,r,i){var s=r.doc.getTextRange(i);if(!i.isMultiLine()&&s=="["){h(n);var o=r.doc.getLine(i.start.row),u=o.substring(i.start.column+1,i.start.column+2);if(u=="]")return i.end.column++,i}}),this.add("string_dquotes","insertion",function(e,t,n,r,i){var s=r.$mode.$quotes||c;if(i.length==1&&s[i]){if(this.lineCommentStart&&this.lineCommentStart.indexOf(i)!=-1)return;h(n);var o=i,u=n.getSelectionRange(),a=r.doc.getTextRange(u);if(a!==""&&(a.length!=1||!s[a])&&n.getWrapBehavioursEnabled())return p(u,a,o,o);if(!a){var f=n.getCursorPosition(),l=r.doc.getLine(f.row),d=l.substring(f.column-1,f.column),v=l.substring(f.column,f.column+1),m=r.getTokenAt(f.row,f.column),g=r.getTokenAt(f.row,f.column+1);if(d=="\\"&&m&&/escape/.test(m.type))return null;var y=m&&/string|escape/.test(m.type),b=!g||/string|escape/.test(g.type),w;if(v==o)w=y!==b,w&&/string\.end/.test(g.type)&&(w=!1);else{if(y&&!b)return null;if(y&&b)return null;var E=r.$mode.tokenRe;E.lastIndex=0;var S=E.test(d);E.lastIndex=0;var x=E.test(d);if(S||x)return null;if(v&&!/[\s;,.})\]\\]/.test(v))return null;w=!0}return{text:w?o+o:"",selection:[1,1]}}}}),this.add("string_dquotes","deletion",function(e,t,n,r,i){var s=r.doc.getTextRange(i);if(!i.isMultiLine()&&(s=='"'||s=="'")){h(n);var o=r.doc.getLine(i.start.row),u=o.substring(i.start.column+1,i.start.column+2);if(u==s)return i.end.column++,i}})};d.isSaneInsertion=function(e,t){var n=e.getCursorPosition(),r=new s(t,n.row,n.column);if(!this.$matchTokenType(r.getCurrentToken()||"text",u)){var i=new s(t,n.row,n.column+1);if(!this.$matchTokenType(i.getCurrentToken()||"text",u))return!1}return r.stepForward(),r.getCurrentTokenRow()!==n.row||this.$matchTokenType(r.getCurrentToken()||"text",a)},d.$matchTokenType=function(e,t){return t.indexOf(e.type||e)>-1},d.recordAutoInsert=function(e,t,n){var r=e.getCursorPosition(),i=t.doc.getLine(r.row);this.isAutoInsertedClosing(r,i,f.autoInsertedLineEnd[0])||(f.autoInsertedBrackets=0),f.autoInsertedRow=r.row,f.autoInsertedLineEnd=n+i.substr(r.column),f.autoInsertedBrackets++},d.recordMaybeInsert=function(e,t,n){var r=e.getCursorPosition(),i=t.doc.getLine(r.row);this.isMaybeInsertedClosing(r,i)||(f.maybeInsertedBrackets=0),f.maybeInsertedRow=r.row,f.maybeInsertedLineStart=i.substr(0,r.column)+n,f.maybeInsertedLineEnd=i.substr(r.column),f.maybeInsertedBrackets++},d.isAutoInsertedClosing=function(e,t,n){return f.autoInsertedBrackets>0&&e.row===f.autoInsertedRow&&n===f.autoInsertedLineEnd[0]&&t.substr(e.column)===f.autoInsertedLineEnd},d.isMaybeInsertedClosing=function(e,t){return f.maybeInsertedBrackets>0&&e.row===f.maybeInsertedRow&&t.substr(e.column)===f.maybeInsertedLineEnd&&t.substr(0,e.column)==f.maybeInsertedLineStart},d.popAutoInsertedClosing=function(){f.autoInsertedLineEnd=f.autoInsertedLineEnd.substr(1),f.autoInsertedBrackets--},d.clearMaybeInsertedClosing=function(){f&&(f.maybeInsertedBrackets=0,f.maybeInsertedRow=-1)},r.inherits(d,i),t.CstyleBehaviour=d}),define("ace/unicode",["require","exports","module"],function(e,t,n){"use strict";function r(e){var n=/\w{4}/g;for(var r in e)t.packages[r]=e[r].replace(n,"\\u$&")}t.packages={},r({L:"0041-005A0061-007A00AA00B500BA00C0-00D600D8-00F600F8-02C102C6-02D102E0-02E402EC02EE0370-037403760377037A-037D03860388-038A038C038E-03A103A3-03F503F7-0481048A-05250531-055605590561-058705D0-05EA05F0-05F20621-064A066E066F0671-06D306D506E506E606EE06EF06FA-06FC06FF07100712-072F074D-07A507B107CA-07EA07F407F507FA0800-0815081A082408280904-0939093D09500958-0961097109720979-097F0985-098C098F09900993-09A809AA-09B009B209B6-09B909BD09CE09DC09DD09DF-09E109F009F10A05-0A0A0A0F0A100A13-0A280A2A-0A300A320A330A350A360A380A390A59-0A5C0A5E0A72-0A740A85-0A8D0A8F-0A910A93-0AA80AAA-0AB00AB20AB30AB5-0AB90ABD0AD00AE00AE10B05-0B0C0B0F0B100B13-0B280B2A-0B300B320B330B35-0B390B3D0B5C0B5D0B5F-0B610B710B830B85-0B8A0B8E-0B900B92-0B950B990B9A0B9C0B9E0B9F0BA30BA40BA8-0BAA0BAE-0BB90BD00C05-0C0C0C0E-0C100C12-0C280C2A-0C330C35-0C390C3D0C580C590C600C610C85-0C8C0C8E-0C900C92-0CA80CAA-0CB30CB5-0CB90CBD0CDE0CE00CE10D05-0D0C0D0E-0D100D12-0D280D2A-0D390D3D0D600D610D7A-0D7F0D85-0D960D9A-0DB10DB3-0DBB0DBD0DC0-0DC60E01-0E300E320E330E40-0E460E810E820E840E870E880E8A0E8D0E94-0E970E99-0E9F0EA1-0EA30EA50EA70EAA0EAB0EAD-0EB00EB20EB30EBD0EC0-0EC40EC60EDC0EDD0F000F40-0F470F49-0F6C0F88-0F8B1000-102A103F1050-1055105A-105D106110651066106E-10701075-1081108E10A0-10C510D0-10FA10FC1100-1248124A-124D1250-12561258125A-125D1260-1288128A-128D1290-12B012B2-12B512B8-12BE12C012C2-12C512C8-12D612D8-13101312-13151318-135A1380-138F13A0-13F41401-166C166F-167F1681-169A16A0-16EA1700-170C170E-17111720-17311740-17511760-176C176E-17701780-17B317D717DC1820-18771880-18A818AA18B0-18F51900-191C1950-196D1970-19741980-19AB19C1-19C71A00-1A161A20-1A541AA71B05-1B331B45-1B4B1B83-1BA01BAE1BAF1C00-1C231C4D-1C4F1C5A-1C7D1CE9-1CEC1CEE-1CF11D00-1DBF1E00-1F151F18-1F1D1F20-1F451F48-1F4D1F50-1F571F591F5B1F5D1F5F-1F7D1F80-1FB41FB6-1FBC1FBE1FC2-1FC41FC6-1FCC1FD0-1FD31FD6-1FDB1FE0-1FEC1FF2-1FF41FF6-1FFC2071207F2090-209421022107210A-211321152119-211D212421262128212A-212D212F-2139213C-213F2145-2149214E218321842C00-2C2E2C30-2C5E2C60-2CE42CEB-2CEE2D00-2D252D30-2D652D6F2D80-2D962DA0-2DA62DA8-2DAE2DB0-2DB62DB8-2DBE2DC0-2DC62DC8-2DCE2DD0-2DD62DD8-2DDE2E2F300530063031-3035303B303C3041-3096309D-309F30A1-30FA30FC-30FF3105-312D3131-318E31A0-31B731F0-31FF3400-4DB54E00-9FCBA000-A48CA4D0-A4FDA500-A60CA610-A61FA62AA62BA640-A65FA662-A66EA67F-A697A6A0-A6E5A717-A71FA722-A788A78BA78CA7FB-A801A803-A805A807-A80AA80C-A822A840-A873A882-A8B3A8F2-A8F7A8FBA90A-A925A930-A946A960-A97CA984-A9B2A9CFAA00-AA28AA40-AA42AA44-AA4BAA60-AA76AA7AAA80-AAAFAAB1AAB5AAB6AAB9-AABDAAC0AAC2AADB-AADDABC0-ABE2AC00-D7A3D7B0-D7C6D7CB-D7FBF900-FA2DFA30-FA6DFA70-FAD9FB00-FB06FB13-FB17FB1DFB1F-FB28FB2A-FB36FB38-FB3CFB3EFB40FB41FB43FB44FB46-FBB1FBD3-FD3DFD50-FD8FFD92-FDC7FDF0-FDFBFE70-FE74FE76-FEFCFF21-FF3AFF41-FF5AFF66-FFBEFFC2-FFC7FFCA-FFCFFFD2-FFD7FFDA-FFDC",Ll:"0061-007A00AA00B500BA00DF-00F600F8-00FF01010103010501070109010B010D010F01110113011501170119011B011D011F01210123012501270129012B012D012F01310133013501370138013A013C013E014001420144014601480149014B014D014F01510153015501570159015B015D015F01610163016501670169016B016D016F0171017301750177017A017C017E-0180018301850188018C018D019201950199-019B019E01A101A301A501A801AA01AB01AD01B001B401B601B901BA01BD-01BF01C601C901CC01CE01D001D201D401D601D801DA01DC01DD01DF01E101E301E501E701E901EB01ED01EF01F001F301F501F901FB01FD01FF02010203020502070209020B020D020F02110213021502170219021B021D021F02210223022502270229022B022D022F02310233-0239023C023F0240024202470249024B024D024F-02930295-02AF037103730377037B-037D039003AC-03CE03D003D103D5-03D703D903DB03DD03DF03E103E303E503E703E903EB03ED03EF-03F303F503F803FB03FC0430-045F04610463046504670469046B046D046F04710473047504770479047B047D047F0481048B048D048F04910493049504970499049B049D049F04A104A304A504A704A904AB04AD04AF04B104B304B504B704B904BB04BD04BF04C204C404C604C804CA04CC04CE04CF04D104D304D504D704D904DB04DD04DF04E104E304E504E704E904EB04ED04EF04F104F304F504F704F904FB04FD04FF05010503050505070509050B050D050F05110513051505170519051B051D051F0521052305250561-05871D00-1D2B1D62-1D771D79-1D9A1E011E031E051E071E091E0B1E0D1E0F1E111E131E151E171E191E1B1E1D1E1F1E211E231E251E271E291E2B1E2D1E2F1E311E331E351E371E391E3B1E3D1E3F1E411E431E451E471E491E4B1E4D1E4F1E511E531E551E571E591E5B1E5D1E5F1E611E631E651E671E691E6B1E6D1E6F1E711E731E751E771E791E7B1E7D1E7F1E811E831E851E871E891E8B1E8D1E8F1E911E931E95-1E9D1E9F1EA11EA31EA51EA71EA91EAB1EAD1EAF1EB11EB31EB51EB71EB91EBB1EBD1EBF1EC11EC31EC51EC71EC91ECB1ECD1ECF1ED11ED31ED51ED71ED91EDB1EDD1EDF1EE11EE31EE51EE71EE91EEB1EED1EEF1EF11EF31EF51EF71EF91EFB1EFD1EFF-1F071F10-1F151F20-1F271F30-1F371F40-1F451F50-1F571F60-1F671F70-1F7D1F80-1F871F90-1F971FA0-1FA71FB0-1FB41FB61FB71FBE1FC2-1FC41FC61FC71FD0-1FD31FD61FD71FE0-1FE71FF2-1FF41FF61FF7210A210E210F2113212F21342139213C213D2146-2149214E21842C30-2C5E2C612C652C662C682C6A2C6C2C712C732C742C76-2C7C2C812C832C852C872C892C8B2C8D2C8F2C912C932C952C972C992C9B2C9D2C9F2CA12CA32CA52CA72CA92CAB2CAD2CAF2CB12CB32CB52CB72CB92CBB2CBD2CBF2CC12CC32CC52CC72CC92CCB2CCD2CCF2CD12CD32CD52CD72CD92CDB2CDD2CDF2CE12CE32CE42CEC2CEE2D00-2D25A641A643A645A647A649A64BA64DA64FA651A653A655A657A659A65BA65DA65FA663A665A667A669A66BA66DA681A683A685A687A689A68BA68DA68FA691A693A695A697A723A725A727A729A72BA72DA72F-A731A733A735A737A739A73BA73DA73FA741A743A745A747A749A74BA74DA74FA751A753A755A757A759A75BA75DA75FA761A763A765A767A769A76BA76DA76FA771-A778A77AA77CA77FA781A783A785A787A78CFB00-FB06FB13-FB17FF41-FF5A",Lu:"0041-005A00C0-00D600D8-00DE01000102010401060108010A010C010E01100112011401160118011A011C011E01200122012401260128012A012C012E01300132013401360139013B013D013F0141014301450147014A014C014E01500152015401560158015A015C015E01600162016401660168016A016C016E017001720174017601780179017B017D018101820184018601870189-018B018E-0191019301940196-0198019C019D019F01A001A201A401A601A701A901AC01AE01AF01B1-01B301B501B701B801BC01C401C701CA01CD01CF01D101D301D501D701D901DB01DE01E001E201E401E601E801EA01EC01EE01F101F401F6-01F801FA01FC01FE02000202020402060208020A020C020E02100212021402160218021A021C021E02200222022402260228022A022C022E02300232023A023B023D023E02410243-02460248024A024C024E03700372037603860388-038A038C038E038F0391-03A103A3-03AB03CF03D2-03D403D803DA03DC03DE03E003E203E403E603E803EA03EC03EE03F403F703F903FA03FD-042F04600462046404660468046A046C046E04700472047404760478047A047C047E0480048A048C048E04900492049404960498049A049C049E04A004A204A404A604A804AA04AC04AE04B004B204B404B604B804BA04BC04BE04C004C104C304C504C704C904CB04CD04D004D204D404D604D804DA04DC04DE04E004E204E404E604E804EA04EC04EE04F004F204F404F604F804FA04FC04FE05000502050405060508050A050C050E05100512051405160518051A051C051E0520052205240531-055610A0-10C51E001E021E041E061E081E0A1E0C1E0E1E101E121E141E161E181E1A1E1C1E1E1E201E221E241E261E281E2A1E2C1E2E1E301E321E341E361E381E3A1E3C1E3E1E401E421E441E461E481E4A1E4C1E4E1E501E521E541E561E581E5A1E5C1E5E1E601E621E641E661E681E6A1E6C1E6E1E701E721E741E761E781E7A1E7C1E7E1E801E821E841E861E881E8A1E8C1E8E1E901E921E941E9E1EA01EA21EA41EA61EA81EAA1EAC1EAE1EB01EB21EB41EB61EB81EBA1EBC1EBE1EC01EC21EC41EC61EC81ECA1ECC1ECE1ED01ED21ED41ED61ED81EDA1EDC1EDE1EE01EE21EE41EE61EE81EEA1EEC1EEE1EF01EF21EF41EF61EF81EFA1EFC1EFE1F08-1F0F1F18-1F1D1F28-1F2F1F38-1F3F1F48-1F4D1F591F5B1F5D1F5F1F68-1F6F1FB8-1FBB1FC8-1FCB1FD8-1FDB1FE8-1FEC1FF8-1FFB21022107210B-210D2110-211221152119-211D212421262128212A-212D2130-2133213E213F214521832C00-2C2E2C602C62-2C642C672C692C6B2C6D-2C702C722C752C7E-2C802C822C842C862C882C8A2C8C2C8E2C902C922C942C962C982C9A2C9C2C9E2CA02CA22CA42CA62CA82CAA2CAC2CAE2CB02CB22CB42CB62CB82CBA2CBC2CBE2CC02CC22CC42CC62CC82CCA2CCC2CCE2CD02CD22CD42CD62CD82CDA2CDC2CDE2CE02CE22CEB2CEDA640A642A644A646A648A64AA64CA64EA650A652A654A656A658A65AA65CA65EA662A664A666A668A66AA66CA680A682A684A686A688A68AA68CA68EA690A692A694A696A722A724A726A728A72AA72CA72EA732A734A736A738A73AA73CA73EA740A742A744A746A748A74AA74CA74EA750A752A754A756A758A75AA75CA75EA760A762A764A766A768A76AA76CA76EA779A77BA77DA77EA780A782A784A786A78BFF21-FF3A",Lt:"01C501C801CB01F21F88-1F8F1F98-1F9F1FA8-1FAF1FBC1FCC1FFC",Lm:"02B0-02C102C6-02D102E0-02E402EC02EE0374037A0559064006E506E607F407F507FA081A0824082809710E460EC610FC17D718431AA71C78-1C7D1D2C-1D611D781D9B-1DBF2071207F2090-20942C7D2D6F2E2F30053031-3035303B309D309E30FC-30FEA015A4F8-A4FDA60CA67FA717-A71FA770A788A9CFAA70AADDFF70FF9EFF9F",Lo:"01BB01C0-01C3029405D0-05EA05F0-05F20621-063F0641-064A066E066F0671-06D306D506EE06EF06FA-06FC06FF07100712-072F074D-07A507B107CA-07EA0800-08150904-0939093D09500958-096109720979-097F0985-098C098F09900993-09A809AA-09B009B209B6-09B909BD09CE09DC09DD09DF-09E109F009F10A05-0A0A0A0F0A100A13-0A280A2A-0A300A320A330A350A360A380A390A59-0A5C0A5E0A72-0A740A85-0A8D0A8F-0A910A93-0AA80AAA-0AB00AB20AB30AB5-0AB90ABD0AD00AE00AE10B05-0B0C0B0F0B100B13-0B280B2A-0B300B320B330B35-0B390B3D0B5C0B5D0B5F-0B610B710B830B85-0B8A0B8E-0B900B92-0B950B990B9A0B9C0B9E0B9F0BA30BA40BA8-0BAA0BAE-0BB90BD00C05-0C0C0C0E-0C100C12-0C280C2A-0C330C35-0C390C3D0C580C590C600C610C85-0C8C0C8E-0C900C92-0CA80CAA-0CB30CB5-0CB90CBD0CDE0CE00CE10D05-0D0C0D0E-0D100D12-0D280D2A-0D390D3D0D600D610D7A-0D7F0D85-0D960D9A-0DB10DB3-0DBB0DBD0DC0-0DC60E01-0E300E320E330E40-0E450E810E820E840E870E880E8A0E8D0E94-0E970E99-0E9F0EA1-0EA30EA50EA70EAA0EAB0EAD-0EB00EB20EB30EBD0EC0-0EC40EDC0EDD0F000F40-0F470F49-0F6C0F88-0F8B1000-102A103F1050-1055105A-105D106110651066106E-10701075-1081108E10D0-10FA1100-1248124A-124D1250-12561258125A-125D1260-1288128A-128D1290-12B012B2-12B512B8-12BE12C012C2-12C512C8-12D612D8-13101312-13151318-135A1380-138F13A0-13F41401-166C166F-167F1681-169A16A0-16EA1700-170C170E-17111720-17311740-17511760-176C176E-17701780-17B317DC1820-18421844-18771880-18A818AA18B0-18F51900-191C1950-196D1970-19741980-19AB19C1-19C71A00-1A161A20-1A541B05-1B331B45-1B4B1B83-1BA01BAE1BAF1C00-1C231C4D-1C4F1C5A-1C771CE9-1CEC1CEE-1CF12135-21382D30-2D652D80-2D962DA0-2DA62DA8-2DAE2DB0-2DB62DB8-2DBE2DC0-2DC62DC8-2DCE2DD0-2DD62DD8-2DDE3006303C3041-3096309F30A1-30FA30FF3105-312D3131-318E31A0-31B731F0-31FF3400-4DB54E00-9FCBA000-A014A016-A48CA4D0-A4F7A500-A60BA610-A61FA62AA62BA66EA6A0-A6E5A7FB-A801A803-A805A807-A80AA80C-A822A840-A873A882-A8B3A8F2-A8F7A8FBA90A-A925A930-A946A960-A97CA984-A9B2AA00-AA28AA40-AA42AA44-AA4BAA60-AA6FAA71-AA76AA7AAA80-AAAFAAB1AAB5AAB6AAB9-AABDAAC0AAC2AADBAADCABC0-ABE2AC00-D7A3D7B0-D7C6D7CB-D7FBF900-FA2DFA30-FA6DFA70-FAD9FB1DFB1F-FB28FB2A-FB36FB38-FB3CFB3EFB40FB41FB43FB44FB46-FBB1FBD3-FD3DFD50-FD8FFD92-FDC7FDF0-FDFBFE70-FE74FE76-FEFCFF66-FF6FFF71-FF9DFFA0-FFBEFFC2-FFC7FFCA-FFCFFFD2-FFD7FFDA-FFDC",M:"0300-036F0483-04890591-05BD05BF05C105C205C405C505C70610-061A064B-065E067006D6-06DC06DE-06E406E706E806EA-06ED07110730-074A07A6-07B007EB-07F30816-0819081B-08230825-08270829-082D0900-0903093C093E-094E0951-0955096209630981-098309BC09BE-09C409C709C809CB-09CD09D709E209E30A01-0A030A3C0A3E-0A420A470A480A4B-0A4D0A510A700A710A750A81-0A830ABC0ABE-0AC50AC7-0AC90ACB-0ACD0AE20AE30B01-0B030B3C0B3E-0B440B470B480B4B-0B4D0B560B570B620B630B820BBE-0BC20BC6-0BC80BCA-0BCD0BD70C01-0C030C3E-0C440C46-0C480C4A-0C4D0C550C560C620C630C820C830CBC0CBE-0CC40CC6-0CC80CCA-0CCD0CD50CD60CE20CE30D020D030D3E-0D440D46-0D480D4A-0D4D0D570D620D630D820D830DCA0DCF-0DD40DD60DD8-0DDF0DF20DF30E310E34-0E3A0E47-0E4E0EB10EB4-0EB90EBB0EBC0EC8-0ECD0F180F190F350F370F390F3E0F3F0F71-0F840F860F870F90-0F970F99-0FBC0FC6102B-103E1056-1059105E-10601062-10641067-106D1071-10741082-108D108F109A-109D135F1712-17141732-1734175217531772177317B6-17D317DD180B-180D18A91920-192B1930-193B19B0-19C019C819C91A17-1A1B1A55-1A5E1A60-1A7C1A7F1B00-1B041B34-1B441B6B-1B731B80-1B821BA1-1BAA1C24-1C371CD0-1CD21CD4-1CE81CED1CF21DC0-1DE61DFD-1DFF20D0-20F02CEF-2CF12DE0-2DFF302A-302F3099309AA66F-A672A67CA67DA6F0A6F1A802A806A80BA823-A827A880A881A8B4-A8C4A8E0-A8F1A926-A92DA947-A953A980-A983A9B3-A9C0AA29-AA36AA43AA4CAA4DAA7BAAB0AAB2-AAB4AAB7AAB8AABEAABFAAC1ABE3-ABEAABECABEDFB1EFE00-FE0FFE20-FE26",Mn:"0300-036F0483-04870591-05BD05BF05C105C205C405C505C70610-061A064B-065E067006D6-06DC06DF-06E406E706E806EA-06ED07110730-074A07A6-07B007EB-07F30816-0819081B-08230825-08270829-082D0900-0902093C0941-0948094D0951-095509620963098109BC09C1-09C409CD09E209E30A010A020A3C0A410A420A470A480A4B-0A4D0A510A700A710A750A810A820ABC0AC1-0AC50AC70AC80ACD0AE20AE30B010B3C0B3F0B41-0B440B4D0B560B620B630B820BC00BCD0C3E-0C400C46-0C480C4A-0C4D0C550C560C620C630CBC0CBF0CC60CCC0CCD0CE20CE30D41-0D440D4D0D620D630DCA0DD2-0DD40DD60E310E34-0E3A0E47-0E4E0EB10EB4-0EB90EBB0EBC0EC8-0ECD0F180F190F350F370F390F71-0F7E0F80-0F840F860F870F90-0F970F99-0FBC0FC6102D-10301032-10371039103A103D103E10581059105E-10601071-1074108210851086108D109D135F1712-17141732-1734175217531772177317B7-17BD17C617C9-17D317DD180B-180D18A91920-19221927192819321939-193B1A171A181A561A58-1A5E1A601A621A65-1A6C1A73-1A7C1A7F1B00-1B031B341B36-1B3A1B3C1B421B6B-1B731B801B811BA2-1BA51BA81BA91C2C-1C331C361C371CD0-1CD21CD4-1CE01CE2-1CE81CED1DC0-1DE61DFD-1DFF20D0-20DC20E120E5-20F02CEF-2CF12DE0-2DFF302A-302F3099309AA66FA67CA67DA6F0A6F1A802A806A80BA825A826A8C4A8E0-A8F1A926-A92DA947-A951A980-A982A9B3A9B6-A9B9A9BCAA29-AA2EAA31AA32AA35AA36AA43AA4CAAB0AAB2-AAB4AAB7AAB8AABEAABFAAC1ABE5ABE8ABEDFB1EFE00-FE0FFE20-FE26",Mc:"0903093E-09400949-094C094E0982098309BE-09C009C709C809CB09CC09D70A030A3E-0A400A830ABE-0AC00AC90ACB0ACC0B020B030B3E0B400B470B480B4B0B4C0B570BBE0BBF0BC10BC20BC6-0BC80BCA-0BCC0BD70C01-0C030C41-0C440C820C830CBE0CC0-0CC40CC70CC80CCA0CCB0CD50CD60D020D030D3E-0D400D46-0D480D4A-0D4C0D570D820D830DCF-0DD10DD8-0DDF0DF20DF30F3E0F3F0F7F102B102C10311038103B103C105610571062-10641067-106D108310841087-108C108F109A-109C17B617BE-17C517C717C81923-19261929-192B193019311933-193819B0-19C019C819C91A19-1A1B1A551A571A611A631A641A6D-1A721B041B351B3B1B3D-1B411B431B441B821BA11BA61BA71BAA1C24-1C2B1C341C351CE11CF2A823A824A827A880A881A8B4-A8C3A952A953A983A9B4A9B5A9BAA9BBA9BD-A9C0AA2FAA30AA33AA34AA4DAA7BABE3ABE4ABE6ABE7ABE9ABEAABEC",Me:"0488048906DE20DD-20E020E2-20E4A670-A672",N:"0030-003900B200B300B900BC-00BE0660-066906F0-06F907C0-07C90966-096F09E6-09EF09F4-09F90A66-0A6F0AE6-0AEF0B66-0B6F0BE6-0BF20C66-0C6F0C78-0C7E0CE6-0CEF0D66-0D750E50-0E590ED0-0ED90F20-0F331040-10491090-10991369-137C16EE-16F017E0-17E917F0-17F91810-18191946-194F19D0-19DA1A80-1A891A90-1A991B50-1B591BB0-1BB91C40-1C491C50-1C5920702074-20792080-20892150-21822185-21892460-249B24EA-24FF2776-27932CFD30073021-30293038-303A3192-31953220-32293251-325F3280-328932B1-32BFA620-A629A6E6-A6EFA830-A835A8D0-A8D9A900-A909A9D0-A9D9AA50-AA59ABF0-ABF9FF10-FF19",Nd:"0030-00390660-066906F0-06F907C0-07C90966-096F09E6-09EF0A66-0A6F0AE6-0AEF0B66-0B6F0BE6-0BEF0C66-0C6F0CE6-0CEF0D66-0D6F0E50-0E590ED0-0ED90F20-0F291040-10491090-109917E0-17E91810-18191946-194F19D0-19DA1A80-1A891A90-1A991B50-1B591BB0-1BB91C40-1C491C50-1C59A620-A629A8D0-A8D9A900-A909A9D0-A9D9AA50-AA59ABF0-ABF9FF10-FF19",Nl:"16EE-16F02160-21822185-218830073021-30293038-303AA6E6-A6EF",No:"00B200B300B900BC-00BE09F4-09F90BF0-0BF20C78-0C7E0D70-0D750F2A-0F331369-137C17F0-17F920702074-20792080-20892150-215F21892460-249B24EA-24FF2776-27932CFD3192-31953220-32293251-325F3280-328932B1-32BFA830-A835",P:"0021-00230025-002A002C-002F003A003B003F0040005B-005D005F007B007D00A100AB00B700BB00BF037E0387055A-055F0589058A05BE05C005C305C605F305F40609060A060C060D061B061E061F066A-066D06D40700-070D07F7-07F90830-083E0964096509700DF40E4F0E5A0E5B0F04-0F120F3A-0F3D0F850FD0-0FD4104A-104F10FB1361-13681400166D166E169B169C16EB-16ED1735173617D4-17D617D8-17DA1800-180A1944194519DE19DF1A1E1A1F1AA0-1AA61AA8-1AAD1B5A-1B601C3B-1C3F1C7E1C7F1CD32010-20272030-20432045-20512053-205E207D207E208D208E2329232A2768-277527C527C627E6-27EF2983-299829D8-29DB29FC29FD2CF9-2CFC2CFE2CFF2E00-2E2E2E302E313001-30033008-30113014-301F3030303D30A030FBA4FEA4FFA60D-A60FA673A67EA6F2-A6F7A874-A877A8CEA8CFA8F8-A8FAA92EA92FA95FA9C1-A9CDA9DEA9DFAA5C-AA5FAADEAADFABEBFD3EFD3FFE10-FE19FE30-FE52FE54-FE61FE63FE68FE6AFE6BFF01-FF03FF05-FF0AFF0C-FF0FFF1AFF1BFF1FFF20FF3B-FF3DFF3FFF5BFF5DFF5F-FF65",Pd:"002D058A05BE140018062010-20152E172E1A301C303030A0FE31FE32FE58FE63FF0D",Ps:"0028005B007B0F3A0F3C169B201A201E2045207D208D23292768276A276C276E27702772277427C527E627E827EA27EC27EE2983298529872989298B298D298F299129932995299729D829DA29FC2E222E242E262E283008300A300C300E3010301430163018301A301DFD3EFE17FE35FE37FE39FE3BFE3DFE3FFE41FE43FE47FE59FE5BFE5DFF08FF3BFF5BFF5FFF62",Pe:"0029005D007D0F3B0F3D169C2046207E208E232A2769276B276D276F27712773277527C627E727E927EB27ED27EF298429862988298A298C298E2990299229942996299829D929DB29FD2E232E252E272E293009300B300D300F3011301530173019301B301E301FFD3FFE18FE36FE38FE3AFE3CFE3EFE40FE42FE44FE48FE5AFE5CFE5EFF09FF3DFF5DFF60FF63",Pi:"00AB2018201B201C201F20392E022E042E092E0C2E1C2E20",Pf:"00BB2019201D203A2E032E052E0A2E0D2E1D2E21",Pc:"005F203F20402054FE33FE34FE4D-FE4FFF3F",Po:"0021-00230025-0027002A002C002E002F003A003B003F0040005C00A100B700BF037E0387055A-055F058905C005C305C605F305F40609060A060C060D061B061E061F066A-066D06D40700-070D07F7-07F90830-083E0964096509700DF40E4F0E5A0E5B0F04-0F120F850FD0-0FD4104A-104F10FB1361-1368166D166E16EB-16ED1735173617D4-17D617D8-17DA1800-18051807-180A1944194519DE19DF1A1E1A1F1AA0-1AA61AA8-1AAD1B5A-1B601C3B-1C3F1C7E1C7F1CD3201620172020-20272030-2038203B-203E2041-20432047-205120532055-205E2CF9-2CFC2CFE2CFF2E002E012E06-2E082E0B2E0E-2E162E182E192E1B2E1E2E1F2E2A-2E2E2E302E313001-3003303D30FBA4FEA4FFA60D-A60FA673A67EA6F2-A6F7A874-A877A8CEA8CFA8F8-A8FAA92EA92FA95FA9C1-A9CDA9DEA9DFAA5C-AA5FAADEAADFABEBFE10-FE16FE19FE30FE45FE46FE49-FE4CFE50-FE52FE54-FE57FE5F-FE61FE68FE6AFE6BFF01-FF03FF05-FF07FF0AFF0CFF0EFF0FFF1AFF1BFF1FFF20FF3CFF61FF64FF65",S:"0024002B003C-003E005E0060007C007E00A2-00A900AC00AE-00B100B400B600B800D700F702C2-02C502D2-02DF02E5-02EB02ED02EF-02FF03750384038503F604820606-0608060B060E060F06E906FD06FE07F609F209F309FA09FB0AF10B700BF3-0BFA0C7F0CF10CF20D790E3F0F01-0F030F13-0F170F1A-0F1F0F340F360F380FBE-0FC50FC7-0FCC0FCE0FCF0FD5-0FD8109E109F13601390-139917DB194019E0-19FF1B61-1B6A1B74-1B7C1FBD1FBF-1FC11FCD-1FCF1FDD-1FDF1FED-1FEF1FFD1FFE20442052207A-207C208A-208C20A0-20B8210021012103-21062108210921142116-2118211E-2123212521272129212E213A213B2140-2144214A-214D214F2190-2328232B-23E82400-24262440-244A249C-24E92500-26CD26CF-26E126E326E8-26FF2701-27042706-2709270C-27272729-274B274D274F-27522756-275E2761-276727942798-27AF27B1-27BE27C0-27C427C7-27CA27CC27D0-27E527F0-29822999-29D729DC-29FB29FE-2B4C2B50-2B592CE5-2CEA2E80-2E992E9B-2EF32F00-2FD52FF0-2FFB300430123013302030363037303E303F309B309C319031913196-319F31C0-31E33200-321E322A-32503260-327F328A-32B032C0-32FE3300-33FF4DC0-4DFFA490-A4C6A700-A716A720A721A789A78AA828-A82BA836-A839AA77-AA79FB29FDFCFDFDFE62FE64-FE66FE69FF04FF0BFF1C-FF1EFF3EFF40FF5CFF5EFFE0-FFE6FFE8-FFEEFFFCFFFD",Sm:"002B003C-003E007C007E00AC00B100D700F703F60606-060820442052207A-207C208A-208C2140-2144214B2190-2194219A219B21A021A321A621AE21CE21CF21D221D421F4-22FF2308-230B23202321237C239B-23B323DC-23E125B725C125F8-25FF266F27C0-27C427C7-27CA27CC27D0-27E527F0-27FF2900-29822999-29D729DC-29FB29FE-2AFF2B30-2B442B47-2B4CFB29FE62FE64-FE66FF0BFF1C-FF1EFF5CFF5EFFE2FFE9-FFEC",Sc:"002400A2-00A5060B09F209F309FB0AF10BF90E3F17DB20A0-20B8A838FDFCFE69FF04FFE0FFE1FFE5FFE6",Sk:"005E006000A800AF00B400B802C2-02C502D2-02DF02E5-02EB02ED02EF-02FF0375038403851FBD1FBF-1FC11FCD-1FCF1FDD-1FDF1FED-1FEF1FFD1FFE309B309CA700-A716A720A721A789A78AFF3EFF40FFE3",So:"00A600A700A900AE00B000B60482060E060F06E906FD06FE07F609FA0B700BF3-0BF80BFA0C7F0CF10CF20D790F01-0F030F13-0F170F1A-0F1F0F340F360F380FBE-0FC50FC7-0FCC0FCE0FCF0FD5-0FD8109E109F13601390-1399194019E0-19FF1B61-1B6A1B74-1B7C210021012103-21062108210921142116-2118211E-2123212521272129212E213A213B214A214C214D214F2195-2199219C-219F21A121A221A421A521A7-21AD21AF-21CD21D021D121D321D5-21F32300-2307230C-231F2322-2328232B-237B237D-239A23B4-23DB23E2-23E82400-24262440-244A249C-24E92500-25B625B8-25C025C2-25F72600-266E2670-26CD26CF-26E126E326E8-26FF2701-27042706-2709270C-27272729-274B274D274F-27522756-275E2761-276727942798-27AF27B1-27BE2800-28FF2B00-2B2F2B452B462B50-2B592CE5-2CEA2E80-2E992E9B-2EF32F00-2FD52FF0-2FFB300430123013302030363037303E303F319031913196-319F31C0-31E33200-321E322A-32503260-327F328A-32B032C0-32FE3300-33FF4DC0-4DFFA490-A4C6A828-A82BA836A837A839AA77-AA79FDFDFFE4FFE8FFEDFFEEFFFCFFFD",Z:"002000A01680180E2000-200A20282029202F205F3000",Zs:"002000A01680180E2000-200A202F205F3000",Zl:"2028",Zp:"2029",C:"0000-001F007F-009F00AD03780379037F-0383038B038D03A20526-05300557055805600588058B-059005C8-05CF05EB-05EF05F5-0605061C061D0620065F06DD070E070F074B074C07B2-07BF07FB-07FF082E082F083F-08FF093A093B094F095609570973-097809800984098D098E0991099209A909B109B3-09B509BA09BB09C509C609C909CA09CF-09D609D8-09DB09DE09E409E509FC-0A000A040A0B-0A0E0A110A120A290A310A340A370A3A0A3B0A3D0A43-0A460A490A4A0A4E-0A500A52-0A580A5D0A5F-0A650A76-0A800A840A8E0A920AA90AB10AB40ABA0ABB0AC60ACA0ACE0ACF0AD1-0ADF0AE40AE50AF00AF2-0B000B040B0D0B0E0B110B120B290B310B340B3A0B3B0B450B460B490B4A0B4E-0B550B58-0B5B0B5E0B640B650B72-0B810B840B8B-0B8D0B910B96-0B980B9B0B9D0BA0-0BA20BA5-0BA70BAB-0BAD0BBA-0BBD0BC3-0BC50BC90BCE0BCF0BD1-0BD60BD8-0BE50BFB-0C000C040C0D0C110C290C340C3A-0C3C0C450C490C4E-0C540C570C5A-0C5F0C640C650C70-0C770C800C810C840C8D0C910CA90CB40CBA0CBB0CC50CC90CCE-0CD40CD7-0CDD0CDF0CE40CE50CF00CF3-0D010D040D0D0D110D290D3A-0D3C0D450D490D4E-0D560D58-0D5F0D640D650D76-0D780D800D810D840D97-0D990DB20DBC0DBE0DBF0DC7-0DC90DCB-0DCE0DD50DD70DE0-0DF10DF5-0E000E3B-0E3E0E5C-0E800E830E850E860E890E8B0E8C0E8E-0E930E980EA00EA40EA60EA80EA90EAC0EBA0EBE0EBF0EC50EC70ECE0ECF0EDA0EDB0EDE-0EFF0F480F6D-0F700F8C-0F8F0F980FBD0FCD0FD9-0FFF10C6-10CF10FD-10FF1249124E124F12571259125E125F1289128E128F12B112B612B712BF12C112C612C712D7131113161317135B-135E137D-137F139A-139F13F5-13FF169D-169F16F1-16FF170D1715-171F1737-173F1754-175F176D17711774-177F17B417B517DE17DF17EA-17EF17FA-17FF180F181A-181F1878-187F18AB-18AF18F6-18FF191D-191F192C-192F193C-193F1941-1943196E196F1975-197F19AC-19AF19CA-19CF19DB-19DD1A1C1A1D1A5F1A7D1A7E1A8A-1A8F1A9A-1A9F1AAE-1AFF1B4C-1B4F1B7D-1B7F1BAB-1BAD1BBA-1BFF1C38-1C3A1C4A-1C4C1C80-1CCF1CF3-1CFF1DE7-1DFC1F161F171F1E1F1F1F461F471F4E1F4F1F581F5A1F5C1F5E1F7E1F7F1FB51FC51FD41FD51FDC1FF01FF11FF51FFF200B-200F202A-202E2060-206F20722073208F2095-209F20B9-20CF20F1-20FF218A-218F23E9-23FF2427-243F244B-245F26CE26E226E4-26E727002705270A270B2728274C274E2753-2755275F27602795-279727B027BF27CB27CD-27CF2B4D-2B4F2B5A-2BFF2C2F2C5F2CF2-2CF82D26-2D2F2D66-2D6E2D70-2D7F2D97-2D9F2DA72DAF2DB72DBF2DC72DCF2DD72DDF2E32-2E7F2E9A2EF4-2EFF2FD6-2FEF2FFC-2FFF3040309730983100-3104312E-3130318F31B8-31BF31E4-31EF321F32FF4DB6-4DBF9FCC-9FFFA48D-A48FA4C7-A4CFA62C-A63FA660A661A674-A67BA698-A69FA6F8-A6FFA78D-A7FAA82C-A82FA83A-A83FA878-A87FA8C5-A8CDA8DA-A8DFA8FC-A8FFA954-A95EA97D-A97FA9CEA9DA-A9DDA9E0-A9FFAA37-AA3FAA4EAA4FAA5AAA5BAA7C-AA7FAAC3-AADAAAE0-ABBFABEEABEFABFA-ABFFD7A4-D7AFD7C7-D7CAD7FC-F8FFFA2EFA2FFA6EFA6FFADA-FAFFFB07-FB12FB18-FB1CFB37FB3DFB3FFB42FB45FBB2-FBD2FD40-FD4FFD90FD91FDC8-FDEFFDFEFDFFFE1A-FE1FFE27-FE2FFE53FE67FE6C-FE6FFE75FEFD-FF00FFBF-FFC1FFC8FFC9FFD0FFD1FFD8FFD9FFDD-FFDFFFE7FFEF-FFFBFFFEFFFF",Cc:"0000-001F007F-009F",Cf:"00AD0600-060306DD070F17B417B5200B-200F202A-202E2060-2064206A-206FFEFFFFF9-FFFB",Co:"E000-F8FF",Cs:"D800-DFFF",Cn:"03780379037F-0383038B038D03A20526-05300557055805600588058B-059005C8-05CF05EB-05EF05F5-05FF06040605061C061D0620065F070E074B074C07B2-07BF07FB-07FF082E082F083F-08FF093A093B094F095609570973-097809800984098D098E0991099209A909B109B3-09B509BA09BB09C509C609C909CA09CF-09D609D8-09DB09DE09E409E509FC-0A000A040A0B-0A0E0A110A120A290A310A340A370A3A0A3B0A3D0A43-0A460A490A4A0A4E-0A500A52-0A580A5D0A5F-0A650A76-0A800A840A8E0A920AA90AB10AB40ABA0ABB0AC60ACA0ACE0ACF0AD1-0ADF0AE40AE50AF00AF2-0B000B040B0D0B0E0B110B120B290B310B340B3A0B3B0B450B460B490B4A0B4E-0B550B58-0B5B0B5E0B640B650B72-0B810B840B8B-0B8D0B910B96-0B980B9B0B9D0BA0-0BA20BA5-0BA70BAB-0BAD0BBA-0BBD0BC3-0BC50BC90BCE0BCF0BD1-0BD60BD8-0BE50BFB-0C000C040C0D0C110C290C340C3A-0C3C0C450C490C4E-0C540C570C5A-0C5F0C640C650C70-0C770C800C810C840C8D0C910CA90CB40CBA0CBB0CC50CC90CCE-0CD40CD7-0CDD0CDF0CE40CE50CF00CF3-0D010D040D0D0D110D290D3A-0D3C0D450D490D4E-0D560D58-0D5F0D640D650D76-0D780D800D810D840D97-0D990DB20DBC0DBE0DBF0DC7-0DC90DCB-0DCE0DD50DD70DE0-0DF10DF5-0E000E3B-0E3E0E5C-0E800E830E850E860E890E8B0E8C0E8E-0E930E980EA00EA40EA60EA80EA90EAC0EBA0EBE0EBF0EC50EC70ECE0ECF0EDA0EDB0EDE-0EFF0F480F6D-0F700F8C-0F8F0F980FBD0FCD0FD9-0FFF10C6-10CF10FD-10FF1249124E124F12571259125E125F1289128E128F12B112B612B712BF12C112C612C712D7131113161317135B-135E137D-137F139A-139F13F5-13FF169D-169F16F1-16FF170D1715-171F1737-173F1754-175F176D17711774-177F17DE17DF17EA-17EF17FA-17FF180F181A-181F1878-187F18AB-18AF18F6-18FF191D-191F192C-192F193C-193F1941-1943196E196F1975-197F19AC-19AF19CA-19CF19DB-19DD1A1C1A1D1A5F1A7D1A7E1A8A-1A8F1A9A-1A9F1AAE-1AFF1B4C-1B4F1B7D-1B7F1BAB-1BAD1BBA-1BFF1C38-1C3A1C4A-1C4C1C80-1CCF1CF3-1CFF1DE7-1DFC1F161F171F1E1F1F1F461F471F4E1F4F1F581F5A1F5C1F5E1F7E1F7F1FB51FC51FD41FD51FDC1FF01FF11FF51FFF2065-206920722073208F2095-209F20B9-20CF20F1-20FF218A-218F23E9-23FF2427-243F244B-245F26CE26E226E4-26E727002705270A270B2728274C274E2753-2755275F27602795-279727B027BF27CB27CD-27CF2B4D-2B4F2B5A-2BFF2C2F2C5F2CF2-2CF82D26-2D2F2D66-2D6E2D70-2D7F2D97-2D9F2DA72DAF2DB72DBF2DC72DCF2DD72DDF2E32-2E7F2E9A2EF4-2EFF2FD6-2FEF2FFC-2FFF3040309730983100-3104312E-3130318F31B8-31BF31E4-31EF321F32FF4DB6-4DBF9FCC-9FFFA48D-A48FA4C7-A4CFA62C-A63FA660A661A674-A67BA698-A69FA6F8-A6FFA78D-A7FAA82C-A82FA83A-A83FA878-A87FA8C5-A8CDA8DA-A8DFA8FC-A8FFA954-A95EA97D-A97FA9CEA9DA-A9DDA9E0-A9FFAA37-AA3FAA4EAA4FAA5AAA5BAA7C-AA7FAAC3-AADAAAE0-ABBFABEEABEFABFA-ABFFD7A4-D7AFD7C7-D7CAD7FC-D7FFFA2EFA2FFA6EFA6FFADA-FAFFFB07-FB12FB18-FB1CFB37FB3DFB3FFB42FB45FBB2-FBD2FD40-FD4FFD90FD91FDC8-FDEFFDFEFDFFFE1A-FE1FFE27-FE2FFE53FE67FE6C-FE6FFE75FEFDFEFEFF00FFBF-FFC1FFC8FFC9FFD0FFD1FFD8FFD9FFDD-FFDFFFE7FFEF-FFF8FFFEFFFF"})}),define("ace/mode/text",["require","exports","module","ace/tokenizer","ace/mode/text_highlight_rules","ace/mode/behaviour/cstyle","ace/unicode","ace/lib/lang","ace/token_iterator","ace/range"],function(e,t,n){"use strict";var r=e("../tokenizer").Tokenizer,i=e("./text_highlight_rules").TextHighlightRules,s=e("./behaviour/cstyle").CstyleBehaviour,o=e("../unicode"),u=e("../lib/lang"),a=e("../token_iterator").TokenIterator,f=e("../range").Range,l=function(){this.HighlightRules=i};(function(){this.$defaultBehaviour=new s,this.tokenRe=new RegExp("^["+o.packages.L+o.packages.Mn+o.packages.Mc+o.packages.Nd+o.packages.Pc+"\\$_]+","g"),this.nonTokenRe=new RegExp("^(?:[^"+o.packages.L+o.packages.Mn+o.packages.Mc+o.packages.Nd+o.packages.Pc+"\\$_]|\\s])+","g"),this.getTokenizer=function(){return this.$tokenizer||(this.$highlightRules=this.$highlightRules||new this.HighlightRules(this.$highlightRuleConfig),this.$tokenizer=new r(this.$highlightRules.getRules())),this.$tokenizer},this.lineCommentStart="",this.blockComment="",this.toggleCommentLines=function(e,t,n,r){function w(e){for(var t=n;t<=r;t++)e(i.getLine(t),t)}var i=t.doc,s=!0,o=!0,a=Infinity,f=t.getTabSize(),l=!1;if(!this.lineCommentStart){if(!this.blockComment)return!1;var c=this.blockComment.start,h=this.blockComment.end,p=new RegExp("^(\\s*)(?:"+u.escapeRegExp(c)+")"),d=new RegExp("(?:"+u.escapeRegExp(h)+")\\s*$"),v=function(e,t){if(g(e,t))return;if(!s||/\S/.test(e))i.insertInLine({row:t,column:e.length},h),i.insertInLine({row:t,column:a},c)},m=function(e,t){var n;(n=e.match(d))&&i.removeInLine(t,e.length-n[0].length,e.length),(n=e.match(p))&&i.removeInLine(t,n[1].length,n[0].length)},g=function(e,n){if(p.test(e))return!0;var r=t.getTokens(n);for(var i=0;i<r.length;i++)if(r[i].type==="comment")return!0}}else{if(Array.isArray(this.lineCommentStart))var p=this.lineCommentStart.map(u.escapeRegExp).join("|"),c=this.lineCommentStart[0];else var p=u.escapeRegExp(this.lineCommentStart),c=this.lineCommentStart;p=new RegExp("^(\\s*)(?:"+p+") ?"),l=t.getUseSoftTabs();var m=function(e,t){var n=e.match(p);if(!n)return;var r=n[1].length,s=n[0].length;!b(e,r,s)&&n[0][s-1]==" "&&s--,i.removeInLine(t,r,s)},y=c+" ",v=function(e,t){if(!s||/\S/.test(e))b(e,a,a)?i.insertInLine({row:t,column:a},y):i.insertInLine({row:t,column:a},c)},g=function(e,t){return p.test(e)},b=function(e,t,n){var r=0;while(t--&&e.charAt(t)==" ")r++;if(r%f!=0)return!1;var r=0;while(e.charAt(n++)==" ")r++;return f>2?r%f!=f-1:r%f==0}}var E=Infinity;w(function(e,t){var n=e.search(/\S/);n!==-1?(n<a&&(a=n),o&&!g(e,t)&&(o=!1)):E>e.length&&(E=e.length)}),a==Infinity&&(a=E,s=!1,o=!1),l&&a%f!=0&&(a=Math.floor(a/f)*f),w(o?m:v)},this.toggleBlockComment=function(e,t,n,r){var i=this.blockComment;if(!i)return;!i.start&&i[0]&&(i=i[0]);var s=new a(t,r.row,r.column),o=s.getCurrentToken(),u=t.selection,l=t.selection.toOrientedRange(),c,h;if(o&&/comment/.test(o.type)){var p,d;while(o&&/comment/.test(o.type)){var v=o.value.indexOf(i.start);if(v!=-1){var m=s.getCurrentTokenRow(),g=s.getCurrentTokenColumn()+v;p=new f(m,g,m,g+i.start.length);break}o=s.stepBackward()}var s=new a(t,r.row,r.column),o=s.getCurrentToken();while(o&&/comment/.test(o.type)){var v=o.value.indexOf(i.end);if(v!=-1){var m=s.getCurrentTokenRow(),g=s.getCurrentTokenColumn()+v;d=new f(m,g,m,g+i.end.length);break}o=s.stepForward()}d&&t.remove(d),p&&(t.remove(p),c=p.start.row,h=-i.start.length)}else h=i.start.length,c=n.start.row,t.insert(n.end,i.end),t.insert(n.start,i.start);l.start.row==c&&(l.start.column+=h),l.end.row==c&&(l.end.column+=h),t.selection.fromOrientedRange(l)},this.getNextLineIndent=function(e,t,n){return this.$getIndent(t)},this.checkOutdent=function(e,t,n){return!1},this.autoOutdent=function(e,t,n){},this.$getIndent=function(e){return e.match(/^\s*/)[0]},this.createWorker=function(e){return null},this.createModeDelegates=function(e){this.$embeds=[],this.$modes={};for(var t in e)e[t]&&(this.$embeds.push(t),this.$modes[t]=new e[t]);var n=["toggleBlockComment","toggleCommentLines","getNextLineIndent","checkOutdent","autoOutdent","transformAction","getCompletions"];for(var t=0;t<n.length;t++)(function(e){var r=n[t],i=e[r];e[n[t]]=function(){return this.$delegator(r,arguments,i)}})(this)},this.$delegator=function(e,t,n){var r=t[0];typeof r!="string"&&(r=r[0]);for(var i=0;i<this.$embeds.length;i++){if(!this.$modes[this.$embeds[i]])continue;var s=r.split(this.$embeds[i]);if(!s[0]&&s[1]){t[0]=s[1];var o=this.$modes[this.$embeds[i]];return o[e].apply(o,t)}}var u=n.apply(this,t);return n?u:undefined},this.transformAction=function(e,t,n,r,i){if(this.$behaviour){var s=this.$behaviour.getBehaviours();for(var o in s)if(s[o][t]){var u=s[o][t].apply(this,arguments);if(u)return u}}},this.getKeywords=function(e){if(!this.completionKeywords){var t=this.$tokenizer.rules,n=[];for(var r in t){var i=t[r];for(var s=0,o=i.length;s<o;s++)if(typeof i[s].token=="string")/keyword|support|storage/.test(i[s].token)&&n.push(i[s].regex);else if(typeof i[s].token=="object")for(var u=0,a=i[s].token.length;u<a;u++)if(/keyword|support|storage/.test(i[s].token[u])){var r=i[s].regex.match(/\(.+?\)/g)[u];n.push(r.substr(1,r.length-2))}}this.completionKeywords=n}return e?n.concat(this.$keywordList||[]):this.$keywordList},this.$createKeywordList=function(){return this.$highlightRules||this.getTokenizer(),this.$keywordList=this.$highlightRules.$keywordList||[]},this.getCompletions=function(e,t,n,r){var i=this.$keywordList||this.$createKeywordList();return i.map(function(e){return{name:e,value:e,score:0,meta:"keyword"}})},this.$id="ace/mode/text"}).call(l.prototype),t.Mode=l}),define("ace/apply_delta",["require","exports","module"],function(e,t,n){"use strict";function r(e,t){throw console.log("Invalid Delta:",e),"Invalid Delta: "+t}function i(e,t){return t.row>=0&&t.row<e.length&&t.column>=0&&t.column<=e[t.row].length}function s(e,t){t.action!="insert"&&t.action!="remove"&&r(t,"delta.action must be 'insert' or 'remove'"),t.lines instanceof Array||r(t,"delta.lines must be an Array"),(!t.start||!t.end)&&r(t,"delta.start/end must be an present");var n=t.start;i(e,t.start)||r(t,"delta.start must be contained in document");var s=t.end;t.action=="remove"&&!i(e,s)&&r(t,"delta.end must contained in document for 'remove' actions");var o=s.row-n.row,u=s.column-(o==0?n.column:0);(o!=t.lines.length-1||t.lines[o].length!=u)&&r(t,"delta.range must match delta lines")}t.applyDelta=function(e,t,n){var r=t.start.row,i=t.start.column,s=e[r]||"";switch(t.action){case"insert":var o=t.lines;if(o.length===1)e[r]=s.substring(0,i)+t.lines[0]+s.substring(i);else{var u=[r,1].concat(t.lines);e.splice.apply(e,u),e[r]=s.substring(0,i)+e[r],e[r+t.lines.length-1]+=s.substring(i)}break;case"remove":var a=t.end.column,f=t.end.row;r===f?e[r]=s.substring(0,i)+s.substring(a):e.splice(r,f-r+1,s.substring(0,i)+e[f].substring(a))}}}),define("ace/anchor",["require","exports","module","ace/lib/oop","ace/lib/event_emitter"],function(e,t,n){"use strict";var r=e("./lib/oop"),i=e("./lib/event_emitter").EventEmitter,s=t.Anchor=function(e,t,n){this.$onChange=this.onChange.bind(this),this.attach(e),typeof n=="undefined"?this.setPosition(t.row,t.column):this.setPosition(t,n)};(function(){function e(e,t,n){var r=n?e.column<=t.column:e.column<t.column;return e.row<t.row||e.row==t.row&&r}function t(t,n,r){var i=t.action=="insert",s=(i?1:-1)*(t.end.row-t.start.row),o=(i?1:-1)*(t.end.column-t.start.column),u=t.start,a=i?u:t.end;return e(n,u,r)?{row:n.row,column:n.column}:e(a,n,!r)?{row:n.row+s,column:n.column+(n.row==a.row?o:0)}:{row:u.row,column:u.column}}r.implement(this,i),this.getPosition=function(){return this.$clipPositionToDocument(this.row,this.column)},this.getDocument=function(){return this.document},this.$insertRight=!1,this.onChange=function(e){if(e.start.row==e.end.row&&e.start.row!=this.row)return;if(e.start.row>this.row)return;var n=t(e,{row:this.row,column:this.column},this.$insertRight);this.setPosition(n.row,n.column,!0)},this.setPosition=function(e,t,n){var r;n?r={row:e,column:t}:r=this.$clipPositionToDocument(e,t);if(this.row==r.row&&this.column==r.column)return;var i={row:this.row,column:this.column};this.row=r.row,this.column=r.column,this._signal("change",{old:i,value:r})},this.detach=function(){this.document.removeEventListener("change",this.$onChange)},this.attach=function(e){this.document=e||this.document,this.document.on("change",this.$onChange)},this.$clipPositionToDocument=function(e,t){var n={};return e>=this.document.getLength()?(n.row=Math.max(0,this.document.getLength()-1),n.column=this.document.getLine(n.row).length):e<0?(n.row=0,n.column=0):(n.row=e,n.column=Math.min(this.document.getLine(n.row).length,Math.max(0,t))),t<0&&(n.column=0),n}}).call(s.prototype)}),define("ace/document",["require","exports","module","ace/lib/oop","ace/apply_delta","ace/lib/event_emitter","ace/range","ace/anchor"],function(e,t,n){"use strict";var r=e("./lib/oop"),i=e("./apply_delta").applyDelta,s=e("./lib/event_emitter").EventEmitter,o=e("./range").Range,u=e("./anchor").Anchor,a=function(e){this.$lines=[""],e.length===0?this.$lines=[""]:Array.isArray(e)?this.insertMergedLines({row:0,column:0},e):this.insert({row:0,column:0},e)};(function(){r.implement(this,s),this.setValue=function(e){var t=this.getLength()-1;this.remove(new o(0,0,t,this.getLine(t).length)),this.insert({row:0,column:0},e)},this.getValue=function(){return this.getAllLines().join(this.getNewLineCharacter())},this.createAnchor=function(e,t){return new u(this,e,t)},"aaa".split(/a/).length===0?this.$split=function(e){return e.replace(/\r\n|\r/g,"\n").split("\n")}:this.$split=function(e){return e.split(/\r\n|\r|\n/)},this.$detectNewLine=function(e){var t=e.match(/^.*?(\r\n|\r|\n)/m);this.$autoNewLine=t?t[1]:"\n",this._signal("changeNewLineMode")},this.getNewLineCharacter=function(){switch(this.$newLineMode){case"windows":return"\r\n";case"unix":return"\n";default:return this.$autoNewLine||"\n"}},this.$autoNewLine="",this.$newLineMode="auto",this.setNewLineMode=function(e){if(this.$newLineMode===e)return;this.$newLineMode=e,this._signal("changeNewLineMode")},this.getNewLineMode=function(){return this.$newLineMode},this.isNewLine=function(e){return e=="\r\n"||e=="\r"||e=="\n"},this.getLine=function(e){return this.$lines[e]||""},this.getLines=function(e,t){return this.$lines.slice(e,t+1)},this.getAllLines=function(){return this.getLines(0,this.getLength())},this.getLength=function(){return this.$lines.length},this.getTextRange=function(e){return this.getLinesForRange(e).join(this.getNewLineCharacter())},this.getLinesForRange=function(e){var t;if(e.start.row===e.end.row)t=[this.getLine(e.start.row).substring(e.start.column,e.end.column)];else{t=this.getLines(e.start.row,e.end.row),t[0]=(t[0]||"").substring(e.start.column);var n=t.length-1;e.end.row-e.start.row==n&&(t[n]=t[n].substring(0,e.end.column))}return t},this.insertLines=function(e,t){return console.warn("Use of document.insertLines is deprecated. Use the insertFullLines method instead."),this.insertFullLines(e,t)},this.removeLines=function(e,t){return console.warn("Use of document.removeLines is deprecated. Use the removeFullLines method instead."),this.removeFullLines(e,t)},this.insertNewLine=function(e){return console.warn("Use of document.insertNewLine is deprecated. Use insertMergedLines(position, ['', '']) instead."),this.insertMergedLines(e,["",""])},this.insert=function(e,t){return this.getLength()<=1&&this.$detectNewLine(t),this.insertMergedLines(e,this.$split(t))},this.insertInLine=function(e,t){var n=this.clippedPos(e.row,e.column),r=this.pos(e.row,e.column+t.length);return this.applyDelta({start:n,end:r,action:"insert",lines:[t]},!0),this.clonePos(r)},this.clippedPos=function(e,t){var n=this.getLength();e===undefined?e=n:e<0?e=0:e>=n&&(e=n-1,t=undefined);var r=this.getLine(e);return t==undefined&&(t=r.length),t=Math.min(Math.max(t,0),r.length),{row:e,column:t}},this.clonePos=function(e){return{row:e.row,column:e.column}},this.pos=function(e,t){return{row:e,column:t}},this.$clipPosition=function(e){var t=this.getLength();return e.row>=t?(e.row=Math.max(0,t-1),e.column=this.getLine(t-1).length):(e.row=Math.max(0,e.row),e.column=Math.min(Math.max(e.column,0),this.getLine(e.row).length)),e},this.insertFullLines=function(e,t){e=Math.min(Math.max(e,0),this.getLength());var n=0;e<this.getLength()?(t=t.concat([""]),n=0):(t=[""].concat(t),e--,n=this.$lines[e].length),this.insertMergedLines({row:e,column:n},t)},this.insertMergedLines=function(e,t){var n=this.clippedPos(e.row,e.column),r={row:n.row+t.length-1,column:(t.length==1?n.column:0)+t[t.length-1].length};return this.applyDelta({start:n,end:r,action:"insert",lines:t}),this.clonePos(r)},this.remove=function(e){var t=this.clippedPos(e.start.row,e.start.column),n=this.clippedPos(e.end.row,e.end.column);return this.applyDelta({start:t,end:n,action:"remove",lines:this.getLinesForRange({start:t,end:n})}),this.clonePos(t)},this.removeInLine=function(e,t,n){var r=this.clippedPos(e,t),i=this.clippedPos(e,n);return this.applyDelta({start:r,end:i,action:"remove",lines:this.getLinesForRange({start:r,end:i})},!0),this.clonePos(r)},this.removeFullLines=function(e,t){e=Math.min(Math.max(0,e),this.getLength()-1),t=Math.min(Math.max(0,t),this.getLength()-1);var n=t==this.getLength()-1&&e>0,r=t<this.getLength()-1,i=n?e-1:e,s=n?this.getLine(i).length:0,u=r?t+1:t,a=r?0:this.getLine(u).length,f=new o(i,s,u,a),l=this.$lines.slice(e,t+1);return this.applyDelta({start:f.start,end:f.end,action:"remove",lines:this.getLinesForRange(f)}),l},this.removeNewLine=function(e){e<this.getLength()-1&&e>=0&&this.applyDelta({start:this.pos(e,this.getLine(e).length),end:this.pos(e+1,0),action:"remove",lines:["",""]})},this.replace=function(e,t){e instanceof o||(e=o.fromPoints(e.start,e.end));if(t.length===0&&e.isEmpty())return e.start;if(t==this.getTextRange(e))return e.end;this.remove(e);var n;return t?n=this.insert(e.start,t):n=e.start,n},this.applyDeltas=function(e){for(var t=0;t<e.length;t++)this.applyDelta(e[t])},this.revertDeltas=function(e){for(var t=e.length-1;t>=0;t--)this.revertDelta(e[t])},this.applyDelta=function(e,t){var n=e.action=="insert";if(n?e.lines.length<=1&&!e.lines[0]:!o.comparePoints(e.start,e.end))return;n&&e.lines.length>2e4&&this.$splitAndapplyLargeDelta(e,2e4),i(this.$lines,e,t),this._signal("change",e)},this.$splitAndapplyLargeDelta=function(e,t){var n=e.lines,r=n.length,i=e.start.row,s=e.start.column,o=0,u=0;do{o=u,u+=t-1;var a=n.slice(o,u);if(u>r){e.lines=a,e.start.row=i+o,e.start.column=s;break}a.push(""),this.applyDelta({start:this.pos(i+o,s),end:this.pos(i+u,s=0),action:e.action,lines:a},!0)}while(!0)},this.revertDelta=function(e){this.applyDelta({start:this.clonePos(e.start),end:this.clonePos(e.end),action:e.action=="insert"?"remove":"insert",lines:e.lines.slice()})},this.indexToPosition=function(e,t){var n=this.$lines||this.getAllLines(),r=this.getNewLineCharacter().length;for(var i=t||0,s=n.length;i<s;i++){e-=n[i].length+r;if(e<0)return{row:i,column:e+n[i].length+r}}return{row:s-1,column:n[s-1].length}},this.positionToIndex=function(e,t){var n=this.$lines||this.getAllLines(),r=this.getNewLineCharacter().length,i=0,s=Math.min(e.row,n.length);for(var o=t||0;o<s;++o)i+=n[o].length+r;return i+e.column}}).call(a.prototype),t.Document=a}),define("ace/background_tokenizer",["require","exports","module","ace/lib/oop","ace/lib/event_emitter"],function(e,t,n){"use strict";var r=e("./lib/oop"),i=e("./lib/event_emitter").EventEmitter,s=function(e,t){this.running=!1,this.lines=[],this.states=[],this.currentLine=0,this.tokenizer=e;var n=this;this.$worker=function(){if(!n.running)return;var e=new Date,t=n.currentLine,r=-1,i=n.doc,s=t;while(n.lines[t])t++;var o=i.getLength(),u=0;n.running=!1;while(t<o){n.$tokenizeRow(t),r=t;do t++;while(n.lines[t]);u++;if(u%5===0&&new Date-e>20){n.running=setTimeout(n.$worker,20);break}}n.currentLine=t,r==-1&&(r=t),s<=r&&n.fireUpdateEvent(s,r)}};(function(){r.implement(this,i),this.setTokenizer=function(e){this.tokenizer=e,this.lines=[],this.states=[],this.start(0)},this.setDocument=function(e){this.doc=e,this.lines=[],this.states=[],this.stop()},this.fireUpdateEvent=function(e,t){var n={first:e,last:t};this._signal("update",{data:n})},this.start=function(e){this.currentLine=Math.min(e||0,this.currentLine,this.doc.getLength()),this.lines.splice(this.currentLine,this.lines.length),this.states.splice(this.currentLine,this.states.length),this.stop(),this.running=setTimeout(this.$worker,700)},this.scheduleStart=function(){this.running||(this.running=setTimeout(this.$worker,700))},this.$updateOnChange=function(e){var t=e.start.row,n=e.end.row-t;if(n===0)this.lines[t]=null;else if(e.action=="remove")this.lines.splice(t,n+1,null),this.states.splice(t,n+1,null);else{var r=Array(n+1);r.unshift(t,1),this.lines.splice.apply(this.lines,r),this.states.splice.apply(this.states,r)}this.currentLine=Math.min(t,this.currentLine,this.doc.getLength()),this.stop()},this.stop=function(){this.running&&clearTimeout(this.running),this.running=!1},this.getTokens=function(e){return this.lines[e]||this.$tokenizeRow(e)},this.getState=function(e){return this.currentLine==e&&this.$tokenizeRow(e),this.states[e]||"start"},this.$tokenizeRow=function(e){var t=this.doc.getLine(e),n=this.states[e-1],r=this.tokenizer.getLineTokens(t,n,e);return this.states[e]+""!=r.state+""?(this.states[e]=r.state,this.lines[e+1]=null,this.currentLine>e+1&&(this.currentLine=e+1)):this.currentLine==e&&(this.currentLine=e+1),this.lines[e]=r.tokens}}).call(s.prototype),t.BackgroundTokenizer=s}),define("ace/search_highlight",["require","exports","module","ace/lib/lang","ace/lib/oop","ace/range"],function(e,t,n){"use strict";var r=e("./lib/lang"),i=e("./lib/oop"),s=e("./range").Range,o=function(e,t,n){this.setRegexp(e),this.clazz=t,this.type=n||"text"};(function(){this.MAX_RANGES=500,this.setRegexp=function(e){if(this.regExp+""==e+"")return;this.regExp=e,this.cache=[]},this.update=function(e,t,n,i){if(!this.regExp)return;var o=i.firstRow,u=i.lastRow;for(var a=o;a<=u;a++){var f=this.cache[a];f==null&&(f=r.getMatchOffsets(n.getLine(a),this.regExp),f.length>this.MAX_RANGES&&(f=f.slice(0,this.MAX_RANGES)),f=f.map(function(e){return new s(a,e.offset,a,e.offset+e.length)}),this.cache[a]=f.length?f:"");for(var l=f.length;l--;)t.drawSingleLineMarker(e,f[l].toScreenRange(n),this.clazz,i)}}}).call(o.prototype),t.SearchHighlight=o}),define("ace/edit_session/fold_line",["require","exports","module","ace/range"],function(e,t,n){"use strict";function i(e,t){this.foldData=e,Array.isArray(t)?this.folds=t:t=this.folds=[t];var n=t[t.length-1];this.range=new r(t[0].start.row,t[0].start.column,n.end.row,n.end.column),this.start=this.range.start,this.end=this.range.end,this.folds.forEach(function(e){e.setFoldLine(this)},this)}var r=e("../range").Range;(function(){this.shiftRow=function(e){this.start.row+=e,this.end.row+=e,this.folds.forEach(function(t){t.start.row+=e,t.end.row+=e})},this.addFold=function(e){if(e.sameRow){if(e.start.row<this.startRow||e.endRow>this.endRow)throw new Error("Can't add a fold to this FoldLine as it has no connection");this.folds.push(e),this.folds.sort(function(e,t){return-e.range.compareEnd(t.start.row,t.start.column)}),this.range.compareEnd(e.start.row,e.start.column)>0?(this.end.row=e.end.row,this.end.column=e.end.column):this.range.compareStart(e.end.row,e.end.column)<0&&(this.start.row=e.start.row,this.start.column=e.start.column)}else if(e.start.row==this.end.row)this.folds.push(e),this.end.row=e.end.row,this.end.column=e.end.column;else{if(e.end.row!=this.start.row)throw new Error("Trying to add fold to FoldRow that doesn't have a matching row");this.folds.unshift(e),this.start.row=e.start.row,this.start.column=e.start.column}e.foldLine=this},this.containsRow=function(e){return e>=this.start.row&&e<=this.end.row},this.walk=function(e,t,n){var r=0,i=this.folds,s,o,u,a=!0;t==null&&(t=this.end.row,n=this.end.column);for(var f=0;f<i.length;f++){s=i[f],o=s.range.compareStart(t,n);if(o==-1){e(null,t,n,r,a);return}u=e(null,s.start.row,s.start.column,r,a),u=!u&&e(s.placeholder,s.start.row,s.start.column,r);if(u||o===0)return;a=!s.sameRow,r=s.end.column}e(null,t,n,r,a)},this.getNextFoldTo=function(e,t){var n,r;for(var i=0;i<this.folds.length;i++){n=this.folds[i],r=n.range.compareEnd(e,t);if(r==-1)return{fold:n,kind:"after"};if(r===0)return{fold:n,kind:"inside"}}return null},this.addRemoveChars=function(e,t,n){var r=this.getNextFoldTo(e,t),i,s;if(r){i=r.fold;if(r.kind=="inside"&&i.start.column!=t&&i.start.row!=e)window.console&&window.console.log(e,t,i);else if(i.start.row==e){s=this.folds;var o=s.indexOf(i);o===0&&(this.start.column+=n);for(o;o<s.length;o++){i=s[o],i.start.column+=n;if(!i.sameRow)return;i.end.column+=n}this.end.column+=n}}},this.split=function(e,t){var n=this.getNextFoldTo(e,t);if(!n||n.kind=="inside")return null;var r=n.fold,s=this.folds,o=this.foldData,u=s.indexOf(r),a=s[u-1];this.end.row=a.end.row,this.end.column=a.end.column,s=s.splice(u,s.length-u);var f=new i(o,s);return o.splice(o.indexOf(this)+1,0,f),f},this.merge=function(e){var t=e.folds;for(var n=0;n<t.length;n++)this.addFold(t[n]);var r=this.foldData;r.splice(r.indexOf(e),1)},this.toString=function(){var e=[this.range.toString()+": ["];return this.folds.forEach(function(t){e.push(" "+t.toString())}),e.push("]"),e.join("\n")},this.idxToPosition=function(e){var t=0;for(var n=0;n<this.folds.length;n++){var r=this.folds[n];e-=r.start.column-t;if(e<0)return{row:r.start.row,column:r.start.column+e};e-=r.placeholder.length;if(e<0)return r.start;t=r.end.column}return{row:this.end.row,column:this.end.column+e}}}).call(i.prototype),t.FoldLine=i}),define("ace/range_list",["require","exports","module","ace/range"],function(e,t,n){"use strict";var r=e("./range").Range,i=r.comparePoints,s=function(){this.ranges=[]};(function(){this.comparePoints=i,this.pointIndex=function(e,t,n){var r=this.ranges;for(var s=n||0;s<r.length;s++){var o=r[s],u=i(e,o.end);if(u>0)continue;var a=i(e,o.start);return u===0?t&&a!==0?-s-2:s:a>0||a===0&&!t?s:-s-1}return-s-1},this.add=function(e){var t=!e.isEmpty(),n=this.pointIndex(e.start,t);n<0&&(n=-n-1);var r=this.pointIndex(e.end,t,n);return r<0?r=-r-1:r++,this.ranges.splice(n,r-n,e)},this.addList=function(e){var t=[];for(var n=e.length;n--;)t.push.apply(t,this.add(e[n]));return t},this.substractPoint=function(e){var t=this.pointIndex(e);if(t>=0)return this.ranges.splice(t,1)},this.merge=function(){var e=[],t=this.ranges;t=t.sort(function(e,t){return i(e.start,t.start)});var n=t[0],r;for(var s=1;s<t.length;s++){r=n,n=t[s];var o=i(r.end,n.start);if(o<0)continue;if(o==0&&!r.isEmpty()&&!n.isEmpty())continue;i(r.end,n.end)<0&&(r.end.row=n.end.row,r.end.column=n.end.column),t.splice(s,1),e.push(n),n=r,s--}return this.ranges=t,e},this.contains=function(e,t){return this.pointIndex({row:e,column:t})>=0},this.containsPoint=function(e){return this.pointIndex(e)>=0},this.rangeAtPoint=function(e){var t=this.pointIndex(e);if(t>=0)return this.ranges[t]},this.clipRows=function(e,t){var n=this.ranges;if(n[0].start.row>t||n[n.length-1].start.row<e)return[];var r=this.pointIndex({row:e,column:0});r<0&&(r=-r-1);var i=this.pointIndex({row:t,column:0},r);i<0&&(i=-i-1);var s=[];for(var o=r;o<i;o++)s.push(n[o]);return s},this.removeAll=function(){return this.ranges.splice(0,this.ranges.length)},this.attach=function(e){this.session&&this.detach(),this.session=e,this.onChange=this.$onChange.bind(this),this.session.on("change",this.onChange)},this.detach=function(){if(!this.session)return;this.session.removeListener("change",this.onChange),this.session=null},this.$onChange=function(e){if(e.action=="insert")var t=e.start,n=e.end;else var n=e.start,t=e.end;var r=t.row,i=n.row,s=i-r,o=-t.column+n.column,u=this.ranges;for(var a=0,f=u.length;a<f;a++){var l=u[a];if(l.end.row<r)continue;if(l.start.row>r)break;l.start.row==r&&l.start.column>=t.column&&(l.start.column!=t.column||!this.$insertRight)&&(l.start.column+=o,l.start.row+=s);if(l.end.row==r&&l.end.column>=t.column){if(l.end.column==t.column&&this.$insertRight)continue;l.end.column==t.column&&o>0&&a<f-1&&l.end.column>l.start.column&&l.end.column==u[a+1].start.column&&(l.end.column-=o),l.end.column+=o,l.end.row+=s}}if(s!=0&&a<f)for(;a<f;a++){var l=u[a];l.start.row+=s,l.end.row+=s}}}).call(s.prototype),t.RangeList=s}),define("ace/edit_session/fold",["require","exports","module","ace/range","ace/range_list","ace/lib/oop"],function(e,t,n){"use strict";function u(e,t){e.row-=t.row,e.row==0&&(e.column-=t.column)}function a(e,t){u(e.start,t),u(e.end,t)}function f(e,t){e.row==0&&(e.column+=t.column),e.row+=t.row}function l(e,t){f(e.start,t),f(e.end,t)}var r=e("../range").Range,i=e("../range_list").RangeList,s=e("../lib/oop"),o=t.Fold=function(e,t){this.foldLine=null,this.placeholder=t,this.range=e,this.start=e.start,this.end=e.end,this.sameRow=e.start.row==e.end.row,this.subFolds=this.ranges=[]};s.inherits(o,i),function(){this.toString=function(){return'"'+this.placeholder+'" '+this.range.toString()},this.setFoldLine=function(e){this.foldLine=e,this.subFolds.forEach(function(t){t.setFoldLine(e)})},this.clone=function(){var e=this.range.clone(),t=new o(e,this.placeholder);return this.subFolds.forEach(function(e){t.subFolds.push(e.clone())}),t.collapseChildren=this.collapseChildren,t},this.addSubFold=function(e){if(this.range.isEqual(e))return;if(!this.range.containsRange(e))throw new Error("A fold can't intersect already existing fold"+e.range+this.range);a(e,this.start);var t=e.start.row,n=e.start.column;for(var r=0,i=-1;r<this.subFolds.length;r++){i=this.subFolds[r].range.compare(t,n);if(i!=1)break}var s=this.subFolds[r];if(i==0)return s.addSubFold(e);var t=e.range.end.row,n=e.range.end.column;for(var o=r,i=-1;o<this.subFolds.length;o++){i=this.subFolds[o].range.compare(t,n);if(i!=1)break}var u=this.subFolds[o];if(i==0)throw new Error("A fold can't intersect already existing fold"+e.range+this.range);var f=this.subFolds.splice(r,o-r,e);return e.setFoldLine(this.foldLine),e},this.restoreRange=function(e){return l(e,this.start)}}.call(o.prototype)}),define("ace/edit_session/folding",["require","exports","module","ace/range","ace/edit_session/fold_line","ace/edit_session/fold","ace/token_iterator"],function(e,t,n){"use strict";function u(){this.getFoldAt=function(e,t,n){var r=this.getFoldLine(e);if(!r)return null;var i=r.folds;for(var s=0;s<i.length;s++){var o=i[s];if(o.range.contains(e,t)){if(n==1&&o.range.isEnd(e,t))continue;if(n==-1&&o.range.isStart(e,t))continue;return o}}},this.getFoldsInRange=function(e){var t=e.start,n=e.end,r=this.$foldData,i=[];t.column+=1,n.column-=1;for(var s=0;s<r.length;s++){var o=r[s].range.compareRange(e);if(o==2)continue;if(o==-2)break;var u=r[s].folds;for(var a=0;a<u.length;a++){var f=u[a];o=f.range.compareRange(e);if(o==-2)break;if(o==2)continue;if(o==42)break;i.push(f)}}return t.column-=1,n.column+=1,i},this.getFoldsInRangeList=function(e){if(Array.isArray(e)){var t=[];e.forEach(function(e){t=t.concat(this.getFoldsInRange(e))},this)}else var t=this.getFoldsInRange(e);return t},this.getAllFolds=function(){var e=[],t=this.$foldData;for(var n=0;n<t.length;n++)for(var r=0;r<t[n].folds.length;r++)e.push(t[n].folds[r]);return e},this.getFoldStringAt=function(e,t,n,r){r=r||this.getFoldLine(e);if(!r)return null;var i={end:{column:0}},s,o;for(var u=0;u<r.folds.length;u++){o=r.folds[u];var a=o.range.compareEnd(e,t);if(a==-1){s=this.getLine(o.start.row).substring(i.end.column,o.start.column);break}if(a===0)return null;i=o}return s||(s=this.getLine(o.start.row).substring(i.end.column)),n==-1?s.substring(0,t-i.end.column):n==1?s.substring(t-i.end.column):s},this.getFoldLine=function(e,t){var n=this.$foldData,r=0;t&&(r=n.indexOf(t)),r==-1&&(r=0);for(r;r<n.length;r++){var i=n[r];if(i.start.row<=e&&i.end.row>=e)return i;if(i.end.row>e)return null}return null},this.getNextFoldLine=function(e,t){var n=this.$foldData,r=0;t&&(r=n.indexOf(t)),r==-1&&(r=0);for(r;r<n.length;r++){var i=n[r];if(i.end.row>=e)return i}return null},this.getFoldedRowCount=function(e,t){var n=this.$foldData,r=t-e+1;for(var i=0;i<n.length;i++){var s=n[i],o=s.end.row,u=s.start.row;if(o>=t){u<t&&(u>=e?r-=t-u:r=0);break}o>=e&&(u>=e?r-=o-u:r-=o-e+1)}return r},this.$addFoldLine=function(e){return this.$foldData.push(e),this.$foldData.sort(function(e,t){return e.start.row-t.start.row}),e},this.addFold=function(e,t){var n=this.$foldData,r=!1,o;e instanceof s?o=e:(o=new s(t,e),o.collapseChildren=t.collapseChildren),this.$clipRangeToDocument(o.range);var u=o.start.row,a=o.start.column,f=o.end.row,l=o.end.column;if(u<f||u==f&&a<=l-2){var c=this.getFoldAt(u,a,1),h=this.getFoldAt(f,l,-1);if(c&&h==c)return c.addSubFold(o);c&&!c.range.isStart(u,a)&&this.removeFold(c),h&&!h.range.isEnd(f,l)&&this.removeFold(h);var p=this.getFoldsInRange(o.range);p.length>0&&(this.removeFolds(p),p.forEach(function(e){o.addSubFold(e)}));for(var d=0;d<n.length;d++){var v=n[d];if(f==v.start.row){v.addFold(o),r=!0;break}if(u==v.end.row){v.addFold(o),r=!0;if(!o.sameRow){var m=n[d+1];if(m&&m.start.row==f){v.merge(m);break}}break}if(f<=v.start.row)break}return r||(v=this.$addFoldLine(new i(this.$foldData,o))),this.$useWrapMode?this.$updateWrapData(v.start.row,v.start.row):this.$updateRowLengthCache(v.start.row,v.start.row),this.$modified=!0,this._signal("changeFold",{data:o,action:"add"}),o}throw new Error("The range has to be at least 2 characters width")},this.addFolds=function(e){e.forEach(function(e){this.addFold(e)},this)},this.removeFold=function(e){var t=e.foldLine,n=t.start.row,r=t.end.row,i=this.$foldData,s=t.folds;if(s.length==1)i.splice(i.indexOf(t),1);else if(t.range.isEnd(e.end.row,e.end.column))s.pop(),t.end.row=s[s.length-1].end.row,t.end.column=s[s.length-1].end.column;else if(t.range.isStart(e.start.row,e.start.column))s.shift(),t.start.row=s[0].start.row,t.start.column=s[0].start.column;else if(e.sameRow)s.splice(s.indexOf(e),1);else{var o=t.split(e.start.row,e.start.column);s=o.folds,s.shift(),o.start.row=s[0].start.row,o.start.column=s[0].start.column}this.$updating||(this.$useWrapMode?this.$updateWrapData(n,r):this.$updateRowLengthCache(n,r)),this.$modified=!0,this._signal("changeFold",{data:e,action:"remove"})},this.removeFolds=function(e){var t=[];for(var n=0;n<e.length;n++)t.push(e[n]);t.forEach(function(e){this.removeFold(e)},this),this.$modified=!0},this.expandFold=function(e){this.removeFold(e),e.subFolds.forEach(function(t){e.restoreRange(t),this.addFold(t)},this),e.collapseChildren>0&&this.foldAll(e.start.row+1,e.end.row,e.collapseChildren-1),e.subFolds=[]},this.expandFolds=function(e){e.forEach(function(e){this.expandFold(e)},this)},this.unfold=function(e,t){var n,i;e==null?(n=new r(0,0,this.getLength(),0),t=!0):typeof e=="number"?n=new r(e,0,e,this.getLine(e).length):"row"in e?n=r.fromPoints(e,e):n=e,i=this.getFoldsInRangeList(n);if(t)this.removeFolds(i);else{var s=i;while(s.length)this.expandFolds(s),s=this.getFoldsInRangeList(n)}if(i.length)return i},this.isRowFolded=function(e,t){return!!this.getFoldLine(e,t)},this.getRowFoldEnd=function(e,t){var n=this.getFoldLine(e,t);return n?n.end.row:e},this.getRowFoldStart=function(e,t){var n=this.getFoldLine(e,t);return n?n.start.row:e},this.getFoldDisplayLine=function(e,t,n,r,i){r==null&&(r=e.start.row),i==null&&(i=0),t==null&&(t=e.end.row),n==null&&(n=this.getLine(t).length);var s=this.doc,o="";return e.walk(function(e,t,n,u){if(t<r)return;if(t==r){if(n<i)return;u=Math.max(i,u)}e!=null?o+=e:o+=s.getLine(t).substring(u,n)},t,n),o},this.getDisplayLine=function(e,t,n,r){var i=this.getFoldLine(e);if(!i){var s;return s=this.doc.getLine(e),s.substring(r||0,t||s.length)}return this.getFoldDisplayLine(i,e,t,n,r)},this.$cloneFoldData=function(){var e=[];return e=this.$foldData.map(function(t){var n=t.folds.map(function(e){return e.clone()});return new i(e,n)}),e},this.toggleFold=function(e){var t=this.selection,n=t.getRange(),r,i;if(n.isEmpty()){var s=n.start;r=this.getFoldAt(s.row,s.column);if(r){this.expandFold(r);return}(i=this.findMatchingBracket(s))?n.comparePoint(i)==1?n.end=i:(n.start=i,n.start.column++,n.end.column--):(i=this.findMatchingBracket({row:s.row,column:s.column+1}))?(n.comparePoint(i)==1?n.end=i:n.start=i,n.start.column++):n=this.getCommentFoldRange(s.row,s.column)||n}else{var o=this.getFoldsInRange(n);if(e&&o.length){this.expandFolds(o);return}o.length==1&&(r=o[0])}r||(r=this.getFoldAt(n.start.row,n.start.column));if(r&&r.range.toString()==n.toString()){this.expandFold(r);return}var u="...";if(!n.isMultiLine()){u=this.getTextRange(n);if(u.length<4)return;u=u.trim().substring(0,2)+".."}this.addFold(u,n)},this.getCommentFoldRange=function(e,t,n){var i=new o(this,e,t),s=i.getCurrentToken(),u=s.type;if(s&&/^comment|string/.test(u)){u=u.match(/comment|string/)[0],u=="comment"&&(u+="|doc-start");var a=new RegExp(u),f=new r;if(n!=1){do s=i.stepBackward();while(s&&a.test(s.type));i.stepForward()}f.start.row=i.getCurrentTokenRow(),f.start.column=i.getCurrentTokenColumn()+2,i=new o(this,e,t);if(n!=-1){var l=-1;do{s=i.stepForward();if(l==-1){var c=this.getState(i.$row);a.test(c)||(l=i.$row)}else if(i.$row>l)break}while(s&&a.test(s.type));s=i.stepBackward()}else s=i.getCurrentToken();return f.end.row=i.getCurrentTokenRow(),f.end.column=i.getCurrentTokenColumn()+s.value.length-2,f}},this.foldAll=function(e,t,n){n==undefined&&(n=1e5);var r=this.foldWidgets;if(!r)return;t=t||this.getLength(),e=e||0;for(var i=e;i<t;i++){r[i]==null&&(r[i]=this.getFoldWidget(i));if(r[i]!="start")continue;var s=this.getFoldWidgetRange(i);if(s&&s.isMultiLine()&&s.end.row<=t&&s.start.row>=e){i=s.end.row;try{var o=this.addFold("...",s);o&&(o.collapseChildren=n)}catch(u){}}}},this.$foldStyles={manual:1,markbegin:1,markbeginend:1},this.$foldStyle="markbegin",this.setFoldStyle=function(e){if(!this.$foldStyles[e])throw new Error("invalid fold style: "+e+"["+Object.keys(this.$foldStyles).join(", ")+"]");if(this.$foldStyle==e)return;this.$foldStyle=e,e=="manual"&&this.unfold();var t=this.$foldMode;this.$setFolding(null),this.$setFolding(t)},this.$setFolding=function(e){if(this.$foldMode==e)return;this.$foldMode=e,this.off("change",this.$updateFoldWidgets),this.off("tokenizerUpdate",this.$tokenizerUpdateFoldWidgets),this._signal("changeAnnotation");if(!e||this.$foldStyle=="manual"){this.foldWidgets=null;return}this.foldWidgets=[],this.getFoldWidget=e.getFoldWidget.bind(e,this,this.$foldStyle),this.getFoldWidgetRange=e.getFoldWidgetRange.bind(e,this,this.$foldStyle),this.$updateFoldWidgets=this.updateFoldWidgets.bind(this),this.$tokenizerUpdateFoldWidgets=this.tokenizerUpdateFoldWidgets.bind(this),this.on("change",this.$updateFoldWidgets),this.on("tokenizerUpdate",this.$tokenizerUpdateFoldWidgets)},this.getParentFoldRangeData=function(e,t){var n=this.foldWidgets;if(!n||t&&n[e])return{};var r=e-1,i;while(r>=0){var s=n[r];s==null&&(s=n[r]=this.getFoldWidget(r));if(s=="start"){var o=this.getFoldWidgetRange(r);i||(i=o);if(o&&o.end.row>=e)break}r--}return{range:r!==-1&&o,firstRange:i}},this.onFoldWidgetClick=function(e,t){t=t.domEvent;var n={children:t.shiftKey,all:t.ctrlKey||t.metaKey,siblings:t.altKey},r=this.$toggleFoldWidget(e,n);if(!r){var i=t.target||t.srcElement;i&&/ace_fold-widget/.test(i.className)&&(i.className+=" ace_invalid")}},this.$toggleFoldWidget=function(e,t){if(!this.getFoldWidget)return;var n=this.getFoldWidget(e),r=this.getLine(e),i=n==="end"?-1:1,s=this.getFoldAt(e,i===-1?0:r.length,i);if(s)return t.children||t.all?this.removeFold(s):this.expandFold(s),s;var o=this.getFoldWidgetRange(e,!0);if(o&&!o.isMultiLine()){s=this.getFoldAt(o.start.row,o.start.column,1);if(s&&o.isEqual(s.range))return this.removeFold(s),s}if(t.siblings){var u=this.getParentFoldRangeData(e);if(u.range)var a=u.range.start.row+1,f=u.range.end.row;this.foldAll(a,f,t.all?1e4:0)}else t.children?(f=o?o.end.row:this.getLength(),this.foldAll(e+1,f,t.all?1e4:0)):o&&(t.all&&(o.collapseChildren=1e4),this.addFold("...",o));return o},this.toggleFoldWidget=function(e){var t=this.selection.getCursor().row;t=this.getRowFoldStart(t);var n=this.$toggleFoldWidget(t,{});if(n)return;var r=this.getParentFoldRangeData(t,!0);n=r.range||r.firstRange;if(n){t=n.start.row;var i=this.getFoldAt(t,this.getLine(t).length,1);i?this.removeFold(i):this.addFold("...",n)}},this.updateFoldWidgets=function(e){var t=e.start.row,n=e.end.row-t;if(n===0)this.foldWidgets[t]=null;else if(e.action=="remove")this.foldWidgets.splice(t,n+1,null);else{var r=Array(n+1);r.unshift(t,1),this.foldWidgets.splice.apply(this.foldWidgets,r)}},this.tokenizerUpdateFoldWidgets=function(e){var t=e.data;t.first!=t.last&&this.foldWidgets.length>t.first&&this.foldWidgets.splice(t.first,this.foldWidgets.length)}}var r=e("../range").Range,i=e("./fold_line").FoldLine,s=e("./fold").Fold,o=e("../token_iterator").TokenIterator;t.Folding=u}),define("ace/edit_session/bracket_match",["require","exports","module","ace/token_iterator","ace/range"],function(e,t,n){"use strict";function s(){this.findMatchingBracket=function(e,t){if(e.column==0)return null;var n=t||this.getLine(e.row).charAt(e.column-1);if(n=="")return null;var r=n.match(/([\(\[\{])|([\)\]\}])/);return r?r[1]?this.$findClosingBracket(r[1],e):this.$findOpeningBracket(r[2],e):null},this.getBracketRange=function(e){var t=this.getLine(e.row),n=!0,r,s=t.charAt(e.column-1),o=s&&s.match(/([\(\[\{])|([\)\]\}])/);o||(s=t.charAt(e.column),e={row:e.row,column:e.column+1},o=s&&s.match(/([\(\[\{])|([\)\]\}])/),n=!1);if(!o)return null;if(o[1]){var u=this.$findClosingBracket(o[1],e);if(!u)return null;r=i.fromPoints(e,u),n||(r.end.column++,r.start.column--),r.cursor=r.end}else{var u=this.$findOpeningBracket(o[2],e);if(!u)return null;r=i.fromPoints(u,e),n||(r.start.column++,r.end.column--),r.cursor=r.start}return r},this.$brackets={")":"(","(":")","]":"[","[":"]","{":"}","}":"{"},this.$findOpeningBracket=function(e,t,n){var i=this.$brackets[e],s=1,o=new r(this,t.row,t.column),u=o.getCurrentToken();u||(u=o.stepForward());if(!u)return;n||(n=new RegExp("(\\.?"+u.type.replace(".","\\.").replace("rparen",".paren").replace(/\b(?:end)\b/,"(?:start|begin|end)")+")+"));var a=t.column-o.getCurrentTokenColumn()-2,f=u.value;for(;;){while(a>=0){var l=f.charAt(a);if(l==i){s-=1;if(s==0)return{row:o.getCurrentTokenRow(),column:a+o.getCurrentTokenColumn()}}else l==e&&(s+=1);a-=1}do u=o.stepBackward();while(u&&!n.test(u.type));if(u==null)break;f=u.value,a=f.length-1}return null},this.$findClosingBracket=function(e,t,n){var i=this.$brackets[e],s=1,o=new r(this,t.row,t.column),u=o.getCurrentToken();u||(u=o.stepForward());if(!u)return;n||(n=new RegExp("(\\.?"+u.type.replace(".","\\.").replace("lparen",".paren").replace(/\b(?:start|begin)\b/,"(?:start|begin|end)")+")+"));var a=t.column-o.getCurrentTokenColumn();for(;;){var f=u.value,l=f.length;while(a<l){var c=f.charAt(a);if(c==i){s-=1;if(s==0)return{row:o.getCurrentTokenRow(),column:a+o.getCurrentTokenColumn()}}else c==e&&(s+=1);a+=1}do u=o.stepForward();while(u&&!n.test(u.type));if(u==null)break;a=0}return null}}var r=e("../token_iterator").TokenIterator,i=e("../range").Range;t.BracketMatch=s}),define("ace/edit_session",["require","exports","module","ace/lib/oop","ace/lib/lang","ace/bidihandler","ace/config","ace/lib/event_emitter","ace/selection","ace/mode/text","ace/range","ace/document","ace/background_tokenizer","ace/search_highlight","ace/edit_session/folding","ace/edit_session/bracket_match"],function(e,t,n){"use strict";var r=e("./lib/oop"),i=e("./lib/lang"),s=e("./bidihandler").BidiHandler,o=e("./config"),u=e("./lib/event_emitter").EventEmitter,a=e("./selection").Selection,f=e("./mode/text").Mode,l=e("./range").Range,c=e("./document").Document,h=e("./background_tokenizer").BackgroundTokenizer,p=e("./search_highlight").SearchHighlight,d=function(e,t){this.$breakpoints=[],this.$decorations=[],this.$frontMarkers={},this.$backMarkers={},this.$markerId=1,this.$undoSelect=!0,this.$foldData=[],this.id="session"+ ++d.$uid,this.$foldData.toString=function(){return this.join("\n")},this.on("changeFold",this.onChangeFold.bind(this)),this.$onChange=this.onChange.bind(this);if(typeof e!="object"||!e.getLine)e=new c(e);this.$bidiHandler=new s(this),this.setDocument(e),this.selection=new a(this),o.resetOptions(this),this.setMode(t),o._signal("session",this)};d.$uid=0,function(){function m(e){return e<4352?!1:e>=4352&&e<=4447||e>=4515&&e<=4519||e>=4602&&e<=4607||e>=9001&&e<=9002||e>=11904&&e<=11929||e>=11931&&e<=12019||e>=12032&&e<=12245||e>=12272&&e<=12283||e>=12288&&e<=12350||e>=12353&&e<=12438||e>=12441&&e<=12543||e>=12549&&e<=12589||e>=12593&&e<=12686||e>=12688&&e<=12730||e>=12736&&e<=12771||e>=12784&&e<=12830||e>=12832&&e<=12871||e>=12880&&e<=13054||e>=13056&&e<=19903||e>=19968&&e<=42124||e>=42128&&e<=42182||e>=43360&&e<=43388||e>=44032&&e<=55203||e>=55216&&e<=55238||e>=55243&&e<=55291||e>=63744&&e<=64255||e>=65040&&e<=65049||e>=65072&&e<=65106||e>=65108&&e<=65126||e>=65128&&e<=65131||e>=65281&&e<=65376||e>=65504&&e<=65510}r.implement(this,u),this.setDocument=function(e){this.doc&&this.doc.removeListener("change",this.$onChange),this.doc=e,e.on("change",this.$onChange),this.bgTokenizer&&this.bgTokenizer.setDocument(this.getDocument()),this.resetCaches()},this.getDocument=function(){return this.doc},this.$resetRowCache=function(e){if(!e){this.$docRowCache=[],this.$screenRowCache=[];return}var t=this.$docRowCache.length,n=this.$getRowCacheIndex(this.$docRowCache,e)+1;t>n&&(this.$docRowCache.splice(n,t),this.$screenRowCache.splice(n,t))},this.$getRowCacheIndex=function(e,t){var n=0,r=e.length-1;while(n<=r){var i=n+r>>1,s=e[i];if(t>s)n=i+1;else{if(!(t<s))return i;r=i-1}}return n-1},this.resetCaches=function(){this.$modified=!0,this.$wrapData=[],this.$rowLengthCache=[],this.$resetRowCache(0),this.bgTokenizer&&this.bgTokenizer.start(0)},this.onChangeFold=function(e){var t=e.data;this.$resetRowCache(t.start.row)},this.onChange=function(e){this.$modified=!0,this.$bidiHandler.onChange(e),this.$resetRowCache(e.start.row);var t=this.$updateInternalDataOnChange(e);!this.$fromUndo&&this.$undoManager&&!e.ignore&&(this.$deltasDoc.push(e),t&&t.length!=0&&this.$deltasFold.push({action:"removeFolds",folds:t}),this.$informUndoManager.schedule()),this.bgTokenizer&&this.bgTokenizer.$updateOnChange(e),this._signal("change",e)},this.setValue=function(e){this.doc.setValue(e),this.selection.moveTo(0,0),this.$resetRowCache(0),this.$deltas=[],this.$deltasDoc=[],this.$deltasFold=[],this.setUndoManager(this.$undoManager),this.getUndoManager().reset()},this.getValue=this.toString=function(){return this.doc.getValue()},this.getSelection=function(){return this.selection},this.getState=function(e){return this.bgTokenizer.getState(e)},this.getTokens=function(e){return this.bgTokenizer.getTokens(e)},this.getTokenAt=function(e,t){var n=this.bgTokenizer.getTokens(e),r,i=0;if(t==null){var s=n.length-1;i=this.getLine(e).length}else for(var s=0;s<n.length;s++){i+=n[s].value.length;if(i>=t)break}return r=n[s],r?(r.index=s,r.start=i-r.value.length,r):null},this.setUndoManager=function(e){this.$undoManager=e,this.$deltas=[],this.$deltasDoc=[],this.$deltasFold=[],this.$informUndoManager&&this.$informUndoManager.cancel();if(e){var t=this;this.$syncInformUndoManager=function(){t.$informUndoManager.cancel(),t.$deltasFold.length&&(t.$deltas.push({group:"fold",deltas:t.$deltasFold}),t.$deltasFold=[]),t.$deltasDoc.length&&(t.$deltas.push({group:"doc",deltas:t.$deltasDoc}),t.$deltasDoc=[]),t.$deltas.length>0&&e.execute({action:"aceupdate",args:[t.$deltas,t],merge:t.mergeUndoDeltas}),t.mergeUndoDeltas=!1,t.$deltas=[]},this.$informUndoManager=i.delayedCall(this.$syncInformUndoManager)}},this.markUndoGroup=function(){this.$syncInformUndoManager&&this.$syncInformUndoManager()},this.$defaultUndoManager={undo:function(){},redo:function(){},reset:function(){}},this.getUndoManager=function(){return this.$undoManager||this.$defaultUndoManager},this.getTabString=function(){return this.getUseSoftTabs()?i.stringRepeat(" ",this.getTabSize()):" "},this.setUseSoftTabs=function(e){this.setOption("useSoftTabs",e)},this.getUseSoftTabs=function(){return this.$useSoftTabs&&!this.$mode.$indentWithTabs},this.setTabSize=function(e){this.setOption("tabSize",e)},this.getTabSize=function(){return this.$tabSize},this.isTabStop=function(e){return this.$useSoftTabs&&e.column%this.$tabSize===0},this.setNavigateWithinSoftTabs=function(e){this.setOption("navigateWithinSoftTabs",e)},this.getNavigateWithinSoftTabs=function(){return this.$navigateWithinSoftTabs},this.$overwrite=!1,this.setOverwrite=function(e){this.setOption("overwrite",e)},this.getOverwrite=function(){return this.$overwrite},this.toggleOverwrite=function(){this.setOverwrite(!this.$overwrite)},this.addGutterDecoration=function(e,t){this.$decorations[e]||(this.$decorations[e]=""),this.$decorations[e]+=" "+t,this._signal("changeBreakpoint",{})},this.removeGutterDecoration=function(e,t){this.$decorations[e]=(this.$decorations[e]||"").replace(" "+t,""),this._signal("changeBreakpoint",{})},this.getBreakpoints=function(){return this.$breakpoints},this.setBreakpoints=function(e){this.$breakpoints=[];for(var t=0;t<e.length;t++)this.$breakpoints[e[t]]="ace_breakpoint";this._signal("changeBreakpoint",{})},this.clearBreakpoints=function(){this.$breakpoints=[],this._signal("changeBreakpoint",{})},this.setBreakpoint=function(e,t){t===undefined&&(t="ace_breakpoint"),t?this.$breakpoints[e]=t:delete this.$breakpoints[e],this._signal("changeBreakpoint",{})},this.clearBreakpoint=function(e){delete this.$breakpoints[e],this._signal("changeBreakpoint",{})},this.addMarker=function(e,t,n,r){var i=this.$markerId++,s={range:e,type:n||"line",renderer:typeof n=="function"?n:null,clazz:t,inFront:!!r,id:i};return r?(this.$frontMarkers[i]=s,this._signal("changeFrontMarker")):(this.$backMarkers[i]=s,this._signal("changeBackMarker")),i},this.addDynamicMarker=function(e,t){if(!e.update)return;var n=this.$markerId++;return e.id=n,e.inFront=!!t,t?(this.$frontMarkers[n]=e,this._signal("changeFrontMarker")):(this.$backMarkers[n]=e,this._signal("changeBackMarker")),e},this.removeMarker=function(e){var t=this.$frontMarkers[e]||this.$backMarkers[e];if(!t)return;var n=t.inFront?this.$frontMarkers:this.$backMarkers;t&&(delete n[e],this._signal(t.inFront?"changeFrontMarker":"changeBackMarker"))},this.getMarkers=function(e){return e?this.$frontMarkers:this.$backMarkers},this.highlight=function(e){if(!this.$searchHighlight){var t=new p(null,"ace_selected-word","text");this.$searchHighlight=this.addDynamicMarker(t)}this.$searchHighlight.setRegexp(e)},this.highlightLines=function(e,t,n,r){typeof t!="number"&&(n=t,t=e),n||(n="ace_step");var i=new l(e,0,t,Infinity);return i.id=this.addMarker(i,n,"fullLine",r),i},this.setAnnotations=function(e){this.$annotations=e,this._signal("changeAnnotation",{})},this.getAnnotations=function(){return this.$annotations||[]},this.clearAnnotations=function(){this.setAnnotations([])},this.$detectNewLine=function(e){var t=e.match(/^.*?(\r?\n)/m);t?this.$autoNewLine=t[1]:this.$autoNewLine="\n"},this.getWordRange=function(e,t){var n=this.getLine(e),r=!1;t>0&&(r=!!n.charAt(t-1).match(this.tokenRe)),r||(r=!!n.charAt(t).match(this.tokenRe));if(r)var i=this.tokenRe;else if(/^\s+$/.test(n.slice(t-1,t+1)))var i=/\s/;else var i=this.nonTokenRe;var s=t;if(s>0){do s--;while(s>=0&&n.charAt(s).match(i));s++}var o=t;while(o<n.length&&n.charAt(o).match(i))o++;return new l(e,s,e,o)},this.getAWordRange=function(e,t){var n=this.getWordRange(e,t),r=this.getLine(n.end.row);while(r.charAt(n.end.column).match(/[ \t]/))n.end.column+=1;return n},this.setNewLineMode=function(e){this.doc.setNewLineMode(e)},this.getNewLineMode=function(){return this.doc.getNewLineMode()},this.setUseWorker=function(e){this.setOption("useWorker",e)},this.getUseWorker=function(){return this.$useWorker},this.onReloadTokenizer=function(e){var t=e.data;this.bgTokenizer.start(t.first),this._signal("tokenizerUpdate",e)},this.$modes={},this.$mode=null,this.$modeId=null,this.setMode=function(e,t){if(e&&typeof e=="object"){if(e.getTokenizer)return this.$onChangeMode(e);var n=e,r=n.path}else r=e||"ace/mode/text";this.$modes["ace/mode/text"]||(this.$modes["ace/mode/text"]=new f);if(this.$modes[r]&&!n){this.$onChangeMode(this.$modes[r]),t&&t();return}this.$modeId=r,o.loadModule(["mode",r],function(e){if(this.$modeId!==r)return t&&t();this.$modes[r]&&!n?this.$onChangeMode(this.$modes[r]):e&&e.Mode&&(e=new e.Mode(n),n||(this.$modes[r]=e,e.$id=r),this.$onChangeMode(e)),t&&t()}.bind(this)),this.$mode||this.$onChangeMode(this.$modes["ace/mode/text"],!0)},this.$onChangeMode=function(e,t){t||(this.$modeId=e.$id);if(this.$mode===e)return;this.$mode=e,this.$stopWorker(),this.$useWorker&&this.$startWorker();var n=e.getTokenizer();if(n.addEventListener!==undefined){var r=this.onReloadTokenizer.bind(this);n.addEventListener("update",r)}if(!this.bgTokenizer){this.bgTokenizer=new h(n);var i=this;this.bgTokenizer.addEventListener("update",function(e){i._signal("tokenizerUpdate",e)})}else this.bgTokenizer.setTokenizer(n);this.bgTokenizer.setDocument(this.getDocument()),this.tokenRe=e.tokenRe,this.nonTokenRe=e.nonTokenRe,t||(e.attachToSession&&e.attachToSession(this),this.$options.wrapMethod.set.call(this,this.$wrapMethod),this.$setFolding(e.foldingRules),this.bgTokenizer.start(0),this._emit("changeMode"))},this.$stopWorker=function(){this.$worker&&(this.$worker.terminate(),this.$worker=null)},this.$startWorker=function(){try{this.$worker=this.$mode.createWorker(this)}catch(e){o.warn("Could not load worker",e),this.$worker=null}},this.getMode=function(){return this.$mode},this.$scrollTop=0,this.setScrollTop=function(e){if(this.$scrollTop===e||isNaN(e))return;this.$scrollTop=e,this._signal("changeScrollTop",e)},this.getScrollTop=function(){return this.$scrollTop},this.$scrollLeft=0,this.setScrollLeft=function(e){if(this.$scrollLeft===e||isNaN(e))return;this.$scrollLeft=e,this._signal("changeScrollLeft",e)},this.getScrollLeft=function(){return this.$scrollLeft},this.getScreenWidth=function(){return this.$computeWidth(),this.lineWidgets?Math.max(this.getLineWidgetMaxWidth(),this.screenWidth):this.screenWidth},this.getLineWidgetMaxWidth=function(){if(this.lineWidgetsWidth!=null)return this.lineWidgetsWidth;var e=0;return this.lineWidgets.forEach(function(t){t&&t.screenWidth>e&&(e=t.screenWidth)}),this.lineWidgetWidth=e},this.$computeWidth=function(e){if(this.$modified||e){this.$modified=!1;if(this.$useWrapMode)return this.screenWidth=this.$wrapLimit;var t=this.doc.getAllLines(),n=this.$rowLengthCache,r=0,i=0,s=this.$foldData[i],o=s?s.start.row:Infinity,u=t.length;for(var a=0;a<u;a++){if(a>o){a=s.end.row+1;if(a>=u)break;s=this.$foldData[i++],o=s?s.start.row:Infinity}n[a]==null&&(n[a]=this.$getStringScreenWidth(t[a])[0]),n[a]>r&&(r=n[a])}this.screenWidth=r}},this.getLine=function(e){return this.doc.getLine(e)},this.getLines=function(e,t){return this.doc.getLines(e,t)},this.getLength=function(){return this.doc.getLength()},this.getTextRange=function(e){return this.doc.getTextRange(e||this.selection.getRange())},this.insert=function(e,t){return this.doc.insert(e,t)},this.remove=function(e){return this.doc.remove(e)},this.removeFullLines=function(e,t){return this.doc.removeFullLines(e,t)},this.undoChanges=function(e,t){if(!e.length)return;this.$fromUndo=!0;var n=null;for(var r=e.length-1;r!=-1;r--){var i=e[r];i.group=="doc"?(this.doc.revertDeltas(i.deltas),n=this.$getUndoSelection(i.deltas,!0,n)):i.deltas.forEach(function(e){this.addFolds(e.folds)},this)}return this.$fromUndo=!1,n&&this.$undoSelect&&!t&&this.selection.setSelectionRange(n),n},this.redoChanges=function(e,t){if(!e.length)return;this.$fromUndo=!0;var n=null;for(var r=0;r<e.length;r++){var i=e[r];i.group=="doc"&&(this.doc.applyDeltas(i.deltas),n=this.$getUndoSelection(i.deltas,!1,n))}return this.$fromUndo=!1,n&&this.$undoSelect&&!t&&this.selection.setSelectionRange(n),n},this.setUndoSelect=function(e){this.$undoSelect=e},this.$getUndoSelection=function(e,t,n){function r(e){return t?e.action!=="insert":e.action==="insert"}var i=e[0],s,o,u=!1;r(i)?(s=l.fromPoints(i.start,i.end),u=!0):(s=l.fromPoints(i.start,i.start),u=!1);for(var a=1;a<e.length;a++)i=e[a],r(i)?(o=i.start,s.compare(o.row,o.column)==-1&&s.setStart(o),o=i.end,s.compare(o.row,o.column)==1&&s.setEnd(o),u=!0):(o=i.start,s.compare(o.row,o.column)==-1&&(s=l.fromPoints(i.start,i.start)),u=!1);if(n!=null){l.comparePoints(n.start,s.start)===0&&(n.start.column+=s.end.column-s.start.column,n.end.column+=s.end.column-s.start.column);var f=n.compareRange(s);f==1?s.setStart(n.start):f==-1&&s.setEnd(n.end)}return s},this.replace=function(e,t){return this.doc.replace(e,t)},this.moveText=function(e,t,n){var r=this.getTextRange(e),i=this.getFoldsInRange(e),s=l.fromPoints(t,t);if(!n){this.remove(e);var o=e.start.row-e.end.row,u=o?-e.end.column:e.start.column-e.end.column;u&&(s.start.row==e.end.row&&s.start.column>e.end.column&&(s.start.column+=u),s.end.row==e.end.row&&s.end.column>e.end.column&&(s.end.column+=u)),o&&s.start.row>=e.end.row&&(s.start.row+=o,s.end.row+=o)}s.end=this.insert(s.start,r);if(i.length){var a=e.start,f=s.start,o=f.row-a.row,u=f.column-a.column;this.addFolds(i.map(function(e){return e=e.clone(),e.start.row==a.row&&(e.start.column+=u),e.end.row==a.row&&(e.end.column+=u),e.start.row+=o,e.end.row+=o,e}))}return s},this.indentRows=function(e,t,n){n=n.replace(/\t/g,this.getTabString());for(var r=e;r<=t;r++)this.doc.insertInLine({row:r,column:0},n)},this.outdentRows=function(e){var t=e.collapseRows(),n=new l(0,0,0,0),r=this.getTabSize();for(var i=t.start.row;i<=t.end.row;++i){var s=this.getLine(i);n.start.row=i,n.end.row=i;for(var o=0;o<r;++o)if(s.charAt(o)!=" ")break;o<r&&s.charAt(o)==" "?(n.start.column=o,n.end.column=o+1):(n.start.column=0,n.end.column=o),this.remove(n)}},this.$moveLines=function(e,t,n){e=this.getRowFoldStart(e),t=this.getRowFoldEnd(t);if(n<0){var r=this.getRowFoldStart(e+n);if(r<0)return 0;var i=r-e}else if(n>0){var r=this.getRowFoldEnd(t+n);if(r>this.doc.getLength()-1)return 0;var i=r-t}else{e=this.$clipRowToDocument(e),t=this.$clipRowToDocument(t);var i=t-e+1}var s=new l(e,0,t,Number.MAX_VALUE),o=this.getFoldsInRange(s).map(function(e){return e=e.clone(),e.start.row+=i,e.end.row+=i,e}),u=n==0?this.doc.getLines(e,t):this.doc.removeFullLines(e,t);return this.doc.insertFullLines(e+i,u),o.length&&this.addFolds(o),i},this.moveLinesUp=function(e,t){return this.$moveLines(e,t,-1)},this.moveLinesDown=function(e,t){return this.$moveLines(e,t,1)},this.duplicateLines=function(e,t){return this.$moveLines(e,t,0)},this.$clipRowToDocument=function(e){return Math.max(0,Math.min(e,this.doc.getLength()-1))},this.$clipColumnToRow=function(e,t){return t<0?0:Math.min(this.doc.getLine(e).length,t)},this.$clipPositionToDocument=function(e,t){t=Math.max(0,t);if(e<0)e=0,t=0;else{var n=this.doc.getLength();e>=n?(e=n-1,t=this.doc.getLine(n-1).length):t=Math.min(this.doc.getLine(e).length,t)}return{row:e,column:t}},this.$clipRangeToDocument=function(e){e.start.row<0?(e.start.row=0,e.start.column=0):e.start.column=this.$clipColumnToRow(e.start.row,e.start.column);var t=this.doc.getLength()-1;return e.end.row>t?(e.end.row=t,e.end.column=this.doc.getLine(t).length):e.end.column=this.$clipColumnToRow(e.end.row,e.end.column),e},this.$wrapLimit=80,this.$useWrapMode=!1,this.$wrapLimitRange={min:null,max:null},this.setUseWrapMode=function(e){if(e!=this.$useWrapMode){this.$useWrapMode=e,this.$modified=!0,this.$resetRowCache(0);if(e){var t=this.getLength();this.$wrapData=Array(t),this.$updateWrapData(0,t-1)}this._signal("changeWrapMode")}},this.getUseWrapMode=function(){return this.$useWrapMode},this.setWrapLimitRange=function(e,t){if(this.$wrapLimitRange.min!==e||this.$wrapLimitRange.max!==t)this.$wrapLimitRange={min:e,max:t},this.$modified=!0,this.$bidiHandler.markAsDirty(),this.$useWrapMode&&this._signal("changeWrapMode")},this.adjustWrapLimit=function(e,t){var n=this.$wrapLimitRange;n.max<0&&(n={min:t,max:t});var r=this.$constrainWrapLimit(e,n.min,n.max);return r!=this.$wrapLimit&&r>1?(this.$wrapLimit=r,this.$modified=!0,this.$useWrapMode&&(this.$updateWrapData(0,this.getLength()-1),this.$resetRowCache(0),this._signal("changeWrapLimit")),!0):!1},this.$constrainWrapLimit=function(e,t,n){return t&&(e=Math.max(t,e)),n&&(e=Math.min(n,e)),e},this.getWrapLimit=function(){return this.$wrapLimit},this.setWrapLimit=function(e){this.setWrapLimitRange(e,e)},this.getWrapLimitRange=function(){return{min:this.$wrapLimitRange.min,max:this.$wrapLimitRange.max}},this.$updateInternalDataOnChange=function(e){var t=this.$useWrapMode,n=e.action,r=e.start,i=e.end,s=r.row,o=i.row,u=o-s,a=null;this.$updating=!0;if(u!=0)if(n==="remove"){this[t?"$wrapData":"$rowLengthCache"].splice(s,u);var f=this.$foldData;a=this.getFoldsInRange(e),this.removeFolds(a);var l=this.getFoldLine(i.row),c=0;if(l){l.addRemoveChars(i.row,i.column,r.column-i.column),l.shiftRow(-u);var h=this.getFoldLine(s);h&&h!==l&&(h.merge(l),l=h),c=f.indexOf(l)+1}for(c;c<f.length;c++){var l=f[c];l.start.row>=i.row&&l.shiftRow(-u)}o=s}else{var p=Array(u);p.unshift(s,0);var d=t?this.$wrapData:this.$rowLengthCache;d.splice.apply(d,p);var f=this.$foldData,l=this.getFoldLine(s),c=0;if(l){var v=l.range.compareInside(r.row,r.column);v==0?(l=l.split(r.row,r.column),l&&(l.shiftRow(u),l.addRemoveChars(o,0,i.column-r.column))):v==-1&&(l.addRemoveChars(s,0,i.column-r.column),l.shiftRow(u)),c=f.indexOf(l)+1}for(c;c<f.length;c++){var l=f[c];l.start.row>=s&&l.shiftRow(u)}}else{u=Math.abs(e.start.column-e.end.column),n==="remove"&&(a=this.getFoldsInRange(e),this.removeFolds(a),u=-u);var l=this.getFoldLine(s);l&&l.addRemoveChars(s,r.column,u)}return t&&this.$wrapData.length!=this.doc.getLength()&&console.error("doc.getLength() and $wrapData.length have to be the same!"),this.$updating=!1,t?this.$updateWrapData(s,o):this.$updateRowLengthCache(s,o),a},this.$updateRowLengthCache=function(e,t,n){this.$rowLengthCache[e]=null,this.$rowLengthCache[t]=null},this.$updateWrapData=function(e,t){var r=this.doc.getAllLines(),i=this.getTabSize(),o=this.$wrapData,u=this.$wrapLimit,a,f,l=e;t=Math.min(t,r.length-1);while(l<=t)f=this.getFoldLine(l,f),f?(a=[],f.walk(function(e,t,i,o){var u;if(e!=null){u=this.$getDisplayTokens(e,a.length),u[0]=n;for(var f=1;f<u.length;f++)u[f]=s}else u=this.$getDisplayTokens(r[t].substring(o,i),a.length);a=a.concat(u)}.bind(this),f.end.row,r[f.end.row].length+1),o[f.start.row]=this.$computeWrapSplits(a,u,i),l=f.end.row+1):(a=this.$getDisplayTokens(r[l]),o[l]=this.$computeWrapSplits(a,u,i),l++)};var e=1,t=2,n=3,s=4,a=9,c=10,d=11,v=12;this.$computeWrapSplits=function(e,r,i){function g(){var t=0;if(m===0)return t;if(p)for(var n=0;n<e.length;n++){var r=e[n];if(r==c)t+=1;else{if(r!=d){if(r==v)continue;break}t+=i}}return h&&p!==!1&&(t+=i),Math.min(t,m)}function y(t){var n=e.slice(f,t),r=n.length;n.join("").replace(/12/g,function(){r-=1}).replace(/2/g,function(){r-=1}),o.length||(b=g(),o.indent=b),l+=r,o.push(l),f=t}if(e.length==0)return[];var o=[],u=e.length,f=0,l=0,h=this.$wrapAsCode,p=this.$indentedSoftWrap,m=r<=Math.max(2*i,8)||p===!1?0:Math.floor(r/2),b=0;while(u-f>r-b){var w=f+r-b;if(e[w-1]>=c&&e[w]>=c){y(w);continue}if(e[w]==n||e[w]==s){for(w;w!=f-1;w--)if(e[w]==n)break;if(w>f){y(w);continue}w=f+r;for(w;w<e.length;w++)if(e[w]!=s)break;if(w==e.length)break;y(w);continue}var E=Math.max(w-(r-(r>>2)),f-1);while(w>E&&e[w]<n)w--;if(h){while(w>E&&e[w]<n)w--;while(w>E&&e[w]==a)w--}else while(w>E&&e[w]<c)w--;if(w>E){y(++w);continue}w=f+r,e[w]==t&&w--,y(w-b)}return o},this.$getDisplayTokens=function(n,r){var i=[],s;r=r||0;for(var o=0;o<n.length;o++){var u=n.charCodeAt(o);if(u==9){s=this.getScreenTabSize(i.length+r),i.push(d);for(var f=1;f<s;f++)i.push(v)}else u==32?i.push(c):u>39&&u<48||u>57&&u<64?i.push(a):u>=4352&&m(u)?i.push(e,t):i.push(e)}return i},this.$getStringScreenWidth=function(e,t,n){if(t==0)return[0,0];t==null&&(t=Infinity),n=n||0;var r,i;for(i=0;i<e.length;i++){r=e.charCodeAt(i),r==9?n+=this.getScreenTabSize(n):r>=4352&&m(r)?n+=2:n+=1;if(n>t)break}return[n,i]},this.lineWidgets=null,this.getRowLength=function(e){if(this.lineWidgets)var t=this.lineWidgets[e]&&this.lineWidgets[e].rowCount||0;else t=0;return!this.$useWrapMode||!this.$wrapData[e]?1+t:this.$wrapData[e].length+1+t},this.getRowLineCount=function(e){return!this.$useWrapMode||!this.$wrapData[e]?1:this.$wrapData[e].length+1},this.getRowWrapIndent=function(e){if(this.$useWrapMode){var t=this.screenToDocumentPosition(e,Number.MAX_VALUE),n=this.$wrapData[t.row];return n.length&&n[0]<t.column?n.indent:0}return 0},this.getScreenLastRowColumn=function(e){var t=this.screenToDocumentPosition(e,Number.MAX_VALUE);return this.documentToScreenColumn(t.row,t.column)},this.getDocumentLastRowColumn=function(e,t){var n=this.documentToScreenRow(e,t);return this.getScreenLastRowColumn(n)},this.getDocumentLastRowColumnPosition=function(e,t){var n=this.documentToScreenRow(e,t);return this.screenToDocumentPosition(n,Number.MAX_VALUE/10)},this.getRowSplitData=function(e){return this.$useWrapMode?this.$wrapData[e]:undefined},this.getScreenTabSize=function(e){return this.$tabSize-e%this.$tabSize},this.screenToDocumentRow=function(e,t){return this.screenToDocumentPosition(e,t).row},this.screenToDocumentColumn=function(e,t){return this.screenToDocumentPosition(e,t).column},this.screenToDocumentPosition=function(e,t,n){if(e<0)return{row:0,column:0};var r,i=0,s=0,o,u=0,a=0,f=this.$screenRowCache,l=this.$getRowCacheIndex(f,e),c=f.length;if(c&&l>=0)var u=f[l],i=this.$docRowCache[l],h=e>f[c-1];else var h=!c;var p=this.getLength()-1,d=this.getNextFoldLine(i),v=d?d.start.row:Infinity;while(u<=e){a=this.getRowLength(i);if(u+a>e||i>=p)break;u+=a,i++,i>v&&(i=d.end.row+1,d=this.getNextFoldLine(i,d),v=d?d.start.row:Infinity),h&&(this.$docRowCache.push(i),this.$screenRowCache.push(u))}if(d&&d.start.row<=i)r=this.getFoldDisplayLine(d),i=d.start.row;else{if(u+a<=e||i>p)return{row:p,column:this.getLine(p).length};r=this.getLine(i),d=null}var m=0,g=Math.floor(e-u);if(this.$useWrapMode){var y=this.$wrapData[i];y&&(o=y[g],g>0&&y.length&&(m=y.indent,s=y[g-1]||y[y.length-1],r=r.substring(s)))}return n!==undefined&&this.$bidiHandler.isBidiRow(u+g,i,g)&&(t=this.$bidiHandler.offsetToCol(n)),s+=this.$getStringScreenWidth(r,t-m)[1],this.$useWrapMode&&s>=o&&(s=o-1),d?d.idxToPosition(s):{row:i,column:s}},this.documentToScreenPosition=function(e,t){if(typeof t=="undefined")var n=this.$clipPositionToDocument(e.row,e.column);else n=this.$clipPositionToDocument(e,t);e=n.row,t=n.column;var r=0,i=null,s=null;s=this.getFoldAt(e,t,1),s&&(e=s.start.row,t=s.start.column);var o,u=0,a=this.$docRowCache,f=this.$getRowCacheIndex(a,e),l=a.length;if(l&&f>=0)var u=a[f],r=this.$screenRowCache[f],c=e>a[l-1];else var c=!l;var h=this.getNextFoldLine(u),p=h?h.start.row:Infinity;while(u<e){if(u>=p){o=h.end.row+1;if(o>e)break;h=this.getNextFoldLine(o,h),p=h?h.start.row:Infinity}else o=u+1;r+=this.getRowLength(u),u=o,c&&(this.$docRowCache.push(u),this.$screenRowCache.push(r))}var d="";h&&u>=p?(d=this.getFoldDisplayLine(h,e,t),i=h.start.row):(d=this.getLine(e).substring(0,t),i=e);var v=0;if(this.$useWrapMode){var m=this.$wrapData[i];if(m){var g=0;while(d.length>=m[g])r++,g++;d=d.substring(m[g-1]||0,d.length),v=g>0?m.indent:0}}return{row:r,column:v+this.$getStringScreenWidth(d)[0]}},this.documentToScreenColumn=function(e,t){return this.documentToScreenPosition(e,t).column},this.documentToScreenRow=function(e,t){return this.documentToScreenPosition(e,t).row},this.getScreenLength=function(){var e=0,t=null;if(!this.$useWrapMode){e=this.getLength();var n=this.$foldData;for(var r=0;r<n.length;r++)t=n[r],e-=t.end.row-t.start.row}else{var i=this.$wrapData.length,s=0,r=0,t=this.$foldData[r++],o=t?t.start.row:Infinity;while(s<i){var u=this.$wrapData[s];e+=u?u.length+1:1,s++,s>o&&(s=t.end.row+1,t=this.$foldData[r++],o=t?t.start.row:Infinity)}}return this.lineWidgets&&(e+=this.$getWidgetScreenLength()),e},this.$setFontMetrics=function(e){if(!this.$enableVarChar)return;this.$getStringScreenWidth=function(t,n,r){if(n===0)return[0,0];n||(n=Infinity),r=r||0;var i,s;for(s=0;s<t.length;s++){i=t.charAt(s),i===" "?r+=this.getScreenTabSize(r):r+=e.getCharacterWidth(i);if(r>n)break}return[r,s]}},this.destroy=function(){this.bgTokenizer&&(this.bgTokenizer.setDocument(null),this.bgTokenizer=null),this.$stopWorker()},this.isFullWidth=m}.call(d.prototype),e("./edit_session/folding").Folding.call(d.prototype),e("./edit_session/bracket_match").BracketMatch.call(d.prototype),o.defineOptions(d.prototype,"session",{wrap:{set:function(e){!e||e=="off"?e=!1:e=="free"?e=!0:e=="printMargin"?e=-1:typeof e=="string"&&(e=parseInt(e,10)||!1);if(this.$wrap==e)return;this.$wrap=e;if(!e)this.setUseWrapMode(!1);else{var t=typeof e=="number"?e:null;this.setWrapLimitRange(t,t),this.setUseWrapMode(!0)}},get:function(){return this.getUseWrapMode()?this.$wrap==-1?"printMargin":this.getWrapLimitRange().min?this.$wrap:"free":"off"},handlesSet:!0},wrapMethod:{set:function(e){e=e=="auto"?this.$mode.type!="text":e!="text",e!=this.$wrapAsCode&&(this.$wrapAsCode=e,this.$useWrapMode&&(this.$modified=!0,this.$resetRowCache(0),this.$updateWrapData(0,this.getLength()-1)))},initialValue:"auto"},indentedSoftWrap:{initialValue:!0},firstLineNumber:{set:function(){this._signal("changeBreakpoint")},initialValue:1},useWorker:{set:function(e){this.$useWorker=e,this.$stopWorker(),e&&this.$startWorker()},initialValue:!0},useSoftTabs:{initialValue:!0},tabSize:{set:function(e){if(isNaN(e)||this.$tabSize===e)return;this.$modified=!0,this.$rowLengthCache=[],this.$tabSize=e,this._signal("changeTabSize")},initialValue:4,handlesSet:!0},navigateWithinSoftTabs:{initialValue:!1},overwrite:{set:function(e){this._signal("changeOverwrite")},initialValue:!1},newLineMode:{set:function(e){this.doc.setNewLineMode(e)},get:function(){return this.doc.getNewLineMode()},handlesSet:!0},mode:{set:function(e){this.setMode(e)},get:function(){return this.$modeId}}}),t.EditSession=d}),define("ace/search",["require","exports","module","ace/lib/lang","ace/lib/oop","ace/range"],function(e,t,n){"use strict";function u(e,t){function n(e){return/\w/.test(e)||t.regExp?"\\b":""}return n(e[0])+e+n(e[e.length-1])}var r=e("./lib/lang"),i=e("./lib/oop"),s=e("./range").Range,o=function(){this.$options={}};(function(){this.set=function(e){return i.mixin(this.$options,e),this},this.getOptions=function(){return r.copyObject(this.$options)},this.setOptions=function(e){this.$options=e},this.find=function(e){var t=this.$options,n=this.$matchIterator(e,t);if(!n)return!1;var r=null;return n.forEach(function(e,n,i,o){return r=new s(e,n,i,o),n==o&&t.start&&t.start.start&&t.skipCurrent!=0&&r.isEqual(t.start)?(r=null,!1):!0}),r},this.findAll=function(e){var t=this.$options;if(!t.needle)return[];this.$assembleRegExp(t);var n=t.range,i=n?e.getLines(n.start.row,n.end.row):e.doc.getAllLines(),o=[],u=t.re;if(t.$isMultiLine){var a=u.length,f=i.length-a,l;e:for(var c=u.offset||0;c<=f;c++){for(var h=0;h<a;h++)if(i[c+h].search(u[h])==-1)continue e;var p=i[c],d=i[c+a-1],v=p.length-p.match(u[0])[0].length,m=d.match(u[a-1])[0].length;if(l&&l.end.row===c&&l.end.column>v)continue;o.push(l=new s(c,v,c+a-1,m)),a>2&&(c=c+a-2)}}else for(var g=0;g<i.length;g++){var y=r.getMatchOffsets(i[g],u);for(var h=0;h<y.length;h++){var b=y[h];o.push(new s(g,b.offset,g,b.offset+b.length))}}if(n){var w=n.start.column,E=n.start.column,g=0,h=o.length-1;while(g<h&&o[g].start.column<w&&o[g].start.row==n.start.row)g++;while(g<h&&o[h].end.column>E&&o[h].end.row==n.end.row)h--;o=o.slice(g,h+1);for(g=0,h=o.length;g<h;g++)o[g].start.row+=n.start.row,o[g].end.row+=n.start.row}return o},this.replace=function(e,t){var n=this.$options,r=this.$assembleRegExp(n);if(n.$isMultiLine)return t;if(!r)return;var i=r.exec(e);if(!i||i[0].length!=e.length)return null;t=e.replace(r,t);if(n.preserveCase){t=t.split("");for(var s=Math.min(e.length,e.length);s--;){var o=e[s];o&&o.toLowerCase()!=o?t[s]=t[s].toUpperCase():t[s]=t[s].toLowerCase()}t=t.join("")}return t},this.$assembleRegExp=function(e,t){if(e.needle instanceof RegExp)return e.re=e.needle;var n=e.needle;if(!e.needle)return e.re=!1;e.regExp||(n=r.escapeRegExp(n)),e.wholeWord&&(n=u(n,e));var i=e.caseSensitive?"gm":"gmi";e.$isMultiLine=!t&&/[\n\r]/.test(n);if(e.$isMultiLine)return e.re=this.$assembleMultilineRegExp(n,i);try{var s=new RegExp(n,i)}catch(o){s=!1}return e.re=s},this.$assembleMultilineRegExp=function(e,t){var n=e.replace(/\r\n|\r|\n/g,"$\n^").split("\n"),r=[];for(var i=0;i<n.length;i++)try{r.push(new RegExp(n[i],t))}catch(s){return!1}return r},this.$matchIterator=function(e,t){var n=this.$assembleRegExp(t);if(!n)return!1;var r=t.backwards==1,i=t.skipCurrent!=0,s=t.range,o=t.start;o||(o=s?s[r?"end":"start"]:e.selection.getRange()),o.start&&(o=o[i!=r?"end":"start"]);var u=s?s.start.row:0,a=s?s.end.row:e.getLength()-1;if(r)var f=function(e){var n=o.row;if(c(n,o.column,e))return;for(n--;n>=u;n--)if(c(n,Number.MAX_VALUE,e))return;if(t.wrap==0)return;for(n=a,u=o.row;n>=u;n--)if(c(n,Number.MAX_VALUE,e))return};else var f=function(e){var n=o.row;if(c(n,o.column,e))return;for(n+=1;n<=a;n++)if(c(n,0,e))return;if(t.wrap==0)return;for(n=u,a=o.row;n<=a;n++)if(c(n,0,e))return};if(t.$isMultiLine)var l=n.length,c=function(t,i,s){var o=r?t-l+1:t;if(o<0)return;var u=e.getLine(o),a=u.search(n[0]);if(!r&&a<i||a===-1)return;for(var f=1;f<l;f++){u=e.getLine(o+f);if(u.search(n[f])==-1)return}var c=u.match(n[l-1])[0].length;if(r&&c>i)return;if(s(o,a,o+l-1,c))return!0};else if(r)var c=function(t,r,i){var s=e.getLine(t),o=[],u,a=0;n.lastIndex=0;while(u=n.exec(s)){var f=u[0].length;a=u.index;if(!f){if(a>=s.length)break;n.lastIndex=a+=1}if(u.index+f>r)break;o.push(u.index,f)}for(var l=o.length-1;l>=0;l-=2){var c=o[l-1],f=o[l];if(i(t,c,t,c+f))return!0}};else var c=function(t,r,i){var s=e.getLine(t),o,u=r;n.lastIndex=r;while(o=n.exec(s)){var a=o[0].length;u=o.index;if(i(t,u,t,u+a))return!0;if(!a){n.lastIndex=u+=1;if(u>=s.length)return!1}}};return{forEach:f}}}).call(o.prototype),t.Search=o}),define("ace/keyboard/hash_handler",["require","exports","module","ace/lib/keys","ace/lib/useragent"],function(e,t,n){"use strict";function o(e,t){this.platform=t||(i.isMac?"mac":"win"),this.commands={},this.commandKeyBinding={},this.addCommands(e),this.$singleCommand=!0}function u(e,t){o.call(this,e,t),this.$singleCommand=!1}var r=e("../lib/keys"),i=e("../lib/useragent"),s=r.KEY_MODS;u.prototype=o.prototype,function(){function e(e){return typeof e=="object"&&e.bindKey&&e.bindKey.position||(e.isDefault?-100:0)}this.addCommand=function(e){this.commands[e.name]&&this.removeCommand(e),this.commands[e.name]=e,e.bindKey&&this._buildKeyHash(e)},this.removeCommand=function(e,t){var n=e&&(typeof e=="string"?e:e.name);e=this.commands[n],t||delete this.commands[n];var r=this.commandKeyBinding;for(var i in r){var s=r[i];if(s==e)delete r[i];else if(Array.isArray(s)){var o=s.indexOf(e);o!=-1&&(s.splice(o,1),s.length==1&&(r[i]=s[0]))}}},this.bindKey=function(e,t,n){typeof e=="object"&&e&&(n==undefined&&(n=e.position),e=e[this.platform]);if(!e)return;if(typeof t=="function")return this.addCommand({exec:t,bindKey:e,name:t.name||e});e.split("|").forEach(function(e){var r="";if(e.indexOf(" ")!=-1){var i=e.split(/\s+/);e=i.pop(),i.forEach(function(e){var t=this.parseKeys(e),n=s[t.hashId]+t.key;r+=(r?" ":"")+n,this._addCommandToBinding(r,"chainKeys")},this),r+=" "}var o=this.parseKeys(e),u=s[o.hashId]+o.key;this._addCommandToBinding(r+u,t,n)},this)},this._addCommandToBinding=function(t,n,r){var i=this.commandKeyBinding,s;if(!n)delete i[t];else if(!i[t]||this.$singleCommand)i[t]=n;else{Array.isArray(i[t])?(s=i[t].indexOf(n))!=-1&&i[t].splice(s,1):i[t]=[i[t]],typeof r!="number"&&(r=e(n));var o=i[t];for(s=0;s<o.length;s++){var u=o[s],a=e(u);if(a>r)break}o.splice(s,0,n)}},this.addCommands=function(e){e&&Object.keys(e).forEach(function(t){var n=e[t];if(!n)return;if(typeof n=="string")return this.bindKey(n,t);typeof n=="function"&&(n={exec:n});if(typeof n!="object")return;n.name||(n.name=t),this.addCommand(n)},this)},this.removeCommands=function(e){Object.keys(e).forEach(function(t){this.removeCommand(e[t])},this)},this.bindKeys=function(e){Object.keys(e).forEach(function(t){this.bindKey(t,e[t])},this)},this._buildKeyHash=function(e){this.bindKey(e.bindKey,e)},this.parseKeys=function(e){var t=e.toLowerCase().split(/[\-\+]([\-\+])?/).filter(function(e){return e}),n=t.pop(),i=r[n];if(r.FUNCTION_KEYS[i])n=r.FUNCTION_KEYS[i].toLowerCase();else{if(!t.length)return{key:n,hashId:-1};if(t.length==1&&t[0]=="shift")return{key:n.toUpperCase(),hashId:-1}}var s=0;for(var o=t.length;o--;){var u=r.KEY_MODS[t[o]];if(u==null)return typeof console!="undefined"&&console.error("invalid modifier "+t[o]+" in "+e),!1;s|=u}return{key:n,hashId:s}},this.findKeyCommand=function(t,n){var r=s[t]+n;return this.commandKeyBinding[r]},this.handleKeyboard=function(e,t,n,r){if(r<0)return;var i=s[t]+n,o=this.commandKeyBinding[i];e.$keyChain&&(e.$keyChain+=" "+i,o=this.commandKeyBinding[e.$keyChain]||o);if(o)if(o=="chainKeys"||o[o.length-1]=="chainKeys")return e.$keyChain=e.$keyChain||i,{command:"null"};if(e.$keyChain)if(!!t&&t!=4||n.length!=1){if(t==-1||r>0)e.$keyChain=""}else e.$keyChain=e.$keyChain.slice(0,-i.length-1);return{command:o}},this.getStatusText=function(e,t){return t.$keyChain||""}}.call(o.prototype),t.HashHandler=o,t.MultiHashHandler=u}),define("ace/commands/command_manager",["require","exports","module","ace/lib/oop","ace/keyboard/hash_handler","ace/lib/event_emitter"],function(e,t,n){"use strict";var r=e("../lib/oop"),i=e("../keyboard/hash_handler").MultiHashHandler,s=e("../lib/event_emitter").EventEmitter,o=function(e,t){i.call(this,t,e),this.byName=this.commands,this.setDefaultHandler("exec",function(e){return e.command.exec(e.editor,e.args||{})})};r.inherits(o,i),function(){r.implement(this,s),this.exec=function(e,t,n){if(Array.isArray(e)){for(var r=e.length;r--;)if(this.exec(e[r],t,n))return!0;return!1}typeof e=="string"&&(e=this.commands[e]);if(!e)return!1;if(t&&t.$readOnly&&!e.readOnly)return!1;if(e.isAvailable&&!e.isAvailable(t))return!1;var i={editor:t,command:e,args:n};return i.returnValue=this._emit("exec",i),this._signal("afterExec",i),i.returnValue===!1?!1:!0},this.toggleRecording=function(e){if(this.$inReplay)return;return e&&e._emit("changeStatus"),this.recording?(this.macro.pop(),this.removeEventListener("exec",this.$addCommandToMacro),this.macro.length||(this.macro=this.oldMacro),this.recording=!1):(this.$addCommandToMacro||(this.$addCommandToMacro=function(e){this.macro.push([e.command,e.args])}.bind(this)),this.oldMacro=this.macro,this.macro=[],this.on("exec",this.$addCommandToMacro),this.recording=!0)},this.replay=function(e){if(this.$inReplay||!this.macro)return;if(this.recording)return this.toggleRecording(e);try{this.$inReplay=!0,this.macro.forEach(function(t){typeof t=="string"?this.exec(t,e):this.exec(t[0],e,t[1])},this)}finally{this.$inReplay=!1}},this.trimMacro=function(e){return e.map(function(e){return typeof e[0]!="string"&&(e[0]=e[0].name),e[1]||(e=e[0]),e})}}.call(o.prototype),t.CommandManager=o}),define("ace/commands/default_commands",["require","exports","module","ace/lib/lang","ace/config","ace/range"],function(e,t,n){"use strict";function o(e,t){return{win:e,mac:t}}var r=e("../lib/lang"),i=e("../config"),s=e("../range").Range;t.commands=[{name:"showSettingsMenu",bindKey:o("Ctrl-,","Command-,"),exec:function(e){i.loadModule("ace/ext/settings_menu",function(t){t.init(e),e.showSettingsMenu()})},readOnly:!0},{name:"goToNextError",bindKey:o("Alt-E","F4"),exec:function(e){i.loadModule("ace/ext/error_marker",function(t){t.showErrorMarker(e,1)})},scrollIntoView:"animate",readOnly:!0},{name:"goToPreviousError",bindKey:o("Alt-Shift-E","Shift-F4"),exec:function(e){i.loadModule("ace/ext/error_marker",function(t){t.showErrorMarker(e,-1)})},scrollIntoView:"animate",readOnly:!0},{name:"selectall",bindKey:o("Ctrl-A","Command-A"),exec:function(e){e.selectAll()},readOnly:!0},{name:"centerselection",bindKey:o(null,"Ctrl-L"),exec:function(e){e.centerSelection()},readOnly:!0},{name:"gotoline",bindKey:o("Ctrl-L","Command-L"),exec:function(e){var t=parseInt(prompt("Enter line number:"),10);isNaN(t)||e.gotoLine(t)},readOnly:!0},{name:"fold",bindKey:o("Alt-L|Ctrl-F1","Command-Alt-L|Command-F1"),exec:function(e){e.session.toggleFold(!1)},multiSelectAction:"forEach",scrollIntoView:"center",readOnly:!0},{name:"unfold",bindKey:o("Alt-Shift-L|Ctrl-Shift-F1","Command-Alt-Shift-L|Command-Shift-F1"),exec:function(e){e.session.toggleFold(!0)},multiSelectAction:"forEach",scrollIntoView:"center",readOnly:!0},{name:"toggleFoldWidget",bindKey:o("F2","F2"),exec:function(e){e.session.toggleFoldWidget()},multiSelectAction:"forEach",scrollIntoView:"center",readOnly:!0},{name:"toggleParentFoldWidget",bindKey:o("Alt-F2","Alt-F2"),exec:function(e){e.session.toggleFoldWidget(!0)},multiSelectAction:"forEach",scrollIntoView:"center",readOnly:!0},{name:"foldall",bindKey:o(null,"Ctrl-Command-Option-0"),exec:function(e){e.session.foldAll()},scrollIntoView:"center",readOnly:!0},{name:"foldOther",bindKey:o("Alt-0","Command-Option-0"),exec:function(e){e.session.foldAll(),e.session.unfold(e.selection.getAllRanges())},scrollIntoView:"center",readOnly:!0},{name:"unfoldall",bindKey:o("Alt-Shift-0","Command-Option-Shift-0"),exec:function(e){e.session.unfold()},scrollIntoView:"center",readOnly:!0},{name:"findnext",bindKey:o("Ctrl-K","Command-G"),exec:function(e){e.findNext()},multiSelectAction:"forEach",scrollIntoView:"center",readOnly:!0},{name:"findprevious",bindKey:o("Ctrl-Shift-K","Command-Shift-G"),exec:function(e){e.findPrevious()},multiSelectAction:"forEach",scrollIntoView:"center",readOnly:!0},{name:"selectOrFindNext",bindKey:o("Alt-K","Ctrl-G"),exec:function(e){e.selection.isEmpty()?e.selection.selectWord():e.findNext()},readOnly:!0},{name:"selectOrFindPrevious",bindKey:o("Alt-Shift-K","Ctrl-Shift-G"),exec:function(e){e.selection.isEmpty()?e.selection.selectWord():e.findPrevious()},readOnly:!0},{name:"find",bindKey:o("Ctrl-F","Command-F"),exec:function(e){i.loadModule("ace/ext/searchbox",function(t){t.Search(e)})},readOnly:!0},{name:"overwrite",bindKey:"Insert",exec:function(e){e.toggleOverwrite()},readOnly:!0},{name:"selecttostart",bindKey:o("Ctrl-Shift-Home","Command-Shift-Home|Command-Shift-Up"),exec:function(e){e.getSelection().selectFileStart()},multiSelectAction:"forEach",readOnly:!0,scrollIntoView:"animate",aceCommandGroup:"fileJump"},{name:"gotostart",bindKey:o("Ctrl-Home","Command-Home|Command-Up"),exec:function(e){e.navigateFileStart()},multiSelectAction:"forEach",readOnly:!0,scrollIntoView:"animate",aceCommandGroup:"fileJump"},{name:"selectup",bindKey:o("Shift-Up","Shift-Up|Ctrl-Shift-P"),exec:function(e){e.getSelection().selectUp()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"golineup",bindKey:o("Up","Up|Ctrl-P"),exec:function(e,t){e.navigateUp(t.times)},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selecttoend",bindKey:o("Ctrl-Shift-End","Command-Shift-End|Command-Shift-Down"),exec:function(e){e.getSelection().selectFileEnd()},multiSelectAction:"forEach",readOnly:!0,scrollIntoView:"animate",aceCommandGroup:"fileJump"},{name:"gotoend",bindKey:o("Ctrl-End","Command-End|Command-Down"),exec:function(e){e.navigateFileEnd()},multiSelectAction:"forEach",readOnly:!0,scrollIntoView:"animate",aceCommandGroup:"fileJump"},{name:"selectdown",bindKey:o("Shift-Down","Shift-Down|Ctrl-Shift-N"),exec:function(e){e.getSelection().selectDown()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"golinedown",bindKey:o("Down","Down|Ctrl-N"),exec:function(e,t){e.navigateDown(t.times)},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selectwordleft",bindKey:o("Ctrl-Shift-Left","Option-Shift-Left"),exec:function(e){e.getSelection().selectWordLeft()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"gotowordleft",bindKey:o("Ctrl-Left","Option-Left"),exec:function(e){e.navigateWordLeft()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selecttolinestart",bindKey:o("Alt-Shift-Left","Command-Shift-Left|Ctrl-Shift-A"),exec:function(e){e.getSelection().selectLineStart()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"gotolinestart",bindKey:o("Alt-Left|Home","Command-Left|Home|Ctrl-A"),exec:function(e){e.navigateLineStart()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selectleft",bindKey:o("Shift-Left","Shift-Left|Ctrl-Shift-B"),exec:function(e){e.getSelection().selectLeft()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"gotoleft",bindKey:o("Left","Left|Ctrl-B"),exec:function(e,t){e.navigateLeft(t.times)},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selectwordright",bindKey:o("Ctrl-Shift-Right","Option-Shift-Right"),exec:function(e){e.getSelection().selectWordRight()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"gotowordright",bindKey:o("Ctrl-Right","Option-Right"),exec:function(e){e.navigateWordRight()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selecttolineend",bindKey:o("Alt-Shift-Right","Command-Shift-Right|Shift-End|Ctrl-Shift-E"),exec:function(e){e.getSelection().selectLineEnd()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"gotolineend",bindKey:o("Alt-Right|End","Command-Right|End|Ctrl-E"),exec:function(e){e.navigateLineEnd()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selectright",bindKey:o("Shift-Right","Shift-Right"),exec:function(e){e.getSelection().selectRight()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"gotoright",bindKey:o("Right","Right|Ctrl-F"),exec:function(e,t){e.navigateRight(t.times)},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selectpagedown",bindKey:"Shift-PageDown",exec:function(e){e.selectPageDown()},readOnly:!0},{name:"pagedown",bindKey:o(null,"Option-PageDown"),exec:function(e){e.scrollPageDown()},readOnly:!0},{name:"gotopagedown",bindKey:o("PageDown","PageDown|Ctrl-V"),exec:function(e){e.gotoPageDown()},readOnly:!0},{name:"selectpageup",bindKey:"Shift-PageUp",exec:function(e){e.selectPageUp()},readOnly:!0},{name:"pageup",bindKey:o(null,"Option-PageUp"),exec:function(e){e.scrollPageUp()},readOnly:!0},{name:"gotopageup",bindKey:"PageUp",exec:function(e){e.gotoPageUp()},readOnly:!0},{name:"scrollup",bindKey:o("Ctrl-Up",null),exec:function(e){e.renderer.scrollBy(0,-2*e.renderer.layerConfig.lineHeight)},readOnly:!0},{name:"scrolldown",bindKey:o("Ctrl-Down",null),exec:function(e){e.renderer.scrollBy(0,2*e.renderer.layerConfig.lineHeight)},readOnly:!0},{name:"selectlinestart",bindKey:"Shift-Home",exec:function(e){e.getSelection().selectLineStart()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selectlineend",bindKey:"Shift-End",exec:function(e){e.getSelection().selectLineEnd()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"togglerecording",bindKey:o("Ctrl-Alt-E","Command-Option-E"),exec:function(e){e.commands.toggleRecording(e)},readOnly:!0},{name:"replaymacro",bindKey:o("Ctrl-Shift-E","Command-Shift-E"),exec:function(e){e.commands.replay(e)},readOnly:!0},{name:"jumptomatching",bindKey:o("Ctrl-P","Ctrl-P"),exec:function(e){e.jumpToMatching()},multiSelectAction:"forEach",scrollIntoView:"animate",readOnly:!0},{name:"selecttomatching",bindKey:o("Ctrl-Shift-P","Ctrl-Shift-P"),exec:function(e){e.jumpToMatching(!0)},multiSelectAction:"forEach",scrollIntoView:"animate",readOnly:!0},{name:"expandToMatching",bindKey:o("Ctrl-Shift-M","Ctrl-Shift-M"),exec:function(e){e.jumpToMatching(!0,!0)},multiSelectAction:"forEach",scrollIntoView:"animate",readOnly:!0},{name:"passKeysToBrowser",bindKey:o(null,null),exec:function(){},passEvent:!0,readOnly:!0},{name:"copy",exec:function(e){},readOnly:!0},{name:"cut",exec:function(e){var t=e.getSelectionRange();e._emit("cut",t),e.selection.isEmpty()||(e.session.remove(t),e.clearSelection())},scrollIntoView:"cursor",multiSelectAction:"forEach"},{name:"paste",exec:function(e,t){e.$handlePaste(t)},scrollIntoView:"cursor"},{name:"removeline",bindKey:o("Ctrl-D","Command-D"),exec:function(e){e.removeLines()},scrollIntoView:"cursor",multiSelectAction:"forEachLine"},{name:"duplicateSelection",bindKey:o("Ctrl-Shift-D","Command-Shift-D"),exec:function(e){e.duplicateSelection()},scrollIntoView:"cursor",multiSelectAction:"forEach"},{name:"sortlines",bindKey:o("Ctrl-Alt-S","Command-Alt-S"),exec:function(e){e.sortLines()},scrollIntoView:"selection",multiSelectAction:"forEachLine"},{name:"togglecomment",bindKey:o("Ctrl-/","Command-/"),exec:function(e){e.toggleCommentLines()},multiSelectAction:"forEachLine",scrollIntoView:"selectionPart"},{name:"toggleBlockComment",bindKey:o("Ctrl-Shift-/","Command-Shift-/"),exec:function(e){e.toggleBlockComment()},multiSelectAction:"forEach",scrollIntoView:"selectionPart"},{name:"modifyNumberUp",bindKey:o("Ctrl-Shift-Up","Alt-Shift-Up"),exec:function(e){e.modifyNumber(1)},scrollIntoView:"cursor",multiSelectAction:"forEach"},{name:"modifyNumberDown",bindKey:o("Ctrl-Shift-Down","Alt-Shift-Down"),exec:function(e){e.modifyNumber(-1)},scrollIntoView:"cursor",multiSelectAction:"forEach"},{name:"replace",bindKey:o("Ctrl-H","Command-Option-F"),exec:function(e){i.loadModule("ace/ext/searchbox",function(t){t.Search(e,!0)})}},{name:"undo",bindKey:o("Ctrl-Z","Command-Z"),exec:function(e){e.undo()}},{name:"redo",bindKey:o("Ctrl-Shift-Z|Ctrl-Y","Command-Shift-Z|Command-Y"),exec:function(e){e.redo()}},{name:"copylinesup",bindKey:o("Alt-Shift-Up","Command-Option-Up"),exec:function(e){e.copyLinesUp()},scrollIntoView:"cursor"},{name:"movelinesup",bindKey:o("Alt-Up","Option-Up"),exec:function(e){e.moveLinesUp()},scrollIntoView:"cursor"},{name:"copylinesdown",bindKey:o("Alt-Shift-Down","Command-Option-Down"),exec:function(e){e.copyLinesDown()},scrollIntoView:"cursor"},{name:"movelinesdown",bindKey:o("Alt-Down","Option-Down"),exec:function(e){e.moveLinesDown()},scrollIntoView:"cursor"},{name:"del",bindKey:o("Delete","Delete|Ctrl-D|Shift-Delete"),exec:function(e){e.remove("right")},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"backspace",bindKey:o("Shift-Backspace|Backspace","Ctrl-Backspace|Shift-Backspace|Backspace|Ctrl-H"),exec:function(e){e.remove("left")},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"cut_or_delete",bindKey:o("Shift-Delete",null),exec:function(e){if(!e.selection.isEmpty())return!1;e.remove("left")},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"removetolinestart",bindKey:o("Alt-Backspace","Command-Backspace"),exec:function(e){e.removeToLineStart()},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"removetolineend",bindKey:o("Alt-Delete","Ctrl-K|Command-Delete"),exec:function(e){e.removeToLineEnd()},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"removetolinestarthard",bindKey:o("Ctrl-Shift-Backspace",null),exec:function(e){var t=e.selection.getRange();t.start.column=0,e.session.remove(t)},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"removetolineendhard",bindKey:o("Ctrl-Shift-Delete",null),exec:function(e){var t=e.selection.getRange();t.end.column=Number.MAX_VALUE,e.session.remove(t)},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"removewordleft",bindKey:o("Ctrl-Backspace","Alt-Backspace|Ctrl-Alt-Backspace"),exec:function(e){e.removeWordLeft()},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"removewordright",bindKey:o("Ctrl-Delete","Alt-Delete"),exec:function(e){e.removeWordRight()},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"outdent",bindKey:o("Shift-Tab","Shift-Tab"),exec:function(e){e.blockOutdent()},multiSelectAction:"forEach",scrollIntoView:"selectionPart"},{name:"indent",bindKey:o("Tab","Tab"),exec:function(e){e.indent()},multiSelectAction:"forEach",scrollIntoView:"selectionPart"},{name:"blockoutdent",bindKey:o("Ctrl-[","Ctrl-["),exec:function(e){e.blockOutdent()},multiSelectAction:"forEachLine",scrollIntoView:"selectionPart"},{name:"blockindent",bindKey:o("Ctrl-]","Ctrl-]"),exec:function(e){e.blockIndent()},multiSelectAction:"forEachLine",scrollIntoView:"selectionPart"},{name:"insertstring",exec:function(e,t){e.insert(t)},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"inserttext",exec:function(e,t){e.insert(r.stringRepeat(t.text||"",t.times||1))},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"splitline",bindKey:o(null,"Ctrl-O"),exec:function(e){e.splitLine()},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"transposeletters",bindKey:o("Alt-Shift-X","Ctrl-T"),exec:function(e){e.transposeLetters()},multiSelectAction:function(e){e.transposeSelections(1)},scrollIntoView:"cursor"},{name:"touppercase",bindKey:o("Ctrl-U","Ctrl-U"),exec:function(e){e.toUpperCase()},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"tolowercase",bindKey:o("Ctrl-Shift-U","Ctrl-Shift-U"),exec:function(e){e.toLowerCase()},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"expandtoline",bindKey:o("Ctrl-Shift-L","Command-Shift-L"),exec:function(e){var t=e.selection.getRange();t.start.column=t.end.column=0,t.end.row++,e.selection.setRange(t,!1)},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"joinlines",bindKey:o(null,null),exec:function(e){var t=e.selection.isBackwards(),n=t?e.selection.getSelectionLead():e.selection.getSelectionAnchor(),i=t?e.selection.getSelectionAnchor():e.selection.getSelectionLead(),o=e.session.doc.getLine(n.row).length,u=e.session.doc.getTextRange(e.selection.getRange()),a=u.replace(/\n\s*/," ").length,f=e.session.doc.getLine(n.row);for(var l=n.row+1;l<=i.row+1;l++){var c=r.stringTrimLeft(r.stringTrimRight(e.session.doc.getLine(l)));c.length!==0&&(c=" "+c),f+=c}i.row+1<e.session.doc.getLength()-1&&(f+=e.session.doc.getNewLineCharacter()),e.clearSelection(),e.session.doc.replace(new s(n.row,0,i.row+2,0),f),a>0?(e.selection.moveCursorTo(n.row,n.column),e.selection.selectTo(n.row,n.column+a)):(o=e.session.doc.getLine(n.row).length>o?o+1:o,e.selection.moveCursorTo(n.row,o))},multiSelectAction:"forEach",readOnly:!0},{name:"invertSelection",bindKey:o(null,null),exec:function(e){var t=e.session.doc.getLength()-1,n=e.session.doc.getLine(t).length,r=e.selection.rangeList.ranges,i=[];r.length<1&&(r=[e.selection.getRange()]);for(var o=0;o<r.length;o++)o==r.length-1&&(r[o].end.row!==t||r[o].end.column!==n)&&i.push(new s(r[o].end.row,r[o].end.column,t,n)),o===0?(r[o].start.row!==0||r[o].start.column!==0)&&i.push(new s(0,0,r[o].start.row,r[o].start.column)):i.push(new s(r[o-1].end.row,r[o-1].end.column,r[o].start.row,r[o].start.column));e.exitMultiSelectMode(),e.clearSelection();for(var o=0;o<i.length;o++)e.selection.addRange(i[o],!1)},readOnly:!0,scrollIntoView:"none"}]}),define("ace/editor",["require","exports","module","ace/lib/fixoldbrowsers","ace/lib/oop","ace/lib/dom","ace/lib/lang","ace/lib/useragent","ace/keyboard/textinput","ace/mouse/mouse_handler","ace/mouse/fold_handler","ace/keyboard/keybinding","ace/edit_session","ace/search","ace/range","ace/lib/event_emitter","ace/commands/command_manager","ace/commands/default_commands","ace/config","ace/token_iterator"],function(e,t,n){"use strict";e("./lib/fixoldbrowsers");var r=e("./lib/oop"),i=e("./lib/dom"),s=e("./lib/lang"),o=e("./lib/useragent"),u=e("./keyboard/textinput").TextInput,a=e("./mouse/mouse_handler").MouseHandler,f=e("./mouse/fold_handler").FoldHandler,l=e("./keyboard/keybinding").KeyBinding,c=e("./edit_session").EditSession,h=e("./search").Search,p=e("./range").Range,d=e("./lib/event_emitter").EventEmitter,v=e("./commands/command_manager").CommandManager,m=e("./commands/default_commands").commands,g=e("./config"),y=e("./token_iterator").TokenIterator,b=function(e,t){var n=e.getContainerElement();this.container=n,this.renderer=e,this.id="editor"+ ++b.$uid,this.commands=new v(o.isMac?"mac":"win",m),typeof document=="object"&&(this.textInput=new u(e.getTextAreaContainer(),this),this.renderer.textarea=this.textInput.getElement(),this.$mouseHandler=new a(this),new f(this)),this.keyBinding=new l(this),this.$blockScrolling=0,this.$search=(new h).set({wrap:!0}),this.$historyTracker=this.$historyTracker.bind(this),this.commands.on("exec",this.$historyTracker),this.$initOperationListeners(),this._$emitInputEvent=s.delayedCall(function(){this._signal("input",{}),this.session&&this.session.bgTokenizer&&this.session.bgTokenizer.scheduleStart()}.bind(this)),this.on("change",function(e,t){t._$emitInputEvent.schedule(31)}),this.setSession(t||new c("")),g.resetOptions(this),g._signal("editor",this)};b.$uid=0,function(){r.implement(this,d),this.$initOperationListeners=function(){function e(e){return e[e.length-1]}this.selections=[],this.commands.on("exec",this.startOperation.bind(this),!0),this.commands.on("afterExec",this.endOperation.bind(this),!0),this.$opResetTimer=s.delayedCall(this.endOperation.bind(this)),this.on("change",function(){this.curOp||this.startOperation(),this.curOp.docChanged=!0}.bind(this),!0),this.on("changeSelection",function(){this.curOp||this.startOperation(),this.curOp.selectionChanged=!0}.bind(this),!0)},this.curOp=null,this.prevOp={},this.startOperation=function(e){if(this.curOp){if(!e||this.curOp.command)return;this.prevOp=this.curOp}e||(this.previousCommand=null,e={}),this.$opResetTimer.schedule(),this.curOp={command:e.command||{},args:e.args,scrollTop:this.renderer.scrollTop},this.curOp.command.name&&this.curOp.command.scrollIntoView!==undefined&&this.$blockScrolling++},this.endOperation=function(e){if(this.curOp){if(e&&e.returnValue===!1)return this.curOp=null;this._signal("beforeEndOperation");var t=this.curOp.command;t.name&&this.$blockScrolling>0&&this.$blockScrolling--;var n=t&&t.scrollIntoView;if(n){switch(n){case"center-animate":n="animate";case"center":this.renderer.scrollCursorIntoView(null,.5);break;case"animate":case"cursor":this.renderer.scrollCursorIntoView();break;case"selectionPart":var r=this.selection.getRange(),i=this.renderer.layerConfig;(r.start.row>=i.lastRow||r.end.row<=i.firstRow)&&this.renderer.scrollSelectionIntoView(this.selection.anchor,this.selection.lead);break;default:}n=="animate"&&this.renderer.animateScrolling(this.curOp.scrollTop)}this.prevOp=this.curOp,this.curOp=null}},this.$mergeableCommands=["backspace","del","insertstring"],this.$historyTracker=function(e){if(!this.$mergeUndoDeltas)return;var t=this.prevOp,n=this.$mergeableCommands,r=t.command&&e.command.name==t.command.name;if(e.command.name=="insertstring"){var i=e.args;this.mergeNextCommand===undefined&&(this.mergeNextCommand=!0),r=r&&this.mergeNextCommand&&(!/\s/.test(i)||/\s/.test(t.args)),this.mergeNextCommand=!0}else r=r&&n.indexOf(e.command.name)!==-1;this.$mergeUndoDeltas!="always"&&Date.now()-this.sequenceStartTime>2e3&&(r=!1),r?this.session.mergeUndoDeltas=!0:n.indexOf(e.command.name)!==-1&&(this.sequenceStartTime=Date.now())},this.setKeyboardHandler=function(e,t){if(e&&typeof e=="string"){this.$keybindingId=e;var n=this;g.loadModule(["keybinding",e],function(r){n.$keybindingId==e&&n.keyBinding.setKeyboardHandler(r&&r.handler),t&&t()})}else this.$keybindingId=null,this.keyBinding.setKeyboardHandler(e),t&&t()},this.getKeyboardHandler=function(){return this.keyBinding.getKeyboardHandler()},this.setSession=function(e){if(this.session==e)return;this.curOp&&this.endOperation(),this.curOp={};var t=this.session;if(t){this.session.off("change",this.$onDocumentChange),this.session.off("changeMode",this.$onChangeMode),this.session.off("tokenizerUpdate",this.$onTokenizerUpdate),this.session.off("changeTabSize",this.$onChangeTabSize),this.session.off("changeWrapLimit",this.$onChangeWrapLimit),this.session.off("changeWrapMode",this.$onChangeWrapMode),this.session.off("changeFold",this.$onChangeFold),this.session.off("changeFrontMarker",this.$onChangeFrontMarker),this.session.off("changeBackMarker",this.$onChangeBackMarker),this.session.off("changeBreakpoint",this.$onChangeBreakpoint),this.session.off("changeAnnotation",this.$onChangeAnnotation),this.session.off("changeOverwrite",this.$onCursorChange),this.session.off("changeScrollTop",this.$onScrollTopChange),this.session.off("changeScrollLeft",this.$onScrollLeftChange);var n=this.session.getSelection();n.off("changeCursor",this.$onCursorChange),n.off("changeSelection",this.$onSelectionChange)}this.session=e,e?(this.$onDocumentChange=this.onDocumentChange.bind(this),e.on("change",this.$onDocumentChange),this.renderer.setSession(e),this.$onChangeMode=this.onChangeMode.bind(this),e.on("changeMode",this.$onChangeMode),this.$onTokenizerUpdate=this.onTokenizerUpdate.bind(this),e.on("tokenizerUpdate",this.$onTokenizerUpdate),this.$onChangeTabSize=this.renderer.onChangeTabSize.bind(this.renderer),e.on("changeTabSize",this.$onChangeTabSize),this.$onChangeWrapLimit=this.onChangeWrapLimit.bind(this),e.on("changeWrapLimit",this.$onChangeWrapLimit),this.$onChangeWrapMode=this.onChangeWrapMode.bind(this),e.on("changeWrapMode",this.$onChangeWrapMode),this.$onChangeFold=this.onChangeFold.bind(this),e.on("changeFold",this.$onChangeFold),this.$onChangeFrontMarker=this.onChangeFrontMarker.bind(this),this.session.on("changeFrontMarker",this.$onChangeFrontMarker),this.$onChangeBackMarker=this.onChangeBackMarker.bind(this),this.session.on("changeBackMarker",this.$onChangeBackMarker),this.$onChangeBreakpoint=this.onChangeBreakpoint.bind(this),this.session.on("changeBreakpoint",this.$onChangeBreakpoint),this.$onChangeAnnotation=this.onChangeAnnotation.bind(this),this.session.on("changeAnnotation",this.$onChangeAnnotation),this.$onCursorChange=this.onCursorChange.bind(this),this.session.on("changeOverwrite",this.$onCursorChange),this.$onScrollTopChange=this.onScrollTopChange.bind(this),this.session.on("changeScrollTop",this.$onScrollTopChange),this.$onScrollLeftChange=this.onScrollLeftChange.bind(this),this.session.on("changeScrollLeft",this.$onScrollLeftChange),this.selection=e.getSelection(),this.selection.on("changeCursor",this.$onCursorChange),this.$onSelectionChange=this.onSelectionChange.bind(this),this.selection.on("changeSelection",this.$onSelectionChange),this.onChangeMode(),this.$blockScrolling+=1,this.onCursorChange(),this.$blockScrolling-=1,this.onScrollTopChange(),this.onScrollLeftChange(),this.onSelectionChange(),this.onChangeFrontMarker(),this.onChangeBackMarker(),this.onChangeBreakpoint(),this.onChangeAnnotation(),this.session.getUseWrapMode()&&this.renderer.adjustWrapLimit(),this.renderer.updateFull()):(this.selection=null,this.renderer.setSession(e)),this._signal("changeSession",{session:e,oldSession:t}),this.curOp=null,t&&t._signal("changeEditor",{oldEditor:this}),e&&e._signal("changeEditor",{editor:this}),e&&e.bgTokenizer&&e.bgTokenizer.scheduleStart()},this.getSession=function(){return this.session},this.setValue=function(e,t){return this.session.doc.setValue(e),t?t==1?this.navigateFileEnd():t==-1&&this.navigateFileStart():this.selectAll(),e},this.getValue=function(){return this.session.getValue()},this.getSelection=function(){return this.selection},this.resize=function(e){this.renderer.onResize(e)},this.setTheme=function(e,t){this.renderer.setTheme(e,t)},this.getTheme=function(){return this.renderer.getTheme()},this.setStyle=function(e){this.renderer.setStyle(e)},this.unsetStyle=function(e){this.renderer.unsetStyle(e)},this.getFontSize=function(){return this.getOption("fontSize")||i.computedStyle(this.container,"fontSize")},this.setFontSize=function(e){this.setOption("fontSize",e)},this.$highlightBrackets=function(){this.session.$bracketHighlight&&(this.session.removeMarker(this.session.$bracketHighlight),this.session.$bracketHighlight=null);if(this.$highlightPending)return;var e=this;this.$highlightPending=!0,setTimeout(function(){e.$highlightPending=!1;var t=e.session;if(!t||!t.bgTokenizer)return;var n=t.findMatchingBracket(e.getCursorPosition());if(n)var r=new p(n.row,n.column,n.row,n.column+1);else if(t.$mode.getMatching)var r=t.$mode.getMatching(e.session);r&&(t.$bracketHighlight=t.addMarker(r,"ace_bracket","text"))},50)},this.$highlightTags=function(){if(this.$highlightTagPending)return;var e=this;this.$highlightTagPending=!0,setTimeout(function(){e.$highlightTagPending=!1;var t=e.session;if(!t||!t.bgTokenizer)return;var n=e.getCursorPosition(),r=new y(e.session,n.row,n.column),i=r.getCurrentToken();if(!i||!/\b(?:tag-open|tag-name)/.test(i.type)){t.removeMarker(t.$tagHighlight),t.$tagHighlight=null;return}if(i.type.indexOf("tag-open")!=-1){i=r.stepForward();if(!i)return}var s=i.value,o=0,u=r.stepBackward();if(u.value=="<"){do u=i,i=r.stepForward(),i&&i.value===s&&i.type.indexOf("tag-name")!==-1&&(u.value==="<"?o++:u.value==="</"&&o--);while(i&&o>=0)}else{do i=u,u=r.stepBackward(),i&&i.value===s&&i.type.indexOf("tag-name")!==-1&&(u.value==="<"?o++:u.value==="</"&&o--);while(u&&o<=0);r.stepForward()}if(!i){t.removeMarker(t.$tagHighlight),t.$tagHighlight=null;return}var a=r.getCurrentTokenRow(),f=r.getCurrentTokenColumn(),l=new p(a,f,a,f+i.value.length),c=t.$backMarkers[t.$tagHighlight];t.$tagHighlight&&c!=undefined&&l.compareRange(c.range)!==0&&(t.removeMarker(t.$tagHighlight),t.$tagHighlight=null),l&&!t.$tagHighlight&&(t.$tagHighlight=t.addMarker(l,"ace_bracket","text"))},50)},this.focus=function(){var e=this;setTimeout(function(){e.textInput.focus()}),this.textInput.focus()},this.isFocused=function(){return this.textInput.isFocused()},this.blur=function(){this.textInput.blur()},this.onFocus=function(e){if(this.$isFocused)return;this.$isFocused=!0,this.renderer.showCursor(),this.renderer.visualizeFocus(),this._emit("focus",e)},this.onBlur=function(e){if(!this.$isFocused)return;this.$isFocused=!1,this.renderer.hideCursor(),this.renderer.visualizeBlur(),this._emit("blur",e)},this.$cursorChange=function(){this.renderer.updateCursor()},this.onDocumentChange=function(e){var t=this.session.$useWrapMode,n=e.start.row==e.end.row?e.end.row:Infinity;this.renderer.updateLines(e.start.row,n,t),this._signal("change",e),this.$cursorChange(),this.$updateHighlightActiveLine()},this.onTokenizerUpdate=function(e){var t=e.data;this.renderer.updateLines(t.first,t.last)},this.onScrollTopChange=function(){this.renderer.scrollToY(this.session.getScrollTop())},this.onScrollLeftChange=function(){this.renderer.scrollToX(this.session.getScrollLeft())},this.onCursorChange=function(){this.$cursorChange(),this.$blockScrolling||(g.warn("Automatically scrolling cursor into view after selection change","this will be disabled in the next version","set editor.$blockScrolling = Infinity to disable this message"),this.renderer.scrollCursorIntoView()),this.$highlightBrackets(),this.$highlightTags(),this.$updateHighlightActiveLine(),this._signal("changeSelection")},this.$updateHighlightActiveLine=function(){var e=this.getSession(),t;if(this.$highlightActiveLine){if(this.$selectionStyle!="line"||!this.selection.isMultiLine())t=this.getCursorPosition();this.renderer.$maxLines&&this.session.getLength()===1&&!(this.renderer.$minLines>1)&&(t=!1)}if(e.$highlightLineMarker&&!t)e.removeMarker(e.$highlightLineMarker.id),e.$highlightLineMarker=null;else if(!e.$highlightLineMarker&&t){var n=new p(t.row,t.column,t.row,Infinity);n.id=e.addMarker(n,"ace_active-line","screenLine"),e.$highlightLineMarker=n}else t&&(e.$highlightLineMarker.start.row=t.row,e.$highlightLineMarker.end.row=t.row,e.$highlightLineMarker.start.column=t.column,e._signal("changeBackMarker"))},this.onSelectionChange=function(e){var t=this.session;t.$selectionMarker&&t.removeMarker(t.$selectionMarker),t.$selectionMarker=null;if(!this.selection.isEmpty()){var n=this.selection.getRange(),r=this.getSelectionStyle();t.$selectionMarker=t.addMarker(n,"ace_selection",r)}else this.$updateHighlightActiveLine();var i=this.$highlightSelectedWord&&this.$getSelectionHighLightRegexp();this.session.highlight(i),this._signal("changeSelection")},this.$getSelectionHighLightRegexp=function(){var e=this.session,t=this.getSelectionRange();if(t.isEmpty()||t.isMultiLine())return;var n=t.start.column-1,r=t.end.column+1,i=e.getLine(t.start.row),s=i.length,o=i.substring(Math.max(n,0),Math.min(r,s));if(n>=0&&/^[\w\d]/.test(o)||r<=s&&/[\w\d]$/.test(o))return;o=i.substring(t.start.column,t.end.column);if(!/^[\w\d]+$/.test(o))return;var u=this.$search.$assembleRegExp({wholeWord:!0,caseSensitive:!0,needle:o});return u},this.onChangeFrontMarker=function(){this.renderer.updateFrontMarkers()},this.onChangeBackMarker=function(){this.renderer.updateBackMarkers()},this.onChangeBreakpoint=function(){this.renderer.updateBreakpoints()},this.onChangeAnnotation=function(){this.renderer.setAnnotations(this.session.getAnnotations())},this.onChangeMode=function(e){this.renderer.updateText(),this._emit("changeMode",e)},this.onChangeWrapLimit=function(){this.renderer.updateFull()},this.onChangeWrapMode=function(){this.renderer.onResize(!0)},this.onChangeFold=function(){this.$updateHighlightActiveLine(),this.renderer.updateFull()},this.getSelectedText=function(){return this.session.getTextRange(this.getSelectionRange())},this.getCopyText=function(){var e=this.getSelectedText();return this._signal("copy",e),e},this.onCopy=function(){this.commands.exec("copy",this)},this.onCut=function(){this.commands.exec("cut",this)},this.onPaste=function(e,t){var n={text:e,event:t};this.commands.exec("paste",this,n)},this.$handlePaste=function(e){typeof e=="string"&&(e={text:e}),this._signal("paste",e);var t=e.text;if(!this.inMultiSelectMode||this.inVirtualSelectionMode)this.insert(t);else{var n=t.split(/\r\n|\r|\n/),r=this.selection.rangeList.ranges;if(n.length>r.length||n.length<2||!n[1])return this.commands.exec("insertstring",this,t);for(var i=r.length;i--;){var s=r[i];s.isEmpty()||this.session.remove(s),this.session.insert(s.start,n[i])}}},this.execCommand=function(e,t){return this.commands.exec(e,this,t)},this.insert=function(e,t){var n=this.session,r=n.getMode(),i=this.getCursorPosition();if(this.getBehavioursEnabled()&&!t){var s=r.transformAction(n.getState(i.row),"insertion",this,n,e);s&&(e!==s.text&&(this.session.mergeUndoDeltas=!1,this.$mergeNextCommand=!1),e=s.text)}e==" "&&(e=this.session.getTabString());if(!this.selection.isEmpty()){var o=this.getSelectionRange();i=this.session.remove(o),this.clearSelection()}else if(this.session.getOverwrite()&&e.indexOf("\n")==-1){var o=new p.fromPoints(i,i);o.end.column+=e.length,this.session.remove(o)}if(e=="\n"||e=="\r\n"){var u=n.getLine(i.row);if(i.column>u.search(/\S|$/)){var a=u.substr(i.column).search(/\S|$/);n.doc.removeInLine(i.row,i.column,i.column+a)}}this.clearSelection();var f=i.column,l=n.getState(i.row),u=n.getLine(i.row),c=r.checkOutdent(l,u,e),h=n.insert(i,e);s&&s.selection&&(s.selection.length==2?this.selection.setSelectionRange(new p(i.row,f+s.selection[0],i.row,f+s.selection[1])):this.selection.setSelectionRange(new p(i.row+s.selection[0],s.selection[1],i.row+s.selection[2],s.selection[3])));if(n.getDocument().isNewLine(e)){var d=r.getNextLineIndent(l,u.slice(0,i.column),n.getTabString());n.insert({row:i.row+1,column:0},d)}c&&r.autoOutdent(l,n,i.row)},this.onTextInput=function(e){this.keyBinding.onTextInput(e)},this.onCommandKey=function(e,t,n){this.keyBinding.onCommandKey(e,t,n)},this.setOverwrite=function(e){this.session.setOverwrite(e)},this.getOverwrite=function(){return this.session.getOverwrite()},this.toggleOverwrite=function(){this.session.toggleOverwrite()},this.setScrollSpeed=function(e){this.setOption("scrollSpeed",e)},this.getScrollSpeed=function(){return this.getOption("scrollSpeed")},this.setDragDelay=function(e){this.setOption("dragDelay",e)},this.getDragDelay=function(){return this.getOption("dragDelay")},this.setSelectionStyle=function(e){this.setOption("selectionStyle",e)},this.getSelectionStyle=function(){return this.getOption("selectionStyle")},this.setHighlightActiveLine=function(e){this.setOption("highlightActiveLine",e)},this.getHighlightActiveLine=function(){return this.getOption("highlightActiveLine")},this.setHighlightGutterLine=function(e){this.setOption("highlightGutterLine",e)},this.getHighlightGutterLine=function(){return this.getOption("highlightGutterLine")},this.setHighlightSelectedWord=function(e){this.setOption("highlightSelectedWord",e)},this.getHighlightSelectedWord=function(){return this.$highlightSelectedWord},this.setAnimatedScroll=function(e){this.renderer.setAnimatedScroll(e)},this.getAnimatedScroll=function(){return this.renderer.getAnimatedScroll()},this.setShowInvisibles=function(e){this.renderer.setShowInvisibles(e)},this.getShowInvisibles=function(){return this.renderer.getShowInvisibles()},this.setDisplayIndentGuides=function(e){this.renderer.setDisplayIndentGuides(e)},this.getDisplayIndentGuides=function(){return this.renderer.getDisplayIndentGuides()},this.setShowPrintMargin=function(e){this.renderer.setShowPrintMargin(e)},this.getShowPrintMargin=function(){return this.renderer.getShowPrintMargin()},this.setPrintMarginColumn=function(e){this.renderer.setPrintMarginColumn(e)},this.getPrintMarginColumn=function(){return this.renderer.getPrintMarginColumn()},this.setReadOnly=function(e){this.setOption("readOnly",e)},this.getReadOnly=function(){return this.getOption("readOnly")},this.setBehavioursEnabled=function(e){this.setOption("behavioursEnabled",e)},this.getBehavioursEnabled=function(){return this.getOption("behavioursEnabled")},this.setWrapBehavioursEnabled=function(e){this.setOption("wrapBehavioursEnabled",e)},this.getWrapBehavioursEnabled=function(){return this.getOption("wrapBehavioursEnabled")},this.setShowFoldWidgets=function(e){this.setOption("showFoldWidgets",e)},this.getShowFoldWidgets=function(){return this.getOption("showFoldWidgets")},this.setFadeFoldWidgets=function(e){this.setOption("fadeFoldWidgets",e)},this.getFadeFoldWidgets=function(){return this.getOption("fadeFoldWidgets")},this.remove=function(e){this.selection.isEmpty()&&(e=="left"?this.selection.selectLeft():this.selection.selectRight());var t=this.getSelectionRange();if(this.getBehavioursEnabled()){var n=this.session,r=n.getState(t.start.row),i=n.getMode().transformAction(r,"deletion",this,n,t);if(t.end.column===0){var s=n.getTextRange(t);if(s[s.length-1]=="\n"){var o=n.getLine(t.end.row);/^\s+$/.test(o)&&(t.end.column=o.length)}}i&&(t=i)}this.session.remove(t),this.clearSelection()},this.removeWordRight=function(){this.selection.isEmpty()&&this.selection.selectWordRight(),this.session.remove(this.getSelectionRange()),this.clearSelection()},this.removeWordLeft=function(){this.selection.isEmpty()&&this.selection.selectWordLeft(),this.session.remove(this.getSelectionRange()),this.clearSelection()},this.removeToLineStart=function(){this.selection.isEmpty()&&this.selection.selectLineStart(),this.session.remove(this.getSelectionRange()),this.clearSelection()},this.removeToLineEnd=function(){this.selection.isEmpty()&&this.selection.selectLineEnd();var e=this.getSelectionRange();e.start.column==e.end.column&&e.start.row==e.end.row&&(e.end.column=0,e.end.row++),this.session.remove(e),this.clearSelection()},this.splitLine=function(){this.selection.isEmpty()||(this.session.remove(this.getSelectionRange()),this.clearSelection());var e=this.getCursorPosition();this.insert("\n"),this.moveCursorToPosition(e)},this.transposeLetters=function(){if(!this.selection.isEmpty())return;var e=this.getCursorPosition(),t=e.column;if(t===0)return;var n=this.session.getLine(e.row),r,i;t<n.length?(r=n.charAt(t)+n.charAt(t-1),i=new p(e.row,t-1,e.row,t+1)):(r=n.charAt(t-1)+n.charAt(t-2),i=new p(e.row,t-2,e.row,t)),this.session.replace(i,r),this.session.selection.moveToPosition(i.end)},this.toLowerCase=function(){var e=this.getSelectionRange();this.selection.isEmpty()&&this.selection.selectWord();var t=this.getSelectionRange(),n=this.session.getTextRange(t);this.session.replace(t,n.toLowerCase()),this.selection.setSelectionRange(e)},this.toUpperCase=function(){var e=this.getSelectionRange();this.selection.isEmpty()&&this.selection.selectWord();var t=this.getSelectionRange(),n=this.session.getTextRange(t);this.session.replace(t,n.toUpperCase()),this.selection.setSelectionRange(e)},this.indent=function(){var e=this.session,t=this.getSelectionRange();if(t.start.row<t.end.row){var n=this.$getSelectedRows();e.indentRows(n.first,n.last," ");return}if(t.start.column<t.end.column){var r=e.getTextRange(t);if(!/^\s+$/.test(r)){var n=this.$getSelectedRows();e.indentRows(n.first,n.last," ");return}}var i=e.getLine(t.start.row),o=t.start,u=e.getTabSize(),a=e.documentToScreenColumn(o.row,o.column);if(this.session.getUseSoftTabs())var f=u-a%u,l=s.stringRepeat(" ",f);else{var f=a%u;while(i[t.start.column-1]==" "&&f)t.start.column--,f--;this.selection.setSelectionRange(t),l=" "}return this.insert(l)},this.blockIndent=function(){var e=this.$getSelectedRows();this.session.indentRows(e.first,e.last," ")},this.blockOutdent=function(){var e=this.session.getSelection();this.session.outdentRows(e.getRange())},this.sortLines=function(){var e=this.$getSelectedRows(),t=this.session,n=[];for(var r=e.first;r<=e.last;r++)n.push(t.getLine(r));n.sort(function(e,t){return e.toLowerCase()<t.toLowerCase()?-1:e.toLowerCase()>t.toLowerCase()?1:0});var i=new p(0,0,0,0);for(var r=e.first;r<=e.last;r++){var s=t.getLine(r);i.start.row=r,i.end.row=r,i.end.column=s.length,t.replace(i,n[r-e.first])}},this.toggleCommentLines=function(){var e=this.session.getState(this.getCursorPosition().row),t=this.$getSelectedRows();this.session.getMode().toggleCommentLines(e,this.session,t.first,t.last)},this.toggleBlockComment=function(){var e=this.getCursorPosition(),t=this.session.getState(e.row),n=this.getSelectionRange();this.session.getMode().toggleBlockComment(t,this.session,n,e)},this.getNumberAt=function(e,t){var n=/[\-]?[0-9]+(?:\.[0-9]+)?/g;n.lastIndex=0;var r=this.session.getLine(e);while(n.lastIndex<t){var i=n.exec(r);if(i.index<=t&&i.index+i[0].length>=t){var s={value:i[0],start:i.index,end:i.index+i[0].length};return s}}return null},this.modifyNumber=function(e){var t=this.selection.getCursor().row,n=this.selection.getCursor().column,r=new p(t,n-1,t,n),i=this.session.getTextRange(r);if(!isNaN(parseFloat(i))&&isFinite(i)){var s=this.getNumberAt(t,n);if(s){var o=s.value.indexOf(".")>=0?s.start+s.value.indexOf(".")+1:s.end,u=s.start+s.value.length-o,a=parseFloat(s.value);a*=Math.pow(10,u),o!==s.end&&n<o?e*=Math.pow(10,s.end-n-1):e*=Math.pow(10,s.end-n),a+=e,a/=Math.pow(10,u);var f=a.toFixed(u),l=new p(t,s.start,t,s.end);this.session.replace(l,f),this.moveCursorTo(t,Math.max(s.start+1,n+f.length-s.value.length))}}},this.removeLines=function(){var e=this.$getSelectedRows();this.session.removeFullLines(e.first,e.last),this.clearSelection()},this.duplicateSelection=function(){var e=this.selection,t=this.session,n=e.getRange(),r=e.isBackwards();if(n.isEmpty()){var i=n.start.row;t.duplicateLines(i,i)}else{var s=r?n.start:n.end,o=t.insert(s,t.getTextRange(n),!1);n.start=s,n.end=o,e.setSelectionRange(n,r)}},this.moveLinesDown=function(){this.$moveLines(1,!1)},this.moveLinesUp=function(){this.$moveLines(-1,!1)},this.moveText=function(e,t,n){return this.session.moveText(e,t,n)},this.copyLinesUp=function(){this.$moveLines(-1,!0)},this.copyLinesDown=function(){this.$moveLines(1,!0)},this.$moveLines=function(e,t){var n,r,i=this.selection;if(!i.inMultiSelectMode||this.inVirtualSelectionMode){var s=i.toOrientedRange();n=this.$getSelectedRows(s),r=this.session.$moveLines(n.first,n.last,t?0:e),t&&e==-1&&(r=0),s.moveBy(r,0),i.fromOrientedRange(s)}else{var o=i.rangeList.ranges;i.rangeList.detach(this.session),this.inVirtualSelectionMode=!0;var u=0,a=0,f=o.length;for(var l=0;l<f;l++){var c=l;o[l].moveBy(u,0),n=this.$getSelectedRows(o[l]);var h=n.first,p=n.last;while(++l<f){a&&o[l].moveBy(a,0);var d=this.$getSelectedRows(o[l]);if(t&&d.first!=p)break;if(!t&&d.first>p+1)break;p=d.last}l--,u=this.session.$moveLines(h,p,t?0:e),t&&e==-1&&(c=l+1);while(c<=l)o[c].moveBy(u,0),c++;t||(u=0),a+=u}i.fromOrientedRange(i.ranges[0]),i.rangeList.attach(this.session),this.inVirtualSelectionMode=!1}},this.$getSelectedRows=function(e){return e=(e||this.getSelectionRange()).collapseRows(),{first:this.session.getRowFoldStart(e.start.row),last:this.session.getRowFoldEnd(e.end.row)}},this.onCompositionStart=function(e){this.renderer.showComposition(this.getCursorPosition())},this.onCompositionUpdate=function(e){this.renderer.setCompositionText(e)},this.onCompositionEnd=function(){this.renderer.hideComposition()},this.getFirstVisibleRow=function(){return this.renderer.getFirstVisibleRow()},this.getLastVisibleRow=function(){return this.renderer.getLastVisibleRow()},this.isRowVisible=function(e){return e>=this.getFirstVisibleRow()&&e<=this.getLastVisibleRow()},this.isRowFullyVisible=function(e){return e>=this.renderer.getFirstFullyVisibleRow()&&e<=this.renderer.getLastFullyVisibleRow()},this.$getVisibleRowCount=function(){return this.renderer.getScrollBottomRow()-this.renderer.getScrollTopRow()+1},this.$moveByPage=function(e,t){var n=this.renderer,r=this.renderer.layerConfig,i=e*Math.floor(r.height/r.lineHeight);this.$blockScrolling++,t===!0?this.selection.$moveSelection(function(){this.moveCursorBy(i,0)}):t===!1&&(this.selection.moveCursorBy(i,0),this.selection.clearSelection()),this.$blockScrolling--;var s=n.scrollTop;n.scrollBy(0,i*r.lineHeight),t!=null&&n.scrollCursorIntoView(null,.5),n.animateScrolling(s)},this.selectPageDown=function(){this.$moveByPage(1,!0)},this.selectPageUp=function(){this.$moveByPage(-1,!0)},this.gotoPageDown=function(){this.$moveByPage(1,!1)},this.gotoPageUp=function(){this.$moveByPage(-1,!1)},this.scrollPageDown=function(){this.$moveByPage(1)},this.scrollPageUp=function(){this.$moveByPage(-1)},this.scrollToRow=function(e){this.renderer.scrollToRow(e)},this.scrollToLine=function(e,t,n,r){this.renderer.scrollToLine(e,t,n,r)},this.centerSelection=function(){var e=this.getSelectionRange(),t={row:Math.floor(e.start.row+(e.end.row-e.start.row)/2),column:Math.floor(e.start.column+(e.end.column-e.start.column)/2)};this.renderer.alignCursor(t,.5)},this.getCursorPosition=function(){return this.selection.getCursor()},this.getCursorPositionScreen=function(){return this.session.documentToScreenPosition(this.getCursorPosition())},this.getSelectionRange=function(){return this.selection.getRange()},this.selectAll=function(){this.$blockScrolling+=1,this.selection.selectAll(),this.$blockScrolling-=1},this.clearSelection=function(){this.selection.clearSelection()},this.moveCursorTo=function(e,t){this.selection.moveCursorTo(e,t)},this.moveCursorToPosition=function(e){this.selection.moveCursorToPosition(e)},this.jumpToMatching=function(e,t){var n=this.getCursorPosition(),r=new y(this.session,n.row,n.column),i=r.getCurrentToken(),s=i||r.stepForward();if(!s)return;var o,u=!1,a={},f=n.column-s.start,l,c={")":"(","(":"(","]":"[","[":"[","{":"{","}":"{"};do{if(s.value.match(/[{}()\[\]]/g))for(;f<s.value.length&&!u;f++){if(!c[s.value[f]])continue;l=c[s.value[f]]+"."+s.type.replace("rparen","lparen"),isNaN(a[l])&&(a[l]=0);switch(s.value[f]){case"(":case"[":case"{":a[l]++;break;case")":case"]":case"}":a[l]--,a[l]===-1&&(o="bracket",u=!0)}}else s&&s.type.indexOf("tag-name")!==-1&&(isNaN(a[s.value])&&(a[s.value]=0),i.value==="<"?a[s.value]++:i.value==="</"&&a[s.value]--,a[s.value]===-1&&(o="tag",u=!0));u||(i=s,s=r.stepForward(),f=0)}while(s&&!u);if(!o)return;var h,d;if(o==="bracket"){h=this.session.getBracketRange(n);if(!h){h=new p(r.getCurrentTokenRow(),r.getCurrentTokenColumn()+f-1,r.getCurrentTokenRow(),r.getCurrentTokenColumn()+f-1),d=h.start;if(t||d.row===n.row&&Math.abs(d.column-n.column)<2)h=this.session.getBracketRange(d)}}else if(o==="tag"){if(!s||s.type.indexOf("tag-name")===-1)return;var v=s.value;h=new p(r.getCurrentTokenRow(),r.getCurrentTokenColumn()-2,r.getCurrentTokenRow(),r.getCurrentTokenColumn()-2);if(h.compare(n.row,n.column)===0){u=!1;do s=i,i=r.stepBackward(),i&&(i.type.indexOf("tag-close")!==-1&&h.setEnd(r.getCurrentTokenRow(),r.getCurrentTokenColumn()+1),s.value===v&&s.type.indexOf("tag-name")!==-1&&(i.value==="<"?a[v]++:i.value==="</"&&a[v]--,a[v]===0&&(u=!0)));while(i&&!u)}s&&s.type.indexOf("tag-name")&&(d=h.start,d.row==n.row&&Math.abs(d.column-n.column)<2&&(d=h.end))}d=h&&h.cursor||d,d&&(e?h&&t?this.selection.setRange(h):h&&h.isEqual(this.getSelectionRange())?this.clearSelection():this.selection.selectTo(d.row,d.column):this.selection.moveTo(d.row,d.column))},this.gotoLine=function(e,t,n){this.selection.clearSelection(),this.session.unfold({row:e-1,column:t||0}),this.$blockScrolling+=1,this.exitMultiSelectMode&&this.exitMultiSelectMode(),this.moveCursorTo(e-1,t||0),this.$blockScrolling-=1,this.isRowFullyVisible(e-1)||this.scrollToLine(e-1,!0,n)},this.navigateTo=function(e,t){this.selection.moveTo(e,t)},this.navigateUp=function(e){if(this.selection.isMultiLine()&&!this.selection.isBackwards()){var t=this.selection.anchor.getPosition();return this.moveCursorToPosition(t)}this.selection.clearSelection(),this.selection.moveCursorBy(-e||-1,0)},this.navigateDown=function(e){if(this.selection.isMultiLine()&&this.selection.isBackwards()){var t=this.selection.anchor.getPosition();return this.moveCursorToPosition(t)}this.selection.clearSelection(),this.selection.moveCursorBy(e||1,0)},this.navigateLeft=function(e){if(!this.selection.isEmpty()){var t=this.getSelectionRange().start;this.moveCursorToPosition(t)}else{e=e||1;while(e--)this.selection.moveCursorLeft()}this.clearSelection()},this.navigateRight=function(e){if(!this.selection.isEmpty()){var t=this.getSelectionRange().end;this.moveCursorToPosition(t)}else{e=e||1;while(e--)this.selection.moveCursorRight()}this.clearSelection()},this.navigateLineStart=function(){this.selection.moveCursorLineStart(),this.clearSelection()},this.navigateLineEnd=function(){this.selection.moveCursorLineEnd(),this.clearSelection()},this.navigateFileEnd=function(){this.selection.moveCursorFileEnd(),this.clearSelection()},this.navigateFileStart=function(){this.selection.moveCursorFileStart(),this.clearSelection()},this.navigateWordRight=function(){this.selection.moveCursorWordRight(),this.clearSelection()},this.navigateWordLeft=function(){this.selection.moveCursorWordLeft(),this.clearSelection()},this.replace=function(e,t){t&&this.$search.set(t);var n=this.$search.find(this.session),r=0;return n?(this.$tryReplace(n,e)&&(r=1),n!==null&&(this.selection.setSelectionRange(n),this.renderer.scrollSelectionIntoView(n.start,n.end)),r):r},this.replaceAll=function(e,t){t&&this.$search.set(t);var n=this.$search.findAll(this.session),r=0;if(!n.length)return r;this.$blockScrolling+=1;var i=this.getSelectionRange();this.selection.moveTo(0,0);for(var s=n.length-1;s>=0;--s)this.$tryReplace(n[s],e)&&r++;return this.selection.setSelectionRange(i),this.$blockScrolling-=1,r},this.$tryReplace=function(e,t){var n=this.session.getTextRange(e);return t=this.$search.replace(n,t),t!==null?(e.end=this.session.replace(e,t),e):null},this.getLastSearchOptions=function(){return this.$search.getOptions()},this.find=function(e,t,n){t||(t={}),typeof e=="string"||e instanceof RegExp?t.needle=e:typeof e=="object"&&r.mixin(t,e);var i=this.selection.getRange();t.needle==null&&(e=this.session.getTextRange(i)||this.$search.$options.needle,e||(i=this.session.getWordRange(i.start.row,i.start.column),e=this.session.getTextRange(i)),this.$search.set({needle:e})),this.$search.set(t),t.start||this.$search.set({start:i});var s=this.$search.find(this.session);if(t.preventScroll)return s;if(s)return this.revealRange(s,n),s;t.backwards?i.start=i.end:i.end=i.start,this.selection.setRange(i)},this.findNext=function(e,t){this.find({skipCurrent:!0,backwards:!1},e,t)},this.findPrevious=function(e,t){this.find(e,{skipCurrent:!0,backwards:!0},t)},this.revealRange=function(e,t){this.$blockScrolling+=1,this.session.unfold(e),this.selection.setSelectionRange(e),this.$blockScrolling-=1;var n=this.renderer.scrollTop;this.renderer.scrollSelectionIntoView(e.start,e.end,.5),t!==!1&&this.renderer.animateScrolling(n)},this.undo=function(){this.$blockScrolling++,this.session.getUndoManager().undo(),this.$blockScrolling--,this.renderer.scrollCursorIntoView(null,.5)},this.redo=function(){this.$blockScrolling++,this.session.getUndoManager().redo(),this.$blockScrolling--,this.renderer.scrollCursorIntoView(null,.5)},this.destroy=function(){this.renderer.destroy(),this._signal("destroy",this),this.session&&this.session.destroy()},this.setAutoScrollEditorIntoView=function(e){if(!e)return;var t,n=this,r=!1;this.$scrollAnchor||(this.$scrollAnchor=document.createElement("div"));var i=this.$scrollAnchor;i.style.cssText="position:absolute",this.container.insertBefore(i,this.container.firstChild);var s=this.on("changeSelection",function(){r=!0}),o=this.renderer.on("beforeRender",function(){r&&(t=n.renderer.container.getBoundingClientRect())}),u=this.renderer.on("afterRender",function(){if(r&&t&&(n.isFocused()||n.searchBox&&n.searchBox.isFocused())){var e=n.renderer,s=e.$cursorLayer.$pixelPos,o=e.layerConfig,u=s.top-o.offset;s.top>=0&&u+t.top<0?r=!0:s.top<o.height&&s.top+t.top+o.lineHeight>window.innerHeight?r=!1:r=null,r!=null&&(i.style.top=u+"px",i.style.left=s.left+"px",i.style.height=o.lineHeight+"px",i.scrollIntoView(r)),r=t=null}});this.setAutoScrollEditorIntoView=function(e){if(e)return;delete this.setAutoScrollEditorIntoView,this.off("changeSelection",s),this.renderer.off("afterRender",u),this.renderer.off("beforeRender",o)}},this.$resetCursorStyle=function(){var e=this.$cursorStyle||"ace",t=this.renderer.$cursorLayer;if(!t)return;t.setSmoothBlinking(/smooth/.test(e)),t.isBlinking=!this.$readOnly&&e!="wide",i.setCssClass(t.element,"ace_slim-cursors",/slim/.test(e))}}.call(b.prototype),g.defineOptions(b.prototype,"editor",{selectionStyle:{set:function(e){this.onSelectionChange(),this._signal("changeSelectionStyle",{data:e})},initialValue:"line"},highlightActiveLine:{set:function(){this.$updateHighlightActiveLine()},initialValue:!0},highlightSelectedWord:{set:function(e){this.$onSelectionChange()},initialValue:!0},readOnly:{set:function(e){this.$resetCursorStyle()},initialValue:!1},cursorStyle:{set:function(e){this.$resetCursorStyle()},values:["ace","slim","smooth","wide"],initialValue:"ace"},mergeUndoDeltas:{values:[!1,!0,"always"],initialValue:!0},behavioursEnabled:{initialValue:!0},wrapBehavioursEnabled:{initialValue:!0},autoScrollEditorIntoView:{set:function(e){this.setAutoScrollEditorIntoView(e)}},keyboardHandler:{set:function(e){this.setKeyboardHandler(e)},get:function(){return this.keybindingId},handlesSet:!0},hScrollBarAlwaysVisible:"renderer",vScrollBarAlwaysVisible:"renderer",highlightGutterLine:"renderer",animatedScroll:"renderer",showInvisibles:"renderer",showPrintMargin:"renderer",printMarginColumn:"renderer",printMargin:"renderer",fadeFoldWidgets:"renderer",showFoldWidgets:"renderer",showLineNumbers:"renderer",showGutter:"renderer",displayIndentGuides:"renderer",fontSize:"renderer",fontFamily:"renderer",maxLines:"renderer",minLines:"renderer",scrollPastEnd:"renderer",fixedWidthGutter:"renderer",theme:"renderer",scrollSpeed:"$mouseHandler",dragDelay:"$mouseHandler",dragEnabled:"$mouseHandler",focusTimout:"$mouseHandler",tooltipFollowsMouse:"$mouseHandler",firstLineNumber:"session",overwrite:"session",newLineMode:"session",useWorker:"session",useSoftTabs:"session",tabSize:"session",wrap:"session",indentedSoftWrap:"session",foldStyle:"session",mode:"session"}),t.Editor=b}),define("ace/undomanager",["require","exports","module"],function(e,t,n){"use strict";var r=function(){this.reset()};(function(){function e(e){return{action:e.action,start:e.start,end:e.end,lines:e.lines.length==1?null:e.lines,text:e.lines.length==1?e.lines[0]:null}}function t(e){return{action:e.action,start:e.start,end:e.end,lines:e.lines||[e.text]}}function n(e,t){var n=new Array(e.length);for(var r=0;r<e.length;r++){var i=e[r],s={group:i.group,deltas:new Array(i.length)};for(var o=0;o<i.deltas.length;o++){var u=i.deltas[o];s.deltas[o]=t(u)}n[r]=s}return n}this.execute=function(e){var t=e.args[0];this.$doc=e.args[1],e.merge&&this.hasUndo()&&(this.dirtyCounter--,t=this.$undoStack.pop().concat(t)),this.$undoStack.push(t),this.$redoStack=[],this.dirtyCounter<0&&(this.dirtyCounter=NaN),this.dirtyCounter++},this.undo=function(e){var t=this.$undoStack.pop(),n=null;return t&&(n=this.$doc.undoChanges(t,e),this.$redoStack.push(t),this.dirtyCounter--),n},this.redo=function(e){var t=this.$redoStack.pop(),n=null;return t&&(n=this.$doc.redoChanges(this.$deserializeDeltas(t),e),this.$undoStack.push(t),this.dirtyCounter++),n},this.reset=function(){this.$undoStack=[],this.$redoStack=[],this.dirtyCounter=0},this.hasUndo=function(){return this.$undoStack.length>0},this.hasRedo=function(){return this.$redoStack.length>0},this.markClean=function(){this.dirtyCounter=0},this.isClean=function(){return this.dirtyCounter===0},this.$serializeDeltas=function(t){return n(t,e)},this.$deserializeDeltas=function(e){return n(e,t)}}).call(r.prototype),t.UndoManager=r}),define("ace/layer/gutter",["require","exports","module","ace/lib/dom","ace/lib/oop","ace/lib/lang","ace/lib/event_emitter"],function(e,t,n){"use strict";var r=e("../lib/dom"),i=e("../lib/oop"),s=e("../lib/lang"),o=e("../lib/event_emitter").EventEmitter,u=function(e){this.element=r.createElement("div"),this.element.className="ace_layer ace_gutter-layer",e.appendChild(this.element),this.setShowFoldWidgets(this.$showFoldWidgets),this.gutterWidth=0,this.$annotations=[],this.$updateAnnotations=this.$updateAnnotations.bind(this),this.$cells=[]};(function(){i.implement(this,o),this.setSession=function(e){this.session&&this.session.removeEventListener("change",this.$updateAnnotations),this.session=e,e&&e.on("change",this.$updateAnnotations)},this.addGutterDecoration=function(e,t){window.console&&console.warn&&console.warn("deprecated use session.addGutterDecoration"),this.session.addGutterDecoration(e,t)},this.removeGutterDecoration=function(e,t){window.console&&console.warn&&console.warn("deprecated use session.removeGutterDecoration"),this.session.removeGutterDecoration(e,t)},this.setAnnotations=function(e){this.$annotations=[];for(var t=0;t<e.length;t++){var n=e[t],r=n.row,i=this.$annotations[r];i||(i=this.$annotations[r]={text:[]});var o=n.text;o=o?s.escapeHTML(o):n.html||"",i.text.indexOf(o)===-1&&i.text.push(o);var u=n.type;u=="error"?i.className=" ace_error":u=="warning"&&i.className!=" ace_error"?i.className=" ace_warning":u=="info"&&!i.className&&(i.className=" ace_info")}},this.$updateAnnotations=function(e){if(!this.$annotations.length)return;var t=e.start.row,n=e.end.row-t;if(n!==0)if(e.action=="remove")this.$annotations.splice(t,n+1,null);else{var r=new Array(n+1);r.unshift(t,1),this.$annotations.splice.apply(this.$annotations,r)}},this.update=function(e){var t=this.session,n=e.firstRow,i=Math.min(e.lastRow+e.gutterOffset,t.getLength()-1),s=t.getNextFoldLine(n),o=s?s.start.row:Infinity,u=this.$showFoldWidgets&&t.foldWidgets,a=t.$breakpoints,f=t.$decorations,l=t.$firstLineNumber,c=0,h=t.gutterRenderer||this.$renderer,p=null,d=-1,v=n;for(;;){v>o&&(v=s.end.row+1,s=t.getNextFoldLine(v,s),o=s?s.start.row:Infinity);if(v>i){while(this.$cells.length>d+1)p=this.$cells.pop(),this.element.removeChild(p.element);break}p=this.$cells[++d],p||(p={element:null,textNode:null,foldWidget:null},p.element=r.createElement("div"),p.textNode=document.createTextNode(""),p.element.appendChild(p.textNode),this.element.appendChild(p.element),this.$cells[d]=p);var m="ace_gutter-cell ";a[v]&&(m+=a[v]),f[v]&&(m+=f[v]),this.$annotations[v]&&(m+=this.$annotations[v].className),p.element.className!=m&&(p.element.className=m);var g=t.getRowLength(v)*e.lineHeight+"px";g!=p.element.style.height&&(p.element.style.height=g);if(u){var y=u[v];y==null&&(y=u[v]=t.getFoldWidget(v))}if(y){p.foldWidget||(p.foldWidget=r.createElement("span"),p.element.appendChild(p.foldWidget));var m="ace_fold-widget ace_"+y;y=="start"&&v==o&&v<s.end.row?m+=" ace_closed":m+=" ace_open",p.foldWidget.className!=m&&(p.foldWidget.className=m);var g=e.lineHeight+"px";p.foldWidget.style.height!=g&&(p.foldWidget.style.height=g)}else p.foldWidget&&(p.element.removeChild(p.foldWidget),p.foldWidget=null);var b=c=h?h.getText(t,v):v+l;b!==p.textNode.data&&(p.textNode.data=b),v++}this.element.style.height=e.minHeight+"px";if(this.$fixedWidth||t.$useWrapMode)c=t.getLength()+l;var w=h?h.getWidth(t,c,e):c.toString().length*e.characterWidth,E=this.$padding||this.$computePadding();w+=E.left+E.right,w!==this.gutterWidth&&!isNaN(w)&&(this.gutterWidth=w,this.element.style.width=Math.ceil(this.gutterWidth)+"px",this._emit("changeGutterWidth",w))},this.$fixedWidth=!1,this.$showLineNumbers=!0,this.$renderer="",this.setShowLineNumbers=function(e){this.$renderer=!e&&{getWidth:function(){return""},getText:function(){return""}}},this.getShowLineNumbers=function(){return this.$showLineNumbers},this.$showFoldWidgets=!0,this.setShowFoldWidgets=function(e){e?r.addCssClass(this.element,"ace_folding-enabled"):r.removeCssClass(this.element,"ace_folding-enabled"),this.$showFoldWidgets=e,this.$padding=null},this.getShowFoldWidgets=function(){return this.$showFoldWidgets},this.$computePadding=function(){if(!this.element.firstChild)return{left:0,right:0};var e=r.computedStyle(this.element.firstChild);return this.$padding={},this.$padding.left=parseInt(e.paddingLeft)+1||0,this.$padding.right=parseInt(e.paddingRight)||0,this.$padding},this.getRegion=function(e){var t=this.$padding||this.$computePadding(),n=this.element.getBoundingClientRect();if(e.x<t.left+n.left)return"markers";if(this.$showFoldWidgets&&e.x>n.right-t.right)return"foldWidgets"}}).call(u.prototype),t.Gutter=u}),define("ace/layer/marker",["require","exports","module","ace/range","ace/lib/dom"],function(e,t,n){"use strict";var r=e("../range").Range,i=e("../lib/dom"),s=function(e){this.element=i.createElement("div"),this.element.className="ace_layer ace_marker-layer",e.appendChild(this.element)};(function(){function e(e,t,n,r){return(e?1:0)|(t?2:0)|(n?4:0)|(r?8:0)}this.$padding=0,this.setPadding=function(e){this.$padding=e},this.setSession=function(e){this.session=e},this.setMarkers=function(e){this.markers=e},this.update=function(e){if(!e)return;this.config=e;var t=[];for(var n in this.markers){var r=this.markers[n];if(!r.range){r.update(t,this,this.session,e);continue}var i=r.range.clipRows(e.firstRow,e.lastRow);if(i.isEmpty())continue;i=i.toScreenRange(this.session);if(r.renderer){var s=this.$getTop(i.start.row,e),o=this.$padding+(this.session.$bidiHandler.isBidiRow(i.start.row)?this.session.$bidiHandler.getPosLeft(i.start.column):i.start.column*e.characterWidth);r.renderer(t,i,o,s,e)}else r.type=="fullLine"?this.drawFullLineMarker(t,i,r.clazz,e):r.type=="screenLine"?this.drawScreenLineMarker(t,i,r.clazz,e):i.isMultiLine()?r.type=="text"?this.drawTextMarker(t,i,r.clazz,e):this.drawMultiLineMarker(t,i,r.clazz,e):this.session.$bidiHandler.isBidiRow(i.start.row)?this.drawBidiSingleLineMarker(t,i,r.clazz+" ace_start"+" ace_br15",e):this.drawSingleLineMarker(t,i,r.clazz+" ace_start"+" ace_br15",e)}this.element.innerHTML=t.join("")},this.$getTop=function(e,t){return(e-t.firstRowScreen)*t.lineHeight},this.drawTextMarker=function(t,n,i,s,o){var u=this.session,a=n.start.row,f=n.end.row,l=a,c=0,h=0,p=u.getScreenLastRowColumn(l),d=null,v=new r(l,n.start.column,l,h);for(;l<=f;l++)v.start.row=v.end.row=l,v.start.column=l==a?n.start.column:u.getRowWrapIndent(l),v.end.column=p,c=h,h=p,p=l+1<f?u.getScreenLastRowColumn(l+1):l==f?0:n.end.column,d=i+(l==a?" ace_start":"")+" ace_br"+e(l==a||l==a+1&&n.start.column,c<h,h>p,l==f),this.session.$bidiHandler.isBidiRow(l)?this.drawBidiSingleLineMarker(t,v,d,s,l==f?0:1,o):this.drawSingleLineMarker(t,v,d,s,l==f?0:1,o)},this.drawMultiLineMarker=function(e,t,n,r,i){var s=this.$padding,o,u,a;i=i||"";if(this.session.$bidiHandler.isBidiRow(t.start.row)){var f=t.clone();f.end.row=f.start.row,f.end.column=this.session.getLine(f.start.row).length,this.drawBidiSingleLineMarker(e,f,n+" ace_br1 ace_start",r,null,i)}else o=r.lineHeight,u=this.$getTop(t.start.row,r),a=s+t.start.column*r.characterWidth,e.push("<div class='",n," ace_br1 ace_start' style='","height:",o,"px;","right:0;","top:",u,"px;","left:",a,"px;",i,"'></div>");if(this.session.$bidiHandler.isBidiRow(t.end.row)){var f=t.clone();f.start.row=f.end.row,f.start.column=0,this.drawBidiSingleLineMarker(e,f,n+" ace_br12",r,null,i)}else{var l=t.end.column*r.characterWidth;o=r.lineHeight,u=this.$getTop(t.end.row,r),e.push("<div class='",n," ace_br12' style='","height:",o,"px;","width:",l,"px;","top:",u,"px;","left:",s,"px;",i,"'></div>")}o=(t.end.row-t.start.row-1)*r.lineHeight;if(o<=0)return;u=this.$getTop(t.start.row+1,r);var c=(t.start.column?1:0)|(t.end.column?0:8);e.push("<div class='",n,c?" ace_br"+c:"","' style='","height:",o,"px;","right:0;","top:",u,"px;","left:",s,"px;",i,"'></div>")},this.drawSingleLineMarker=function(e,t,n,r,i,s){var o=r.lineHeight,u=(t.end.column+(i||0)-t.start.column)*r.characterWidth,a=this.$getTop(t.start.row,r),f=this.$padding+t.start.column*r.characterWidth;e.push("<div class='",n,"' style='","height:",o,"px;","width:",u,"px;","top:",a,"px;","left:",f,"px;",s||"","'></div>")},this.drawBidiSingleLineMarker=function(e,t,n,r,i,s){var o=r.lineHeight,u=this.$getTop(t.start.row,r),a=this.$padding,f=this.session.$bidiHandler.getSelections(t.start.column,t.end.column);f.forEach(function(t){e.push("<div class='",n,"' style='","height:",o,"px;","width:",t.width+(i||0),"px;","top:",u,"px;","left:",a+t.left,"px;",s||"","'></div>")})},this.drawFullLineMarker=function(e,t,n,r,i){var s=this.$getTop(t.start.row,r),o=r.lineHeight;t.start.row!=t.end.row&&(o+=this.$getTop(t.end.row,r)-s),e.push("<div class='",n,"' style='","height:",o,"px;","top:",s,"px;","left:0;right:0;",i||"","'></div>")},this.drawScreenLineMarker=function(e,t,n,r,i){var s=this.$getTop(t.start.row,r),o=r.lineHeight;e.push("<div class='",n,"' style='","height:",o,"px;","top:",s,"px;","left:0;right:0;",i||"","'></div>")}}).call(s.prototype),t.Marker=s}),define("ace/layer/text",["require","exports","module","ace/lib/oop","ace/lib/dom","ace/lib/lang","ace/lib/useragent","ace/lib/event_emitter"],function(e,t,n){"use strict";var r=e("../lib/oop"),i=e("../lib/dom"),s=e("../lib/lang"),o=e("../lib/useragent"),u=e("../lib/event_emitter").EventEmitter,a=function(e){this.element=i.createElement("div"),this.element.className="ace_layer ace_text-layer",e.appendChild(this.element),this.$updateEolChar=this.$updateEolChar.bind(this)};(function(){r.implement(this,u),this.EOF_CHAR="\u00b6",this.EOL_CHAR_LF="\u00ac",this.EOL_CHAR_CRLF="\u00a4",this.EOL_CHAR=this.EOL_CHAR_LF,this.TAB_CHAR="\u2014",this.SPACE_CHAR="\u00b7",this.$padding=0,this.$updateEolChar=function(){var e=this.session.doc.getNewLineCharacter()=="\n"?this.EOL_CHAR_LF:this.EOL_CHAR_CRLF;if(this.EOL_CHAR!=e)return this.EOL_CHAR=e,!0},this.setPadding=function(e){this.$padding=e,this.element.style.padding="0 "+e+"px"},this.getLineHeight=function(){return this.$fontMetrics.$characterSize.height||0},this.getCharacterWidth=function(){return this.$fontMetrics.$characterSize.width||0},this.$setFontMetrics=function(e){this.$fontMetrics=e,this.$fontMetrics.on("changeCharacterSize",function(e){this._signal("changeCharacterSize",e)}.bind(this)),this.$pollSizeChanges()},this.checkForSizeChanges=function(){this.$fontMetrics.checkForSizeChanges()},this.$pollSizeChanges=function(){return this.$pollSizeChangesTimer=this.$fontMetrics.$pollSizeChanges()},this.setSession=function(e){this.session=e,e&&this.$computeTabString()},this.showInvisibles=!1,this.setShowInvisibles=function(e){return this.showInvisibles==e?!1:(this.showInvisibles=e,this.$computeTabString(),!0)},this.displayIndentGuides=!0,this.setDisplayIndentGuides=function(e){return this.displayIndentGuides==e?!1:(this.displayIndentGuides=e,this.$computeTabString(),!0)},this.$tabStrings=[],this.onChangeTabSize=this.$computeTabString=function(){var e=this.session.getTabSize();this.tabSize=e;var t=this.$tabStrings=[0];for(var n=1;n<e+1;n++)this.showInvisibles?t.push("<span class='ace_invisible ace_invisible_tab'>"+s.stringRepeat(this.TAB_CHAR,n)+"</span>"):t.push(s.stringRepeat(" ",n));if(this.displayIndentGuides){this.$indentGuideRe=/\s\S| \t|\t |\s$/;var r="ace_indent-guide",i="",o="";if(this.showInvisibles){r+=" ace_invisible",i=" ace_invisible_space",o=" ace_invisible_tab";var u=s.stringRepeat(this.SPACE_CHAR,this.tabSize),a=s.stringRepeat(this.TAB_CHAR,this.tabSize)}else var u=s.stringRepeat(" ",this.tabSize),a=u;this.$tabStrings[" "]="<span class='"+r+i+"'>"+u+"</span>",this.$tabStrings[" "]="<span class='"+r+o+"'>"+a+"</span>"}},this.updateLines=function(e,t,n){(this.config.lastRow!=e.lastRow||this.config.firstRow!=e.firstRow)&&this.scrollLines(e),this.config=e;var r=Math.max(t,e.firstRow),i=Math.min(n,e.lastRow),s=this.element.childNodes,o=0;for(var u=e.firstRow;u<r;u++){var a=this.session.getFoldLine(u);if(a){if(a.containsRow(r)){r=a.start.row;break}u=a.end.row}o++}var u=r,a=this.session.getNextFoldLine(u),f=a?a.start.row:Infinity;for(;;){u>f&&(u=a.end.row+1,a=this.session.getNextFoldLine(u,a),f=a?a.start.row:Infinity);if(u>i)break;var l=s[o++];if(l){var c=[];this.$renderLine(c,u,!this.$useLineGroups(),u==f?a:!1),l.style.height=e.lineHeight*this.session.getRowLength(u)+"px",l.innerHTML=c.join("")}u++}},this.scrollLines=function(e){var t=this.config;this.config=e;if(!t||t.lastRow<e.firstRow)return this.update(e);if(e.lastRow<t.firstRow)return this.update(e);var n=this.element;if(t.firstRow<e.firstRow)for(var r=this.session.getFoldedRowCount(t.firstRow,e.firstRow-1);r>0;r--)n.removeChild(n.firstChild);if(t.lastRow>e.lastRow)for(var r=this.session.getFoldedRowCount(e.lastRow+1,t.lastRow);r>0;r--)n.removeChild(n.lastChild);if(e.firstRow<t.firstRow){var i=this.$renderLinesFragment(e,e.firstRow,t.firstRow-1);n.firstChild?n.insertBefore(i,n.firstChild):n.appendChild(i)}if(e.lastRow>t.lastRow){var i=this.$renderLinesFragment(e,t.lastRow+1,e.lastRow);n.appendChild(i)}},this.$renderLinesFragment=function(e,t,n){var r=this.element.ownerDocument.createDocumentFragment(),s=t,o=this.session.getNextFoldLine(s),u=o?o.start.row:Infinity;for(;;){s>u&&(s=o.end.row+1,o=this.session.getNextFoldLine(s,o),u=o?o.start.row:Infinity);if(s>n)break;var a=i.createElement("div"),f=[];this.$renderLine(f,s,!1,s==u?o:!1),a.innerHTML=f.join("");if(this.$useLineGroups())a.className="ace_line_group",r.appendChild(a),a.style.height=e.lineHeight*this.session.getRowLength(s)+"px";else while(a.firstChild)r.appendChild(a.firstChild);s++}return r},this.update=function(e){this.config=e;var t=[],n=e.firstRow,r=e.lastRow,i=n,s=this.session.getNextFoldLine(i),o=s?s.start.row:Infinity;for(;;){i>o&&(i=s.end.row+1,s=this.session.getNextFoldLine(i,s),o=s?s.start.row:Infinity);if(i>r)break;this.$useLineGroups()&&t.push("<div class='ace_line_group' style='height:",e.lineHeight*this.session.getRowLength(i),"px'>"),this.$renderLine(t,i,!1,i==o?s:!1),this.$useLineGroups()&&t.push("</div>"),i++}this.element.innerHTML=t.join("")},this.$textToken={text:!0,rparen:!0,lparen:!0},this.$renderToken=function(e,t,n,r){var i=this,o=/\t|&|<|>|( +)|([\x00-\x1f\x80-\xa0\xad\u1680\u180E\u2000-\u200f\u2028\u2029\u202F\u205F\u3000\uFEFF\uFFF9-\uFFFC])|[\u1100-\u115F\u11A3-\u11A7\u11FA-\u11FF\u2329-\u232A\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3000-\u303E\u3041-\u3096\u3099-\u30FF\u3105-\u312D\u3131-\u318E\u3190-\u31BA\u31C0-\u31E3\u31F0-\u321E\u3220-\u3247\u3250-\u32FE\u3300-\u4DBF\u4E00-\uA48C\uA490-\uA4C6\uA960-\uA97C\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFAFF\uFE10-\uFE19\uFE30-\uFE52\uFE54-\uFE66\uFE68-\uFE6B\uFF01-\uFF60\uFFE0-\uFFE6]|[\uD800-\uDBFF][\uDC00-\uDFFF]/g,u=function(e,n,r,o,u){if(n)return i.showInvisibles?"<span class='ace_invisible ace_invisible_space'>"+s.stringRepeat(i.SPACE_CHAR,e.length)+"</span>":e;if(e=="&")return"&#38;";if(e=="<")return"&#60;";if(e==">")return"&#62;";if(e==" "){var a=i.session.getScreenTabSize(t+o);return t+=a-1,i.$tabStrings[a]}if(e=="\u3000"){var f=i.showInvisibles?"ace_cjk ace_invisible ace_invisible_space":"ace_cjk",l=i.showInvisibles?i.SPACE_CHAR:"";return t+=1,"<span class='"+f+"' style='width:"+i.config.characterWidth*2+"px'>"+l+"</span>"}return r?"<span class='ace_invisible ace_invisible_space ace_invalid'>"+i.SPACE_CHAR+"</span>":(t+=1,"<span class='ace_cjk' style='width:"+i.config.characterWidth*2+"px'>"+e+"</span>")},a=r.replace(o,u);if(!this.$textToken[n.type]){var f="ace_"+n.type.replace(/\./g," ace_"),l="";n.type=="fold"&&(l=" style='width:"+n.value.length*this.config.characterWidth+"px;' "),e.push("<span class='",f,"'",l,">",a,"</span>")}else e.push(a);return t+r.length},this.renderIndentGuide=function(e,t,n){var r=t.search(this.$indentGuideRe);return r<=0||r>=n?t:t[0]==" "?(r-=r%this.tabSize,e.push(s.stringRepeat(this.$tabStrings[" "],r/this.tabSize)),t.substr(r)):t[0]==" "?(e.push(s.stringRepeat(this.$tabStrings[" "],r)),t.substr(r)):t},this.$renderWrappedLine=function(e,t,n,r){var i=0,o=0,u=n[0],a=0;for(var f=0;f<t.length;f++){var l=t[f],c=l.value;if(f==0&&this.displayIndentGuides){i=c.length,c=this.renderIndentGuide(e,c,u);if(!c)continue;i-=c.length}if(i+c.length<u)a=this.$renderToken(e,a,l,c),i+=c.length;else{while(i+c.length>=u)a=this.$renderToken(e,a,l,c.substring(0,u-i)),c=c.substring(u-i),i=u,r||e.push("</div>","<div class='ace_line' style='height:",this.config.lineHeight,"px'>"),e.push(s.stringRepeat("\u00a0",n.indent)),o++,a=0,u=n[o]||Number.MAX_VALUE;c.length!=0&&(i+=c.length,a=this.$renderToken(e,a,l,c))}}},this.$renderSimpleLine=function(e,t){var n=0,r=t[0],i=r.value;this.displayIndentGuides&&(i=this.renderIndentGuide(e,i)),i&&(n=this.$renderToken(e,n,r,i));for(var s=1;s<t.length;s++)r=t[s],i=r.value,n=this.$renderToken(e,n,r,i)},this.$renderLine=function(e,t,n,r){!r&&r!=0&&(r=this.session.getFoldLine(t));if(r)var i=this.$getFoldLineTokens(t,r);else var i=this.session.getTokens(t);n||e.push("<div class='ace_line' style='height:",this.config.lineHeight*(this.$useLineGroups()?1:this.session.getRowLength(t)),"px'>");if(i.length){var s=this.session.getRowSplitData(t);s&&s.length?this.$renderWrappedLine(e,i,s,n):this.$renderSimpleLine(e,i)}this.showInvisibles&&(r&&(t=r.end.row),e.push("<span class='ace_invisible ace_invisible_eol'>",t==this.session.getLength()-1?this.EOF_CHAR:this.EOL_CHAR,"</span>")),n||e.push("</div>")},this.$getFoldLineTokens=function(e,t){function i(e,t,n){var i=0,s=0;while(s+e[i].value.length<t){s+=e[i].value.length,i++;if(i==e.length)return}if(s!=t){var o=e[i].value.substring(t-s);o.length>n-t&&(o=o.substring(0,n-t)),r.push({type:e[i].type,value:o}),s=t+o.length,i+=1}while(s<n&&i<e.length){var o=e[i].value;o.length+s>n?r.push({type:e[i].type,value:o.substring(0,n-s)}):r.push(e[i]),s+=o.length,i+=1}}var n=this.session,r=[],s=n.getTokens(e);return t.walk(function(e,t,o,u,a){e!=null?r.push({type:"fold",value:e}):(a&&(s=n.getTokens(t)),s.length&&i(s,u,o))},t.end.row,this.session.getLine(t.end.row).length),r},this.$useLineGroups=function(){return this.session.getUseWrapMode()},this.destroy=function(){clearInterval(this.$pollSizeChangesTimer),this.$measureNode&&this.$measureNode.parentNode.removeChild(this.$measureNode),delete this.$measureNode}}).call(a.prototype),t.Text=a}),define("ace/layer/cursor",["require","exports","module","ace/lib/dom"],function(e,t,n){"use strict";var r=e("../lib/dom"),i,s=function(e){this.element=r.createElement("div"),this.element.className="ace_layer ace_cursor-layer",e.appendChild(this.element),i===undefined&&(i=!("opacity"in this.element.style)),this.isVisible=!1,this.isBlinking=!0,this.blinkInterval=1e3,this.smoothBlinking=!1,this.cursors=[],this.cursor=this.addCursor(),r.addCssClass(this.element,"ace_hidden-cursors"),this.$updateCursors=(i?this.$updateVisibility:this.$updateOpacity).bind(this)};(function(){this.$updateVisibility=function(e){var t=this.cursors;for(var n=t.length;n--;)t[n].style.visibility=e?"":"hidden"},this.$updateOpacity=function(e){var t=this.cursors;for(var n=t.length;n--;)t[n].style.opacity=e?"":"0"},this.$padding=0,this.setPadding=function(e){this.$padding=e},this.setSession=function(e){this.session=e},this.setBlinking=function(e){e!=this.isBlinking&&(this.isBlinking=e,this.restartTimer())},this.setBlinkInterval=function(e){e!=this.blinkInterval&&(this.blinkInterval=e,this.restartTimer())},this.setSmoothBlinking=function(e){e!=this.smoothBlinking&&!i&&(this.smoothBlinking=e,r.setCssClass(this.element,"ace_smooth-blinking",e),this.$updateCursors(!0),this.$updateCursors=this.$updateOpacity.bind(this),this.restartTimer())},this.addCursor=function(){var e=r.createElement("div");return e.className="ace_cursor",this.element.appendChild(e),this.cursors.push(e),e},this.removeCursor=function(){if(this.cursors.length>1){var e=this.cursors.pop();return e.parentNode.removeChild(e),e}},this.hideCursor=function(){this.isVisible=!1,r.addCssClass(this.element,"ace_hidden-cursors"),this.restartTimer()},this.showCursor=function(){this.isVisible=!0,r.removeCssClass(this.element,"ace_hidden-cursors"),this.restartTimer()},this.restartTimer=function(){var e=this.$updateCursors;clearInterval(this.intervalId),clearTimeout(this.timeoutId),this.smoothBlinking&&r.removeCssClass(this.element,"ace_smooth-blinking"),e(!0);if(!this.isBlinking||!this.blinkInterval||!this.isVisible)return;this.smoothBlinking&&setTimeout(function(){r.addCssClass(this.element,"ace_smooth-blinking")}.bind(this));var t=function(){this.timeoutId=setTimeout(function(){e(!1)},.6*this.blinkInterval)}.bind(this);this.intervalId=setInterval(function(){e(!0),t()},this.blinkInterval),t()},this.getPixelPosition=function(e,t){if(!this.config||!this.session)return{left:0,top:0};e||(e=this.session.selection.getCursor());var n=this.session.documentToScreenPosition(e),r=this.$padding+(this.session.$bidiHandler.isBidiRow(n.row,e.row)?this.session.$bidiHandler.getPosLeft(n.column):n.column*this.config.characterWidth),i=(n.row-(t?this.config.firstRowScreen:0))*this.config.lineHeight;return{left:r,top:i}},this.update=function(e){this.config=e;var t=this.session.$selectionMarkers,n=0,r=0;if(t===undefined||t.length===0)t=[{cursor:null}];for(var n=0,i=t.length;n<i;n++){var s=this.getPixelPosition(t[n].cursor,!0);if((s.top>e.height+e.offset||s.top<0)&&n>1)continue;var o=(this.cursors[r++]||this.addCursor()).style;this.drawCursor?this.drawCursor(o,s,e,t[n],this.session):(o.left=s.left+"px",o.top=s.top+"px",o.width=e.characterWidth+"px",o.height=e.lineHeight+"px")}while(this.cursors.length>r)this.removeCursor();var u=this.session.getOverwrite();this.$setOverwrite(u),this.$pixelPos=s,this.restartTimer()},this.drawCursor=null,this.$setOverwrite=function(e){e!=this.overwrite&&(this.overwrite=e,e?r.addCssClass(this.element,"ace_overwrite-cursors"):r.removeCssClass(this.element,"ace_overwrite-cursors"))},this.destroy=function(){clearInterval(this.intervalId),clearTimeout(this.timeoutId)}}).call(s.prototype),t.Cursor=s}),define("ace/scrollbar",["require","exports","module","ace/lib/oop","ace/lib/dom","ace/lib/event","ace/lib/event_emitter"],function(e,t,n){"use strict";var r=e("./lib/oop"),i=e("./lib/dom"),s=e("./lib/event"),o=e("./lib/event_emitter").EventEmitter,u=32768,a=function(e){this.element=i.createElement("div"),this.element.className="ace_scrollbar ace_scrollbar"+this.classSuffix,this.inner=i.createElement("div"),this.inner.className="ace_scrollbar-inner",this.element.appendChild(this.inner),e.appendChild(this.element),this.setVisible(!1),this.skipEvent=!1,s.addListener(this.element,"scroll",this.onScroll.bind(this)),s.addListener(this.element,"mousedown",s.preventDefault)};(function(){r.implement(this,o),this.setVisible=function(e){this.element.style.display=e?"":"none",this.isVisible=e,this.coeff=1}}).call(a.prototype);var f=function(e,t){a.call(this,e),this.scrollTop=0,this.scrollHeight=0,t.$scrollbarWidth=this.width=i.scrollbarWidth(e.ownerDocument),this.inner.style.width=this.element.style.width=(this.width||15)+5+"px",this.$minWidth=0};r.inherits(f,a),function(){this.classSuffix="-v",this.onScroll=function(){if(!this.skipEvent){this.scrollTop=this.element.scrollTop;if(this.coeff!=1){var e=this.element.clientHeight/this.scrollHeight;this.scrollTop=this.scrollTop*(1-e)/(this.coeff-e)}this._emit("scroll",{data:this.scrollTop})}this.skipEvent=!1},this.getWidth=function(){return Math.max(this.isVisible?this.width:0,this.$minWidth||0)},this.setHeight=function(e){this.element.style.height=e+"px"},this.setInnerHeight=this.setScrollHeight=function(e){this.scrollHeight=e,e>u?(this.coeff=u/e,e=u):this.coeff!=1&&(this.coeff=1),this.inner.style.height=e+"px"},this.setScrollTop=function(e){this.scrollTop!=e&&(this.skipEvent=!0,this.scrollTop=e,this.element.scrollTop=e*this.coeff)}}.call(f.prototype);var l=function(e,t){a.call(this,e),this.scrollLeft=0,this.height=t.$scrollbarWidth,this.inner.style.height=this.element.style.height=(this.height||15)+5+"px"};r.inherits(l,a),function(){this.classSuffix="-h",this.onScroll=function(){this.skipEvent||(this.scrollLeft=this.element.scrollLeft,this._emit("scroll",{data:this.scrollLeft})),this.skipEvent=!1},this.getHeight=function(){return this.isVisible?this.height:0},this.setWidth=function(e){this.element.style.width=e+"px"},this.setInnerWidth=function(e){this.inner.style.width=e+"px"},this.setScrollWidth=function(e){this.inner.style.width=e+"px"},this.setScrollLeft=function(e){this.scrollLeft!=e&&(this.skipEvent=!0,this.scrollLeft=this.element.scrollLeft=e)}}.call(l.prototype),t.ScrollBar=f,t.ScrollBarV=f,t.ScrollBarH=l,t.VScrollBar=f,t.HScrollBar=l}),define("ace/renderloop",["require","exports","module","ace/lib/event"],function(e,t,n){"use strict";var r=e("./lib/event"),i=function(e,t){this.onRender=e,this.pending=!1,this.changes=0,this.window=t||window};(function(){this.schedule=function(e){this.changes=this.changes|e;if(!this.pending&&this.changes){this.pending=!0;var t=this;r.nextFrame(function(){t.pending=!1;var e;while(e=t.changes)t.changes=0,t.onRender(e)},this.window)}}}).call(i.prototype),t.RenderLoop=i}),define("ace/layer/font_metrics",["require","exports","module","ace/lib/oop","ace/lib/dom","ace/lib/lang","ace/lib/useragent","ace/lib/event_emitter"],function(e,t,n){var r=e("../lib/oop"),i=e("../lib/dom"),s=e("../lib/lang"),o=e("../lib/useragent"),u=e("../lib/event_emitter").EventEmitter,a=0,f=t.FontMetrics=function(e){this.el=i.createElement("div"),this.$setMeasureNodeStyles(this.el.style,!0),this.$main=i.createElement("div"),this.$setMeasureNodeStyles(this.$main.style),this.$measureNode=i.createElement("div"),this.$setMeasureNodeStyles(this.$measureNode.style),this.el.appendChild(this.$main),this.el.appendChild(this.$measureNode),e.appendChild(this.el),a||this.$testFractionalRect(),this.$measureNode.innerHTML=s.stringRepeat("X",a),this.$characterSize={width:0,height:0},this.checkForSizeChanges()};(function(){r.implement(this,u),this.$characterSize={width:0,height:0},this.$testFractionalRect=function(){var e=i.createElement("div");this.$setMeasureNodeStyles(e.style),e.style.width="0.2px",document.documentElement.appendChild(e);var t=e.getBoundingClientRect().width;t>0&&t<1?a=50:a=100,e.parentNode.removeChild(e)},this.$setMeasureNodeStyles=function(e,t){e.width=e.height="auto",e.left=e.top="0px",e.visibility="hidden",e.position="absolute",e.whiteSpace="pre",o.isIE<8?e["font-family"]="inherit":e.font="inherit",e.overflow=t?"hidden":"visible"},this.checkForSizeChanges=function(){var e=this.$measureSizes();if(e&&(this.$characterSize.width!==e.width||this.$characterSize.height!==e.height)){this.$measureNode.style.fontWeight="bold";var t=this.$measureSizes();this.$measureNode.style.fontWeight="",this.$characterSize=e,this.charSizes=Object.create(null),this.allowBoldFonts=t&&t.width===e.width&&t.height===e.height,this._emit("changeCharacterSize",{data:e})}},this.$pollSizeChanges=function(){if(this.$pollSizeChangesTimer)return this.$pollSizeChangesTimer;var e=this;return this.$pollSizeChangesTimer=setInterval(function(){e.checkForSizeChanges()},500)},this.setPolling=function(e){e?this.$pollSizeChanges():this.$pollSizeChangesTimer&&(clearInterval(this.$pollSizeChangesTimer),this.$pollSizeChangesTimer=0)},this.$measureSizes=function(){if(a===50){var e=null;try{e=this.$measureNode.getBoundingClientRect()}catch(t){e={width:0,height:0}}var n={height:e.height,width:e.width/a}}else var n={height:this.$measureNode.clientHeight,width:this.$measureNode.clientWidth/a};return n.width===0||n.height===0?null:n},this.$measureCharWidth=function(e){this.$main.innerHTML=s.stringRepeat(e,a);var t=this.$main.getBoundingClientRect();return t.width/a},this.getCharacterWidth=function(e){var t=this.charSizes[e];return t===undefined&&(t=this.charSizes[e]=this.$measureCharWidth(e)/this.$characterSize.width),t},this.destroy=function(){clearInterval(this.$pollSizeChangesTimer),this.el&&this.el.parentNode&&this.el.parentNode.removeChild(this.el)}}).call(f.prototype)}),define("ace/virtual_renderer",["require","exports","module","ace/lib/oop","ace/lib/dom","ace/config","ace/lib/useragent","ace/layer/gutter","ace/layer/marker","ace/layer/text","ace/layer/cursor","ace/scrollbar","ace/scrollbar","ace/renderloop","ace/layer/font_metrics","ace/lib/event_emitter"],function(e,t,n){"use strict";var r=e("./lib/oop"),i=e("./lib/dom"),s=e("./config"),o=e("./lib/useragent"),u=e("./layer/gutter").Gutter,a=e("./layer/marker").Marker,f=e("./layer/text").Text,l=e("./layer/cursor").Cursor,c=e("./scrollbar").HScrollBar,h=e("./scrollbar").VScrollBar,p=e("./renderloop").RenderLoop,d=e("./layer/font_metrics").FontMetrics,v=e("./lib/event_emitter").EventEmitter,m='.ace_editor {position: relative;overflow: hidden;font: 12px/normal \'Monaco\', \'Menlo\', \'Ubuntu Mono\', \'Consolas\', \'source-code-pro\', monospace;direction: ltr;text-align: left;-webkit-tap-highlight-color: rgba(0, 0, 0, 0);}.ace_scroller {position: absolute;overflow: hidden;top: 0;bottom: 0;background-color: inherit;-ms-user-select: none;-moz-user-select: none;-webkit-user-select: none;user-select: none;cursor: text;}.ace_content {position: absolute;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;min-width: 100%;}.ace_dragging .ace_scroller:before{position: absolute;top: 0;left: 0;right: 0;bottom: 0;content: \'\';background: rgba(250, 250, 250, 0.01);z-index: 1000;}.ace_dragging.ace_dark .ace_scroller:before{background: rgba(0, 0, 0, 0.01);}.ace_selecting, .ace_selecting * {cursor: text !important;}.ace_gutter {position: absolute;overflow : hidden;width: auto;top: 0;bottom: 0;left: 0;cursor: default;z-index: 4;-ms-user-select: none;-moz-user-select: none;-webkit-user-select: none;user-select: none;}.ace_gutter-active-line {position: absolute;left: 0;right: 0;}.ace_scroller.ace_scroll-left {box-shadow: 17px 0 16px -16px rgba(0, 0, 0, 0.4) inset;}.ace_gutter-cell {padding-left: 19px;padding-right: 6px;background-repeat: no-repeat;}.ace_gutter-cell.ace_error {background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAABOFBMVEX/////////QRswFAb/Ui4wFAYwFAYwFAaWGAfDRymzOSH/PxswFAb/SiUwFAYwFAbUPRvjQiDllog5HhHdRybsTi3/Tyv9Tir+Syj/UC3////XurebMBIwFAb/RSHbPx/gUzfdwL3kzMivKBAwFAbbvbnhPx66NhowFAYwFAaZJg8wFAaxKBDZurf/RB6mMxb/SCMwFAYwFAbxQB3+RB4wFAb/Qhy4Oh+4QifbNRcwFAYwFAYwFAb/QRzdNhgwFAYwFAbav7v/Uy7oaE68MBK5LxLewr/r2NXewLswFAaxJw4wFAbkPRy2PyYwFAaxKhLm1tMwFAazPiQwFAaUGAb/QBrfOx3bvrv/VC/maE4wFAbRPBq6MRO8Qynew8Dp2tjfwb0wFAbx6eju5+by6uns4uH9/f36+vr/GkHjAAAAYnRSTlMAGt+64rnWu/bo8eAA4InH3+DwoN7j4eLi4xP99Nfg4+b+/u9B/eDs1MD1mO7+4PHg2MXa347g7vDizMLN4eG+Pv7i5evs/v79yu7S3/DV7/498Yv24eH+4ufQ3Ozu/v7+y13sRqwAAADLSURBVHjaZc/XDsFgGIBhtDrshlitmk2IrbHFqL2pvXf/+78DPokj7+Fz9qpU/9UXJIlhmPaTaQ6QPaz0mm+5gwkgovcV6GZzd5JtCQwgsxoHOvJO15kleRLAnMgHFIESUEPmawB9ngmelTtipwwfASilxOLyiV5UVUyVAfbG0cCPHig+GBkzAENHS0AstVF6bacZIOzgLmxsHbt2OecNgJC83JERmePUYq8ARGkJx6XtFsdddBQgZE2nPR6CICZhawjA4Fb/chv+399kfR+MMMDGOQAAAABJRU5ErkJggg==");background-repeat: no-repeat;background-position: 2px center;}.ace_gutter-cell.ace_warning {background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAmVBMVEX///8AAAD///8AAAAAAABPSzb/5sAAAAB/blH/73z/ulkAAAAAAAD85pkAAAAAAAACAgP/vGz/rkDerGbGrV7/pkQICAf////e0IsAAAD/oED/qTvhrnUAAAD/yHD/njcAAADuv2r/nz//oTj/p064oGf/zHAAAAA9Nir/tFIAAAD/tlTiuWf/tkIAAACynXEAAAAAAAAtIRW7zBpBAAAAM3RSTlMAABR1m7RXO8Ln31Z36zT+neXe5OzooRDfn+TZ4p3h2hTf4t3k3ucyrN1K5+Xaks52Sfs9CXgrAAAAjklEQVR42o3PbQ+CIBQFYEwboPhSYgoYunIqqLn6/z8uYdH8Vmdnu9vz4WwXgN/xTPRD2+sgOcZjsge/whXZgUaYYvT8QnuJaUrjrHUQreGczuEafQCO/SJTufTbroWsPgsllVhq3wJEk2jUSzX3CUEDJC84707djRc5MTAQxoLgupWRwW6UB5fS++NV8AbOZgnsC7BpEAAAAABJRU5ErkJggg==");background-position: 2px center;}.ace_gutter-cell.ace_info {background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAAAAAA6mKC9AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAAJ0Uk5TAAB2k804AAAAPklEQVQY02NgIB68QuO3tiLznjAwpKTgNyDbMegwisCHZUETUZV0ZqOquBpXj2rtnpSJT1AEnnRmL2OgGgAAIKkRQap2htgAAAAASUVORK5CYII=");background-position: 2px center;}.ace_dark .ace_gutter-cell.ace_info {background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQBAMAAADt3eJSAAAAJFBMVEUAAAChoaGAgIAqKiq+vr6tra1ZWVmUlJSbm5s8PDxubm56enrdgzg3AAAAAXRSTlMAQObYZgAAAClJREFUeNpjYMAPdsMYHegyJZFQBlsUlMFVCWUYKkAZMxZAGdxlDMQBAG+TBP4B6RyJAAAAAElFTkSuQmCC");}.ace_scrollbar {position: absolute;right: 0;bottom: 0;z-index: 6;}.ace_scrollbar-inner {position: absolute;cursor: text;left: 0;top: 0;}.ace_scrollbar-v{overflow-x: hidden;overflow-y: scroll;top: 0;}.ace_scrollbar-h {overflow-x: scroll;overflow-y: hidden;left: 0;}.ace_print-margin {position: absolute;height: 100%;}.ace_text-input {position: absolute;z-index: 0;width: 0.5em;height: 1em;opacity: 0;background: transparent;-moz-appearance: none;appearance: none;border: none;resize: none;outline: none;overflow: hidden;font: inherit;padding: 0 1px;margin: 0 -1px;text-indent: -1em;-ms-user-select: text;-moz-user-select: text;-webkit-user-select: text;user-select: text;white-space: pre!important;}.ace_text-input.ace_composition {background: inherit;color: inherit;z-index: 1000;opacity: 1;text-indent: 0;}.ace_layer {z-index: 1;position: absolute;overflow: hidden;word-wrap: normal;white-space: pre;height: 100%;width: 100%;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;pointer-events: none;}.ace_gutter-layer {position: relative;width: auto;text-align: right;pointer-events: auto;}.ace_text-layer {font: inherit !important;}.ace_cjk {display: inline-block;text-align: center;}.ace_cursor-layer {z-index: 4;}.ace_cursor {z-index: 4;position: absolute;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;border-left: 2px solid;transform: translatez(0);}.ace_multiselect .ace_cursor {border-left-width: 1px;}.ace_slim-cursors .ace_cursor {border-left-width: 1px;}.ace_overwrite-cursors .ace_cursor {border-left-width: 0;border-bottom: 1px solid;}.ace_hidden-cursors .ace_cursor {opacity: 0.2;}.ace_smooth-blinking .ace_cursor {-webkit-transition: opacity 0.18s;transition: opacity 0.18s;}.ace_marker-layer .ace_step, .ace_marker-layer .ace_stack {position: absolute;z-index: 3;}.ace_marker-layer .ace_selection {position: absolute;z-index: 5;}.ace_marker-layer .ace_bracket {position: absolute;z-index: 6;}.ace_marker-layer .ace_active-line {position: absolute;z-index: 2;}.ace_marker-layer .ace_selected-word {position: absolute;z-index: 4;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;}.ace_line .ace_fold {-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;display: inline-block;height: 11px;margin-top: -2px;vertical-align: middle;background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAAJCAYAAADU6McMAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAJpJREFUeNpi/P//PwOlgAXGYGRklAVSokD8GmjwY1wasKljQpYACtpCFeADcHVQfQyMQAwzwAZI3wJKvCLkfKBaMSClBlR7BOQikCFGQEErIH0VqkabiGCAqwUadAzZJRxQr/0gwiXIal8zQQPnNVTgJ1TdawL0T5gBIP1MUJNhBv2HKoQHHjqNrA4WO4zY0glyNKLT2KIfIMAAQsdgGiXvgnYAAAAASUVORK5CYII="),url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAA3CAYAAADNNiA5AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAACJJREFUeNpi+P//fxgTAwPDBxDxD078RSX+YeEyDFMCIMAAI3INmXiwf2YAAAAASUVORK5CYII=");background-repeat: no-repeat, repeat-x;background-position: center center, top left;color: transparent;border: 1px solid black;border-radius: 2px;cursor: pointer;pointer-events: auto;}.ace_dark .ace_fold {}.ace_fold:hover{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAAJCAYAAADU6McMAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAJpJREFUeNpi/P//PwOlgAXGYGRklAVSokD8GmjwY1wasKljQpYACtpCFeADcHVQfQyMQAwzwAZI3wJKvCLkfKBaMSClBlR7BOQikCFGQEErIH0VqkabiGCAqwUadAzZJRxQr/0gwiXIal8zQQPnNVTgJ1TdawL0T5gBIP1MUJNhBv2HKoQHHjqNrA4WO4zY0glyNKLT2KIfIMAAQsdgGiXvgnYAAAAASUVORK5CYII="),url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAA3CAYAAADNNiA5AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAACBJREFUeNpi+P//fz4TAwPDZxDxD5X4i5fLMEwJgAADAEPVDbjNw87ZAAAAAElFTkSuQmCC");}.ace_tooltip {background-color: #FFF;background-image: -webkit-linear-gradient(top, transparent, rgba(0, 0, 0, 0.1));background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.1));border: 1px solid gray;border-radius: 1px;box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);color: black;max-width: 100%;padding: 3px 4px;position: fixed;z-index: 999999;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;cursor: default;white-space: pre;word-wrap: break-word;line-height: normal;font-style: normal;font-weight: normal;letter-spacing: normal;pointer-events: none;}.ace_folding-enabled > .ace_gutter-cell {padding-right: 13px;}.ace_fold-widget {-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;margin: 0 -12px 0 1px;display: none;width: 11px;vertical-align: top;background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAANElEQVR42mWKsQ0AMAzC8ixLlrzQjzmBiEjp0A6WwBCSPgKAXoLkqSot7nN3yMwR7pZ32NzpKkVoDBUxKAAAAABJRU5ErkJggg==");background-repeat: no-repeat;background-position: center;border-radius: 3px;border: 1px solid transparent;cursor: pointer;}.ace_folding-enabled .ace_fold-widget {display: inline-block; }.ace_fold-widget.ace_end {background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAANElEQVR42m3HwQkAMAhD0YzsRchFKI7sAikeWkrxwScEB0nh5e7KTPWimZki4tYfVbX+MNl4pyZXejUO1QAAAABJRU5ErkJggg==");}.ace_fold-widget.ace_closed {background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAAGCAYAAAAG5SQMAAAAOUlEQVR42jXKwQkAMAgDwKwqKD4EwQ26sSOkVWjgIIHAzPiCgaqiqnJHZnKICBERHN194O5b9vbLuAVRL+l0YWnZAAAAAElFTkSuQmCCXA==");}.ace_fold-widget:hover {border: 1px solid rgba(0, 0, 0, 0.3);background-color: rgba(255, 255, 255, 0.2);box-shadow: 0 1px 1px rgba(255, 255, 255, 0.7);}.ace_fold-widget:active {border: 1px solid rgba(0, 0, 0, 0.4);background-color: rgba(0, 0, 0, 0.05);box-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);}.ace_dark .ace_fold-widget {background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHklEQVQIW2P4//8/AzoGEQ7oGCaLLAhWiSwB146BAQCSTPYocqT0AAAAAElFTkSuQmCC");}.ace_dark .ace_fold-widget.ace_end {background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAH0lEQVQIW2P4//8/AxQ7wNjIAjDMgC4AxjCVKBirIAAF0kz2rlhxpAAAAABJRU5ErkJggg==");}.ace_dark .ace_fold-widget.ace_closed {background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAAFCAYAAACAcVaiAAAAHElEQVQIW2P4//+/AxAzgDADlOOAznHAKgPWAwARji8UIDTfQQAAAABJRU5ErkJggg==");}.ace_dark .ace_fold-widget:hover {box-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);background-color: rgba(255, 255, 255, 0.1);}.ace_dark .ace_fold-widget:active {box-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);}.ace_fold-widget.ace_invalid {background-color: #FFB4B4;border-color: #DE5555;}.ace_fade-fold-widgets .ace_fold-widget {-webkit-transition: opacity 0.4s ease 0.05s;transition: opacity 0.4s ease 0.05s;opacity: 0;}.ace_fade-fold-widgets:hover .ace_fold-widget {-webkit-transition: opacity 0.05s ease 0.05s;transition: opacity 0.05s ease 0.05s;opacity:1;}.ace_underline {text-decoration: underline;}.ace_bold {font-weight: bold;}.ace_nobold .ace_bold {font-weight: normal;}.ace_italic {font-style: italic;}.ace_error-marker {background-color: rgba(255, 0, 0,0.2);position: absolute;z-index: 9;}.ace_highlight-marker {background-color: rgba(255, 255, 0,0.2);position: absolute;z-index: 8;}.ace_br1 {border-top-left-radius : 3px;}.ace_br2 {border-top-right-radius : 3px;}.ace_br3 {border-top-left-radius : 3px; border-top-right-radius: 3px;}.ace_br4 {border-bottom-right-radius: 3px;}.ace_br5 {border-top-left-radius : 3px; border-bottom-right-radius: 3px;}.ace_br6 {border-top-right-radius : 3px; border-bottom-right-radius: 3px;}.ace_br7 {border-top-left-radius : 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px;}.ace_br8 {border-bottom-left-radius : 3px;}.ace_br9 {border-top-left-radius : 3px; border-bottom-left-radius: 3px;}.ace_br10{border-top-right-radius : 3px; border-bottom-left-radius: 3px;}.ace_br11{border-top-left-radius : 3px; border-top-right-radius: 3px; border-bottom-left-radius: 3px;}.ace_br12{border-bottom-right-radius: 3px; border-bottom-left-radius: 3px;}.ace_br13{border-top-left-radius : 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px;}.ace_br14{border-top-right-radius : 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px;}.ace_br15{border-top-left-radius : 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px;}.ace_text-input-ios {position: absolute !important;top: -100000px !important;left: -100000px !important;}';i.importCssString(m,"ace_editor.css");var g=function(e,t){var n=this;this.container=e||i.createElement("div"),this.$keepTextAreaAtCursor=!o.isOldIE,i.addCssClass(this.container,"ace_editor"),this.setTheme(t),this.$gutter=i.createElement("div"),this.$gutter.className="ace_gutter",this.container.appendChild(this.$gutter),this.$gutter.setAttribute("aria-hidden",!0),this.scroller=i.createElement("div"),this.scroller.className="ace_scroller",this.container.appendChild(this.scroller),this.content=i.createElement("div"),this.content.className="ace_content",this.scroller.appendChild(this.content),this.$gutterLayer=new u(this.$gutter),this.$gutterLayer.on("changeGutterWidth",this.onGutterResize.bind(this)),this.$markerBack=new a(this.content);var r=this.$textLayer=new f(this.content);this.canvas=r.element,this.$markerFront=new a(this.content),this.$cursorLayer=new l(this.content),this.$horizScroll=!1,this.$vScroll=!1,this.scrollBar=this.scrollBarV=new h(this.container,this),this.scrollBarH=new c(this.container,this),this.scrollBarV.addEventListener("scroll",function(e){n.$scrollAnimation||n.session.setScrollTop(e.data-n.scrollMargin.top)}),this.scrollBarH.addEventListener("scroll",function(e){n.$scrollAnimation||n.session.setScrollLeft(e.data-n.scrollMargin.left)}),this.scrollTop=0,this.scrollLeft=0,this.cursorPos={row:0,column:0},this.$fontMetrics=new d(this.container),this.$textLayer.$setFontMetrics(this.$fontMetrics),this.$textLayer.addEventListener("changeCharacterSize",function(e){n.updateCharacterSize(),n.onResize(!0,n.gutterWidth,n.$size.width,n.$size.height),n._signal("changeCharacterSize",e)}),this.$size={width:0,height:0,scrollerHeight:0,scrollerWidth:0,$dirty:!0},this.layerConfig={width:1,padding:0,firstRow:0,firstRowScreen:0,lastRow:0,lineHeight:0,characterWidth:0,minHeight:1,maxHeight:1,offset:0,height:1,gutterOffset:1},this.scrollMargin={left:0,right:0,top:0,bottom:0,v:0,h:0},this.$loop=new p(this.$renderChanges.bind(this),this.container.ownerDocument.defaultView),this.$loop.schedule(this.CHANGE_FULL),this.updateCharacterSize(),this.setPadding(4),s.resetOptions(this),s._emit("renderer",this)};(function(){this.CHANGE_CURSOR=1,this.CHANGE_MARKER=2,this.CHANGE_GUTTER=4,this.CHANGE_SCROLL=8,this.CHANGE_LINES=16,this.CHANGE_TEXT=32,this.CHANGE_SIZE=64,this.CHANGE_MARKER_BACK=128,this.CHANGE_MARKER_FRONT=256,this.CHANGE_FULL=512,this.CHANGE_H_SCROLL=1024,r.implement(this,v),this.updateCharacterSize=function(){this.$textLayer.allowBoldFonts!=this.$allowBoldFonts&&(this.$allowBoldFonts=this.$textLayer.allowBoldFonts,this.setStyle("ace_nobold",!this.$allowBoldFonts)),this.layerConfig.characterWidth=this.characterWidth=this.$textLayer.getCharacterWidth(),this.layerConfig.lineHeight=this.lineHeight=this.$textLayer.getLineHeight(),this.$updatePrintMargin()},this.setSession=function(e){this.session&&this.session.doc.off("changeNewLineMode",this.onChangeNewLineMode),this.session=e,e&&this.scrollMargin.top&&e.getScrollTop()<=0&&e.setScrollTop(-this.scrollMargin.top),this.$cursorLayer.setSession(e),this.$markerBack.setSession(e),this.$markerFront.setSession(e),this.$gutterLayer.setSession(e),this.$textLayer.setSession(e);if(!e)return;this.$loop.schedule(this.CHANGE_FULL),this.session.$setFontMetrics(this.$fontMetrics),this.scrollBarH.scrollLeft=this.scrollBarV.scrollTop=null,this.onChangeNewLineMode=this.onChangeNewLineMode.bind(this),this.onChangeNewLineMode(),this.session.doc.on("changeNewLineMode",this.onChangeNewLineMode)},this.updateLines=function(e,t,n){t===undefined&&(t=Infinity),this.$changedLines?(this.$changedLines.firstRow>e&&(this.$changedLines.firstRow=e),this.$changedLines.lastRow<t&&(this.$changedLines.lastRow=t)):this.$changedLines={firstRow:e,lastRow:t};if(this.$changedLines.lastRow<this.layerConfig.firstRow){if(!n)return;this.$changedLines.lastRow=this.layerConfig.lastRow}if(this.$changedLines.firstRow>this.layerConfig.lastRow)return;this.$loop.schedule(this.CHANGE_LINES)},this.onChangeNewLineMode=function(){this.$loop.schedule(this.CHANGE_TEXT),this.$textLayer.$updateEolChar(),this.session.$bidiHandler.setEolChar(this.$textLayer.EOL_CHAR)},this.onChangeTabSize=function(){this.$loop.schedule(this.CHANGE_TEXT|this.CHANGE_MARKER),this.$textLayer.onChangeTabSize()},this.updateText=function(){this.$loop.schedule(this.CHANGE_TEXT)},this.updateFull=function(e){e?this.$renderChanges(this.CHANGE_FULL,!0):this.$loop.schedule(this.CHANGE_FULL)},this.updateFontSize=function(){this.$textLayer.checkForSizeChanges()},this.$changes=0,this.$updateSizeAsync=function(){this.$loop.pending?this.$size.$dirty=!0:this.onResize()},this.onResize=function(e,t,n,r){if(this.resizing>2)return;this.resizing>0?this.resizing++:this.resizing=e?1:0;var i=this.container;r||(r=i.clientHeight||i.scrollHeight),n||(n=i.clientWidth||i.scrollWidth);var s=this.$updateCachedSize(e,t,n,r);if(!this.$size.scrollerHeight||!n&&!r)return this.resizing=0;e&&(this.$gutterLayer.$padding=null),e?this.$renderChanges(s|this.$changes,!0):this.$loop.schedule(s|this.$changes),this.resizing&&(this.resizing=0),this.scrollBarV.scrollLeft=this.scrollBarV.scrollTop=null},this.$updateCachedSize=function(e,t,n,r){r-=this.$extraHeight||0;var i=0,s=this.$size,o={width:s.width,height:s.height,scrollerHeight:s.scrollerHeight,scrollerWidth:s.scrollerWidth};r&&(e||s.height!=r)&&(s.height=r,i|=this.CHANGE_SIZE,s.scrollerHeight=s.height,this.$horizScroll&&(s.scrollerHeight-=this.scrollBarH.getHeight()),this.scrollBarV.element.style.bottom=this.scrollBarH.getHeight()+"px",i|=this.CHANGE_SCROLL);if(n&&(e||s.width!=n)){i|=this.CHANGE_SIZE,s.width=n,t==null&&(t=this.$showGutter?this.$gutter.offsetWidth:0),this.gutterWidth=t,this.scrollBarH.element.style.left=this.scroller.style.left=t+"px",s.scrollerWidth=Math.max(0,n-t-this.scrollBarV.getWidth()),this.scrollBarH.element.style.right=this.scroller.style.right=this.scrollBarV.getWidth()+"px",this.scroller.style.bottom=this.scrollBarH.getHeight()+"px";if(this.session&&this.session.getUseWrapMode()&&this.adjustWrapLimit()||e)i|=this.CHANGE_FULL}return s.$dirty=!n||!r,i&&this._signal("resize",o),i},this.onGutterResize=function(){var e=this.$showGutter?this.$gutter.offsetWidth:0;e!=this.gutterWidth&&(this.$changes|=this.$updateCachedSize(!0,e,this.$size.width,this.$size.height)),this.session.getUseWrapMode()&&this.adjustWrapLimit()?this.$loop.schedule(this.CHANGE_FULL):this.$size.$dirty?this.$loop.schedule(this.CHANGE_FULL):(this.$computeLayerConfig(),this.$loop.schedule(this.CHANGE_MARKER))},this.adjustWrapLimit=function(){var e=this.$size.scrollerWidth-this.$padding*2,t=Math.floor(e/this.characterWidth);return this.session.adjustWrapLimit(t,this.$showPrintMargin&&this.$printMarginColumn)},this.setAnimatedScroll=function(e){this.setOption("animatedScroll",e)},this.getAnimatedScroll=function(){return this.$animatedScroll},this.setShowInvisibles=function(e){this.setOption("showInvisibles",e),this.session.$bidiHandler.setShowInvisibles(e)},this.getShowInvisibles=function(){return this.getOption("showInvisibles")},this.getDisplayIndentGuides=function(){return this.getOption("displayIndentGuides")},this.setDisplayIndentGuides=function(e){this.setOption("displayIndentGuides",e)},this.setShowPrintMargin=function(e){this.setOption("showPrintMargin",e)},this.getShowPrintMargin=function(){return this.getOption("showPrintMargin")},this.setPrintMarginColumn=function(e){this.setOption("printMarginColumn",e)},this.getPrintMarginColumn=function(){return this.getOption("printMarginColumn")},this.getShowGutter=function(){return this.getOption("showGutter")},this.setShowGutter=function(e){return this.setOption("showGutter",e)},this.getFadeFoldWidgets=function(){return this.getOption("fadeFoldWidgets")},this.setFadeFoldWidgets=function(e){this.setOption("fadeFoldWidgets",e)},this.setHighlightGutterLine=function(e){this.setOption("highlightGutterLine",e)},this.getHighlightGutterLine=function(){return this.getOption("highlightGutterLine")},this.$updateGutterLineHighlight=function(){var e=this.$cursorLayer.$pixelPos,t=this.layerConfig.lineHeight;if(this.session.getUseWrapMode()){var n=this.session.selection.getCursor();n.column=0,e=this.$cursorLayer.getPixelPosition(n,!0),t*=this.session.getRowLength(n.row)}this.$gutterLineHighlight.style.top=e.top-this.layerConfig.offset+"px",this.$gutterLineHighlight.style.height=t+"px"},this.$updatePrintMargin=function(){if(!this.$showPrintMargin&&!this.$printMarginEl)return;if(!this.$printMarginEl){var e=i.createElement("div");e.className="ace_layer ace_print-margin-layer",this.$printMarginEl=i.createElement("div"),this.$printMarginEl.className="ace_print-margin",e.appendChild(this.$printMarginEl),this.content.insertBefore(e,this.content.firstChild)}var t=this.$printMarginEl.style;t.left=this.characterWidth*this.$printMarginColumn+this.$padding+"px",t.visibility=this.$showPrintMargin?"visible":"hidden",this.session&&this.session.$wrap==-1&&this.adjustWrapLimit()},this.getContainerElement=function(){return this.container},this.getMouseEventTarget=function(){return this.scroller},this.getTextAreaContainer=function(){return this.container},this.$moveTextAreaToCursor=function(){if(!this.$keepTextAreaAtCursor)return;var e=this.layerConfig,t=this.$cursorLayer.$pixelPos.top,n=this.$cursorLayer.$pixelPos.left;t-=e.offset;var r=this.textarea.style,i=this.lineHeight;if(t<0||t>e.height-i){r.top=r.left="0";return}var s=this.characterWidth;if(this.$composition){var o=this.textarea.value.replace(/^\x01+/,"");s*=this.session.$getStringScreenWidth(o)[0]+2,i+=2}n-=this.scrollLeft,n>this.$size.scrollerWidth-s&&(n=this.$size.scrollerWidth-s),n+=this.gutterWidth,r.height=i+"px",r.width=s+"px",r.left=Math.min(n,this.$size.scrollerWidth-s)+"px",r.top=Math.min(t,this.$size.height-i)+"px"},this.getFirstVisibleRow=function(){return this.layerConfig.firstRow},this.getFirstFullyVisibleRow=function(){return this.layerConfig.firstRow+(this.layerConfig.offset===0?0:1)},this.getLastFullyVisibleRow=function(){var e=this.layerConfig,t=e.lastRow,n=this.session.documentToScreenRow(t,0)*e.lineHeight;return n-this.session.getScrollTop()>e.height-e.lineHeight?t-1:t},this.getLastVisibleRow=function(){return this.layerConfig.lastRow},this.$padding=null,this.setPadding=function(e){this.$padding=e,this.$textLayer.setPadding(e),this.$cursorLayer.setPadding(e),this.$markerFront.setPadding(e),this.$markerBack.setPadding(e),this.$loop.schedule(this.CHANGE_FULL),this.$updatePrintMargin()},this.setScrollMargin=function(e,t,n,r){var i=this.scrollMargin;i.top=e|0,i.bottom=t|0,i.right=r|0,i.left=n|0,i.v=i.top+i.bottom,i.h=i.left+i.right,i.top&&this.scrollTop<=0&&this.session&&this.session.setScrollTop(-i.top),this.updateFull()},this.getHScrollBarAlwaysVisible=function(){return this.$hScrollBarAlwaysVisible},this.setHScrollBarAlwaysVisible=function(e){this.setOption("hScrollBarAlwaysVisible",e)},this.getVScrollBarAlwaysVisible=function(){return this.$vScrollBarAlwaysVisible},this.setVScrollBarAlwaysVisible=function(e){this.setOption("vScrollBarAlwaysVisible",e)},this.$updateScrollBarV=function(){var e=this.layerConfig.maxHeight,t=this.$size.scrollerHeight;!this.$maxLines&&this.$scrollPastEnd&&(e-=(t-this.lineHeight)*this.$scrollPastEnd,this.scrollTop>e-t&&(e=this.scrollTop+t,this.scrollBarV.scrollTop=null)),this.scrollBarV.setScrollHeight(e+this.scrollMargin.v),this.scrollBarV.setScrollTop(this.scrollTop+this.scrollMargin.top)},this.$updateScrollBarH=function(){this.scrollBarH.setScrollWidth(this.layerConfig.width+2*this.$padding+this.scrollMargin.h),this.scrollBarH.setScrollLeft(this.scrollLeft+this.scrollMargin.left)},this.$frozen=!1,this.freeze=function(){this.$frozen=!0},this.unfreeze=function(){this.$frozen=!1},this.$renderChanges=function(e,t){this.$changes&&(e|=this.$changes,this.$changes=0);if(!this.session||!this.container.offsetWidth||this.$frozen||!e&&!t){this.$changes|=e;return}if(this.$size.$dirty)return this.$changes|=e,this.onResize(!0);this.lineHeight||this.$textLayer.checkForSizeChanges(),this._signal("beforeRender"),this.session&&this.session.$bidiHandler&&this.session.$bidiHandler.updateCharacterWidths(this.$fontMetrics);var n=this.layerConfig;if(e&this.CHANGE_FULL||e&this.CHANGE_SIZE||e&this.CHANGE_TEXT||e&this.CHANGE_LINES||e&this.CHANGE_SCROLL||e&this.CHANGE_H_SCROLL){e|=this.$computeLayerConfig();if(n.firstRow!=this.layerConfig.firstRow&&n.firstRowScreen==this.layerConfig.firstRowScreen){var r=this.scrollTop+(n.firstRow-this.layerConfig.firstRow)*this.lineHeight;r>0&&(this.scrollTop=r,e|=this.CHANGE_SCROLL,e|=this.$computeLayerConfig())}n=this.layerConfig,this.$updateScrollBarV(),e&this.CHANGE_H_SCROLL&&this.$updateScrollBarH(),this.$gutterLayer.element.style.marginTop=-n.offset+"px",this.content.style.marginTop=-n.offset+"px",this.content.style.width=n.width+2*this.$padding+"px",this.content.style.height=n.minHeight+"px"}e&this.CHANGE_H_SCROLL&&(this.content.style.marginLeft=-this.scrollLeft+"px",this.scroller.className=this.scrollLeft<=0?"ace_scroller":"ace_scroller ace_scroll-left");if(e&this.CHANGE_FULL){this.$textLayer.update(n),this.$showGutter&&this.$gutterLayer.update(n),this.$markerBack.update(n),this.$markerFront.update(n),this.$cursorLayer.update(n),this.$moveTextAreaToCursor(),this.$highlightGutterLine&&this.$updateGutterLineHighlight(),this._signal("afterRender");return}if(e&this.CHANGE_SCROLL){e&this.CHANGE_TEXT||e&this.CHANGE_LINES?this.$textLayer.update(n):this.$textLayer.scrollLines(n),this.$showGutter&&this.$gutterLayer.update(n),this.$markerBack.update(n),this.$markerFront.update(n),this.$cursorLayer.update(n),this.$highlightGutterLine&&this.$updateGutterLineHighlight(),this.$moveTextAreaToCursor(),this._signal("afterRender");return}e&this.CHANGE_TEXT?(this.$textLayer.update(n),this.$showGutter&&this.$gutterLayer.update(n)):e&this.CHANGE_LINES?(this.$updateLines()||e&this.CHANGE_GUTTER&&this.$showGutter)&&this.$gutterLayer.update(n):(e&this.CHANGE_TEXT||e&this.CHANGE_GUTTER)&&this.$showGutter&&this.$gutterLayer.update(n),e&this.CHANGE_CURSOR&&(this.$cursorLayer.update(n),this.$moveTextAreaToCursor(),this.$highlightGutterLine&&this.$updateGutterLineHighlight()),e&(this.CHANGE_MARKER|this.CHANGE_MARKER_FRONT)&&this.$markerFront.update(n),e&(this.CHANGE_MARKER|this.CHANGE_MARKER_BACK)&&this.$markerBack.update(n),this._signal("afterRender")},this.$autosize=function(){var e=this.session.getScreenLength()*this.lineHeight,t=this.$maxLines*this.lineHeight,n=Math.min(t,Math.max((this.$minLines||1)*this.lineHeight,e))+this.scrollMargin.v+(this.$extraHeight||0);this.$horizScroll&&(n+=this.scrollBarH.getHeight()),this.$maxPixelHeight&&n>this.$maxPixelHeight&&(n=this.$maxPixelHeight);var r=e>t;if(n!=this.desiredHeight||this.$size.height!=this.desiredHeight||r!=this.$vScroll){r!=this.$vScroll&&(this.$vScroll=r,this.scrollBarV.setVisible(r));var i=this.container.clientWidth;this.container.style.height=n+"px",this.$updateCachedSize(!0,this.$gutterWidth,i,n),this.desiredHeight=n,this._signal("autosize")}},this.$computeLayerConfig=function(){var e=this.session,t=this.$size,n=t.height<=2*this.lineHeight,r=this.session.getScreenLength(),i=r*this.lineHeight,s=this.$getLongestLine(),o=!n&&(this.$hScrollBarAlwaysVisible||t.scrollerWidth-s-2*this.$padding<0),u=this.$horizScroll!==o;u&&(this.$horizScroll=o,this.scrollBarH.setVisible(o));var a=this.$vScroll;this.$maxLines&&this.lineHeight>1&&this.$autosize();var f=this.scrollTop%this.lineHeight,l=t.scrollerHeight+this.lineHeight,c=!this.$maxLines&&this.$scrollPastEnd?(t.scrollerHeight-this.lineHeight)*this.$scrollPastEnd:0;i+=c;var h=this.scrollMargin;this.session.setScrollTop(Math.max(-h.top,Math.min(this.scrollTop,i-t.scrollerHeight+h.bottom))),this.session.setScrollLeft(Math.max(-h.left,Math.min(this.scrollLeft,s+2*this.$padding-t.scrollerWidth+h.right)));var p=!n&&(this.$vScrollBarAlwaysVisible||t.scrollerHeight-i+c<0||this.scrollTop>h.top),d=a!==p;d&&(this.$vScroll=p,this.scrollBarV.setVisible(p));var v=Math.ceil(l/this.lineHeight)-1,m=Math.max(0,Math.round((this.scrollTop-f)/this.lineHeight)),g=m+v,y,b,w=this.lineHeight;m=e.screenToDocumentRow(m,0);var E=e.getFoldLine(m);E&&(m=E.start.row),y=e.documentToScreenRow(m,0),b=e.getRowLength(m)*w,g=Math.min(e.screenToDocumentRow(g,0),e.getLength()-1),l=t.scrollerHeight+e.getRowLength(g)*w+b,f=this.scrollTop-y*w;var S=0;this.layerConfig.width!=s&&(S=this.CHANGE_H_SCROLL);if(u||d)S=this.$updateCachedSize(!0,this.gutterWidth,t.width,t.height),this._signal("scrollbarVisibilityChanged"),d&&(s=this.$getLongestLine());return this.layerConfig={width:s,padding:this.$padding,firstRow:m,firstRowScreen:y,lastRow:g,lineHeight:w,characterWidth:this.characterWidth,minHeight:l,maxHeight:i,offset:f,gutterOffset:w?Math.max(0,Math.ceil((f+t.height-t.scrollerHeight)/w)):0,height:this.$size.scrollerHeight},S},this.$updateLines=function(){if(!this.$changedLines)return;var e=this.$changedLines.firstRow,t=this.$changedLines.lastRow;this.$changedLines=null;var n=this.layerConfig;if(e>n.lastRow+1)return;if(t<n.firstRow)return;if(t===Infinity){this.$showGutter&&this.$gutterLayer.update(n),this.$textLayer.update(n);return}return this.$textLayer.updateLines(n,e,t),!0},this.$getLongestLine=function(){var e=this.session.getScreenWidth();return this.showInvisibles&&!this.session.$useWrapMode&&(e+=1),Math.max(this.$size.scrollerWidth-2*this.$padding,Math.round(e*this.characterWidth))},this.updateFrontMarkers=function(){this.$markerFront.setMarkers(this.session.getMarkers(!0)),this.$loop.schedule(this.CHANGE_MARKER_FRONT)},this.updateBackMarkers=function(){this.$markerBack.setMarkers(this.session.getMarkers()),this.$loop.schedule(this.CHANGE_MARKER_BACK)},this.addGutterDecoration=function(e,t){this.$gutterLayer.addGutterDecoration(e,t)},this.removeGutterDecoration=function(e,t){this.$gutterLayer.removeGutterDecoration(e,t)},this.updateBreakpoints=function(e){this.$loop.schedule(this.CHANGE_GUTTER)},this.setAnnotations=function(e){this.$gutterLayer.setAnnotations(e),this.$loop.schedule(this.CHANGE_GUTTER)},this.updateCursor=function(){this.$loop.schedule(this.CHANGE_CURSOR)},this.hideCursor=function(){this.$cursorLayer.hideCursor()},this.showCursor=function(){this.$cursorLayer.showCursor()},this.scrollSelectionIntoView=function(e,t,n){this.scrollCursorIntoView(e,n),this.scrollCursorIntoView(t,n)},this.scrollCursorIntoView=function(e,t,n){if(this.$size.scrollerHeight===0)return;var r=this.$cursorLayer.getPixelPosition(e),i=r.left,s=r.top,o=n&&n.top||0,u=n&&n.bottom||0,a=this.$scrollAnimation?this.session.getScrollTop():this.scrollTop;a+o>s?(t&&a+o>s+this.lineHeight&&(s-=t*this.$size.scrollerHeight),s===0&&(s=-this.scrollMargin.top),this.session.setScrollTop(s)):a+this.$size.scrollerHeight-u<s+this.lineHeight&&(t&&a+this.$size.scrollerHeight-u<s-this.lineHeight&&(s+=t*this.$size.scrollerHeight),this.session.setScrollTop(s+this.lineHeight-this.$size.scrollerHeight));var f=this.scrollLeft;f>i?(i<this.$padding+2*this.layerConfig.characterWidth&&(i=-this.scrollMargin.left),this.session.setScrollLeft(i)):f+this.$size.scrollerWidth<i+this.characterWidth?this.session.setScrollLeft(Math.round(i+this.characterWidth-this.$size.scrollerWidth)):f<=this.$padding&&i-f<this.characterWidth&&this.session.setScrollLeft(0)},this.getScrollTop=function(){return this.session.getScrollTop()},this.getScrollLeft=function(){return this.session.getScrollLeft()},this.getScrollTopRow=function(){return this.scrollTop/this.lineHeight},this.getScrollBottomRow=function(){return Math.max(0,Math.floor((this.scrollTop+this.$size.scrollerHeight)/this.lineHeight)-1)},this.scrollToRow=function(e){this.session.setScrollTop(e*this.lineHeight)},this.alignCursor=function(e,t){typeof e=="number"&&(e={row:e,column:0});var n=this.$cursorLayer.getPixelPosition(e),r=this.$size.scrollerHeight-this.lineHeight,i=n.top-r*(t||0);return this.session.setScrollTop(i),i},this.STEPS=8,this.$calcSteps=function(e,t){var n=0,r=this.STEPS,i=[],s=function(e,t,n){return n*(Math.pow(e-1,3)+1)+t};for(n=0;n<r;++n)i.push(s(n/this.STEPS,e,t-e));return i},this.scrollToLine=function(e,t,n,r){var i=this.$cursorLayer.getPixelPosition({row:e,column:0}),s=i.top;t&&(s-=this.$size.scrollerHeight/2);var o=this.scrollTop;this.session.setScrollTop(s),n!==!1&&this.animateScrolling(o,r)},this.animateScrolling=function(e,t){var n=this.scrollTop;if(!this.$animatedScroll)return;var r=this;if(e==n)return;if(this.$scrollAnimation){var i=this.$scrollAnimation.steps;if(i.length){e=i[0];if(e==n)return}}var s=r.$calcSteps(e,n);this.$scrollAnimation={from:e,to:n,steps:s},clearInterval(this.$timer),r.session.setScrollTop(s.shift()),r.session.$scrollTop=n,this.$timer=setInterval(function(){s.length?(r.session.setScrollTop(s.shift()),r.session.$scrollTop=n):n!=null?(r.session.$scrollTop=-1,r.session.setScrollTop(n),n=null):(r.$timer=clearInterval(r.$timer),r.$scrollAnimation=null,t&&t())},10)},this.scrollToY=function(e){this.scrollTop!==e&&(this.$loop.schedule(this.CHANGE_SCROLL),this.scrollTop=e)},this.scrollToX=function(e){this.scrollLeft!==e&&(this.scrollLeft=e),this.$loop.schedule(this.CHANGE_H_SCROLL)},this.scrollTo=function(e,t){this.session.setScrollTop(t),this.session.setScrollLeft(t)},this.scrollBy=function(e,t){t&&this.session.setScrollTop(this.session.getScrollTop()+t),e&&this.session.setScrollLeft(this.session.getScrollLeft()+e)},this.isScrollableBy=function(e,t){if(t<0&&this.session.getScrollTop()>=1-this.scrollMargin.top)return!0;if(t>0&&this.session.getScrollTop()+this.$size.scrollerHeight-this.layerConfig.maxHeight<-1+this.scrollMargin.bottom)return!0;if(e<0&&this.session.getScrollLeft()>=1-this.scrollMargin.left)return!0;if(e>0&&this.session.getScrollLeft()+this.$size.scrollerWidth-this.layerConfig.width<-1+this.scrollMargin.right)return!0},this.pixelToScreenCoordinates=function(e,t){var n=this.scroller.getBoundingClientRect(),r=e+this.scrollLeft-n.left-this.$padding,i=r/this.characterWidth,s=Math.floor((t+this.scrollTop-n.top)/this.lineHeight),o=Math.round(i);return{row:s,column:o,side:i-o>0?1:-1,offsetX:r}},this.screenToTextCoordinates=function(e,t){var n=this.scroller.getBoundingClientRect(),r=e+this.scrollLeft-n.left-this.$padding,i=Math.round(r/this.characterWidth),s=(t+this.scrollTop-n.top)/this.lineHeight;return this.session.screenToDocumentPosition(s,Math.max(i,0),r)},this.textToScreenCoordinates=function(e,t){var n=this.scroller.getBoundingClientRect(),r=this.session.documentToScreenPosition(e,t),i=this.$padding+(this.session.$bidiHandler.isBidiRow(r.row,e)?this.session.$bidiHandler.getPosLeft(r.column):Math.round(r.column*this.characterWidth)),s=r.row*this.lineHeight;return{pageX:n.left+i-this.scrollLeft,pageY:n.top+s-this.scrollTop}},this.visualizeFocus=function(){i.addCssClass(this.container,"ace_focus")},this.visualizeBlur=function(){i.removeCssClass(this.container,"ace_focus")},this.showComposition=function(e){this.$composition||(this.$composition={keepTextAreaAtCursor:this.$keepTextAreaAtCursor,cssText:this.textarea.style.cssText}),this.$keepTextAreaAtCursor=!0,i.addCssClass(this.textarea,"ace_composition"),this.textarea.style.cssText="",this.$moveTextAreaToCursor()},this.setCompositionText=function(e){this.$moveTextAreaToCursor()},this.hideComposition=function(){if(!this.$composition)return;i.removeCssClass(this.textarea,"ace_composition"),this.$keepTextAreaAtCursor=this.$composition.keepTextAreaAtCursor,this.textarea.style.cssText=this.$composition.cssText,this.$composition=null},this.setTheme=function(e,t){function o(r){if(n.$themeId!=e)return t&&t();if(!r||!r.cssClass)throw new Error("couldn't load module "+e+" or it didn't call define");i.importCssString(r.cssText,r.cssClass,n.container.ownerDocument),n.theme&&i.removeCssClass(n.container,n.theme.cssClass);var s="padding"in r?r.padding:"padding"in(n.theme||{})?4:n.$padding;n.$padding&&s!=n.$padding&&n.setPadding(s),n.$theme=r.cssClass,n.theme=r,i.addCssClass(n.container,r.cssClass),i.setCssClass(n.container,"ace_dark",r.isDark),n.$size&&(n.$size.width=0,n.$updateSizeAsync()),n._dispatchEvent("themeLoaded",{theme:r}),t&&t()}var n=this;this.$themeId=e,n._dispatchEvent("themeChange",{theme:e});if(!e||typeof e=="string"){var r=e||this.$options.theme.initialValue;s.loadModule(["theme",r],o)}else o(e)},this.getTheme=function(){return this.$themeId},this.setStyle=function(e,t){i.setCssClass(this.container,e,t!==!1)},this.unsetStyle=function(e){i.removeCssClass(this.container,e)},this.setCursorStyle=function(e){this.scroller.style.cursor!=e&&(this.scroller.style.cursor=e)},this.setMouseCursor=function(e){this.scroller.style.cursor=e},this.destroy=function(){this.$textLayer.destroy(),this.$cursorLayer.destroy()}}).call(g.prototype),s.defineOptions(g.prototype,"renderer",{animatedScroll:{initialValue:!1},showInvisibles:{set:function(e){this.$textLayer.setShowInvisibles(e)&&this.$loop.schedule(this.CHANGE_TEXT)},initialValue:!1},showPrintMargin:{set:function(){this.$updatePrintMargin()},initialValue:!0},printMarginColumn:{set:function(){this.$updatePrintMargin()},initialValue:80},printMargin:{set:function(e){typeof e=="number"&&(this.$printMarginColumn=e),this.$showPrintMargin=!!e,this.$updatePrintMargin()},get:function(){return this.$showPrintMargin&&this.$printMarginColumn}},showGutter:{set:function(e){this.$gutter.style.display=e?"block":"none",this.$loop.schedule(this.CHANGE_FULL),this.onGutterResize()},initialValue:!0},fadeFoldWidgets:{set:function(e){i.setCssClass(this.$gutter,"ace_fade-fold-widgets",e)},initialValue:!1},showFoldWidgets:{set:function(e){this.$gutterLayer.setShowFoldWidgets(e)},initialValue:!0},showLineNumbers:{set:function(e){this.$gutterLayer.setShowLineNumbers(e),this.$loop.schedule(this.CHANGE_GUTTER)},initialValue:!0},displayIndentGuides:{set:function(e){this.$textLayer.setDisplayIndentGuides(e)&&this.$loop.schedule(this.CHANGE_TEXT)},initialValue:!0},highlightGutterLine:{set:function(e){if(!this.$gutterLineHighlight){this.$gutterLineHighlight=i.createElement("div"),this.$gutterLineHighlight.className="ace_gutter-active-line",this.$gutter.appendChild(this.$gutterLineHighlight);return}this.$gutterLineHighlight.style.display=e?"":"none",this.$cursorLayer.$pixelPos&&this.$updateGutterLineHighlight()},initialValue:!1,value:!0},hScrollBarAlwaysVisible:{set:function(e){(!this.$hScrollBarAlwaysVisible||!this.$horizScroll)&&this.$loop.schedule(this.CHANGE_SCROLL)},initialValue:!1},vScrollBarAlwaysVisible:{set:function(e){(!this.$vScrollBarAlwaysVisible||!this.$vScroll)&&this.$loop.schedule(this.CHANGE_SCROLL)},initialValue:!1},fontSize:{set:function(e){typeof e=="number"&&(e+="px"),this.container.style.fontSize=e,this.updateFontSize()},initialValue:12},fontFamily:{set:function(e){this.container.style.fontFamily=e,this.updateFontSize()}},maxLines:{set:function(e){this.updateFull()}},minLines:{set:function(e){this.updateFull()}},maxPixelHeight:{set:function(e){this.updateFull()},initialValue:0},scrollPastEnd:{set:function(e){e=+e||0;if(this.$scrollPastEnd==e)return;this.$scrollPastEnd=e,this.$loop.schedule(this.CHANGE_SCROLL)},initialValue:0,handlesSet:!0},fixedWidthGutter:{set:function(e){this.$gutterLayer.$fixedWidth=!!e,this.$loop.schedule(this.CHANGE_GUTTER)}},theme:{set:function(e){this.setTheme(e)},get:function(){return this.$themeId||this.theme},initialValue:"./theme/textmate",handlesSet:!0}}),t.VirtualRenderer=g}),define("ace/worker/worker_client",["require","exports","module","ace/lib/oop","ace/lib/net","ace/lib/event_emitter","ace/config"],function(e,t,n){"use strict";function u(e){var t="importScripts('"+i.qualifyURL(e)+"');";try{return new Blob([t],{type:"application/javascript"})}catch(n){var r=window.BlobBuilder||window.WebKitBlobBuilder||window.MozBlobBuilder,s=new r;return s.append(t),s.getBlob("application/javascript")}}function a(e){var t=u(e),n=window.URL||window.webkitURL,r=n.createObjectURL(t);return new Worker(r)}var r=e("../lib/oop"),i=e("../lib/net"),s=e("../lib/event_emitter").EventEmitter,o=e("../config"),f=function(t,n,r,i,s){this.$sendDeltaQueue=this.$sendDeltaQueue.bind(this),this.changeListener=this.changeListener.bind(this),this.onMessage=this.onMessage.bind(this),e.nameToUrl&&!e.toUrl&&(e.toUrl=e.nameToUrl);if(o.get("packaged")||!e.toUrl)i=i||o.moduleUrl(n,"worker");else{var u=this.$normalizePath;i=i||u(e.toUrl("ace/worker/worker.js",null,"_"));var f={};t.forEach(function(t){f[t]=u(e.toUrl(t,null,"_").replace(/(\.js)?(\?.*)?$/,""))})}this.$worker=a(i),s&&this.send("importScripts",s),this.$worker.postMessage({init:!0,tlns:f,module:n,classname:r}),this.callbackId=1,this.callbacks={},this.$worker.onmessage=this.onMessage};(function(){r.implement(this,s),this.onMessage=function(e){var t=e.data;switch(t.type){case"event":this._signal(t.name,{data:t.data});break;case"call":var n=this.callbacks[t.id];n&&(n(t.data),delete this.callbacks[t.id]);break;case"error":this.reportError(t.data);break;case"log":window.console&&console.log&&console.log.apply(console,t.data)}},this.reportError=function(e){window.console&&console.error&&console.error(e)},this.$normalizePath=function(e){return i.qualifyURL(e)},this.terminate=function(){this._signal("terminate",{}),this.deltaQueue=null,this.$worker.terminate(),this.$worker=null,this.$doc&&this.$doc.off("change",this.changeListener),this.$doc=null},this.send=function(e,t){this.$worker.postMessage({command:e,args:t})},this.call=function(e,t,n){if(n){var r=this.callbackId++;this.callbacks[r]=n,t.push(r)}this.send(e,t)},this.emit=function(e,t){try{this.$worker.postMessage({event:e,data:{data:t.data}})}catch(n){console.error(n.stack)}},this.attachToDocument=function(e){this.$doc&&this.terminate(),this.$doc=e,this.call("setValue",[e.getValue()]),e.on("change",this.changeListener)},this.changeListener=function(e){this.deltaQueue||(this.deltaQueue=[],setTimeout(this.$sendDeltaQueue,0)),e.action=="insert"?this.deltaQueue.push(e.start,e.lines):this.deltaQueue.push(e.start,e.end)},this.$sendDeltaQueue=function(){var e=this.deltaQueue;if(!e)return;this.deltaQueue=null,e.length>50&&e.length>this.$doc.getLength()>>1?this.call("setValue",[this.$doc.getValue()]):this.emit("change",{data:e})}}).call(f.prototype);var l=function(e,t,n){this.$sendDeltaQueue=this.$sendDeltaQueue.bind(this),this.changeListener=this.changeListener.bind(this),this.callbackId=1,this.callbacks={},this.messageBuffer=[];var r=null,i=!1,u=Object.create(s),a=this;this.$worker={},this.$worker.terminate=function(){},this.$worker.postMessage=function(e){a.messageBuffer.push(e),r&&(i?setTimeout(f):f())},this.setEmitSync=function(e){i=e};var f=function(){var e=a.messageBuffer.shift();e.command?r[e.command].apply(r,e.args):e.event&&u._signal(e.event,e.data)};u.postMessage=function(e){a.onMessage({data:e})},u.callback=function(e,t){this.postMessage({type:"call",id:t,data:e})},u.emit=function(e,t){this.postMessage({type:"event",name:e,data:t})},o.loadModule(["worker",t],function(e){r=new e[n](u);while(a.messageBuffer.length)f()})};l.prototype=f.prototype,t.UIWorkerClient=l,t.WorkerClient=f,t.createWorker=a}),define("ace/placeholder",["require","exports","module","ace/range","ace/lib/event_emitter","ace/lib/oop"],function(e,t,n){"use strict";var r=e("./range").Range,i=e("./lib/event_emitter").EventEmitter,s=e("./lib/oop"),o=function(e,t,n,r,i,s){var o=this;this.length=t,this.session=e,this.doc=e.getDocument(),this.mainClass=i,this.othersClass=s,this.$onUpdate=this.onUpdate.bind(this),this.doc.on("change",this.$onUpdate),this.$others=r,this.$onCursorChange=function(){setTimeout(function(){o.onCursorChange()})},this.$pos=n;var u=e.getUndoManager().$undoStack||e.getUndoManager().$undostack||{length:-1};this.$undoStackDepth=u.length,this.setup(),e.selection.on("changeCursor",this.$onCursorChange)};(function(){s.implement(this,i),this.setup=function(){var e=this,t=this.doc,n=this.session;this.selectionBefore=n.selection.toJSON(),n.selection.inMultiSelectMode&&n.selection.toSingleRange(),this.pos=t.createAnchor(this.$pos.row,this.$pos.column);var i=this.pos;i.$insertRight=!0,i.detach(),i.markerId=n.addMarker(new r(i.row,i.column,i.row,i.column+this.length),this.mainClass,null,!1),this.others=[],this.$others.forEach(function(n){var r=t.createAnchor(n.row,n.column);r.$insertRight=!0,r.detach(),e.others.push(r)}),n.setUndoSelect(!1)},this.showOtherMarkers=function(){if(this.othersActive)return;var e=this.session,t=this;this.othersActive=!0,this.others.forEach(function(n){n.markerId=e.addMarker(new r(n.row,n.column,n.row,n.column+t.length),t.othersClass,null,!1)})},this.hideOtherMarkers=function(){if(!this.othersActive)return;this.othersActive=!1;for(var e=0;e<this.others.length;e++)this.session.removeMarker(this.others[e].markerId)},this.onUpdate=function(e){if(this.$updating)return this.updateAnchors(e);var t=e;if(t.start.row!==t.end.row)return;if(t.start.row!==this.pos.row)return;this.$updating=!0;var n=e.action==="insert"?t.end.column-t.start.column:t.start.column-t.end.column,i=t.start.column>=this.pos.column&&t.start.column<=this.pos.column+this.length+1,s=t.start.column-this.pos.column;this.updateAnchors(e),i&&(this.length+=n);if(i&&!this.session.$fromUndo)if(e.action==="insert")for(var o=this.others.length-1;o>=0;o--){var u=this.others[o],a={row:u.row,column:u.column+s};this.doc.insertMergedLines(a,e.lines)}else if(e.action==="remove")for(var o=this.others.length-1;o>=0;o--){var u=this.others[o],a={row:u.row,column:u.column+s};this.doc.remove(new r(a.row,a.column,a.row,a.column-n))}this.$updating=!1,this.updateMarkers()},this.updateAnchors=function(e){this.pos.onChange(e);for(var t=this.others.length;t--;)this.others[t].onChange(e);this.updateMarkers()},this.updateMarkers=function(){if(this.$updating)return;var e=this,t=this.session,n=function(n,i){t.removeMarker(n.markerId),n.markerId=t.addMarker(new r(n.row,n.column,n.row,n.column+e.length),i,null,!1)};n(this.pos,this.mainClass);for(var i=this.others.length;i--;)n(this.others[i],this.othersClass)},this.onCursorChange=function(e){if(this.$updating||!this.session)return;var t=this.session.selection.getCursor();t.row===this.pos.row&&t.column>=this.pos.column&&t.column<=this.pos.column+this.length?(this.showOtherMarkers(),this._emit("cursorEnter",e)):(this.hideOtherMarkers(),this._emit("cursorLeave",e))},this.detach=function(){this.session.removeMarker(this.pos&&this.pos.markerId),this.hideOtherMarkers(),this.doc.removeEventListener("change",this.$onUpdate),this.session.selection.removeEventListener("changeCursor",this.$onCursorChange),this.session.setUndoSelect(!0),this.session=null},this.cancel=function(){if(this.$undoStackDepth===-1)return;var e=this.session.getUndoManager(),t=(e.$undoStack||e.$undostack).length-this.$undoStackDepth;for(var n=0;n<t;n++)e.undo(!0);this.selectionBefore&&this.session.selection.fromJSON(this.selectionBefore)}}).call(o.prototype),t.PlaceHolder=o}),define("ace/mouse/multi_select_handler",["require","exports","module","ace/lib/event","ace/lib/useragent"],function(e,t,n){function s(e,t){return e.row==t.row&&e.column==t.column}function o(e){var t=e.domEvent,n=t.altKey,o=t.shiftKey,u=t.ctrlKey,a=e.getAccelKey(),f=e.getButton();u&&i.isMac&&(f=t.button);if(e.editor.inMultiSelectMode&&f==2){e.editor.textInput.onContextMenu(e.domEvent);return}if(!u&&!n&&!a){f===0&&e.editor.inMultiSelectMode&&e.editor.exitMultiSelectMode();return}if(f!==0)return;var l=e.editor,c=l.selection,h=l.inMultiSelectMode,p=e.getDocumentPosition(),d=c.getCursor(),v=e.inSelection()||c.isEmpty()&&s(p,d),m=e.x,g=e.y,y=function(e){m=e.clientX,g=e.clientY},b=l.session,w=l.renderer.pixelToScreenCoordinates(m,g),E=w,S;if(l.$mouseHandler.$enableJumpToDef)u&&n||a&&n?S=o?"block":"add":n&&l.$blockSelectEnabled&&(S="block");else if(a&&!n){S="add";if(!h&&o)return}else n&&l.$blockSelectEnabled&&(S="block");S&&i.isMac&&t.ctrlKey&&l.$mouseHandler.cancelContextMenu();if(S=="add"){if(!h&&v)return;if(!h){var x=c.toOrientedRange();l.addSelectionMarker(x)}var T=c.rangeList.rangeAtPoint(p);l.$blockScrolling++,l.inVirtualSelectionMode=!0,o&&(T=null,x=c.ranges[0]||x,l.removeSelectionMarker(x)),l.once("mouseup",function(){var e=c.toOrientedRange();T&&e.isEmpty()&&s(T.cursor,e.cursor)?c.substractPoint(e.cursor):(o?c.substractPoint(x.cursor):x&&(l.removeSelectionMarker(x),c.addRange(x)),c.addRange(e)),l.$blockScrolling--,l.inVirtualSelectionMode=!1})}else if(S=="block"){e.stop(),l.inVirtualSelectionMode=!0;var N,C=[],k=function(){var e=l.renderer.pixelToScreenCoordinates(m,g),t=b.screenToDocumentPosition(e.row,e.column,e.offsetX);if(s(E,e)&&s(t,c.lead))return;E=e,l.$blockScrolling++,l.selection.moveToPosition(t),l.renderer.scrollCursorIntoView(),l.removeSelectionMarkers(C),C=c.rectangularRangeBlock(E,w),l.$mouseHandler.$clickSelection&&C.length==1&&C[0].isEmpty()&&(C[0]=l.$mouseHandler.$clickSelection.clone()),C.forEach(l.addSelectionMarker,l),l.updateSelectionMarkers(),l.$blockScrolling--};l.$blockScrolling++,h&&!a?c.toSingleRange():!h&&a&&(N=c.toOrientedRange(),l.addSelectionMarker(N)),o?w=b.documentToScreenPosition(c.lead):c.moveToPosition(p),l.$blockScrolling--,E={row:-1,column:-1};var L=function(e){clearInterval(O),l.removeSelectionMarkers(C),C.length||(C=[c.toOrientedRange()]),l.$blockScrolling++,N&&(l.removeSelectionMarker(N),c.toSingleRange(N));for(var t=0;t<C.length;t++)c.addRange(C[t]);l.inVirtualSelectionMode=!1,l.$mouseHandler.$clickSelection=null,l.$blockScrolling--},A=k;r.capture(l.container,y,L);var O=setInterval(function(){A()},20);return e.preventDefault()}}var r=e("../lib/event"),i=e("../lib/useragent");t.onMouseDown=o}),define("ace/commands/multi_select_commands",["require","exports","module","ace/keyboard/hash_handler"],function(e,t,n){t.defaultCommands=[{name:"addCursorAbove",exec:function(e){e.selectMoreLines(-1)},bindKey:{win:"Ctrl-Alt-Up",mac:"Ctrl-Alt-Up"},scrollIntoView:"cursor",readOnly:!0},{name:"addCursorBelow",exec:function(e){e.selectMoreLines(1)},bindKey:{win:"Ctrl-Alt-Down",mac:"Ctrl-Alt-Down"},scrollIntoView:"cursor",readOnly:!0},{name:"addCursorAboveSkipCurrent",exec:function(e){e.selectMoreLines(-1,!0)},bindKey:{win:"Ctrl-Alt-Shift-Up",mac:"Ctrl-Alt-Shift-Up"},scrollIntoView:"cursor",readOnly:!0},{name:"addCursorBelowSkipCurrent",exec:function(e){e.selectMoreLines(1,!0)},bindKey:{win:"Ctrl-Alt-Shift-Down",mac:"Ctrl-Alt-Shift-Down"},scrollIntoView:"cursor",readOnly:!0},{name:"selectMoreBefore",exec:function(e){e.selectMore(-1)},bindKey:{win:"Ctrl-Alt-Left",mac:"Ctrl-Alt-Left"},scrollIntoView:"cursor",readOnly:!0},{name:"selectMoreAfter",exec:function(e){e.selectMore(1)},bindKey:{win:"Ctrl-Alt-Right",mac:"Ctrl-Alt-Right"},scrollIntoView:"cursor",readOnly:!0},{name:"selectNextBefore",exec:function(e){e.selectMore(-1,!0)},bindKey:{win:"Ctrl-Alt-Shift-Left",mac:"Ctrl-Alt-Shift-Left"},scrollIntoView:"cursor",readOnly:!0},{name:"selectNextAfter",exec:function(e){e.selectMore(1,!0)},bindKey:{win:"Ctrl-Alt-Shift-Right",mac:"Ctrl-Alt-Shift-Right"},scrollIntoView:"cursor",readOnly:!0},{name:"splitIntoLines",exec:function(e){e.multiSelect.splitIntoLines()},bindKey:{win:"Ctrl-Alt-L",mac:"Ctrl-Alt-L"},readOnly:!0},{name:"alignCursors",exec:function(e){e.alignCursors()},bindKey:{win:"Ctrl-Alt-A",mac:"Ctrl-Alt-A"},scrollIntoView:"cursor"},{name:"findAll",exec:function(e){e.findAll()},bindKey:{win:"Ctrl-Alt-K",mac:"Ctrl-Alt-G"},scrollIntoView:"cursor",readOnly:!0}],t.multiSelectCommands=[{name:"singleSelection",bindKey:"esc",exec:function(e){e.exitMultiSelectMode()},scrollIntoView:"cursor",readOnly:!0,isAvailable:function(e){return e&&e.inMultiSelectMode}}];var r=e("../keyboard/hash_handler").HashHandler;t.keyboardHandler=new r(t.multiSelectCommands)}),define("ace/multi_select",["require","exports","module","ace/range_list","ace/range","ace/selection","ace/mouse/multi_select_handler","ace/lib/event","ace/lib/lang","ace/commands/multi_select_commands","ace/search","ace/edit_session","ace/editor","ace/config"],function(e,t,n){function h(e,t,n){return c.$options.wrap=!0,c.$options.needle=t,c.$options.backwards=n==-1,c.find(e)}function v(e,t){return e.row==t.row&&e.column==t.column}function m(e){if(e.$multiselectOnSessionChange)return;e.$onAddRange=e.$onAddRange.bind(e),e.$onRemoveRange=e.$onRemoveRange.bind(e),e.$onMultiSelect=e.$onMultiSelect.bind(e),e.$onSingleSelect=e.$onSingleSelect.bind(e),e.$multiselectOnSessionChange=t.onSessionChange.bind(e),e.$checkMultiselectChange=e.$checkMultiselectChange.bind(e),e.$multiselectOnSessionChange(e),e.on("changeSession",e.$multiselectOnSessionChange),e.on("mousedown",o),e.commands.addCommands(f.defaultCommands),g(e)}function g(e){function r(t){n&&(e.renderer.setMouseCursor(""),n=!1)}var t=e.textInput.getElement(),n=!1;u.addListener(t,"keydown",function(t){var i=t.keyCode==18&&!(t.ctrlKey||t.shiftKey||t.metaKey);e.$blockSelectEnabled&&i?n||(e.renderer.setMouseCursor("crosshair"),n=!0):n&&r()}),u.addListener(t,"keyup",r),u.addListener(t,"blur",r)}var r=e("./range_list").RangeList,i=e("./range").Range,s=e("./selection").Selection,o=e("./mouse/multi_select_handler").onMouseDown,u=e("./lib/event"),a=e("./lib/lang"),f=e("./commands/multi_select_commands");t.commands=f.defaultCommands.concat(f.multiSelectCommands);var l=e("./search").Search,c=new l,p=e("./edit_session").EditSession;(function(){this.getSelectionMarkers=function(){return this.$selectionMarkers}}).call(p.prototype),function(){this.ranges=null,this.rangeList=null,this.addRange=function(e,t){if(!e)return;if(!this.inMultiSelectMode&&this.rangeCount===0){var n=this.toOrientedRange();this.rangeList.add(n),this.rangeList.add(e);if(this.rangeList.ranges.length!=2)return this.rangeList.removeAll(),t||this.fromOrientedRange(e);this.rangeList.removeAll(),this.rangeList.add(n),this.$onAddRange(n)}e.cursor||(e.cursor=e.end);var r=this.rangeList.add(e);return this.$onAddRange(e),r.length&&this.$onRemoveRange(r),this.rangeCount>1&&!this.inMultiSelectMode&&(this._signal("multiSelect"),this.inMultiSelectMode=!0,this.session.$undoSelect=!1,this.rangeList.attach(this.session)),t||this.fromOrientedRange(e)},this.toSingleRange=function(e){e=e||this.ranges[0];var t=this.rangeList.removeAll();t.length&&this.$onRemoveRange(t),e&&this.fromOrientedRange(e)},this.substractPoint=function(e){var t=this.rangeList.substractPoint(e);if(t)return this.$onRemoveRange(t),t[0]},this.mergeOverlappingRanges=function(){var e=this.rangeList.merge();e.length?this.$onRemoveRange(e):this.ranges[0]&&this.fromOrientedRange(this.ranges[0])},this.$onAddRange=function(e){this.rangeCount=this.rangeList.ranges.length,this.ranges.unshift(e),this._signal("addRange",{range:e})},this.$onRemoveRange=function(e){this.rangeCount=this.rangeList.ranges.length;if(this.rangeCount==1&&this.inMultiSelectMode){var t=this.rangeList.ranges.pop();e.push(t),this.rangeCount=0}for(var n=e.length;n--;){var r=this.ranges.indexOf(e[n]);this.ranges.splice(r,1)}this._signal("removeRange",{ranges:e}),this.rangeCount===0&&this.inMultiSelectMode&&(this.inMultiSelectMode=!1,this._signal("singleSelect"),this.session.$undoSelect=!0,this.rangeList.detach(this.session)),t=t||this.ranges[0],t&&!t.isEqual(this.getRange())&&this.fromOrientedRange(t)},this.$initRangeList=function(){if(this.rangeList)return;this.rangeList=new r,this.ranges=[],this.rangeCount=0},this.getAllRanges=function(){return this.rangeCount?this.rangeList.ranges.concat():[this.getRange()]},this.splitIntoLines=function(){if(this.rangeCount>1){var e=this.rangeList.ranges,t=e[e.length-1],n=i.fromPoints(e[0].start,t.end);this.toSingleRange(),this.setSelectionRange(n,t.cursor==t.start)}else{var n=this.getRange(),r=this.isBackwards(),s=n.start.row,o=n.end.row;if(s==o){if(r)var u=n.end,a=n.start;else var u=n.start,a=n.end;this.addRange(i.fromPoints(a,a)),this.addRange(i.fromPoints(u,u));return}var f=[],l=this.getLineRange(s,!0);l.start.column=n.start.column,f.push(l);for(var c=s+1;c<o;c++)f.push(this.getLineRange(c,!0));l=this.getLineRange(o,!0),l.end.column=n.end.column,f.push(l),f.forEach(this.addRange,this)}},this.toggleBlockSelection=function(){if(this.rangeCount>1){var e=this.rangeList.ranges,t=e[e.length-1],n=i.fromPoints(e[0].start,t.end);this.toSingleRange(),this.setSelectionRange(n,t.cursor==t.start)}else{var r=this.session.documentToScreenPosition(this.selectionLead),s=this.session.documentToScreenPosition(this.selectionAnchor),o=this.rectangularRangeBlock(r,s);o.forEach(this.addRange,this)}},this.rectangularRangeBlock=function(e,t,n){var r=[],s=e.column<t.column;if(s)var o=e.column,u=t.column,a=e.offsetX,f=t.offsetX;else var o=t.column,u=e.column,a=t.offsetX,f=e.offsetX;var l=e.row<t.row;if(l)var c=e.row,h=t.row;else var c=t.row,h=e.row;o<0&&(o=0),c<0&&(c=0),c==h&&(n=!0);for(var p=c;p<=h;p++){var d=i.fromPoints(this.session.screenToDocumentPosition(p,o,a),this.session.screenToDocumentPosition(p,u,f));if(d.isEmpty()){if(m&&v(d.end,m))break;var m=d.end}d.cursor=s?d.start:d.end,r.push(d)}l&&r.reverse();if(!n){var g=r.length-1;while(r[g].isEmpty()&&g>0)g--;if(g>0){var y=0;while(r[y].isEmpty())y++}for(var b=g;b>=y;b--)r[b].isEmpty()&&r.splice(b,1)}return r}}.call(s.prototype);var d=e("./editor").Editor;(function(){this.updateSelectionMarkers=function(){this.renderer.updateCursor(),this.renderer.updateBackMarkers()},this.addSelectionMarker=function(e){e.cursor||(e.cursor=e.end);var t=this.getSelectionStyle();return e.marker=this.session.addMarker(e,"ace_selection",t),this.session.$selectionMarkers.push(e),this.session.selectionMarkerCount=this.session.$selectionMarkers.length,e},this.removeSelectionMarker=function(e){if(!e.marker)return;this.session.removeMarker(e.marker);var t=this.session.$selectionMarkers.indexOf(e);t!=-1&&this.session.$selectionMarkers.splice(t,1),this.session.selectionMarkerCount=this.session.$selectionMarkers.length},this.removeSelectionMarkers=function(e){var t=this.session.$selectionMarkers;for(var n=e.length;n--;){var r=e[n];if(!r.marker)continue;this.session.removeMarker(r.marker);var i=t.indexOf(r);i!=-1&&t.splice(i,1)}this.session.selectionMarkerCount=t.length},this.$onAddRange=function(e){this.addSelectionMarker(e.range),this.renderer.updateCursor(),this.renderer.updateBackMarkers()},this.$onRemoveRange=function(e){this.removeSelectionMarkers(e.ranges),this.renderer.updateCursor(),this.renderer.updateBackMarkers()},this.$onMultiSelect=function(e){if(this.inMultiSelectMode)return;this.inMultiSelectMode=!0,this.setStyle("ace_multiselect"),this.keyBinding.addKeyboardHandler(f.keyboardHandler),this.commands.setDefaultHandler("exec",this.$onMultiSelectExec),this.renderer.updateCursor(),this.renderer.updateBackMarkers()},this.$onSingleSelect=function(e){if(this.session.multiSelect.inVirtualMode)return;this.inMultiSelectMode=!1,this.unsetStyle("ace_multiselect"),this.keyBinding.removeKeyboardHandler(f.keyboardHandler),this.commands.removeDefaultHandler("exec",this.$onMultiSelectExec),this.renderer.updateCursor(),this.renderer.updateBackMarkers(),this._emit("changeSelection")},this.$onMultiSelectExec=function(e){var t=e.command,n=e.editor;if(!n.multiSelect)return;if(!t.multiSelectAction){var r=t.exec(n,e.args||{});n.multiSelect.addRange(n.multiSelect.toOrientedRange()),n.multiSelect.mergeOverlappingRanges()}else t.multiSelectAction=="forEach"?r=n.forEachSelection(t,e.args):t.multiSelectAction=="forEachLine"?r=n.forEachSelection(t,e.args,!0):t.multiSelectAction=="single"?(n.exitMultiSelectMode(),r=t.exec(n,e.args||{})):r=t.multiSelectAction(n,e.args||{});return r},this.forEachSelection=function(e,t,n){if(this.inVirtualSelectionMode)return;var r=n&&n.keepOrder,i=n==1||n&&n.$byLines,o=this.session,u=this.selection,a=u.rangeList,f=(r?u:a).ranges,l;if(!f.length)return e.exec?e.exec(this,t||{}):e(this,t||{});var c=u._eventRegistry;u._eventRegistry={};var h=new s(o);this.inVirtualSelectionMode=!0;for(var p=f.length;p--;){if(i)while(p>0&&f[p].start.row==f[p-1].end.row)p--;h.fromOrientedRange(f[p]),h.index=p,this.selection=o.selection=h;var d=e.exec?e.exec(this,t||{}):e(this,t||{});!l&&d!==undefined&&(l=d),h.toOrientedRange(f[p])}h.detach(),this.selection=o.selection=u,this.inVirtualSelectionMode=!1,u._eventRegistry=c,u.mergeOverlappingRanges();var v=this.renderer.$scrollAnimation;return this.onCursorChange(),this.onSelectionChange(),v&&v.from==v.to&&this.renderer.animateScrolling(v.from),l},this.exitMultiSelectMode=function(){if(!this.inMultiSelectMode||this.inVirtualSelectionMode)return;this.multiSelect.toSingleRange()},this.getSelectedText=function(){var e="";if(this.inMultiSelectMode&&!this.inVirtualSelectionMode){var t=this.multiSelect.rangeList.ranges,n=[];for(var r=0;r<t.length;r++)n.push(this.session.getTextRange(t[r]));var i=this.session.getDocument().getNewLineCharacter();e=n.join(i),e.length==(n.length-1)*i.length&&(e="")}else this.selection.isEmpty()||(e=this.session.getTextRange(this.getSelectionRange()));return e},this.$checkMultiselectChange=function(e,t){if(this.inMultiSelectMode&&!this.inVirtualSelectionMode){var n=this.multiSelect.ranges[0];if(this.multiSelect.isEmpty()&&t==this.multiSelect.anchor)return;var r=t==this.multiSelect.anchor?n.cursor==n.start?n.end:n.start:n.cursor;(r.row!=t.row||this.session.$clipPositionToDocument(r.row,r.column).column!=t.column)&&this.multiSelect.toSingleRange(this.multiSelect.toOrientedRange())}},this.findAll=function(e,t,n){t=t||{},t.needle=e||t.needle;if(t.needle==undefined){var r=this.selection.isEmpty()?this.selection.getWordRange():this.selection.getRange();t.needle=this.session.getTextRange(r)}this.$search.set(t);var i=this.$search.findAll(this.session);if(!i.length)return 0;this.$blockScrolling+=1;var s=this.multiSelect;n||s.toSingleRange(i[0]);for(var o=i.length;o--;)s.addRange(i[o],!0);return r&&s.rangeList.rangeAtPoint(r.start)&&s.addRange(r,!0),this.$blockScrolling-=1,i.length},this.selectMoreLines=function(e,t){var n=this.selection.toOrientedRange(),r=n.cursor==n.end,s=this.session.documentToScreenPosition(n.cursor);this.selection.$desiredColumn&&(s.column=this.selection.$desiredColumn);var o=this.session.screenToDocumentPosition(s.row+e,s.column);if(!n.isEmpty())var u=this.session.documentToScreenPosition(r?n.end:n.start),a=this.session.screenToDocumentPosition(u.row+e,u.column);else var a=o;if(r){var f=i.fromPoints(o,a);f.cursor=f.start}else{var f=i.fromPoints(a,o);f.cursor=f.end}f.desiredColumn=s.column;if(!this.selection.inMultiSelectMode)this.selection.addRange(n);else if(t)var l=n.cursor;this.selection.addRange(f),l&&this.selection.substractPoint(l)},this.transposeSelections=function(e){var t=this.session,n=t.multiSelect,r=n.ranges;for(var i=r.length;i--;){var s=r[i];if(s.isEmpty()){var o=t.getWordRange(s.start.row,s.start.column);s.start.row=o.start.row,s.start.column=o.start.column,s.end.row=o.end.row,s.end.column=o.end.column}}n.mergeOverlappingRanges();var u=[];for(var i=r.length;i--;){var s=r[i];u.unshift(t.getTextRange(s))}e<0?u.unshift(u.pop()):u.push(u.shift());for(var i=r.length;i--;){var s=r[i],o=s.clone();t.replace(s,u[i]),s.start.row=o.start.row,s.start.column=o.start.column}},this.selectMore=function(e,t,n){var r=this.session,i=r.multiSelect,s=i.toOrientedRange();if(s.isEmpty()){s=r.getWordRange(s.start.row,s.start.column),s.cursor=e==-1?s.start:s.end,this.multiSelect.addRange(s);if(n)return}var o=r.getTextRange(s),u=h(r,o,e);u&&(u.cursor=e==-1?u.start:u.end,this.$blockScrolling+=1,this.session.unfold(u),this.multiSelect.addRange(u),this.$blockScrolling-=1,this.renderer.scrollCursorIntoView(null,.5)),t&&this.multiSelect.substractPoint(s.cursor)},this.alignCursors=function(){var e=this.session,t=e.multiSelect,n=t.ranges,r=-1,s=n.filter(function(e){if(e.cursor.row==r)return!0;r=e.cursor.row});if(!n.length||s.length==n.length-1){var o=this.selection.getRange(),u=o.start.row,f=o.end.row,l=u==f;if(l){var c=this.session.getLength(),h;do h=this.session.getLine(f);while(/[=:]/.test(h)&&++f<c);do h=this.session.getLine(u);while(/[=:]/.test(h)&&--u>0);u<0&&(u=0),f>=c&&(f=c-1)}var p=this.session.removeFullLines(u,f);p=this.$reAlignText(p,l),this.session.insert({row:u,column:0},p.join("\n")+"\n"),l||(o.start.column=0,o.end.column=p[p.length-1].length),this.selection.setRange(o)}else{s.forEach(function(e){t.substractPoint(e.cursor)});var d=0,v=Infinity,m=n.map(function(t){var n=t.cursor,r=e.getLine(n.row),i=r.substr(n.column).search(/\S/g);return i==-1&&(i=0),n.column>d&&(d=n.column),i<v&&(v=i),i});n.forEach(function(t,n){var r=t.cursor,s=d-r.column,o=m[n]-v;s>o?e.insert(r,a.stringRepeat(" ",s-o)):e.remove(new i(r.row,r.column,r.row,r.column-s+o)),t.start.column=t.end.column=d,t.start.row=t.end.row=r.row,t.cursor=t.end}),t.fromOrientedRange(n[0]),this.renderer.updateCursor(),this.renderer.updateBackMarkers()}},this.$reAlignText=function(e,t){function u(e){return a.stringRepeat(" ",e)}function f(e){return e[2]?u(i)+e[2]+u(s-e[2].length+o)+e[4].replace(/^([=:])\s+/,"$1 "):e[0]}function l(e){return e[2]?u(i+s-e[2].length)+e[2]+u(o," ")+e[4].replace(/^([=:])\s+/,"$1 "):e[0]}function c(e){return e[2]?u(i)+e[2]+u(o)+e[4].replace(/^([=:])\s+/,"$1 "):e[0]}var n=!0,r=!0,i,s,o;return e.map(function(e){var t=e.match(/(\s*)(.*?)(\s*)([=:].*)/);return t?i==null?(i=t[1].length,s=t[2].length,o=t[3].length,t):(i+s+o!=t[1].length+t[2].length+t[3].length&&(r=!1),i!=t[1].length&&(n=!1),i>t[1].length&&(i=t[1].length),s<t[2].length&&(s=t[2].length),o>t[3].length&&(o=t[3].length),t):[e]}).map(t?f:n?r?l:f:c)}}).call(d.prototype),t.onSessionChange=function(e){var t=e.session;t&&!t.multiSelect&&(t.$selectionMarkers=[],t.selection.$initRangeList(),t.multiSelect=t.selection),this.multiSelect=t&&t.multiSelect;var n=e.oldSession;n&&(n.multiSelect.off("addRange",this.$onAddRange),n.multiSelect.off("removeRange",this.$onRemoveRange),n.multiSelect.off("multiSelect",this.$onMultiSelect),n.multiSelect.off("singleSelect",this.$onSingleSelect),n.multiSelect.lead.off("change",this.$checkMultiselectChange),n.multiSelect.anchor.off("change",this.$checkMultiselectChange)),t&&(t.multiSelect.on("addRange",this.$onAddRange),t.multiSelect.on("removeRange",this.$onRemoveRange),t.multiSelect.on("multiSelect",this.$onMultiSelect),t.multiSelect.on("singleSelect",this.$onSingleSelect),t.multiSelect.lead.on("change",this.$checkMultiselectChange),t.multiSelect.anchor.on("change",this.$checkMultiselectChange)),t&&this.inMultiSelectMode!=t.selection.inMultiSelectMode&&(t.selection.inMultiSelectMode?this.$onMultiSelect():this.$onSingleSelect())},t.MultiSelect=m,e("./config").defineOptions(d.prototype,"editor",{enableMultiselect:{set:function(e){m(this),e?(this.on("changeSession",this.$multiselectOnSessionChange),this.on("mousedown",o)):(this.off("changeSession",this.$multiselectOnSessionChange),this.off("mousedown",o))},value:!0},enableBlockSelect:{set:function(e){this.$blockSelectEnabled=e},value:!0}})}),define("ace/mode/folding/fold_mode",["require","exports","module","ace/range"],function(e,t,n){"use strict";var r=e("../../range").Range,i=t.FoldMode=function(){};(function(){this.foldingStartMarker=null,this.foldingStopMarker=null,this.getFoldWidget=function(e,t,n){var r=e.getLine(n);return this.foldingStartMarker.test(r)?"start":t=="markbeginend"&&this.foldingStopMarker&&this.foldingStopMarker.test(r)?"end":""},this.getFoldWidgetRange=function(e,t,n){return null},this.indentationBlock=function(e,t,n){var i=/\S/,s=e.getLine(t),o=s.search(i);if(o==-1)return;var u=n||s.length,a=e.getLength(),f=t,l=t;while(++t<a){var c=e.getLine(t).search(i);if(c==-1)continue;if(c<=o)break;l=t}if(l>f){var h=e.getLine(l).length;return new r(f,u,l,h)}},this.openingBracketBlock=function(e,t,n,i,s){var o={row:n,column:i+1},u=e.$findClosingBracket(t,o,s);if(!u)return;var a=e.foldWidgets[u.row];return a==null&&(a=e.getFoldWidget(u.row)),a=="start"&&u.row>o.row&&(u.row--,u.column=e.getLine(u.row).length),r.fromPoints(o,u)},this.closingBracketBlock=function(e,t,n,i,s){var o={row:n,column:i},u=e.$findOpeningBracket(t,o);if(!u)return;return u.column++,o.column--,r.fromPoints(u,o)}}).call(i.prototype)}),define("ace/theme/textmate",["require","exports","module","ace/lib/dom"],function(e,t,n){"use strict";t.isDark=!1,t.cssClass="ace-tm",t.cssText='.ace-tm .ace_gutter {background: #f0f0f0;color: #333;}.ace-tm .ace_print-margin {width: 1px;background: #e8e8e8;}.ace-tm .ace_fold {background-color: #6B72E6;}.ace-tm {background-color: #FFFFFF;color: black;}.ace-tm .ace_cursor {color: black;}.ace-tm .ace_invisible {color: rgb(191, 191, 191);}.ace-tm .ace_storage,.ace-tm .ace_keyword {color: blue;}.ace-tm .ace_constant {color: rgb(197, 6, 11);}.ace-tm .ace_constant.ace_buildin {color: rgb(88, 72, 246);}.ace-tm .ace_constant.ace_language {color: rgb(88, 92, 246);}.ace-tm .ace_constant.ace_library {color: rgb(6, 150, 14);}.ace-tm .ace_invalid {background-color: rgba(255, 0, 0, 0.1);color: red;}.ace-tm .ace_support.ace_function {color: rgb(60, 76, 114);}.ace-tm .ace_support.ace_constant {color: rgb(6, 150, 14);}.ace-tm .ace_support.ace_type,.ace-tm .ace_support.ace_class {color: rgb(109, 121, 222);}.ace-tm .ace_keyword.ace_operator {color: rgb(104, 118, 135);}.ace-tm .ace_string {color: rgb(3, 106, 7);}.ace-tm .ace_comment {color: rgb(76, 136, 107);}.ace-tm .ace_comment.ace_doc {color: rgb(0, 102, 255);}.ace-tm .ace_comment.ace_doc.ace_tag {color: rgb(128, 159, 191);}.ace-tm .ace_constant.ace_numeric {color: rgb(0, 0, 205);}.ace-tm .ace_variable {color: rgb(49, 132, 149);}.ace-tm .ace_xml-pe {color: rgb(104, 104, 91);}.ace-tm .ace_entity.ace_name.ace_function {color: #0000A2;}.ace-tm .ace_heading {color: rgb(12, 7, 255);}.ace-tm .ace_list {color:rgb(185, 6, 144);}.ace-tm .ace_meta.ace_tag {color:rgb(0, 22, 142);}.ace-tm .ace_string.ace_regex {color: rgb(255, 0, 0)}.ace-tm .ace_marker-layer .ace_selection {background: rgb(181, 213, 255);}.ace-tm.ace_multiselect .ace_selection.ace_start {box-shadow: 0 0 3px 0px white;}.ace-tm .ace_marker-layer .ace_step {background: rgb(252, 255, 0);}.ace-tm .ace_marker-layer .ace_stack {background: rgb(164, 229, 101);}.ace-tm .ace_marker-layer .ace_bracket {margin: -1px 0 0 -1px;border: 1px solid rgb(192, 192, 192);}.ace-tm .ace_marker-layer .ace_active-line {background: rgba(0, 0, 0, 0.07);}.ace-tm .ace_gutter-active-line {background-color : #dcdcdc;}.ace-tm .ace_marker-layer .ace_selected-word {background: rgb(250, 250, 255);border: 1px solid rgb(200, 200, 250);}.ace-tm .ace_indent-guide {background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAE0lEQVQImWP4////f4bLly//BwAmVgd1/w11/gAAAABJRU5ErkJggg==") right repeat-y;}';var r=e("../lib/dom");r.importCssString(t.cssText,t.cssClass)}),define("ace/line_widgets",["require","exports","module","ace/lib/oop","ace/lib/dom","ace/range"],function(e,t,n){"use strict";function o(e){this.session=e,this.session.widgetManager=this,this.session.getRowLength=this.getRowLength,this.session.$getWidgetScreenLength=this.$getWidgetScreenLength,this.updateOnChange=this.updateOnChange.bind(this),this.renderWidgets=this.renderWidgets.bind(this),this.measureWidgets=this.measureWidgets.bind(this),this.session._changedWidgets=[],this.$onChangeEditor=this.$onChangeEditor.bind(this),this.session.on("change",this.updateOnChange),this.session.on("changeFold",this.updateOnFold),this.session.on("changeEditor",this.$onChangeEditor)}var r=e("./lib/oop"),i=e("./lib/dom"),s=e("./range").Range;(function(){this.getRowLength=function(e){var t;return this.lineWidgets?t=this.lineWidgets[e]&&this.lineWidgets[e].rowCount||0:t=0,!this.$useWrapMode||!this.$wrapData[e]?1+t:this.$wrapData[e].length+1+t},this.$getWidgetScreenLength=function(){var e=0;return this.lineWidgets.forEach(function(t){t&&t.rowCount&&!t.hidden&&(e+=t.rowCount)}),e},this.$onChangeEditor=function(e){this.attach(e.editor)},this.attach=function(e){e&&e.widgetManager&&e.widgetManager!=this&&e.widgetManager.detach();if(this.editor==e)return;this.detach(),this.editor=e,e&&(e.widgetManager=this,e.renderer.on("beforeRender",this.measureWidgets),e.renderer.on("afterRender",this.renderWidgets))},this.detach=function(e){var t=this.editor;if(!t)return;this.editor=null,t.widgetManager=null,t.renderer.off("beforeRender",this.measureWidgets),t.renderer.off("afterRender",this.renderWidgets);var n=this.session.lineWidgets;n&&n.forEach(function(e){e&&e.el&&e.el.parentNode&&(e._inDocument=!1,e.el.parentNode.removeChild(e.el))})},this.updateOnFold=function(e,t){var n=t.lineWidgets;if(!n||!e.action)return;var r=e.data,i=r.start.row,s=r.end.row,o=e.action=="add";for(var u=i+1;u<s;u++)n[u]&&(n[u].hidden=o);n[s]&&(o?n[i]?n[s].hidden=o:n[i]=n[s]:(n[i]==n[s]&&(n[i]=undefined),n[s].hidden=o))},this.updateOnChange=function(e){var t=this.session.lineWidgets;if(!t)return;var n=e.start.row,r=e.end.row-n;if(r!==0)if(e.action=="remove"){var i=t.splice(n+1,r);i.forEach(function(e){e&&this.removeLineWidget(e)},this),this.$updateRows()}else{var s=new Array(r);s.unshift(n,0),t.splice.apply(t,s),this.$updateRows()}},this.$updateRows=function(){var e=this.session.lineWidgets;if(!e)return;var t=!0;e.forEach(function(e,n){if(e){t=!1,e.row=n;while(e.$oldWidget)e.$oldWidget.row=n,e=e.$oldWidget}}),t&&(this.session.lineWidgets=null)},this.addLineWidget=function(e){this.session.lineWidgets||(this.session.lineWidgets=new Array(this.session.getLength()));var t=this.session.lineWidgets[e.row];t&&(e.$oldWidget=t,t.el&&t.el.parentNode&&(t.el.parentNode.removeChild(t.el),t._inDocument=!1)),this.session.lineWidgets[e.row]=e,e.session=this.session;var n=this.editor.renderer;e.html&&!e.el&&(e.el=i.createElement("div"),e.el.innerHTML=e.html),e.el&&(i.addCssClass(e.el,"ace_lineWidgetContainer"),e.el.style.position="absolute",e.el.style.zIndex=5,n.container.appendChild(e.el),e._inDocument=!0),e.coverGutter||(e.el.style.zIndex=3),e.pixelHeight==null&&(e.pixelHeight=e.el.offsetHeight),e.rowCount==null&&(e.rowCount=e.pixelHeight/n.layerConfig.lineHeight);var r=this.session.getFoldAt(e.row,0);e.$fold=r;if(r){var s=this.session.lineWidgets;e.row==r.end.row&&!s[r.start.row]?s[r.start.row]=e:e.hidden=!0}return this.session._emit("changeFold",{data:{start:{row:e.row}}}),this.$updateRows(),this.renderWidgets(null,n),this.onWidgetChanged(e),e},this.removeLineWidget=function(e){e._inDocument=!1,e.session=null,e.el&&e.el.parentNode&&e.el.parentNode.removeChild(e.el);if(e.editor&&e.editor.destroy)try{e.editor.destroy()}catch(t){}if(this.session.lineWidgets){var n=this.session.lineWidgets[e.row];if(n==e)this.session.lineWidgets[e.row]=e.$oldWidget,e.$oldWidget&&this.onWidgetChanged(e.$oldWidget);else while(n){if(n.$oldWidget==e){n.$oldWidget=e.$oldWidget;break}n=n.$oldWidget}}this.session._emit("changeFold",{data:{start:{row:e.row}}}),this.$updateRows()},this.getWidgetsAtRow=function(e){var t=this.session.lineWidgets,n=t&&t[e],r=[];while(n)r.push(n),n=n.$oldWidget;return r},this.onWidgetChanged=function(e){this.session._changedWidgets.push(e),this.editor&&this.editor.renderer.updateFull()},this.measureWidgets=function(e,t){var n=this.session._changedWidgets,r=t.layerConfig;if(!n||!n.length)return;var i=Infinity;for(var s=0;s<n.length;s++){var o=n[s];if(!o||!o.el)continue;if(o.session!=this.session)continue;if(!o._inDocument){if(this.session.lineWidgets[o.row]!=o)continue;o._inDocument=!0,t.container.appendChild(o.el)}o.h=o.el.offsetHeight,o.fixedWidth||(o.w=o.el.offsetWidth,o.screenWidth=Math.ceil(o.w/r.characterWidth));var u=o.h/r.lineHeight;o.coverLine&&(u-=this.session.getRowLineCount(o.row),u<0&&(u=0)),o.rowCount!=u&&(o.rowCount=u,o.row<i&&(i=o.row))}i!=Infinity&&(this.session._emit("changeFold",{data:{start:{row:i}}}),this.session.lineWidgetWidth=null),this.session._changedWidgets=[]},this.renderWidgets=function(e,t){var n=t.layerConfig,r=this.session.lineWidgets;if(!r)return;var i=Math.min(this.firstRow,n.firstRow),s=Math.max(this.lastRow,n.lastRow,r.length);while(i>0&&!r[i])i--;this.firstRow=n.firstRow,this.lastRow=n.lastRow,t.$cursorLayer.config=n;for(var o=i;o<=s;o++){var u=r[o];if(!u||!u.el)continue;if(u.hidden){u.el.style.top=-100-(u.pixelHeight||0)+"px";continue}u._inDocument||(u._inDocument=!0,t.container.appendChild(u.el));var a=t.$cursorLayer.getPixelPosition({row:o,column:0},!0).top;u.coverLine||(a+=n.lineHeight*this.session.getRowLineCount(u.row)),u.el.style.top=a-n.offset+"px";var f=u.coverGutter?0:t.gutterWidth;u.fixedWidth||(f-=t.scrollLeft),u.el.style.left=f+"px",u.fullWidth&&u.screenWidth&&(u.el.style.minWidth=n.width+2*n.padding+"px"),u.fixedWidth?u.el.style.right=t.scrollBar.getWidth()+"px":u.el.style.right=""}}}).call(o.prototype),t.LineWidgets=o}),define("ace/ext/error_marker",["require","exports","module","ace/line_widgets","ace/lib/dom","ace/range"],function(e,t,n){"use strict";function o(e,t,n){var r=0,i=e.length-1;while(r<=i){var s=r+i>>1,o=n(t,e[s]);if(o>0)r=s+1;else{if(!(o<0))return s;i=s-1}}return-(r+1)}function u(e,t,n){var r=e.getAnnotations().sort(s.comparePoints);if(!r.length)return;var i=o(r,{row:t,column:-1},s.comparePoints);i<0&&(i=-i-1),i>=r.length?i=n>0?0:r.length-1:i===0&&n<0&&(i=r.length-1);var u=r[i];if(!u||!n)return;if(u.row===t){do u=r[i+=n];while(u&&u.row===t);if(!u)return r.slice()}var a=[];t=u.row;do a[n<0?"unshift":"push"](u),u=r[i+=n];while(u&&u.row==t);return a.length&&a}var r=e("../line_widgets").LineWidgets,i=e("../lib/dom"),s=e("../range").Range;t.showErrorMarker=function(e,t){var n=e.session;n.widgetManager||(n.widgetManager=new r(n),n.widgetManager.attach(e));var s=e.getCursorPosition(),o=s.row,a=n.widgetManager.getWidgetsAtRow(o).filter(function(e){return e.type=="errorMarker"})[0];a?a.destroy():o-=t;var f=u(n,o,t),l;if(f){var c=f[0];s.column=(c.pos&&typeof c.column!="number"?c.pos.sc:c.column)||0,s.row=c.row,l=e.renderer.$gutterLayer.$annotations[s.row]}else{if(a)return;l={text:["Looks good!"],className:"ace_ok"}}e.session.unfold(s.row),e.selection.moveToPosition(s);var h={row:s.row,fixedWidth:!0,coverGutter:!0,el:i.createElement("div"),type:"errorMarker"},p=h.el.appendChild(i.createElement("div")),d=h.el.appendChild(i.createElement("div"));d.className="error_widget_arrow "+l.className;var v=e.renderer.$cursorLayer.getPixelPosition(s).left;d.style.left=v+e.renderer.gutterWidth-5+"px",h.el.className="error_widget_wrapper",p.className="error_widget "+l.className,p.innerHTML=l.text.join("<br>"),p.appendChild(i.createElement("div"));var m=function(e,t,n){if(t===0&&(n==="esc"||n==="return"))return h.destroy(),{command:"null"}};h.destroy=function(){if(e.$mouseHandler.isMousePressed)return;e.keyBinding.removeKeyboardHandler(m),n.widgetManager.removeLineWidget(h),e.off("changeSelection",h.destroy),e.off("changeSession",h.destroy),e.off("mouseup",h.destroy),e.off("change",h.destroy)},e.keyBinding.addKeyboardHandler(m),e.on("changeSelection",h.destroy),e.on("changeSession",h.destroy),e.on("mouseup",h.destroy),e.on("change",h.destroy),e.session.widgetManager.addLineWidget(h),h.el.onmousedown=e.focus.bind(e),e.renderer.scrollCursorIntoView(null,.5,{bottom:h.el.offsetHeight})},i.importCssString(" .error_widget_wrapper { background: inherit; color: inherit; border:none } .error_widget { border-top: solid 2px; border-bottom: solid 2px; margin: 5px 0; padding: 10px 40px; white-space: pre-wrap; } .error_widget.ace_error, .error_widget_arrow.ace_error{ border-color: #ff5a5a } .error_widget.ace_warning, .error_widget_arrow.ace_warning{ border-color: #F1D817 } .error_widget.ace_info, .error_widget_arrow.ace_info{ border-color: #5a5a5a } .error_widget.ace_ok, .error_widget_arrow.ace_ok{ border-color: #5aaa5a } .error_widget_arrow { position: absolute; border: solid 5px; border-top-color: transparent!important; border-right-color: transparent!important; border-left-color: transparent!important; top: -5px; }","")}),define("ace/ace",["require","exports","module","ace/lib/fixoldbrowsers","ace/lib/dom","ace/lib/event","ace/editor","ace/edit_session","ace/undomanager","ace/virtual_renderer","ace/worker/worker_client","ace/keyboard/hash_handler","ace/placeholder","ace/multi_select","ace/mode/folding/fold_mode","ace/theme/textmate","ace/ext/error_marker","ace/config"],function(e,t,n){"use strict";e("./lib/fixoldbrowsers");var r=e("./lib/dom"),i=e("./lib/event"),s=e("./editor").Editor,o=e("./edit_session").EditSession,u=e("./undomanager").UndoManager,a=e("./virtual_renderer").VirtualRenderer;e("./worker/worker_client"),e("./keyboard/hash_handler"),e("./placeholder"),e("./multi_select"),e("./mode/folding/fold_mode"),e("./theme/textmate"),e("./ext/error_marker"),t.config=e("./config"),t.require=e,typeof define=="function"&&(t.define=define),t.edit=function(e){if(typeof e=="string"){var n=e;e=document.getElementById(n);if(!e)throw new Error("ace.edit can't find div #"+n)}if(e&&e.env&&e.env.editor instanceof s)return e.env.editor;var o="";if(e&&/input|textarea/i.test(e.tagName)){var u=e;o=u.value,e=r.createElement("pre"),u.parentNode.replaceChild(e,u)}else e&&(o=r.getInnerText(e),e.innerHTML="");var f=t.createEditSession(o),l=new s(new a(e));l.setSession(f);var c={document:f,editor:l,onResize:l.resize.bind(l,null)};return u&&(c.textarea=u),i.addListener(window,"resize",c.onResize),l.on("destroy",function(){i.removeListener(window,"resize",c.onResize),c.editor.container.env=null}),l.container.env=l.env=c,l},t.createEditSession=function(e,t){var n=new o(e,t);return n.setUndoManager(new u),n},t.EditSession=o,t.UndoManager=u,t.version="1.2.9"}); (function() { window.require(["ace/ace"], function(a) { if (a) { a.config.init(true); a.define = window.define; } if (!window.ace) window.ace = a; for (var key in a) if (a.hasOwnProperty(key)) window.ace[key] = a[key]; }); })();
(function(){function o(n){var i=e;n&&(e[n]||(e[n]={}),i=e[n]);if(!i.define||!i.define.packaged)t.original=i.define,i.define=t,i.define.packaged=!0;if(!i.require||!i.require.packaged)r.original=i.require,i.require=r,i.require.packaged=!0}var ACE_NAMESPACE="",e=function(){return this}();!e&&typeof window!="undefined"&&(e=window);if(!ACE_NAMESPACE&&typeof requirejs!="undefined")return;var t=function(e,n,r){if(typeof e!="string"){t.original?t.original.apply(this,arguments):(console.error("dropping module because define wasn't a string."),console.trace());return}arguments.length==2&&(r=n),t.modules[e]||(t.payloads[e]=r,t.modules[e]=null)};t.modules={},t.payloads={};var n=function(e,t,n){if(typeof t=="string"){var i=s(e,t);if(i!=undefined)return n&&n(),i}else if(Object.prototype.toString.call(t)==="[object Array]"){var o=[];for(var u=0,a=t.length;u<a;++u){var f=s(e,t[u]);if(f==undefined&&r.original)return;o.push(f)}return n&&n.apply(null,o)||!0}},r=function(e,t){var i=n("",e,t);return i==undefined&&r.original?r.original.apply(this,arguments):i},i=function(e,t){if(t.indexOf("!")!==-1){var n=t.split("!");return i(e,n[0])+"!"+i(e,n[1])}if(t.charAt(0)=="."){var r=e.split("/").slice(0,-1).join("/");t=r+"/"+t;while(t.indexOf(".")!==-1&&s!=t){var s=t;t=t.replace(/\/\.\//,"/").replace(/[^\/]+\/\.\.\//,"")}}return t},s=function(e,r){r=i(e,r);var s=t.modules[r];if(!s){s=t.payloads[r];if(typeof s=="function"){var o={},u={id:r,uri:"",exports:o,packaged:!0},a=function(e,t){return n(r,e,t)},f=s(a,o,u);o=f||u.exports,t.modules[r]=o,delete t.payloads[r]}s=t.modules[r]=o||s}return s};o(ACE_NAMESPACE)})(),define("ace/lib/regexp",["require","exports","module"],function(e,t,n){"use strict";function o(e){return(e.global?"g":"")+(e.ignoreCase?"i":"")+(e.multiline?"m":"")+(e.extended?"x":"")+(e.sticky?"y":"")}function u(e,t,n){if(Array.prototype.indexOf)return e.indexOf(t,n);for(var r=n||0;r<e.length;r++)if(e[r]===t)return r;return-1}var r={exec:RegExp.prototype.exec,test:RegExp.prototype.test,match:String.prototype.match,replace:String.prototype.replace,split:String.prototype.split},i=r.exec.call(/()??/,"")[1]===undefined,s=function(){var e=/^/g;return r.test.call(e,""),!e.lastIndex}();if(s&&i)return;RegExp.prototype.exec=function(e){var t=r.exec.apply(this,arguments),n,a;if(typeof e=="string"&&t){!i&&t.length>1&&u(t,"")>-1&&(a=RegExp(this.source,r.replace.call(o(this),"g","")),r.replace.call(e.slice(t.index),a,function(){for(var e=1;e<arguments.length-2;e++)arguments[e]===undefined&&(t[e]=undefined)}));if(this._xregexp&&this._xregexp.captureNames)for(var f=1;f<t.length;f++)n=this._xregexp.captureNames[f-1],n&&(t[n]=t[f]);!s&&this.global&&!t[0].length&&this.lastIndex>t.index&&this.lastIndex--}return t},s||(RegExp.prototype.test=function(e){var t=r.exec.call(this,e);return t&&this.global&&!t[0].length&&this.lastIndex>t.index&&this.lastIndex--,!!t})}),define("ace/lib/es5-shim",["require","exports","module"],function(e,t,n){function r(){}function w(e){try{return Object.defineProperty(e,"sentinel",{}),"sentinel"in e}catch(t){}}function H(e){return e=+e,e!==e?e=0:e!==0&&e!==1/0&&e!==-1/0&&(e=(e>0||-1)*Math.floor(Math.abs(e))),e}function B(e){var t=typeof e;return e===null||t==="undefined"||t==="boolean"||t==="number"||t==="string"}function j(e){var t,n,r;if(B(e))return e;n=e.valueOf;if(typeof n=="function"){t=n.call(e);if(B(t))return t}r=e.toString;if(typeof r=="function"){t=r.call(e);if(B(t))return t}throw new TypeError}Function.prototype.bind||(Function.prototype.bind=function(t){var n=this;if(typeof n!="function")throw new TypeError("Function.prototype.bind called on incompatible "+n);var i=u.call(arguments,1),s=function(){if(this instanceof s){var e=n.apply(this,i.concat(u.call(arguments)));return Object(e)===e?e:this}return n.apply(t,i.concat(u.call(arguments)))};return n.prototype&&(r.prototype=n.prototype,s.prototype=new r,r.prototype=null),s});var i=Function.prototype.call,s=Array.prototype,o=Object.prototype,u=s.slice,a=i.bind(o.toString),f=i.bind(o.hasOwnProperty),l,c,h,p,d;if(d=f(o,"__defineGetter__"))l=i.bind(o.__defineGetter__),c=i.bind(o.__defineSetter__),h=i.bind(o.__lookupGetter__),p=i.bind(o.__lookupSetter__);if([1,2].splice(0).length!=2)if(!function(){function e(e){var t=new Array(e+2);return t[0]=t[1]=0,t}var t=[],n;t.splice.apply(t,e(20)),t.splice.apply(t,e(26)),n=t.length,t.splice(5,0,"XXX"),n+1==t.length;if(n+1==t.length)return!0}())Array.prototype.splice=function(e,t){var n=this.length;e>0?e>n&&(e=n):e==void 0?e=0:e<0&&(e=Math.max(n+e,0)),e+t<n||(t=n-e);var r=this.slice(e,e+t),i=u.call(arguments,2),s=i.length;if(e===n)s&&this.push.apply(this,i);else{var o=Math.min(t,n-e),a=e+o,f=a+s-o,l=n-a,c=n-o;if(f<a)for(var h=0;h<l;++h)this[f+h]=this[a+h];else if(f>a)for(h=l;h--;)this[f+h]=this[a+h];if(s&&e===c)this.length=c,this.push.apply(this,i);else{this.length=c+s;for(h=0;h<s;++h)this[e+h]=i[h]}}return r};else{var v=Array.prototype.splice;Array.prototype.splice=function(e,t){return arguments.length?v.apply(this,[e===void 0?0:e,t===void 0?this.length-e:t].concat(u.call(arguments,2))):[]}}Array.isArray||(Array.isArray=function(t){return a(t)=="[object Array]"});var m=Object("a"),g=m[0]!="a"||!(0 in m);Array.prototype.forEach||(Array.prototype.forEach=function(t){var n=F(this),r=g&&a(this)=="[object String]"?this.split(""):n,i=arguments[1],s=-1,o=r.length>>>0;if(a(t)!="[object Function]")throw new TypeError;while(++s<o)s in r&&t.call(i,r[s],s,n)}),Array.prototype.map||(Array.prototype.map=function(t){var n=F(this),r=g&&a(this)=="[object String]"?this.split(""):n,i=r.length>>>0,s=Array(i),o=arguments[1];if(a(t)!="[object Function]")throw new TypeError(t+" is not a function");for(var u=0;u<i;u++)u in r&&(s[u]=t.call(o,r[u],u,n));return s}),Array.prototype.filter||(Array.prototype.filter=function(t){var n=F(this),r=g&&a(this)=="[object String]"?this.split(""):n,i=r.length>>>0,s=[],o,u=arguments[1];if(a(t)!="[object Function]")throw new TypeError(t+" is not a function");for(var f=0;f<i;f++)f in r&&(o=r[f],t.call(u,o,f,n)&&s.push(o));return s}),Array.prototype.every||(Array.prototype.every=function(t){var n=F(this),r=g&&a(this)=="[object String]"?this.split(""):n,i=r.length>>>0,s=arguments[1];if(a(t)!="[object Function]")throw new TypeError(t+" is not a function");for(var o=0;o<i;o++)if(o in r&&!t.call(s,r[o],o,n))return!1;return!0}),Array.prototype.some||(Array.prototype.some=function(t){var n=F(this),r=g&&a(this)=="[object String]"?this.split(""):n,i=r.length>>>0,s=arguments[1];if(a(t)!="[object Function]")throw new TypeError(t+" is not a function");for(var o=0;o<i;o++)if(o in r&&t.call(s,r[o],o,n))return!0;return!1}),Array.prototype.reduce||(Array.prototype.reduce=function(t){var n=F(this),r=g&&a(this)=="[object String]"?this.split(""):n,i=r.length>>>0;if(a(t)!="[object Function]")throw new TypeError(t+" is not a function");if(!i&&arguments.length==1)throw new TypeError("reduce of empty array with no initial value");var s=0,o;if(arguments.length>=2)o=arguments[1];else do{if(s in r){o=r[s++];break}if(++s>=i)throw new TypeError("reduce of empty array with no initial value")}while(!0);for(;s<i;s++)s in r&&(o=t.call(void 0,o,r[s],s,n));return o}),Array.prototype.reduceRight||(Array.prototype.reduceRight=function(t){var n=F(this),r=g&&a(this)=="[object String]"?this.split(""):n,i=r.length>>>0;if(a(t)!="[object Function]")throw new TypeError(t+" is not a function");if(!i&&arguments.length==1)throw new TypeError("reduceRight of empty array with no initial value");var s,o=i-1;if(arguments.length>=2)s=arguments[1];else do{if(o in r){s=r[o--];break}if(--o<0)throw new TypeError("reduceRight of empty array with no initial value")}while(!0);do o in this&&(s=t.call(void 0,s,r[o],o,n));while(o--);return s});if(!Array.prototype.indexOf||[0,1].indexOf(1,2)!=-1)Array.prototype.indexOf=function(t){var n=g&&a(this)=="[object String]"?this.split(""):F(this),r=n.length>>>0;if(!r)return-1;var i=0;arguments.length>1&&(i=H(arguments[1])),i=i>=0?i:Math.max(0,r+i);for(;i<r;i++)if(i in n&&n[i]===t)return i;return-1};if(!Array.prototype.lastIndexOf||[0,1].lastIndexOf(0,-3)!=-1)Array.prototype.lastIndexOf=function(t){var n=g&&a(this)=="[object String]"?this.split(""):F(this),r=n.length>>>0;if(!r)return-1;var i=r-1;arguments.length>1&&(i=Math.min(i,H(arguments[1]))),i=i>=0?i:r-Math.abs(i);for(;i>=0;i--)if(i in n&&t===n[i])return i;return-1};Object.getPrototypeOf||(Object.getPrototypeOf=function(t){return t.__proto__||(t.constructor?t.constructor.prototype:o)});if(!Object.getOwnPropertyDescriptor){var y="Object.getOwnPropertyDescriptor called on a non-object: ";Object.getOwnPropertyDescriptor=function(t,n){if(typeof t!="object"&&typeof t!="function"||t===null)throw new TypeError(y+t);if(!f(t,n))return;var r,i,s;r={enumerable:!0,configurable:!0};if(d){var u=t.__proto__;t.__proto__=o;var i=h(t,n),s=p(t,n);t.__proto__=u;if(i||s)return i&&(r.get=i),s&&(r.set=s),r}return r.value=t[n],r}}Object.getOwnPropertyNames||(Object.getOwnPropertyNames=function(t){return Object.keys(t)});if(!Object.create){var b;Object.prototype.__proto__===null?b=function(){return{__proto__:null}}:b=function(){var e={};for(var t in e)e[t]=null;return e.constructor=e.hasOwnProperty=e.propertyIsEnumerable=e.isPrototypeOf=e.toLocaleString=e.toString=e.valueOf=e.__proto__=null,e},Object.create=function(t,n){var r;if(t===null)r=b();else{if(typeof t!="object")throw new TypeError("typeof prototype["+typeof t+"] != 'object'");var i=function(){};i.prototype=t,r=new i,r.__proto__=t}return n!==void 0&&Object.defineProperties(r,n),r}}if(Object.defineProperty){var E=w({}),S=typeof document=="undefined"||w(document.createElement("div"));if(!E||!S)var x=Object.defineProperty}if(!Object.defineProperty||x){var T="Property description must be an object: ",N="Object.defineProperty called on non-object: ",C="getters & setters can not be defined on this javascript engine";Object.defineProperty=function(t,n,r){if(typeof t!="object"&&typeof t!="function"||t===null)throw new TypeError(N+t);if(typeof r!="object"&&typeof r!="function"||r===null)throw new TypeError(T+r);if(x)try{return x.call(Object,t,n,r)}catch(i){}if(f(r,"value"))if(d&&(h(t,n)||p(t,n))){var s=t.__proto__;t.__proto__=o,delete t[n],t[n]=r.value,t.__proto__=s}else t[n]=r.value;else{if(!d)throw new TypeError(C);f(r,"get")&&l(t,n,r.get),f(r,"set")&&c(t,n,r.set)}return t}}Object.defineProperties||(Object.defineProperties=function(t,n){for(var r in n)f(n,r)&&Object.defineProperty(t,r,n[r]);return t}),Object.seal||(Object.seal=function(t){return t}),Object.freeze||(Object.freeze=function(t){return t});try{Object.freeze(function(){})}catch(k){Object.freeze=function(t){return function(n){return typeof n=="function"?n:t(n)}}(Object.freeze)}Object.preventExtensions||(Object.preventExtensions=function(t){return t}),Object.isSealed||(Object.isSealed=function(t){return!1}),Object.isFrozen||(Object.isFrozen=function(t){return!1}),Object.isExtensible||(Object.isExtensible=function(t){if(Object(t)===t)throw new TypeError;var n="";while(f(t,n))n+="?";t[n]=!0;var r=f(t,n);return delete t[n],r});if(!Object.keys){var L=!0,A=["toString","toLocaleString","valueOf","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","constructor"],O=A.length;for(var M in{toString:null})L=!1;Object.keys=function I(e){if(typeof e!="object"&&typeof e!="function"||e===null)throw new TypeError("Object.keys called on a non-object");var I=[];for(var t in e)f(e,t)&&I.push(t);if(L)for(var n=0,r=O;n<r;n++){var i=A[n];f(e,i)&&I.push(i)}return I}}Date.now||(Date.now=function(){return(new Date).getTime()});var _=" \n \f\r \u00a0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029\ufeff";if(!String.prototype.trim||_.trim()){_="["+_+"]";var D=new RegExp("^"+_+_+"*"),P=new RegExp(_+_+"*$");String.prototype.trim=function(){return String(this).replace(D,"").replace(P,"")}}var F=function(e){if(e==null)throw new TypeError("can't convert "+e+" to object");return Object(e)}}),define("ace/lib/fixoldbrowsers",["require","exports","module","ace/lib/regexp","ace/lib/es5-shim"],function(e,t,n){"use strict";e("./regexp"),e("./es5-shim")}),define("ace/lib/dom",["require","exports","module"],function(e,t,n){"use strict";var r="http://www.w3.org/1999/xhtml";t.getDocumentHead=function(e){return e||(e=document),e.head||e.getElementsByTagName("head")[0]||e.documentElement},t.createElement=function(e,t){return document.createElementNS?document.createElementNS(t||r,e):document.createElement(e)},t.hasCssClass=function(e,t){var n=(e.className+"").split(/\s+/g);return n.indexOf(t)!==-1},t.addCssClass=function(e,n){t.hasCssClass(e,n)||(e.className+=" "+n)},t.removeCssClass=function(e,t){var n=e.className.split(/\s+/g);for(;;){var r=n.indexOf(t);if(r==-1)break;n.splice(r,1)}e.className=n.join(" ")},t.toggleCssClass=function(e,t){var n=e.className.split(/\s+/g),r=!0;for(;;){var i=n.indexOf(t);if(i==-1)break;r=!1,n.splice(i,1)}return r&&n.push(t),e.className=n.join(" "),r},t.setCssClass=function(e,n,r){r?t.addCssClass(e,n):t.removeCssClass(e,n)},t.hasCssString=function(e,t){var n=0,r;t=t||document;if(t.createStyleSheet&&(r=t.styleSheets)){while(n<r.length)if(r[n++].owningElement.id===e)return!0}else if(r=t.getElementsByTagName("style"))while(n<r.length)if(r[n++].id===e)return!0;return!1},t.importCssString=function(n,r,i){i=i||document;if(r&&t.hasCssString(r,i))return null;var s;r&&(n+="\n/*# sourceURL=ace/css/"+r+" */"),i.createStyleSheet?(s=i.createStyleSheet(),s.cssText=n,r&&(s.owningElement.id=r)):(s=t.createElement("style"),s.appendChild(i.createTextNode(n)),r&&(s.id=r),t.getDocumentHead(i).appendChild(s))},t.importCssStylsheet=function(e,n){if(n.createStyleSheet)n.createStyleSheet(e);else{var r=t.createElement("link");r.rel="stylesheet",r.href=e,t.getDocumentHead(n).appendChild(r)}},t.getInnerWidth=function(e){return parseInt(t.computedStyle(e,"paddingLeft"),10)+parseInt(t.computedStyle(e,"paddingRight"),10)+e.clientWidth},t.getInnerHeight=function(e){return parseInt(t.computedStyle(e,"paddingTop"),10)+parseInt(t.computedStyle(e,"paddingBottom"),10)+e.clientHeight},t.scrollbarWidth=function(e){var n=t.createElement("ace_inner");n.style.width="100%",n.style.minWidth="0px",n.style.height="200px",n.style.display="block";var r=t.createElement("ace_outer"),i=r.style;i.position="absolute",i.left="-10000px",i.overflow="hidden",i.width="200px",i.minWidth="0px",i.height="150px",i.display="block",r.appendChild(n);var s=e.documentElement;s.appendChild(r);var o=n.offsetWidth;i.overflow="scroll";var u=n.offsetWidth;return o==u&&(u=r.clientWidth),s.removeChild(r),o-u};if(typeof document=="undefined"){t.importCssString=function(){};return}window.pageYOffset!==undefined?(t.getPageScrollTop=function(){return window.pageYOffset},t.getPageScrollLeft=function(){return window.pageXOffset}):(t.getPageScrollTop=function(){return document.body.scrollTop},t.getPageScrollLeft=function(){return document.body.scrollLeft}),window.getComputedStyle?t.computedStyle=function(e,t){return t?(window.getComputedStyle(e,"")||{})[t]||"":window.getComputedStyle(e,"")||{}}:t.computedStyle=function(e,t){return t?e.currentStyle[t]:e.currentStyle},t.setInnerHtml=function(e,t){var n=e.cloneNode(!1);return n.innerHTML=t,e.parentNode.replaceChild(n,e),n},"textContent"in document.documentElement?(t.setInnerText=function(e,t){e.textContent=t},t.getInnerText=function(e){return e.textContent}):(t.setInnerText=function(e,t){e.innerText=t},t.getInnerText=function(e){return e.innerText}),t.getParentWindow=function(e){return e.defaultView||e.parentWindow}}),define("ace/lib/oop",["require","exports","module"],function(e,t,n){"use strict";t.inherits=function(e,t){e.super_=t,e.prototype=Object.create(t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}})},t.mixin=function(e,t){for(var n in t)e[n]=t[n];return e},t.implement=function(e,n){t.mixin(e,n)}}),define("ace/lib/keys",["require","exports","module","ace/lib/fixoldbrowsers","ace/lib/oop"],function(e,t,n){"use strict";e("./fixoldbrowsers");var r=e("./oop"),i=function(){var e={MODIFIER_KEYS:{16:"Shift",17:"Ctrl",18:"Alt",224:"Meta"},KEY_MODS:{ctrl:1,alt:2,option:2,shift:4,"super":8,meta:8,command:8,cmd:8},FUNCTION_KEYS:{8:"Backspace",9:"Tab",13:"Return",19:"Pause",27:"Esc",32:"Space",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"Left",38:"Up",39:"Right",40:"Down",44:"Print",45:"Insert",46:"Delete",96:"Numpad0",97:"Numpad1",98:"Numpad2",99:"Numpad3",100:"Numpad4",101:"Numpad5",102:"Numpad6",103:"Numpad7",104:"Numpad8",105:"Numpad9","-13":"NumpadEnter",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"},PRINTABLE_KEYS:{32:" ",48:"0",49:"1",50:"2",51:"3",52:"4",53:"5",54:"6",55:"7",56:"8",57:"9",59:";",61:"=",65:"a",66:"b",67:"c",68:"d",69:"e",70:"f",71:"g",72:"h",73:"i",74:"j",75:"k",76:"l",77:"m",78:"n",79:"o",80:"p",81:"q",82:"r",83:"s",84:"t",85:"u",86:"v",87:"w",88:"x",89:"y",90:"z",107:"+",109:"-",110:".",186:";",187:"=",188:",",189:"-",190:".",191:"/",192:"`",219:"[",220:"\\",221:"]",222:"'",111:"/",106:"*"}},t,n;for(n in e.FUNCTION_KEYS)t=e.FUNCTION_KEYS[n].toLowerCase(),e[t]=parseInt(n,10);for(n in e.PRINTABLE_KEYS)t=e.PRINTABLE_KEYS[n].toLowerCase(),e[t]=parseInt(n,10);return r.mixin(e,e.MODIFIER_KEYS),r.mixin(e,e.PRINTABLE_KEYS),r.mixin(e,e.FUNCTION_KEYS),e.enter=e["return"],e.escape=e.esc,e.del=e["delete"],e[173]="-",function(){var t=["cmd","ctrl","alt","shift"];for(var n=Math.pow(2,t.length);n--;)e.KEY_MODS[n]=t.filter(function(t){return n&e.KEY_MODS[t]}).join("-")+"-"}(),e.KEY_MODS[0]="",e.KEY_MODS[-1]="input-",e}();r.mixin(t,i),t.keyCodeToString=function(e){var t=i[e];return typeof t!="string"&&(t=String.fromCharCode(e)),t.toLowerCase()}}),define("ace/lib/useragent",["require","exports","module"],function(e,t,n){"use strict";t.OS={LINUX:"LINUX",MAC:"MAC",WINDOWS:"WINDOWS"},t.getOS=function(){return t.isMac?t.OS.MAC:t.isLinux?t.OS.LINUX:t.OS.WINDOWS};if(typeof navigator!="object")return;var r=(navigator.platform.match(/mac|win|linux/i)||["other"])[0].toLowerCase(),i=navigator.userAgent;t.isWin=r=="win",t.isMac=r=="mac",t.isLinux=r=="linux",t.isIE=navigator.appName=="Microsoft Internet Explorer"||navigator.appName.indexOf("MSAppHost")>=0?parseFloat((i.match(/(?:MSIE |Trident\/[0-9]+[\.0-9]+;.*rv:)([0-9]+[\.0-9]+)/)||[])[1]):parseFloat((i.match(/(?:Trident\/[0-9]+[\.0-9]+;.*rv:)([0-9]+[\.0-9]+)/)||[])[1]),t.isOldIE=t.isIE&&t.isIE<9,t.isGecko=t.isMozilla=(window.Controllers||window.controllers)&&window.navigator.product==="Gecko",t.isOldGecko=t.isGecko&&parseInt((i.match(/rv:(\d+)/)||[])[1],10)<4,t.isOpera=window.opera&&Object.prototype.toString.call(window.opera)=="[object Opera]",t.isWebKit=parseFloat(i.split("WebKit/")[1])||undefined,t.isChrome=parseFloat(i.split(" Chrome/")[1])||undefined,t.isAIR=i.indexOf("AdobeAIR")>=0,t.isIPad=i.indexOf("iPad")>=0,t.isChromeOS=i.indexOf(" CrOS ")>=0,t.isIOS=/iPad|iPhone|iPod/.test(i)&&!window.MSStream,t.isIOS&&(t.isMac=!0)}),define("ace/lib/event",["require","exports","module","ace/lib/keys","ace/lib/useragent"],function(e,t,n){"use strict";function a(e,t,n){var a=u(t);if(!i.isMac&&s){t.getModifierState&&(t.getModifierState("OS")||t.getModifierState("Win"))&&(a|=8);if(s.altGr){if((3&a)==3)return;s.altGr=0}if(n===18||n===17){var f="location"in t?t.location:t.keyLocation;if(n===17&&f===1)s[n]==1&&(o=t.timeStamp);else if(n===18&&a===3&&f===2){var l=t.timeStamp-o;l<50&&(s.altGr=!0)}}}n in r.MODIFIER_KEYS&&(n=-1),a&8&&n>=91&&n<=93&&(n=-1);if(!a&&n===13){var f="location"in t?t.location:t.keyLocation;if(f===3){e(t,a,-n);if(t.defaultPrevented)return}}if(i.isChromeOS&&a&8){e(t,a,n);if(t.defaultPrevented)return;a&=-9}return!!a||n in r.FUNCTION_KEYS||n in r.PRINTABLE_KEYS?e(t,a,n):!1}function f(){s=Object.create(null)}var r=e("./keys"),i=e("./useragent"),s=null,o=0;t.addListener=function(e,t,n){if(e.addEventListener)return e.addEventListener(t,n,!1);if(e.attachEvent){var r=function(){n.call(e,window.event)};n._wrapper=r,e.attachEvent("on"+t,r)}},t.removeListener=function(e,t,n){if(e.removeEventListener)return e.removeEventListener(t,n,!1);e.detachEvent&&e.detachEvent("on"+t,n._wrapper||n)},t.stopEvent=function(e){return t.stopPropagation(e),t.preventDefault(e),!1},t.stopPropagation=function(e){e.stopPropagation?e.stopPropagation():e.cancelBubble=!0},t.preventDefault=function(e){e.preventDefault?e.preventDefault():e.returnValue=!1},t.getButton=function(e){return e.type=="dblclick"?0:e.type=="contextmenu"||i.isMac&&e.ctrlKey&&!e.altKey&&!e.shiftKey?2:e.preventDefault?e.button:{1:0,2:2,4:1}[e.button]},t.capture=function(e,n,r){function i(e){n&&n(e),r&&r(e),t.removeListener(document,"mousemove",n,!0),t.removeListener(document,"mouseup",i,!0),t.removeListener(document,"dragstart",i,!0)}return t.addListener(document,"mousemove",n,!0),t.addListener(document,"mouseup",i,!0),t.addListener(document,"dragstart",i,!0),i},t.addTouchMoveListener=function(e,n){var r,i;t.addListener(e,"touchstart",function(e){var t=e.touches,n=t[0];r=n.clientX,i=n.clientY}),t.addListener(e,"touchmove",function(e){var t=e.touches;if(t.length>1)return;var s=t[0];e.wheelX=r-s.clientX,e.wheelY=i-s.clientY,r=s.clientX,i=s.clientY,n(e)})},t.addMouseWheelListener=function(e,n){"onmousewheel"in e?t.addListener(e,"mousewheel",function(e){var t=8;e.wheelDeltaX!==undefined?(e.wheelX=-e.wheelDeltaX/t,e.wheelY=-e.wheelDeltaY/t):(e.wheelX=0,e.wheelY=-e.wheelDelta/t),n(e)}):"onwheel"in e?t.addListener(e,"wheel",function(e){var t=.35;switch(e.deltaMode){case e.DOM_DELTA_PIXEL:e.wheelX=e.deltaX*t||0,e.wheelY=e.deltaY*t||0;break;case e.DOM_DELTA_LINE:case e.DOM_DELTA_PAGE:e.wheelX=(e.deltaX||0)*5,e.wheelY=(e.deltaY||0)*5}n(e)}):t.addListener(e,"DOMMouseScroll",function(e){e.axis&&e.axis==e.HORIZONTAL_AXIS?(e.wheelX=(e.detail||0)*5,e.wheelY=0):(e.wheelX=0,e.wheelY=(e.detail||0)*5),n(e)})},t.addMultiMouseDownListener=function(e,n,r,s){function c(e){t.getButton(e)!==0?o=0:e.detail>1?(o++,o>4&&(o=1)):o=1;if(i.isIE){var c=Math.abs(e.clientX-u)>5||Math.abs(e.clientY-a)>5;if(!f||c)o=1;f&&clearTimeout(f),f=setTimeout(function(){f=null},n[o-1]||600),o==1&&(u=e.clientX,a=e.clientY)}e._clicks=o,r[s]("mousedown",e);if(o>4)o=0;else if(o>1)return r[s](l[o],e)}function h(e){o=2,f&&clearTimeout(f),f=setTimeout(function(){f=null},n[o-1]||600),r[s]("mousedown",e),r[s](l[o],e)}var o=0,u,a,f,l={2:"dblclick",3:"tripleclick",4:"quadclick"};Array.isArray(e)||(e=[e]),e.forEach(function(e){t.addListener(e,"mousedown",c),i.isOldIE&&t.addListener(e,"dblclick",h)})};var u=!i.isMac||!i.isOpera||"KeyboardEvent"in window?function(e){return 0|(e.ctrlKey?1:0)|(e.altKey?2:0)|(e.shiftKey?4:0)|(e.metaKey?8:0)}:function(e){return 0|(e.metaKey?1:0)|(e.altKey?2:0)|(e.shiftKey?4:0)|(e.ctrlKey?8:0)};t.getModifierString=function(e){return r.KEY_MODS[u(e)]},t.addCommandKeyListener=function(e,n){var r=t.addListener;if(i.isOldGecko||i.isOpera&&!("KeyboardEvent"in window)){var o=null;r(e,"keydown",function(e){o=e.keyCode}),r(e,"keypress",function(e){return a(n,e,o)})}else{var u=null;r(e,"keydown",function(e){s[e.keyCode]=(s[e.keyCode]||0)+1;var t=a(n,e,e.keyCode);return u=e.defaultPrevented,t}),r(e,"keypress",function(e){u&&(e.ctrlKey||e.altKey||e.shiftKey||e.metaKey)&&(t.stopEvent(e),u=null)}),r(e,"keyup",function(e){s[e.keyCode]=null}),s||(f(),r(window,"focus",f))}};if(typeof window=="object"&&window.postMessage&&!i.isOldIE){var l=1;t.nextTick=function(e,n){n=n||window;var r="zero-timeout-message-"+l;t.addListener(n,"message",function i(s){s.data==r&&(t.stopPropagation(s),t.removeListener(n,"message",i),e())}),n.postMessage(r,"*")}}t.nextFrame=typeof window=="object"&&(window.requestAnimationFrame||window.mozRequestAnimationFrame||window.webkitRequestAnimationFrame||window.msRequestAnimationFrame||window.oRequestAnimationFrame),t.nextFrame?t.nextFrame=t.nextFrame.bind(window):t.nextFrame=function(e){setTimeout(e,17)}}),define("ace/lib/lang",["require","exports","module"],function(e,t,n){"use strict";t.last=function(e){return e[e.length-1]},t.stringReverse=function(e){return e.split("").reverse().join("")},t.stringRepeat=function(e,t){var n="";while(t>0){t&1&&(n+=e);if(t>>=1)e+=e}return n};var r=/^\s\s*/,i=/\s\s*$/;t.stringTrimLeft=function(e){return e.replace(r,"")},t.stringTrimRight=function(e){return e.replace(i,"")},t.copyObject=function(e){var t={};for(var n in e)t[n]=e[n];return t},t.copyArray=function(e){var t=[];for(var n=0,r=e.length;n<r;n++)e[n]&&typeof e[n]=="object"?t[n]=this.copyObject(e[n]):t[n]=e[n];return t},t.deepCopy=function s(e){if(typeof e!="object"||!e)return e;var t;if(Array.isArray(e)){t=[];for(var n=0;n<e.length;n++)t[n]=s(e[n]);return t}if(Object.prototype.toString.call(e)!=="[object Object]")return e;t={};for(var n in e)t[n]=s(e[n]);return t},t.arrayToMap=function(e){var t={};for(var n=0;n<e.length;n++)t[e[n]]=1;return t},t.createMap=function(e){var t=Object.create(null);for(var n in e)t[n]=e[n];return t},t.arrayRemove=function(e,t){for(var n=0;n<=e.length;n++)t===e[n]&&e.splice(n,1)},t.escapeRegExp=function(e){return e.replace(/([.*+?^${}()|[\]\/\\])/g,"\\$1")},t.escapeHTML=function(e){return e.replace(/&/g,"&#38;").replace(/"/g,"&#34;").replace(/'/g,"&#39;").replace(/</g,"&#60;")},t.getMatchOffsets=function(e,t){var n=[];return e.replace(t,function(e){n.push({offset:arguments[arguments.length-2],length:e.length})}),n},t.deferredCall=function(e){var t=null,n=function(){t=null,e()},r=function(e){return r.cancel(),t=setTimeout(n,e||0),r};return r.schedule=r,r.call=function(){return this.cancel(),e(),r},r.cancel=function(){return clearTimeout(t),t=null,r},r.isPending=function(){return t},r},t.delayedCall=function(e,t){var n=null,r=function(){n=null,e()},i=function(e){n==null&&(n=setTimeout(r,e||t))};return i.delay=function(e){n&&clearTimeout(n),n=setTimeout(r,e||t)},i.schedule=i,i.call=function(){this.cancel(),e()},i.cancel=function(){n&&clearTimeout(n),n=null},i.isPending=function(){return n},i}}),define("ace/keyboard/textinput_ios",["require","exports","module","ace/lib/event","ace/lib/useragent","ace/lib/dom","ace/lib/lang","ace/lib/keys"],function(e,t,n){"use strict";var r=e("../lib/event"),i=e("../lib/useragent"),s=e("../lib/dom"),o=e("../lib/lang"),u=e("../lib/keys"),a=u.KEY_MODS,f=i.isChrome<18,l=i.isIE,c=function(e,t){function x(e){if(m)return;m=!0;if(k)t=0,n=e?0:c.value.length-1;else var t=4,n=5;try{c.setSelectionRange(t,n)}catch(r){}m=!1}function T(){if(m)return;c.value=h,i.isWebKit&&S.schedule()}function R(){clearTimeout(q),q=setTimeout(function(){g&&(c.style.cssText=g,g=""),t.renderer.$keepTextAreaAtCursor==null&&(t.renderer.$keepTextAreaAtCursor=!0,t.renderer.$moveTextAreaToCursor())},0)}var n=this,c=s.createElement("textarea");c.className=i.isIOS?"ace_text-input ace_text-input-ios":"ace_text-input",i.isTouchPad&&c.setAttribute("x-palm-disable-auto-cap",!0),c.setAttribute("wrap","off"),c.setAttribute("autocorrect","off"),c.setAttribute("autocapitalize","off"),c.setAttribute("spellcheck",!1),c.style.opacity="0",e.insertBefore(c,e.firstChild);var h="\n aaaa a\n",p=!1,d=!1,v=!1,m=!1,g="",y=!0;try{var b=document.activeElement===c}catch(w){}r.addListener(c,"blur",function(e){t.onBlur(e),b=!1}),r.addListener(c,"focus",function(e){b=!0,t.onFocus(e),x()}),this.focus=function(){if(g)return c.focus();c.style.position="fixed",c.focus()},this.blur=function(){c.blur()},this.isFocused=function(){return b};var E=o.delayedCall(function(){b&&x(y)}),S=o.delayedCall(function(){m||(c.value=h,b&&x())});i.isWebKit||t.addEventListener("changeSelection",function(){t.selection.isEmpty()!=y&&(y=!y,E.schedule())}),T(),b&&t.onFocus();var N=function(e){return e.selectionStart===0&&e.selectionEnd===e.value.length},C=function(e){N(c)?(t.selectAll(),x()):k&&x(t.selection.isEmpty())},k=null;this.setInputHandler=function(e){k=e},this.getInputHandler=function(){return k};var L=!1,A=function(e){if(c.selectionStart===4&&c.selectionEnd===5)return;k&&(e=k(e),k=null),v?(x(),e&&t.onPaste(e),v=!1):e==h.substr(0)&&c.selectionStart===4?L?t.execCommand("del",{source:"ace"}):t.execCommand("backspace",{source:"ace"}):p||(e.substring(0,9)==h&&e.length>h.length?e=e.substr(9):e.substr(0,4)==h.substr(0,4)?e=e.substr(4,e.length-h.length+1):e.charAt(e.length-1)==h.charAt(0)&&(e=e.slice(0,-1)),e!=h.charAt(0)&&e.charAt(e.length-1)==h.charAt(0)&&(e=e.slice(0,-1)),e&&t.onTextInput(e)),p&&(p=!1),L&&(L=!1)},O=function(e){if(m)return;var t=c.value;A(t),T()},M=function(e,t,n){var r=e.clipboardData||window.clipboardData;if(!r||f)return;var i=l||n?"Text":"text/plain";try{return t?r.setData(i,t)!==!1:r.getData(i)}catch(e){if(!n)return M(e,t,!0)}},_=function(e,n){var s=t.getCopyText();if(!s)return r.preventDefault(e);M(e,s)?(i.isIOS&&(d=n,c.value="\n aa"+s+"a a\n",c.setSelectionRange(4,4+s.length),p={value:s}),n?t.onCut():t.onCopy(),i.isIOS||r.preventDefault(e)):(p=!0,c.value=s,c.select(),setTimeout(function(){p=!1,T(),x(),n?t.onCut():t.onCopy()}))},D=function(e){_(e,!0)},P=function(e){_(e,!1)},H=function(e){var n=M(e);typeof n=="string"?(n&&t.onPaste(n,e),i.isIE&&setTimeout(x),r.preventDefault(e)):(c.value="",v=!0)};r.addCommandKeyListener(c,t.onCommandKey.bind(t)),r.addListener(c,"select",C),r.addListener(c,"input",O),r.addListener(c,"cut",D),r.addListener(c,"copy",P),r.addListener(c,"paste",H);var B=function(e){if(m||!t.onCompositionStart||t.$readOnly)return;m={},m.canUndo=t.session.$undoManager,t.onCompositionStart(),setTimeout(j,0),t.on("mousedown",F),m.canUndo&&!t.selection.isEmpty()&&(t.insert(""),t.session.markUndoGroup(),t.selection.clearSelection()),t.session.markUndoGroup()},j=function(){if(!m||!t.onCompositionUpdate||t.$readOnly)return;var e=c.value.replace(/\x01/g,"");if(m.lastValue===e)return;t.onCompositionUpdate(e),m.lastValue&&t.undo(),m.canUndo&&(m.lastValue=e);if(m.lastValue){var n=t.selection.getRange();t.insert(m.lastValue),t.session.markUndoGroup(),m.range=t.selection.getRange(),t.selection.setRange(n),t.selection.clearSelection()}},F=function(e){if(!t.onCompositionEnd||t.$readOnly)return;var n=m;m=!1;var r=setTimeout(function(){r=null;var e=c.value.replace(/\x01/g,"");if(m)return;e==n.lastValue?T():!n.lastValue&&e&&(T(),A(e))});k=function(i){return r&&clearTimeout(r),i=i.replace(/\x01/g,""),i==n.lastValue?"":(n.lastValue&&r&&t.undo(),i)},t.onCompositionEnd(),t.removeListener("mousedown",F),e.type=="compositionend"&&n.range&&t.selection.setRange(n.range);var s=!!i.isChrome&&i.isChrome>=53||!!i.isWebKit&&i.isWebKit>=603;s&&O()},I=o.delayedCall(j,50);r.addListener(c,"compositionstart",B),i.isGecko?r.addListener(c,"text",function(){I.schedule()}):(r.addListener(c,"keyup",function(){I.schedule()}),r.addListener(c,"keydown",function(){I.schedule()})),r.addListener(c,"compositionend",F),this.getElement=function(){return c},this.setReadOnly=function(e){c.readOnly=e},this.onContextMenu=function(e){L=!0,x(t.selection.isEmpty()),t._emit("nativecontextmenu",{target:t,domEvent:e}),this.moveToMouse(e,!0)},this.moveToMouse=function(e,n){g||(g=c.style.cssText),c.style.cssText=(n?"z-index:100000;":"")+"height:"+c.style.height+";"+(i.isIE?"opacity:0.1;":"");var o=t.container.getBoundingClientRect(),u=s.computedStyle(t.container),a=o.top+(parseInt(u.borderTopWidth)||0),f=o.left+(parseInt(o.borderLeftWidth)||0),l=o.bottom-a-c.clientHeight-2,h=function(e){c.style.left=e.clientX-f-2+"px",c.style.top=Math.min(e.clientY-a-2,l)+"px"};h(e);if(e.type!="mousedown")return;t.renderer.$keepTextAreaAtCursor&&(t.renderer.$keepTextAreaAtCursor=null),clearTimeout(q),i.isWin&&r.capture(t.container,h,R)},this.onContextMenuClose=R;var q,U=function(e){t.textInput.onContextMenu(e),R()};r.addListener(c,"mouseup",U),r.addListener(c,"mousedown",function(e){e.preventDefault(),R()}),r.addListener(t.renderer.scroller,"contextmenu",U),r.addListener(c,"contextmenu",U);if(i.isIOS){var z=null,W=!1;e.addEventListener("keydown",function(e){z&&clearTimeout(z),W=!0}),e.addEventListener("keyup",function(e){z=setTimeout(function(){W=!1},100)});var X=function(e){if(document.activeElement!==c)return;if(W)return;if(d)return setTimeout(function(){d=!1},100);var n=c.selectionStart,r=c.selectionEnd;c.setSelectionRange(4,5);if(n==r)switch(n){case 0:t.onCommandKey(null,0,u.up);break;case 1:t.onCommandKey(null,0,u.home);break;case 2:t.onCommandKey(null,a.option,u.left);break;case 4:t.onCommandKey(null,0,u.left);break;case 5:t.onCommandKey(null,0,u.right);break;case 7:t.onCommandKey(null,a.option,u.right);break;case 8:t.onCommandKey(null,0,u.end);break;case 9:t.onCommandKey(null,0,u.down)}else{switch(r){case 6:t.onCommandKey(null,a.shift,u.right);break;case 7:t.onCommandKey(null,a.shift|a.option,u.right);break;case 8:t.onCommandKey(null,a.shift,u.end);break;case 9:t.onCommandKey(null,a.shift,u.down)}switch(n){case 0:t.onCommandKey(null,a.shift,u.up);break;case 1:t.onCommandKey(null,a.shift,u.home);break;case 2:t.onCommandKey(null,a.shift|a.option,u.left);break;case 3:t.onCommandKey(null,a.shift,u.left)}}};document.addEventListener("selectionchange",X),t.on("destroy",function(){document.removeEventListener("selectionchange",X)})}};t.TextInput=c}),define("ace/keyboard/textinput",["require","exports","module","ace/lib/event","ace/lib/useragent","ace/lib/dom","ace/lib/lang","ace/keyboard/textinput_ios"],function(e,t,n){"use strict";var r=e("../lib/event"),i=e("../lib/useragent"),s=e("../lib/dom"),o=e("../lib/lang"),u=i.isChrome<18,a=i.isIE,f=e("./textinput_ios").TextInput,l=function(e,t){function w(e){if(p)return;p=!0;if(T)var t=0,r=e?0:n.value.length-1;else var t=e?2:1,r=2;try{n.setSelectionRange(t,r)}catch(i){}p=!1}function E(){if(p)return;n.value=l,i.isWebKit&&b.schedule()}function F(){clearTimeout(j),j=setTimeout(function(){d&&(n.style.cssText=d,d=""),t.renderer.$keepTextAreaAtCursor==null&&(t.renderer.$keepTextAreaAtCursor=!0,t.renderer.$moveTextAreaToCursor())},0)}if(i.isIOS)return f.call(this,e,t);var n=s.createElement("textarea");n.className="ace_text-input",n.setAttribute("wrap","off"),n.setAttribute("autocorrect","off"),n.setAttribute("autocapitalize","off"),n.setAttribute("spellcheck",!1),n.style.opacity="0",e.insertBefore(n,e.firstChild);var l="\u2028\u2028",c=!1,h=!1,p=!1,d="",v=!0;try{var m=document.activeElement===n}catch(g){}r.addListener(n,"blur",function(e){t.onBlur(e),m=!1}),r.addListener(n,"focus",function(e){m=!0,t.onFocus(e),w()}),this.focus=function(){if(d)return n.focus();var e=n.style.top;n.style.position="fixed",n.style.top="0px",n.focus(),setTimeout(function(){n.style.position="",n.style.top=="0px"&&(n.style.top=e)},0)},this.blur=function(){n.blur()},this.isFocused=function(){return m};var y=o.delayedCall(function(){m&&w(v)}),b=o.delayedCall(function(){p||(n.value=l,m&&w())});i.isWebKit||t.addEventListener("changeSelection",function(){t.selection.isEmpty()!=v&&(v=!v,y.schedule())}),E(),m&&t.onFocus();var S=function(e){return e.selectionStart===0&&e.selectionEnd===e.value.length},x=function(e){c?c=!1:S(n)?(t.selectAll(),w()):T&&w(t.selection.isEmpty())},T=null;this.setInputHandler=function(e){T=e},this.getInputHandler=function(){return T};var N=!1,C=function(e){T&&(e=T(e),T=null),h?(w(),e&&t.onPaste(e),h=!1):e==l.charAt(0)?N?t.execCommand("del",{source:"ace"}):t.execCommand("backspace",{source:"ace"}):(e.substring(0,2)==l?e=e.substr(2):e.charAt(0)==l.charAt(0)?e=e.substr(1):e.charAt(e.length-1)==l.charAt(0)&&(e=e.slice(0,-1)),e.charAt(e.length-1)==l.charAt(0)&&(e=e.slice(0,-1)),e&&t.onTextInput(e)),N&&(N=!1)},k=function(e){if(p)return;var t=n.value;C(t),E()},L=function(e,t,n){var r=e.clipboardData||window.clipboardData;if(!r||u)return;var i=a||n?"Text":"text/plain";try{return t?r.setData(i,t)!==!1:r.getData(i)}catch(e){if(!n)return L(e,t,!0)}},A=function(e,i){var s=t.getCopyText();if(!s)return r.preventDefault(e);L(e,s)?(i?t.onCut():t.onCopy(),r.preventDefault(e)):(c=!0,n.value=s,n.select(),setTimeout(function(){c=!1,E(),w(),i?t.onCut():t.onCopy()}))},O=function(e){A(e,!0)},M=function(e){A(e,!1)},_=function(e){var s=L(e);typeof s=="string"?(s&&t.onPaste(s,e),i.isIE&&setTimeout(w),r.preventDefault(e)):(n.value="",h=!0)};r.addCommandKeyListener(n,t.onCommandKey.bind(t)),r.addListener(n,"select",x),r.addListener(n,"input",k),r.addListener(n,"cut",O),r.addListener(n,"copy",M),r.addListener(n,"paste",_),(!("oncut"in n)||!("oncopy"in n)||!("onpaste"in n))&&r.addListener(e,"keydown",function(e){if(i.isMac&&!e.metaKey||!e.ctrlKey)return;switch(e.keyCode){case 67:M(e);break;case 86:_(e);break;case 88:O(e)}});var D=function(e){if(p||!t.onCompositionStart||t.$readOnly)return;p={},p.canUndo=t.session.$undoManager,t.onCompositionStart(),setTimeout(P,0),t.on("mousedown",H),p.canUndo&&!t.selection.isEmpty()&&(t.insert(""),t.session.markUndoGroup(),t.selection.clearSelection()),t.session.markUndoGroup()},P=function(){if(!p||!t.onCompositionUpdate||t.$readOnly)return;var e=n.value.replace(/\u2028/g,"");if(p.lastValue===e)return;t.onCompositionUpdate(e),p.lastValue&&t.undo(),p.canUndo&&(p.lastValue=e);if(p.lastValue){var r=t.selection.getRange();t.insert(p.lastValue),t.session.markUndoGroup(),p.range=t.selection.getRange(),t.selection.setRange(r),t.selection.clearSelection()}},H=function(e){if(!t.onCompositionEnd||t.$readOnly)return;var r=p;p=!1;var s=setTimeout(function(){s=null;var e=n.value.replace(/\u2028/g,"");if(p)return;e==r.lastValue?E():!r.lastValue&&e&&(E(),C(e))});T=function(n){return s&&clearTimeout(s),n=n.replace(/\u2028/g,""),n==r.lastValue?"":(r.lastValue&&s&&t.undo(),n)},t.onCompositionEnd(),t.removeListener("mousedown",H),e.type=="compositionend"&&r.range&&t.selection.setRange(r.range);var o=!!i.isChrome&&i.isChrome>=53||!!i.isWebKit&&i.isWebKit>=603;o&&k()},B=o.delayedCall(P,50);r.addListener(n,"compositionstart",D),i.isGecko?r.addListener(n,"text",function(){B.schedule()}):(r.addListener(n,"keyup",function(){B.schedule()}),r.addListener(n,"keydown",function(){B.schedule()})),r.addListener(n,"compositionend",H),this.getElement=function(){return n},this.setReadOnly=function(e){n.readOnly=e},this.onContextMenu=function(e){N=!0,w(t.selection.isEmpty()),t._emit("nativecontextmenu",{target:t,domEvent:e}),this.moveToMouse(e,!0)},this.moveToMouse=function(e,o){d||(d=n.style.cssText),n.style.cssText=(o?"z-index:100000;":"")+"height:"+n.style.height+";"+(i.isIE?"opacity:0.1;":"");var u=t.container.getBoundingClientRect(),a=s.computedStyle(t.container),f=u.top+(parseInt(a.borderTopWidth)||0),l=u.left+(parseInt(u.borderLeftWidth)||0),c=u.bottom-f-n.clientHeight-2,h=function(e){n.style.left=e.clientX-l-2+"px",n.style.top=Math.min(e.clientY-f-2,c)+"px"};h(e);if(e.type!="mousedown")return;t.renderer.$keepTextAreaAtCursor&&(t.renderer.$keepTextAreaAtCursor=null),clearTimeout(j),i.isWin&&r.capture(t.container,h,F)},this.onContextMenuClose=F;var j,I=function(e){t.textInput.onContextMenu(e),F()};r.addListener(n,"mouseup",I),r.addListener(n,"mousedown",function(e){e.preventDefault(),F()}),r.addListener(t.renderer.scroller,"contextmenu",I),r.addListener(n,"contextmenu",I)};t.TextInput=l}),define("ace/mouse/default_handlers",["require","exports","module","ace/lib/dom","ace/lib/event","ace/lib/useragent"],function(e,t,n){"use strict";function a(e){e.$clickSelection=null;var t=e.editor;t.setDefaultHandler("mousedown",this.onMouseDown.bind(e)),t.setDefaultHandler("dblclick",this.onDoubleClick.bind(e)),t.setDefaultHandler("tripleclick",this.onTripleClick.bind(e)),t.setDefaultHandler("quadclick",this.onQuadClick.bind(e)),t.setDefaultHandler("mousewheel",this.onMouseWheel.bind(e)),t.setDefaultHandler("touchmove",this.onTouchMove.bind(e));var n=["select","startSelect","selectEnd","selectAllEnd","selectByWordsEnd","selectByLinesEnd","dragWait","dragWaitEnd","focusWait"];n.forEach(function(t){e[t]=this[t]},this),e.selectByLines=this.extendSelectionBy.bind(e,"getLineRange"),e.selectByWords=this.extendSelectionBy.bind(e,"getWordRange")}function f(e,t,n,r){return Math.sqrt(Math.pow(n-e,2)+Math.pow(r-t,2))}function l(e,t){if(e.start.row==e.end.row)var n=2*t.column-e.start.column-e.end.column;else if(e.start.row==e.end.row-1&&!e.start.column&&!e.end.column)var n=t.column-4;else var n=2*t.row-e.start.row-e.end.row;return n<0?{cursor:e.start,anchor:e.end}:{cursor:e.end,anchor:e.start}}var r=e("../lib/dom"),i=e("../lib/event"),s=e("../lib/useragent"),o=0,u=250;(function(){this.onMouseDown=function(e){var t=e.inSelection(),n=e.getDocumentPosition();this.mousedownEvent=e;var r=this.editor,i=e.getButton();if(i!==0){var o=r.getSelectionRange(),u=o.isEmpty();r.$blockScrolling++,(u||i==1)&&r.selection.moveToPosition(n),r.$blockScrolling--,i==2&&(r.textInput.onContextMenu(e.domEvent),s.isMozilla||e.preventDefault());return}this.mousedownEvent.time=Date.now();if(t&&!r.isFocused()){r.focus();if(this.$focusTimout&&!this.$clickSelection&&!r.inMultiSelectMode){this.setState("focusWait"),this.captureMouse(e);return}}return this.captureMouse(e),this.startSelect(n,e.domEvent._clicks>1),e.preventDefault()},this.startSelect=function(e,t){e=e||this.editor.renderer.screenToTextCoordinates(this.x,this.y);var n=this.editor;n.$blockScrolling++,this.mousedownEvent.getShiftKey()?n.selection.selectToPosition(e):t||n.selection.moveToPosition(e),t||this.select(),n.renderer.scroller.setCapture&&n.renderer.scroller.setCapture(),n.setStyle("ace_selecting"),this.setState("select"),n.$blockScrolling--},this.select=function(){var e,t=this.editor,n=t.renderer.screenToTextCoordinates(this.x,this.y);t.$blockScrolling++;if(this.$clickSelection){var r=this.$clickSelection.comparePoint(n);if(r==-1)e=this.$clickSelection.end;else if(r==1)e=this.$clickSelection.start;else{var i=l(this.$clickSelection,n);n=i.cursor,e=i.anchor}t.selection.setSelectionAnchor(e.row,e.column)}t.selection.selectToPosition(n),t.$blockScrolling--,t.renderer.scrollCursorIntoView()},this.extendSelectionBy=function(e){var t,n=this.editor,r=n.renderer.screenToTextCoordinates(this.x,this.y),i=n.selection[e](r.row,r.column);n.$blockScrolling++;if(this.$clickSelection){var s=this.$clickSelection.comparePoint(i.start),o=this.$clickSelection.comparePoint(i.end);if(s==-1&&o<=0){t=this.$clickSelection.end;if(i.end.row!=r.row||i.end.column!=r.column)r=i.start}else if(o==1&&s>=0){t=this.$clickSelection.start;if(i.start.row!=r.row||i.start.column!=r.column)r=i.end}else if(s==-1&&o==1)r=i.end,t=i.start;else{var u=l(this.$clickSelection,r);r=u.cursor,t=u.anchor}n.selection.setSelectionAnchor(t.row,t.column)}n.selection.selectToPosition(r),n.$blockScrolling--,n.renderer.scrollCursorIntoView()},this.selectEnd=this.selectAllEnd=this.selectByWordsEnd=this.selectByLinesEnd=function(){this.$clickSelection=null,this.editor.unsetStyle("ace_selecting"),this.editor.renderer.scroller.releaseCapture&&this.editor.renderer.scroller.releaseCapture()},this.focusWait=function(){var e=f(this.mousedownEvent.x,this.mousedownEvent.y,this.x,this.y),t=Date.now();(e>o||t-this.mousedownEvent.time>this.$focusTimout)&&this.startSelect(this.mousedownEvent.getDocumentPosition())},this.onDoubleClick=function(e){var t=e.getDocumentPosition(),n=this.editor,r=n.session,i=r.getBracketRange(t);i?(i.isEmpty()&&(i.start.column--,i.end.column++),this.setState("select")):(i=n.selection.getWordRange(t.row,t.column),this.setState("selectByWords")),this.$clickSelection=i,this.select()},this.onTripleClick=function(e){var t=e.getDocumentPosition(),n=this.editor;this.setState("selectByLines");var r=n.getSelectionRange();r.isMultiLine()&&r.contains(t.row,t.column)?(this.$clickSelection=n.selection.getLineRange(r.start.row),this.$clickSelection.end=n.selection.getLineRange(r.end.row).end):this.$clickSelection=n.selection.getLineRange(t.row),this.select()},this.onQuadClick=function(e){var t=this.editor;t.selectAll(),this.$clickSelection=t.getSelectionRange(),this.setState("selectAll")},this.onMouseWheel=function(e){if(e.getAccelKey())return;e.getShiftKey()&&e.wheelY&&!e.wheelX&&(e.wheelX=e.wheelY,e.wheelY=0);var t=this.editor;this.$lastScroll||(this.$lastScroll={t:0,vx:0,vy:0,allowed:0});var n=this.$lastScroll,r=e.domEvent.timeStamp,i=r-n.t,s=e.wheelX/i,o=e.wheelY/i;i<u&&(s=(s+n.vx)/2,o=(o+n.vy)/2);var a=Math.abs(s/o),f=!1;a>=1&&t.renderer.isScrollableBy(e.wheelX*e.speed,0)&&(f=!0),a<=1&&t.renderer.isScrollableBy(0,e.wheelY*e.speed)&&(f=!0);if(f)n.allowed=r;else if(r-n.allowed<u){var l=Math.abs(s)<=1.1*Math.abs(n.vx)&&Math.abs(o)<=1.1*Math.abs(n.vy);l?(f=!0,n.allowed=r):n.allowed=0}n.t=r,n.vx=s,n.vy=o;if(f)return t.renderer.scrollBy(e.wheelX*e.speed,e.wheelY*e.speed),e.stop()},this.onTouchMove=function(e){this.editor._emit("mousewheel",e)}}).call(a.prototype),t.DefaultHandlers=a}),define("ace/tooltip",["require","exports","module","ace/lib/oop","ace/lib/dom"],function(e,t,n){"use strict";function s(e){this.isOpen=!1,this.$element=null,this.$parentNode=e}var r=e("./lib/oop"),i=e("./lib/dom");(function(){this.$init=function(){return this.$element=i.createElement("div"),this.$element.className="ace_tooltip",this.$element.style.display="none",this.$parentNode.appendChild(this.$element),this.$element},this.getElement=function(){return this.$element||this.$init()},this.setText=function(e){i.setInnerText(this.getElement(),e)},this.setHtml=function(e){this.getElement().innerHTML=e},this.setPosition=function(e,t){this.getElement().style.left=e+"px",this.getElement().style.top=t+"px"},this.setClassName=function(e){i.addCssClass(this.getElement(),e)},this.show=function(e,t,n){e!=null&&this.setText(e),t!=null&&n!=null&&this.setPosition(t,n),this.isOpen||(this.getElement().style.display="block",this.isOpen=!0)},this.hide=function(){this.isOpen&&(this.getElement().style.display="none",this.isOpen=!1)},this.getHeight=function(){return this.getElement().offsetHeight},this.getWidth=function(){return this.getElement().offsetWidth},this.destroy=function(){this.isOpen=!1,this.$element&&this.$element.parentNode&&this.$element.parentNode.removeChild(this.$element)}}).call(s.prototype),t.Tooltip=s}),define("ace/mouse/default_gutter_handler",["require","exports","module","ace/lib/dom","ace/lib/oop","ace/lib/event","ace/tooltip"],function(e,t,n){"use strict";function u(e){function l(){var r=u.getDocumentPosition().row,s=n.$annotations[r];if(!s)return c();var o=t.session.getLength();if(r==o){var a=t.renderer.pixelToScreenCoordinates(0,u.y).row,l=u.$pos;if(a>t.session.documentToScreenRow(l.row,l.column))return c()}if(f==s)return;f=s.text.join("<br/>"),i.setHtml(f),i.show(),t._signal("showGutterTooltip",i),t.on("mousewheel",c);if(e.$tooltipFollowsMouse)h(u);else{var p=u.domEvent.target,d=p.getBoundingClientRect(),v=i.getElement().style;v.left=d.right+"px",v.top=d.bottom+"px"}}function c(){o&&(o=clearTimeout(o)),f&&(i.hide(),f=null,t._signal("hideGutterTooltip",i),t.removeEventListener("mousewheel",c))}function h(e){i.setPosition(e.x,e.y)}var t=e.editor,n=t.renderer.$gutterLayer,i=new a(t.container);e.editor.setDefaultHandler("guttermousedown",function(r){if(!t.isFocused()||r.getButton()!=0)return;var i=n.getRegion(r);if(i=="foldWidgets")return;var s=r.getDocumentPosition().row,o=t.session.selection;if(r.getShiftKey())o.selectTo(s,0);else{if(r.domEvent.detail==2)return t.selectAll(),r.preventDefault();e.$clickSelection=t.selection.getLineRange(s)}return e.setState("selectByLines"),e.captureMouse(r),r.preventDefault()});var o,u,f;e.editor.setDefaultHandler("guttermousemove",function(t){var n=t.domEvent.target||t.domEvent.srcElement;if(r.hasCssClass(n,"ace_fold-widget"))return c();f&&e.$tooltipFollowsMouse&&h(t),u=t;if(o)return;o=setTimeout(function(){o=null,u&&!e.isMousePressed?l():c()},50)}),s.addListener(t.renderer.$gutter,"mouseout",function(e){u=null;if(!f||o)return;o=setTimeout(function(){o=null,c()},50)}),t.on("changeSession",c)}function a(e){o.call(this,e)}var r=e("../lib/dom"),i=e("../lib/oop"),s=e("../lib/event"),o=e("../tooltip").Tooltip;i.inherits(a,o),function(){this.setPosition=function(e,t){var n=window.innerWidth||document.documentElement.clientWidth,r=window.innerHeight||document.documentElement.clientHeight,i=this.getWidth(),s=this.getHeight();e+=15,t+=15,e+i>n&&(e-=e+i-n),t+s>r&&(t-=20+s),o.prototype.setPosition.call(this,e,t)}}.call(a.prototype),t.GutterHandler=u}),define("ace/mouse/mouse_event",["require","exports","module","ace/lib/event","ace/lib/useragent"],function(e,t,n){"use strict";var r=e("../lib/event"),i=e("../lib/useragent"),s=t.MouseEvent=function(e,t){this.domEvent=e,this.editor=t,this.x=this.clientX=e.clientX,this.y=this.clientY=e.clientY,this.$pos=null,this.$inSelection=null,this.propagationStopped=!1,this.defaultPrevented=!1};(function(){this.stopPropagation=function(){r.stopPropagation(this.domEvent),this.propagationStopped=!0},this.preventDefault=function(){r.preventDefault(this.domEvent),this.defaultPrevented=!0},this.stop=function(){this.stopPropagation(),this.preventDefault()},this.getDocumentPosition=function(){return this.$pos?this.$pos:(this.$pos=this.editor.renderer.screenToTextCoordinates(this.clientX,this.clientY),this.$pos)},this.inSelection=function(){if(this.$inSelection!==null)return this.$inSelection;var e=this.editor,t=e.getSelectionRange();if(t.isEmpty())this.$inSelection=!1;else{var n=this.getDocumentPosition();this.$inSelection=t.contains(n.row,n.column)}return this.$inSelection},this.getButton=function(){return r.getButton(this.domEvent)},this.getShiftKey=function(){return this.domEvent.shiftKey},this.getAccelKey=i.isMac?function(){return this.domEvent.metaKey}:function(){return this.domEvent.ctrlKey}}).call(s.prototype)}),define("ace/mouse/dragdrop_handler",["require","exports","module","ace/lib/dom","ace/lib/event","ace/lib/useragent"],function(e,t,n){"use strict";function f(e){function T(e,n){var r=Date.now(),i=!n||e.row!=n.row,s=!n||e.column!=n.column;if(!S||i||s)t.$blockScrolling+=1,t.moveCursorToPosition(e),t.$blockScrolling-=1,S=r,x={x:p,y:d};else{var o=l(x.x,x.y,p,d);o>a?S=null:r-S>=u&&(t.renderer.scrollCursorIntoView(),S=null)}}function N(e,n){var r=Date.now(),i=t.renderer.layerConfig.lineHeight,s=t.renderer.layerConfig.characterWidth,u=t.renderer.scroller.getBoundingClientRect(),a={x:{left:p-u.left,right:u.right-p},y:{top:d-u.top,bottom:u.bottom-d}},f=Math.min(a.x.left,a.x.right),l=Math.min(a.y.top,a.y.bottom),c={row:e.row,column:e.column};f/s<=2&&(c.column+=a.x.left<a.x.right?-3:2),l/i<=1&&(c.row+=a.y.top<a.y.bottom?-1:1);var h=e.row!=c.row,v=e.column!=c.column,m=!n||e.row!=n.row;h||v&&!m?E?r-E>=o&&t.renderer.scrollCursorIntoView(c):E=r:E=null}function C(){var e=g;g=t.renderer.screenToTextCoordinates(p,d),T(g,e),N(g,e)}function k(){m=t.selection.toOrientedRange(),h=t.session.addMarker(m,"ace_selection",t.getSelectionStyle()),t.clearSelection(),t.isFocused()&&t.renderer.$cursorLayer.setBlinking(!1),clearInterval(v),C(),v=setInterval(C,20),y=0,i.addListener(document,"mousemove",O)}function L(){clearInterval(v),t.session.removeMarker(h),h=null,t.$blockScrolling+=1,t.selection.fromOrientedRange(m),t.$blockScrolling-=1,t.isFocused()&&!w&&t.renderer.$cursorLayer.setBlinking(!t.getReadOnly()),m=null,g=null,y=0,E=null,S=null,i.removeListener(document,"mousemove",O)}function O(){A==null&&(A=setTimeout(function(){A!=null&&h&&L()},20))}function M(e){var t=e.types;return!t||Array.prototype.some.call(t,function(e){return e=="text/plain"||e=="Text"})}function _(e){var t=["copy","copymove","all","uninitialized"],n=["move","copymove","linkmove","all","uninitialized"],r=s.isMac?e.altKey:e.ctrlKey,i="uninitialized";try{i=e.dataTransfer.effectAllowed.toLowerCase()}catch(e){}var o="none";return r&&t.indexOf(i)>=0?o="copy":n.indexOf(i)>=0?o="move":t.indexOf(i)>=0&&(o="copy"),o}var t=e.editor,n=r.createElement("img");n.src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==",s.isOpera&&(n.style.cssText="width:1px;height:1px;position:fixed;top:0;left:0;z-index:2147483647;opacity:0;");var f=["dragWait","dragWaitEnd","startDrag","dragReadyEnd","onMouseDrag"];f.forEach(function(t){e[t]=this[t]},this),t.addEventListener("mousedown",this.onMouseDown.bind(e));var c=t.container,h,p,d,v,m,g,y=0,b,w,E,S,x;this.onDragStart=function(e){if(this.cancelDrag||!c.draggable){var r=this;return setTimeout(function(){r.startSelect(),r.captureMouse(e)},0),e.preventDefault()}m=t.getSelectionRange();var i=e.dataTransfer;i.effectAllowed=t.getReadOnly()?"copy":"copyMove",s.isOpera&&(t.container.appendChild(n),n.scrollTop=0),i.setDragImage&&i.setDragImage(n,0,0),s.isOpera&&t.container.removeChild(n),i.clearData(),i.setData("Text",t.session.getTextRange()),w=!0,this.setState("drag")},this.onDragEnd=function(e){c.draggable=!1,w=!1,this.setState(null);if(!t.getReadOnly()){var n=e.dataTransfer.dropEffect;!b&&n=="move"&&t.session.remove(t.getSelectionRange()),t.renderer.$cursorLayer.setBlinking(!0)}this.editor.unsetStyle("ace_dragging"),this.editor.renderer.setCursorStyle("")},this.onDragEnter=function(e){if(t.getReadOnly()||!M(e.dataTransfer))return;return p=e.clientX,d=e.clientY,h||k(),y++,e.dataTransfer.dropEffect=b=_(e),i.preventDefault(e)},this.onDragOver=function(e){if(t.getReadOnly()||!M(e.dataTransfer))return;return p=e.clientX,d=e.clientY,h||(k(),y++),A!==null&&(A=null),e.dataTransfer.dropEffect=b=_(e),i.preventDefault(e)},this.onDragLeave=function(e){y--;if(y<=0&&h)return L(),b=null,i.preventDefault(e)},this.onDrop=function(e){if(!g)return;var n=e.dataTransfer;if(w)switch(b){case"move":m.contains(g.row,g.column)?m={start:g,end:g}:m=t.moveText(m,g);break;case"copy":m=t.moveText(m,g,!0)}else{var r=n.getData("Text");m={start:g,end:t.session.insert(g,r)},t.focus(),b=null}return L(),i.preventDefault(e)},i.addListener(c,"dragstart",this.onDragStart.bind(e)),i.addListener(c,"dragend",this.onDragEnd.bind(e)),i.addListener(c,"dragenter",this.onDragEnter.bind(e)),i.addListener(c,"dragover",this.onDragOver.bind(e)),i.addListener(c,"dragleave",this.onDragLeave.bind(e)),i.addListener(c,"drop",this.onDrop.bind(e));var A=null}function l(e,t,n,r){return Math.sqrt(Math.pow(n-e,2)+Math.pow(r-t,2))}var r=e("../lib/dom"),i=e("../lib/event"),s=e("../lib/useragent"),o=200,u=200,a=5;(function(){this.dragWait=function(){var e=Date.now()-this.mousedownEvent.time;e>this.editor.getDragDelay()&&this.startDrag()},this.dragWaitEnd=function(){var e=this.editor.container;e.draggable=!1,this.startSelect(this.mousedownEvent.getDocumentPosition()),this.selectEnd()},this.dragReadyEnd=function(e){this.editor.renderer.$cursorLayer.setBlinking(!this.editor.getReadOnly()),this.editor.unsetStyle("ace_dragging"),this.editor.renderer.setCursorStyle(""),this.dragWaitEnd()},this.startDrag=function(){this.cancelDrag=!1;var e=this.editor,t=e.container;t.draggable=!0,e.renderer.$cursorLayer.setBlinking(!1),e.setStyle("ace_dragging");var n=s.isWin?"default":"move";e.renderer.setCursorStyle(n),this.setState("dragReady")},this.onMouseDrag=function(e){var t=this.editor.container;if(s.isIE&&this.state=="dragReady"){var n=l(this.mousedownEvent.x,this.mousedownEvent.y,this.x,this.y);n>3&&t.dragDrop()}if(this.state==="dragWait"){var n=l(this.mousedownEvent.x,this.mousedownEvent.y,this.x,this.y);n>0&&(t.draggable=!1,this.startSelect(this.mousedownEvent.getDocumentPosition()))}},this.onMouseDown=function(e){if(!this.$dragEnabled)return;this.mousedownEvent=e;var t=this.editor,n=e.inSelection(),r=e.getButton(),i=e.domEvent.detail||1;if(i===1&&r===0&&n){if(e.editor.inMultiSelectMode&&(e.getAccelKey()||e.getShiftKey()))return;this.mousedownEvent.time=Date.now();var o=e.domEvent.target||e.domEvent.srcElement;"unselectable"in o&&(o.unselectable="on");if(t.getDragDelay()){if(s.isWebKit){this.cancelDrag=!0;var u=t.container;u.draggable=!0}this.setState("dragWait")}else this.startDrag();this.captureMouse(e,this.onMouseDrag.bind(this)),e.defaultPrevented=!0}}}).call(f.prototype),t.DragdropHandler=f}),define("ace/lib/net",["require","exports","module","ace/lib/dom"],function(e,t,n){"use strict";var r=e("./dom");t.get=function(e,t){var n=new XMLHttpRequest;n.open("GET",e,!0),n.onreadystatechange=function(){n.readyState===4&&t(n.responseText)},n.send(null)},t.loadScript=function(e,t){var n=r.getDocumentHead(),i=document.createElement("script");i.src=e,n.appendChild(i),i.onload=i.onreadystatechange=function(e,n){if(n||!i.readyState||i.readyState=="loaded"||i.readyState=="complete")i=i.onload=i.onreadystatechange=null,n||t()}},t.qualifyURL=function(e){var t=document.createElement("a");return t.href=e,t.href}}),define("ace/lib/event_emitter",["require","exports","module"],function(e,t,n){"use strict";var r={},i=function(){this.propagationStopped=!0},s=function(){this.defaultPrevented=!0};r._emit=r._dispatchEvent=function(e,t){this._eventRegistry||(this._eventRegistry={}),this._defaultHandlers||(this._defaultHandlers={});var n=this._eventRegistry[e]||[],r=this._defaultHandlers[e];if(!n.length&&!r)return;if(typeof t!="object"||!t)t={};t.type||(t.type=e),t.stopPropagation||(t.stopPropagation=i),t.preventDefault||(t.preventDefault=s),n=n.slice();for(var o=0;o<n.length;o++){n[o](t,this);if(t.propagationStopped)break}if(r&&!t.defaultPrevented)return r(t,this)},r._signal=function(e,t){var n=(this._eventRegistry||{})[e];if(!n)return;n=n.slice();for(var r=0;r<n.length;r++)n[r](t,this)},r.once=function(e,t){var n=this;t&&this.addEventListener(e,function r(){n.removeEventListener(e,r),t.apply(null,arguments)})},r.setDefaultHandler=function(e,t){var n=this._defaultHandlers;n||(n=this._defaultHandlers={_disabled_:{}});if(n[e]){var r=n[e],i=n._disabled_[e];i||(n._disabled_[e]=i=[]),i.push(r);var s=i.indexOf(t);s!=-1&&i.splice(s,1)}n[e]=t},r.removeDefaultHandler=function(e,t){var n=this._defaultHandlers;if(!n)return;var r=n._disabled_[e];if(n[e]==t){var i=n[e];r&&this.setDefaultHandler(e,r.pop())}else if(r){var s=r.indexOf(t);s!=-1&&r.splice(s,1)}},r.on=r.addEventListener=function(e,t,n){this._eventRegistry=this._eventRegistry||{};var r=this._eventRegistry[e];return r||(r=this._eventRegistry[e]=[]),r.indexOf(t)==-1&&r[n?"unshift":"push"](t),t},r.off=r.removeListener=r.removeEventListener=function(e,t){this._eventRegistry=this._eventRegistry||{};var n=this._eventRegistry[e];if(!n)return;var r=n.indexOf(t);r!==-1&&n.splice(r,1)},r.removeAllListeners=function(e){this._eventRegistry&&(this._eventRegistry[e]=[])},t.EventEmitter=r}),define("ace/lib/app_config",["require","exports","module","ace/lib/oop","ace/lib/event_emitter"],function(e,t,n){"no use strict";function o(e){typeof console!="undefined"&&console.warn&&console.warn.apply(console,arguments)}function u(e,t){var n=new Error(e);n.data=t,typeof console=="object"&&console.error&&console.error(n),setTimeout(function(){throw n})}var r=e("./oop"),i=e("./event_emitter").EventEmitter,s={setOptions:function(e){Object.keys(e).forEach(function(t){this.setOption(t,e[t])},this)},getOptions:function(e){var t={};return e?Array.isArray(e)||(t=e,e=Object.keys(t)):e=Object.keys(this.$options),e.forEach(function(e){t[e]=this.getOption(e)},this),t},setOption:function(e,t){if(this["$"+e]===t)return;var n=this.$options[e];if(!n)return o('misspelled option "'+e+'"');if(n.forwardTo)return this[n.forwardTo]&&this[n.forwardTo].setOption(e,t);n.handlesSet||(this["$"+e]=t),n&&n.set&&n.set.call(this,t)},getOption:function(e){var t=this.$options[e];return t?t.forwardTo?this[t.forwardTo]&&this[t.forwardTo].getOption(e):t&&t.get?t.get.call(this):this["$"+e]:o('misspelled option "'+e+'"')}},a=function(){this.$defaultOptions={}};(function(){r.implement(this,i),this.defineOptions=function(e,t,n){return e.$options||(this.$defaultOptions[t]=e.$options={}),Object.keys(n).forEach(function(t){var r=n[t];typeof r=="string"&&(r={forwardTo:r}),r.name||(r.name=t),e.$options[r.name]=r,"initialValue"in r&&(e["$"+r.name]=r.initialValue)}),r.implement(e,s),this},this.resetOptions=function(e){Object.keys(e.$options).forEach(function(t){var n=e.$options[t];"value"in n&&e.setOption(t,n.value)})},this.setDefaultValue=function(e,t,n){var r=this.$defaultOptions[e]||(this.$defaultOptions[e]={});r[t]&&(r.forwardTo?this.setDefaultValue(r.forwardTo,t,n):r[t].value=n)},this.setDefaultValues=function(e,t){Object.keys(t).forEach(function(n){this.setDefaultValue(e,n,t[n])},this)},this.warn=o,this.reportError=u}).call(a.prototype),t.AppConfig=a}),define("ace/config",["require","exports","module","ace/lib/lang","ace/lib/oop","ace/lib/net","ace/lib/app_config"],function(e,t,n){"no use strict";function f(r){if(!u||!u.document)return;a.packaged=r||e.packaged||n.packaged||u.define&&define.packaged;var i={},s="",o=document.currentScript||document._currentScript,f=o&&o.ownerDocument||document,c=f.getElementsByTagName("script");for(var h=0;h<c.length;h++){var p=c[h],d=p.src||p.getAttribute("src");if(!d)continue;var v=p.attributes;for(var m=0,g=v.length;m<g;m++){var y=v[m];y.name.indexOf("data-ace-")===0&&(i[l(y.name.replace(/^data-ace-/,""))]=y.value)}var b=d.match(/^(.*)\/ace(\-\w+)?\.js(\?|$)/);b&&(s=b[1])}s&&(i.base=i.base||s,i.packaged=!0),i.basePath=i.base,i.workerPath=i.workerPath||i.base,i.modePath=i.modePath||i.base,i.themePath=i.themePath||i.base,delete i.base;for(var w in i)typeof i[w]!="undefined"&&t.set(w,i[w])}function l(e){return e.replace(/-(.)/g,function(e,t){return t.toUpperCase()})}var r=e("./lib/lang"),i=e("./lib/oop"),s=e("./lib/net"),o=e("./lib/app_config").AppConfig;n.exports=t=new o;var u=function(){return this||typeof window!="undefined"&&window}(),a={packaged:!1,workerPath:null,modePath:null,themePath:null,basePath:"",suffix:".js",$moduleUrls:{}};t.get=function(e){if(!a.hasOwnProperty(e))throw new Error("Unknown config key: "+e);return a[e]},t.set=function(e,t){if(!a.hasOwnProperty(e))throw new Error("Unknown config key: "+e);a[e]=t},t.all=function(){return r.copyObject(a)},t.moduleUrl=function(e,t){if(a.$moduleUrls[e])return a.$moduleUrls[e];var n=e.split("/");t=t||n[n.length-2]||"";var r=t=="snippets"?"/":"-",i=n[n.length-1];if(t=="worker"&&r=="-"){var s=new RegExp("^"+t+"[\\-_]|[\\-_]"+t+"$","g");i=i.replace(s,"")}(!i||i==t)&&n.length>1&&(i=n[n.length-2]);var o=a[t+"Path"];return o==null?o=a.basePath:r=="/"&&(t=r=""),o&&o.slice(-1)!="/"&&(o+="/"),o+t+r+i+this.get("suffix")},t.setModuleUrl=function(e,t){return a.$moduleUrls[e]=t},t.$loading={},t.loadModule=function(n,r){var i,o;Array.isArray(n)&&(o=n[0],n=n[1]);try{i=e(n)}catch(u){}if(i&&!t.$loading[n])return r&&r(i);t.$loading[n]||(t.$loading[n]=[]),t.$loading[n].push(r);if(t.$loading[n].length>1)return;var a=function(){e([n],function(e){t._emit("load.module",{name:n,module:e});var r=t.$loading[n];t.$loading[n]=null,r.forEach(function(t){t&&t(e)})})};if(!t.get("packaged"))return a();s.loadScript(t.moduleUrl(n,o),a)},t.init=f}),define("ace/mouse/mouse_handler",["require","exports","module","ace/lib/event","ace/lib/useragent","ace/mouse/default_handlers","ace/mouse/default_gutter_handler","ace/mouse/mouse_event","ace/mouse/dragdrop_handler","ace/config"],function(e,t,n){"use strict";var r=e("../lib/event"),i=e("../lib/useragent"),s=e("./default_handlers").DefaultHandlers,o=e("./default_gutter_handler").GutterHandler,u=e("./mouse_event").MouseEvent,a=e("./dragdrop_handler").DragdropHandler,f=e("../config"),l=function(e){var t=this;this.editor=e,new s(this),new o(this),new a(this);var n=function(t){var n=!document.hasFocus||!document.hasFocus()||!e.isFocused()&&document.activeElement==(e.textInput&&e.textInput.getElement());n&&window.focus(),e.focus()},u=e.renderer.getMouseEventTarget();r.addListener(u,"click",this.onMouseEvent.bind(this,"click")),r.addListener(u,"mousemove",this.onMouseMove.bind(this,"mousemove")),r.addMultiMouseDownListener([u,e.renderer.scrollBarV&&e.renderer.scrollBarV.inner,e.renderer.scrollBarH&&e.renderer.scrollBarH.inner,e.textInput&&e.textInput.getElement()].filter(Boolean),[400,300,250],this,"onMouseEvent"),r.addMouseWheelListener(e.container,this.onMouseWheel.bind(this,"mousewheel")),r.addTouchMoveListener(e.container,this.onTouchMove.bind(this,"touchmove"));var f=e.renderer.$gutter;r.addListener(f,"mousedown",this.onMouseEvent.bind(this,"guttermousedown")),r.addListener(f,"click",this.onMouseEvent.bind(this,"gutterclick")),r.addListener(f,"dblclick",this.onMouseEvent.bind(this,"gutterdblclick")),r.addListener(f,"mousemove",this.onMouseEvent.bind(this,"guttermousemove")),r.addListener(u,"mousedown",n),r.addListener(f,"mousedown",n),i.isIE&&e.renderer.scrollBarV&&(r.addListener(e.renderer.scrollBarV.element,"mousedown",n),r.addListener(e.renderer.scrollBarH.element,"mousedown",n)),e.on("mousemove",function(n){if(t.state||t.$dragDelay||!t.$dragEnabled)return;var r=e.renderer.screenToTextCoordinates(n.x,n.y),i=e.session.selection.getRange(),s=e.renderer;!i.isEmpty()&&i.insideStart(r.row,r.column)?s.setCursorStyle("default"):s.setCursorStyle("")})};(function(){this.onMouseEvent=function(e,t){this.editor._emit(e,new u(t,this.editor))},this.onMouseMove=function(e,t){var n=this.editor._eventRegistry&&this.editor._eventRegistry.mousemove;if(!n||!n.length)return;this.editor._emit(e,new u(t,this.editor))},this.onMouseWheel=function(e,t){var n=new u(t,this.editor);n.speed=this.$scrollSpeed*2,n.wheelX=t.wheelX,n.wheelY=t.wheelY,this.editor._emit(e,n)},this.onTouchMove=function(e,t){var n=new u(t,this.editor);n.speed=1,n.wheelX=t.wheelX,n.wheelY=t.wheelY,this.editor._emit(e,n)},this.setState=function(e){this.state=e},this.captureMouse=function(e,t){this.x=e.x,this.y=e.y,this.isMousePressed=!0;var n=this.editor.renderer;n.$keepTextAreaAtCursor&&(n.$keepTextAreaAtCursor=null);var s=this,o=function(e){if(!e)return;if(i.isWebKit&&!e.which&&s.releaseMouse)return s.releaseMouse();s.x=e.clientX,s.y=e.clientY,t&&t(e),s.mouseEvent=new u(e,s.editor),s.$mouseMoved=!0},a=function(e){clearInterval(l),f(),s[s.state+"End"]&&s[s.state+"End"](e),s.state="",n.$keepTextAreaAtCursor==null&&(n.$keepTextAreaAtCursor=!0,n.$moveTextAreaToCursor()),s.isMousePressed=!1,s.$onCaptureMouseMove=s.releaseMouse=null,e&&s.onMouseEvent("mouseup",e)},f=function(){s[s.state]&&s[s.state](),s.$mouseMoved=!1};if(i.isOldIE&&e.domEvent.type=="dblclick")return setTimeout(function(){a(e)});s.$onCaptureMouseMove=o,s.releaseMouse=r.capture(this.editor.container,o,a);var l=setInterval(f,20)},this.releaseMouse=null,this.cancelContextMenu=function(){var e=function(t){if(t&&t.domEvent&&t.domEvent.type!="contextmenu")return;this.editor.off("nativecontextmenu",e),t&&t.domEvent&&r.stopEvent(t.domEvent)}.bind(this);setTimeout(e,10),this.editor.on("nativecontextmenu",e)}}).call(l.prototype),f.defineOptions(l.prototype,"mouseHandler",{scrollSpeed:{initialValue:2},dragDelay:{initialValue:i.isMac?150:0},dragEnabled:{initialValue:!0},focusTimout:{initialValue:0},tooltipFollowsMouse:{initialValue:!0}}),t.MouseHandler=l}),define("ace/mouse/fold_handler",["require","exports","module"],function(e,t,n){"use strict";function r(e){e.on("click",function(t){var n=t.getDocumentPosition(),r=e.session,i=r.getFoldAt(n.row,n.column,1);i&&(t.getAccelKey()?r.removeFold(i):r.expandFold(i),t.stop())}),e.on("gutterclick",function(t){var n=e.renderer.$gutterLayer.getRegion(t);if(n=="foldWidgets"){var r=t.getDocumentPosition().row,i=e.session;i.foldWidgets&&i.foldWidgets[r]&&e.session.onFoldWidgetClick(r,t),e.isFocused()||e.focus(),t.stop()}}),e.on("gutterdblclick",function(t){var n=e.renderer.$gutterLayer.getRegion(t);if(n=="foldWidgets"){var r=t.getDocumentPosition().row,i=e.session,s=i.getParentFoldRangeData(r,!0),o=s.range||s.firstRange;if(o){r=o.start.row;var u=i.getFoldAt(r,i.getLine(r).length,1);u?i.removeFold(u):(i.addFold("...",o),e.renderer.scrollCursorIntoView({row:o.start.row,column:0}))}t.stop()}})}t.FoldHandler=r}),define("ace/keyboard/keybinding",["require","exports","module","ace/lib/keys","ace/lib/event"],function(e,t,n){"use strict";var r=e("../lib/keys"),i=e("../lib/event"),s=function(e){this.$editor=e,this.$data={editor:e},this.$handlers=[],this.setDefaultHandler(e.commands)};(function(){this.setDefaultHandler=function(e){this.removeKeyboardHandler(this.$defaultHandler),this.$defaultHandler=e,this.addKeyboardHandler(e,0)},this.setKeyboardHandler=function(e){var t=this.$handlers;if(t[t.length-1]==e)return;while(t[t.length-1]&&t[t.length-1]!=this.$defaultHandler)this.removeKeyboardHandler(t[t.length-1]);this.addKeyboardHandler(e,1)},this.addKeyboardHandler=function(e,t){if(!e)return;typeof e=="function"&&!e.handleKeyboard&&(e.handleKeyboard=e);var n=this.$handlers.indexOf(e);n!=-1&&this.$handlers.splice(n,1),t==undefined?this.$handlers.push(e):this.$handlers.splice(t,0,e),n==-1&&e.attach&&e.attach(this.$editor)},this.removeKeyboardHandler=function(e){var t=this.$handlers.indexOf(e);return t==-1?!1:(this.$handlers.splice(t,1),e.detach&&e.detach(this.$editor),!0)},this.getKeyboardHandler=function(){return this.$handlers[this.$handlers.length-1]},this.getStatusText=function(){var e=this.$data,t=e.editor;return this.$handlers.map(function(n){return n.getStatusText&&n.getStatusText(t,e)||""}).filter(Boolean).join(" ")},this.$callKeyboardHandlers=function(e,t,n,r){var s,o=!1,u=this.$editor.commands;for(var a=this.$handlers.length;a--;){s=this.$handlers[a].handleKeyboard(this.$data,e,t,n,r);if(!s||!s.command)continue;s.command=="null"?o=!0:o=u.exec(s.command,this.$editor,s.args,r),o&&r&&e!=-1&&s.passEvent!=1&&s.command.passEvent!=1&&i.stopEvent(r);if(o)break}return!o&&e==-1&&(s={command:"insertstring"},o=u.exec("insertstring",this.$editor,t)),o&&this.$editor._signal&&this.$editor._signal("keyboardActivity",s),o},this.onCommandKey=function(e,t,n){var i=r.keyCodeToString(n);this.$callKeyboardHandlers(t,i,n,e)},this.onTextInput=function(e){this.$callKeyboardHandlers(-1,e)}}).call(s.prototype),t.KeyBinding=s}),define("ace/lib/bidiutil",["require","exports","module"],function(e,t,n){"use strict";function F(e,t,n,r){var i=s?d:p,c=null,h=null,v=null,m=0,g=null,y=null,b=-1,w=null,E=null,T=[];if(!r)for(w=0,r=[];w<n;w++)r[w]=R(e[w]);o=s,u=!1,a=!1,f=!1,l=!1;for(E=0;E<n;E++){c=m,T[E]=h=q(e,r,T,E),m=i[c][h],g=m&240,m&=15,t[E]=v=i[m][5];if(g>0)if(g==16){for(w=b;w<E;w++)t[w]=1;b=-1}else b=-1;y=i[m][6];if(y)b==-1&&(b=E);else if(b>-1){for(w=b;w<E;w++)t[w]=v;b=-1}r[E]==S&&(t[E]=0),o|=v}if(l)for(w=0;w<n;w++)if(r[w]==x){t[w]=s;for(var C=w-1;C>=0;C--){if(r[C]!=N)break;t[C]=s}}}function I(e,t,n){if(o<e)return;if(e==1&&s==m&&!f){n.reverse();return}var r=n.length,i=0,u,a,l,c;while(i<r){if(t[i]>=e){u=i+1;while(u<r&&t[u]>=e)u++;for(a=i,l=u-1;a<l;a++,l--)c=n[a],n[a]=n[l],n[l]=c;i=u}i++}}function q(e,t,n,r){var i=t[r],o,c,h,p;switch(i){case g:case y:u=!1;case E:case w:return i;case b:return u?w:b;case T:return u=!0,a=!0,y;case N:return E;case C:if(r<1||r+1>=t.length||(o=n[r-1])!=b&&o!=w||(c=t[r+1])!=b&&c!=w)return E;return u&&(c=w),c==o?c:E;case k:o=r>0?n[r-1]:S;if(o==b&&r+1<t.length&&t[r+1]==b)return b;return E;case L:if(r>0&&n[r-1]==b)return b;if(u)return E;p=r+1,h=t.length;while(p<h&&t[p]==L)p++;if(p<h&&t[p]==b)return b;return E;case A:h=t.length,p=r+1;while(p<h&&t[p]==A)p++;if(p<h){var d=e[r],v=d>=1425&&d<=2303||d==64286;o=t[p];if(v&&(o==y||o==T))return y}if(r<1||(o=t[r-1])==S)return E;return n[r-1];case S:return u=!1,f=!0,s;case x:return l=!0,E;case O:case M:case D:case P:case _:u=!1;case H:return E}}function R(e){var t=e.charCodeAt(0),n=t>>8;return n==0?t>191?g:B[t]:n==5?/[\u0591-\u05f4]/.test(e)?y:g:n==6?/[\u0610-\u061a\u064b-\u065f\u06d6-\u06e4\u06e7-\u06ed]/.test(e)?A:/[\u0660-\u0669\u066b-\u066c]/.test(e)?w:t==1642?L:/[\u06f0-\u06f9]/.test(e)?b:T:n==32&&t<=8287?j[t&255]:n==254?t>=65136?T:E:E}function U(e){return e>="\u064b"&&e<="\u0655"}var r=["\u0621","\u0641"],i=["\u063a","\u064a"],s=0,o=0,u=!1,a=!1,f=!1,l=!1,c=!1,h=!1,p=[[0,3,0,1,0,0,0],[0,3,0,1,2,2,0],[0,3,0,17,2,0,1],[0,3,5,5,4,1,0],[0,3,21,21,4,0,1],[0,3,5,5,4,2,0]],d=[[2,0,1,1,0,1,0],[2,0,1,1,0,2,0],[2,0,2,1,3,2,0],[2,0,2,33,3,1,1]],v=0,m=1,g=0,y=1,b=2,w=3,E=4,S=5,x=6,T=7,N=8,C=9,k=10,L=11,A=12,O=13,M=14,_=15,D=16,P=17,H=18,B=[H,H,H,H,H,H,H,H,H,x,S,x,N,S,H,H,H,H,H,H,H,H,H,H,H,H,H,H,S,S,S,x,N,E,E,L,L,L,E,E,E,E,E,k,C,k,C,C,b,b,b,b,b,b,b,b,b,b,C,E,E,E,E,E,E,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,E,E,E,E,E,E,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,E,E,E,E,H,H,H,H,H,H,S,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,H,C,E,L,L,L,L,E,E,E,E,g,E,E,H,E,E,L,L,b,b,E,g,E,E,E,b,g,E,E,E,E,E],j=[N,N,N,N,N,N,N,N,N,N,N,H,H,H,g,y,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,N,S,O,M,_,D,P,C,L,L,L,L,L,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,C,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,E,N];t.L=g,t.R=y,t.EN=b,t.ON_R=3,t.AN=4,t.R_H=5,t.B=6,t.DOT="\u00b7",t.doBidiReorder=function(e,n,r){if(e.length<2)return{};var i=e.split(""),o=new Array(i.length),u=new Array(i.length),a=[];s=r?m:v,F(i,a,i.length,n);for(var f=0;f<o.length;o[f]=f,f++);I(2,a,o),I(1,a,o);for(var f=0;f<o.length-1;f++)n[f]===w?a[f]=t.AN:a[f]===y&&(n[f]>T&&n[f]<O||n[f]===E||n[f]===H)?a[f]=t.ON_R:f>0&&i[f-1]==="\u0644"&&/\u0622|\u0623|\u0625|\u0627/.test(i[f])&&(a[f-1]=a[f]=t.R_H,f++);i[i.length-1]===t.DOT&&(a[i.length-1]=t.B);for(var f=0;f<o.length;f++)u[f]=a[o[f]];return{logicalFromVisual:o,bidiLevels:u}},t.hasBidiCharacters=function(e,t){var n=!1;for(var r=0;r<e.length;r++)t[r]=R(e.charAt(r)),!n&&(t[r]==y||t[r]==T)&&(n=!0);return n},t.getVisualFromLogicalIdx=function(e,t){for(var n=0;n<t.logicalFromVisual.length;n++)if(t.logicalFromVisual[n]==e)return n;return 0}}),define("ace/bidihandler",["require","exports","module","ace/lib/bidiutil","ace/lib/lang","ace/lib/useragent"],function(e,t,n){"use strict";var r=e("./lib/bidiutil"),i=e("./lib/lang"),s=e("./lib/useragent"),o=/[\u0590-\u05f4\u0600-\u06ff\u0700-\u08ac]/,u=function(e){this.session=e,this.bidiMap={},this.currentRow=null,this.bidiUtil=r,this.charWidths=[],this.EOL="\u00ac",this.showInvisibles=!0,this.isRtlDir=!1,this.line="",this.wrapIndent=0,this.isLastRow=!1,this.EOF="\u00b6",this.seenBidi=!1};(function(){this.isBidiRow=function(e,t,n){return this.seenBidi?(e!==this.currentRow&&(this.currentRow=e,this.updateRowLine(t,n),this.updateBidiMap()),this.bidiMap.bidiLevels):!1},this.onChange=function(e){this.seenBidi?this.currentRow=null:e.action=="insert"&&o.test(e.lines.join("\n"))&&(this.seenBidi=!0,this.currentRow=null)},this.getDocumentRow=function(){var e=0,t=this.session.$screenRowCache;if(t.length){var n=this.session.$getRowCacheIndex(t,this.currentRow);n>=0&&(e=this.session.$docRowCache[n])}return e},this.getSplitIndex=function(){var e=0,t=this.session.$screenRowCache;if(t.length){var n,r=this.session.$getRowCacheIndex(t,this.currentRow);while(this.currentRow-e>0){n=this.session.$getRowCacheIndex(t,this.currentRow-e-1);if(n!==r)break;r=n,e++}}return e},this.updateRowLine=function(e,t){e===undefined&&(e=this.getDocumentRow()),this.wrapIndent=0,this.isLastRow=e===this.session.getLength()-1,this.line=this.session.getLine(e);if(this.session.$useWrapMode){var n=this.session.$wrapData[e];n&&(t===undefined&&(t=this.getSplitIndex()),t>0&&n.length?(this.wrapIndent=n.indent,this.line=t<n.length?this.line.substring(n[t-1],n[n.length-1]):this.line.substring(n[n.length-1])):this.line=this.line.substring(0,n[t]))}var s=this.session,o=0,u;this.line=this.line.replace(/\t|[\u1100-\u2029, \u202F-\uFFE6]/g,function(e,t){return e===" "||s.isFullWidth(e.charCodeAt(0))?(u=e===" "?s.getScreenTabSize(t+o):2,o+=u-1,i.stringRepeat(r.DOT,u)):e})},this.updateBidiMap=function(){var e=[],t=this.isLastRow?this.EOF:this.EOL,n=this.line+(this.showInvisibles?t:r.DOT);r.hasBidiCharacters(n,e)?this.bidiMap=r.doBidiReorder(n,e,this.isRtlDir):this.bidiMap={}},this.markAsDirty=function(){this.currentRow=null},this.updateCharacterWidths=function(e){if(!this.seenBidi)return;if(this.characterWidth===e.$characterSize.width)return;var t=this.characterWidth=e.$characterSize.width,n=e.$measureCharWidth("\u05d4");this.charWidths[r.L]=this.charWidths[r.EN]=this.charWidths[r.ON_R]=t,this.charWidths[r.R]=this.charWidths[r.AN]=n,this.charWidths[r.R_H]=s.isChrome?n:n*.45,this.charWidths[r.B]=0,this.currentRow=null},this.getShowInvisibles=function(){return this.showInvisibles},this.setShowInvisibles=function(e){this.showInvisibles=e,this.currentRow=null},this.setEolChar=function(e){this.EOL=e},this.setTextDir=function(e){this.isRtlDir=e},this.getPosLeft=function(e){e-=this.wrapIndent;var t=r.getVisualFromLogicalIdx(e>0?e-1:0,this.bidiMap),n=this.bidiMap.bidiLevels,i=0;e===0&&n[t]%2!==0&&t++;for(var s=0;s<t;s++)i+=this.charWidths[n[s]];return e!==0&&n[t]%2===0&&(i+=this.charWidths[n[t]]),this.wrapIndent&&(i+=this.wrapIndent*this.charWidths[r.L]),i},this.getSelections=function(e,t){var n=this.bidiMap,i=n.bidiLevels,s,o=this.wrapIndent*this.charWidths[r.L],u=[],a=Math.min(e,t)-this.wrapIndent,f=Math.max(e,t)-this.wrapIndent,l=!1,c=!1,h=0;for(var p,d=0;d<i.length;d++)p=n.logicalFromVisual[d],s=i[d],l=p>=a&&p<f,l&&!c?h=o:!l&&c&&u.push({left:h,width:o-h}),o+=this.charWidths[s],c=l;return l&&d===i.length&&u.push({left:h,width:o-h}),u},this.offsetToCol=function(e){var t=0,e=Math.max(e,0),n=0,i=0,s=this.bidiMap.bidiLevels,o=this.charWidths[s[i]];this.wrapIndent&&(e-=this.wrapIndent*this.charWidths[r.L]);while(e>n+o/2){n+=o;if(i===s.length-1){o=0;break}o=this.charWidths[s[++i]]}return i>0&&s[i-1]%2!==0&&s[i]%2===0?(e<n&&i--,t=this.bidiMap.logicalFromVisual[i]):i>0&&s[i-1]%2===0&&s[i]%2!==0?t=1+(e>n?this.bidiMap.logicalFromVisual[i]:this.bidiMap.logicalFromVisual[i-1]):this.isRtlDir&&i===s.length-1&&o===0&&s[i-1]%2===0||!this.isRtlDir&&i===0&&s[i]%2!==0?t=1+this.bidiMap.logicalFromVisual[i]:(i>0&&s[i-1]%2!==0&&o!==0&&i--,t=this.bidiMap.logicalFromVisual[i]),t+this.wrapIndent}}).call(u.prototype),t.BidiHandler=u}),define("ace/range",["require","exports","module"],function(e,t,n){"use strict";var r=function(e,t){return e.row-t.row||e.column-t.column},i=function(e,t,n,r){this.start={row:e,column:t},this.end={row:n,column:r}};(function(){this.isEqual=function(e){return this.start.row===e.start.row&&this.end.row===e.end.row&&this.start.column===e.start.column&&this.end.column===e.end.column},this.toString=function(){return"Range: ["+this.start.row+"/"+this.start.column+"] -> ["+this.end.row+"/"+this.end.column+"]"},this.contains=function(e,t){return this.compare(e,t)==0},this.compareRange=function(e){var t,n=e.end,r=e.start;return t=this.compare(n.row,n.column),t==1?(t=this.compare(r.row,r.column),t==1?2:t==0?1:0):t==-1?-2:(t=this.compare(r.row,r.column),t==-1?-1:t==1?42:0)},this.comparePoint=function(e){return this.compare(e.row,e.column)},this.containsRange=function(e){return this.comparePoint(e.start)==0&&this.comparePoint(e.end)==0},this.intersects=function(e){var t=this.compareRange(e);return t==-1||t==0||t==1},this.isEnd=function(e,t){return this.end.row==e&&this.end.column==t},this.isStart=function(e,t){return this.start.row==e&&this.start.column==t},this.setStart=function(e,t){typeof e=="object"?(this.start.column=e.column,this.start.row=e.row):(this.start.row=e,this.start.column=t)},this.setEnd=function(e,t){typeof e=="object"?(this.end.column=e.column,this.end.row=e.row):(this.end.row=e,this.end.column=t)},this.inside=function(e,t){return this.compare(e,t)==0?this.isEnd(e,t)||this.isStart(e,t)?!1:!0:!1},this.insideStart=function(e,t){return this.compare(e,t)==0?this.isEnd(e,t)?!1:!0:!1},this.insideEnd=function(e,t){return this.compare(e,t)==0?this.isStart(e,t)?!1:!0:!1},this.compare=function(e,t){return!this.isMultiLine()&&e===this.start.row?t<this.start.column?-1:t>this.end.column?1:0:e<this.start.row?-1:e>this.end.row?1:this.start.row===e?t>=this.start.column?0:-1:this.end.row===e?t<=this.end.column?0:1:0},this.compareStart=function(e,t){return this.start.row==e&&this.start.column==t?-1:this.compare(e,t)},this.compareEnd=function(e,t){return this.end.row==e&&this.end.column==t?1:this.compare(e,t)},this.compareInside=function(e,t){return this.end.row==e&&this.end.column==t?1:this.start.row==e&&this.start.column==t?-1:this.compare(e,t)},this.clipRows=function(e,t){if(this.end.row>t)var n={row:t+1,column:0};else if(this.end.row<e)var n={row:e,column:0};if(this.start.row>t)var r={row:t+1,column:0};else if(this.start.row<e)var r={row:e,column:0};return i.fromPoints(r||this.start,n||this.end)},this.extend=function(e,t){var n=this.compare(e,t);if(n==0)return this;if(n==-1)var r={row:e,column:t};else var s={row:e,column:t};return i.fromPoints(r||this.start,s||this.end)},this.isEmpty=function(){return this.start.row===this.end.row&&this.start.column===this.end.column},this.isMultiLine=function(){return this.start.row!==this.end.row},this.clone=function(){return i.fromPoints(this.start,this.end)},this.collapseRows=function(){return this.end.column==0?new i(this.start.row,0,Math.max(this.start.row,this.end.row-1),0):new i(this.start.row,0,this.end.row,0)},this.toScreenRange=function(e){var t=e.documentToScreenPosition(this.start),n=e.documentToScreenPosition(this.end);return new i(t.row,t.column,n.row,n.column)},this.moveBy=function(e,t){this.start.row+=e,this.start.column+=t,this.end.row+=e,this.end.column+=t}}).call(i.prototype),i.fromPoints=function(e,t){return new i(e.row,e.column,t.row,t.column)},i.comparePoints=r,i.comparePoints=function(e,t){return e.row-t.row||e.column-t.column},t.Range=i}),define("ace/selection",["require","exports","module","ace/lib/oop","ace/lib/lang","ace/lib/event_emitter","ace/range"],function(e,t,n){"use strict";var r=e("./lib/oop"),i=e("./lib/lang"),s=e("./lib/event_emitter").EventEmitter,o=e("./range").Range,u=function(e){this.session=e,this.doc=e.getDocument(),this.clearSelection(),this.lead=this.selectionLead=this.doc.createAnchor(0,0),this.anchor=this.selectionAnchor=this.doc.createAnchor(0,0);var t=this;this.lead.on("change",function(e){t._emit("changeCursor"),t.$isEmpty||t._emit("changeSelection"),!t.$keepDesiredColumnOnChange&&e.old.column!=e.value.column&&(t.$desiredColumn=null)}),this.selectionAnchor.on("change",function(){t.$isEmpty||t._emit("changeSelection")})};(function(){r.implement(this,s),this.isEmpty=function(){return this.$isEmpty||this.anchor.row==this.lead.row&&this.anchor.column==this.lead.column},this.isMultiLine=function(){return this.isEmpty()?!1:this.getRange().isMultiLine()},this.getCursor=function(){return this.lead.getPosition()},this.setSelectionAnchor=function(e,t){this.anchor.setPosition(e,t),this.$isEmpty&&(this.$isEmpty=!1,this._emit("changeSelection"))},this.getSelectionAnchor=function(){return this.$isEmpty?this.getSelectionLead():this.anchor.getPosition()},this.getSelectionLead=function(){return this.lead.getPosition()},this.shiftSelection=function(e){if(this.$isEmpty){this.moveCursorTo(this.lead.row,this.lead.column+e);return}var t=this.getSelectionAnchor(),n=this.getSelectionLead(),r=this.isBackwards();(!r||t.column!==0)&&this.setSelectionAnchor(t.row,t.column+e),(r||n.column!==0)&&this.$moveSelection(function(){this.moveCursorTo(n.row,n.column+e)})},this.isBackwards=function(){var e=this.anchor,t=this.lead;return e.row>t.row||e.row==t.row&&e.column>t.column},this.getRange=function(){var e=this.anchor,t=this.lead;return this.isEmpty()?o.fromPoints(t,t):this.isBackwards()?o.fromPoints(t,e):o.fromPoints(e,t)},this.clearSelection=function(){this.$isEmpty||(this.$isEmpty=!0,this._emit("changeSelection"))},this.selectAll=function(){var e=this.doc.getLength()-1;this.setSelectionAnchor(0,0),this.moveCursorTo(e,this.doc.getLine(e).length)},this.setRange=this.setSelectionRange=function(e,t){t?(this.setSelectionAnchor(e.end.row,e.end.column),this.selectTo(e.start.row,e.start.column)):(this.setSelectionAnchor(e.start.row,e.start.column),this.selectTo(e.end.row,e.end.column)),this.getRange().isEmpty()&&(this.$isEmpty=!0),this.$desiredColumn=null},this.$moveSelection=function(e){var t=this.lead;this.$isEmpty&&this.setSelectionAnchor(t.row,t.column),e.call(this)},this.selectTo=function(e,t){this.$moveSelection(function(){this.moveCursorTo(e,t)})},this.selectToPosition=function(e){this.$moveSelection(function(){this.moveCursorToPosition(e)})},this.moveTo=function(e,t){this.clearSelection(),this.moveCursorTo(e,t)},this.moveToPosition=function(e){this.clearSelection(),this.moveCursorToPosition(e)},this.selectUp=function(){this.$moveSelection(this.moveCursorUp)},this.selectDown=function(){this.$moveSelection(this.moveCursorDown)},this.selectRight=function(){this.$moveSelection(this.moveCursorRight)},this.selectLeft=function(){this.$moveSelection(this.moveCursorLeft)},this.selectLineStart=function(){this.$moveSelection(this.moveCursorLineStart)},this.selectLineEnd=function(){this.$moveSelection(this.moveCursorLineEnd)},this.selectFileEnd=function(){this.$moveSelection(this.moveCursorFileEnd)},this.selectFileStart=function(){this.$moveSelection(this.moveCursorFileStart)},this.selectWordRight=function(){this.$moveSelection(this.moveCursorWordRight)},this.selectWordLeft=function(){this.$moveSelection(this.moveCursorWordLeft)},this.getWordRange=function(e,t){if(typeof t=="undefined"){var n=e||this.lead;e=n.row,t=n.column}return this.session.getWordRange(e,t)},this.selectWord=function(){this.setSelectionRange(this.getWordRange())},this.selectAWord=function(){var e=this.getCursor(),t=this.session.getAWordRange(e.row,e.column);this.setSelectionRange(t)},this.getLineRange=function(e,t){var n=typeof e=="number"?e:this.lead.row,r,i=this.session.getFoldLine(n);return i?(n=i.start.row,r=i.end.row):r=n,t===!0?new o(n,0,r,this.session.getLine(r).length):new o(n,0,r+1,0)},this.selectLine=function(){this.setSelectionRange(this.getLineRange())},this.moveCursorUp=function(){this.moveCursorBy(-1,0)},this.moveCursorDown=function(){this.moveCursorBy(1,0)},this.wouldMoveIntoSoftTab=function(e,t,n){var r=e.column,i=e.column+t;return n<0&&(r=e.column-t,i=e.column),this.session.isTabStop(e)&&this.doc.getLine(e.row).slice(r,i).split(" ").length-1==t},this.moveCursorLeft=function(){var e=this.lead.getPosition(),t;if(t=this.session.getFoldAt(e.row,e.column,-1))this.moveCursorTo(t.start.row,t.start.column);else if(e.column===0)e.row>0&&this.moveCursorTo(e.row-1,this.doc.getLine(e.row-1).length);else{var n=this.session.getTabSize();this.wouldMoveIntoSoftTab(e,n,-1)&&!this.session.getNavigateWithinSoftTabs()?this.moveCursorBy(0,-n):this.moveCursorBy(0,-1)}},this.moveCursorRight=function(){var e=this.lead.getPosition(),t;if(t=this.session.getFoldAt(e.row,e.column,1))this.moveCursorTo(t.end.row,t.end.column);else if(this.lead.column==this.doc.getLine(this.lead.row).length)this.lead.row<this.doc.getLength()-1&&this.moveCursorTo(this.lead.row+1,0);else{var n=this.session.getTabSize(),e=this.lead;this.wouldMoveIntoSoftTab(e,n,1)&&!this.session.getNavigateWithinSoftTabs()?this.moveCursorBy(0,n):this.moveCursorBy(0,1)}},this.moveCursorLineStart=function(){var e=this.lead.row,t=this.lead.column,n=this.session.documentToScreenRow(e,t),r=this.session.screenToDocumentPosition(n,0),i=this.session.getDisplayLine(e,null,r.row,r.column),s=i.match(/^\s*/);s[0].length!=t&&!this.session.$useEmacsStyleLineStart&&(r.column+=s[0].length),this.moveCursorToPosition(r)},this.moveCursorLineEnd=function(){var e=this.lead,t=this.session.getDocumentLastRowColumnPosition(e.row,e.column);if(this.lead.column==t.column){var n=this.session.getLine(t.row);if(t.column==n.length){var r=n.search(/\s+$/);r>0&&(t.column=r)}}this.moveCursorTo(t.row,t.column)},this.moveCursorFileEnd=function(){var e=this.doc.getLength()-1,t=this.doc.getLine(e).length;this.moveCursorTo(e,t)},this.moveCursorFileStart=function(){this.moveCursorTo(0,0)},this.moveCursorLongWordRight=function(){var e=this.lead.row,t=this.lead.column,n=this.doc.getLine(e),r=n.substring(t),i;this.session.nonTokenRe.lastIndex=0,this.session.tokenRe.lastIndex=0;var s=this.session.getFoldAt(e,t,1);if(s){this.moveCursorTo(s.end.row,s.end.column);return}if(i=this.session.nonTokenRe.exec(r))t+=this.session.nonTokenRe.lastIndex,this.session.nonTokenRe.lastIndex=0,r=n.substring(t);if(t>=n.length){this.moveCursorTo(e,n.length),this.moveCursorRight(),e<this.doc.getLength()-1&&this.moveCursorWordRight();return}if(i=this.session.tokenRe.exec(r))t+=this.session.tokenRe.lastIndex,this.session.tokenRe.lastIndex=0;this.moveCursorTo(e,t)},this.moveCursorLongWordLeft=function(){var e=this.lead.row,t=this.lead.column,n;if(n=this.session.getFoldAt(e,t,-1)){this.moveCursorTo(n.start.row,n.start.column);return}var r=this.session.getFoldStringAt(e,t,-1);r==null&&(r=this.doc.getLine(e).substring(0,t));var s=i.stringReverse(r),o;this.session.nonTokenRe.lastIndex=0,this.session.tokenRe.lastIndex=0;if(o=this.session.nonTokenRe.exec(s))t-=this.session.nonTokenRe.lastIndex,s=s.slice(this.session.nonTokenRe.lastIndex),this.session.nonTokenRe.lastIndex=0;if(t<=0){this.moveCursorTo(e,0),this.moveCursorLeft(),e>0&&this.moveCursorWordLeft();return}if(o=this.session.tokenRe.exec(s))t-=this.session.tokenRe.lastIndex,this.session.tokenRe.lastIndex=0;this.moveCursorTo(e,t)},this.$shortWordEndIndex=function(e){var t,n=0,r,i=/\s/,s=this.session.tokenRe;s.lastIndex=0;if(t=this.session.tokenRe.exec(e))n=this.session.tokenRe.lastIndex;else{while((r=e[n])&&i.test(r))n++;if(n<1){s.lastIndex=0;while((r=e[n])&&!s.test(r)){s.lastIndex=0,n++;if(i.test(r)){if(n>2){n--;break}while((r=e[n])&&i.test(r))n++;if(n>2)break}}}}return s.lastIndex=0,n},this.moveCursorShortWordRight=function(){var e=this.lead.row,t=this.lead.column,n=this.doc.getLine(e),r=n.substring(t),i=this.session.getFoldAt(e,t,1);if(i)return this.moveCursorTo(i.end.row,i.end.column);if(t==n.length){var s=this.doc.getLength();do e++,r=this.doc.getLine(e);while(e<s&&/^\s*$/.test(r));/^\s+/.test(r)||(r=""),t=0}var o=this.$shortWordEndIndex(r);this.moveCursorTo(e,t+o)},this.moveCursorShortWordLeft=function(){var e=this.lead.row,t=this.lead.column,n;if(n=this.session.getFoldAt(e,t,-1))return this.moveCursorTo(n.start.row,n.start.column);var r=this.session.getLine(e).substring(0,t);if(t===0){do e--,r=this.doc.getLine(e);while(e>0&&/^\s*$/.test(r));t=r.length,/\s+$/.test(r)||(r="")}var s=i.stringReverse(r),o=this.$shortWordEndIndex(s);return this.moveCursorTo(e,t-o)},this.moveCursorWordRight=function(){this.session.$selectLongWords?this.moveCursorLongWordRight():this.moveCursorShortWordRight()},this.moveCursorWordLeft=function(){this.session.$selectLongWords?this.moveCursorLongWordLeft():this.moveCursorShortWordLeft()},this.moveCursorBy=function(e,t){var n=this.session.documentToScreenPosition(this.lead.row,this.lead.column),r;t===0&&(e!==0&&(this.session.$bidiHandler.isBidiRow(n.row,this.lead.row)?(r=this.session.$bidiHandler.getPosLeft(n.column),n.column=Math.round(r/this.session.$bidiHandler.charWidths[0])):r=n.column*this.session.$bidiHandler.charWidths[0]),this.$desiredColumn?n.column=this.$desiredColumn:this.$desiredColumn=n.column);var i=this.session.screenToDocumentPosition(n.row+e,n.column,r);e!==0&&t===0&&i.row===this.lead.row&&i.column===this.lead.column&&this.session.lineWidgets&&this.session.lineWidgets[i.row]&&(i.row>0||e>0)&&i.row++,this.moveCursorTo(i.row,i.column+t,t===0)},this.moveCursorToPosition=function(e){this.moveCursorTo(e.row,e.column)},this.moveCursorTo=function(e,t,n){var r=this.session.getFoldAt(e,t,1);r&&(e=r.start.row,t=r.start.column),this.$keepDesiredColumnOnChange=!0;var i=this.session.getLine(e);/[\uDC00-\uDFFF]/.test(i.charAt(t))&&i.charAt(t-1)&&(this.lead.row==e&&this.lead.column==t+1?t-=1:t+=1),this.lead.setPosition(e,t),this.$keepDesiredColumnOnChange=!1,n||(this.$desiredColumn=null)},this.moveCursorToScreen=function(e,t,n){var r=this.session.screenToDocumentPosition(e,t);this.moveCursorTo(r.row,r.column,n)},this.detach=function(){this.lead.detach(),this.anchor.detach(),this.session=this.doc=null},this.fromOrientedRange=function(e){this.setSelectionRange(e,e.cursor==e.start),this.$desiredColumn=e.desiredColumn||this.$desiredColumn},this.toOrientedRange=function(e){var t=this.getRange();return e?(e.start.column=t.start.column,e.start.row=t.start.row,e.end.column=t.end.column,e.end.row=t.end.row):e=t,e.cursor=this.isBackwards()?e.start:e.end,e.desiredColumn=this.$desiredColumn,e},this.getRangeOfMovements=function(e){var t=this.getCursor();try{e(this);var n=this.getCursor();return o.fromPoints(t,n)}catch(r){return o.fromPoints(t,t)}finally{this.moveCursorToPosition(t)}},this.toJSON=function(){if(this.rangeCount)var e=this.ranges.map(function(e){var t=e.clone();return t.isBackwards=e.cursor==e.start,t});else{var e=this.getRange();e.isBackwards=this.isBackwards()}return e},this.fromJSON=function(e){if(e.start==undefined){if(this.rangeList){this.toSingleRange(e[0]);for(var t=e.length;t--;){var n=o.fromPoints(e[t].start,e[t].end);e[t].isBackwards&&(n.cursor=n.start),this.addRange(n,!0)}return}e=e[0]}this.rangeList&&this.toSingleRange(e),this.setSelectionRange(e,e.isBackwards)},this.isEqual=function(e){if((e.length||this.rangeCount)&&e.length!=this.rangeCount)return!1;if(!e.length||!this.ranges)return this.getRange().isEqual(e);for(var t=this.ranges.length;t--;)if(!this.ranges[t].isEqual(e[t]))return!1;return!0}}).call(u.prototype),t.Selection=u}),define("ace/tokenizer",["require","exports","module","ace/config"],function(e,t,n){"use strict";var r=e("./config"),i=2e3,s=function(e){this.states=e,this.regExps={},this.matchMappings={};for(var t in this.states){var n=this.states[t],r=[],i=0,s=this.matchMappings[t]={defaultToken:"text"},o="g",u=[];for(var a=0;a<n.length;a++){var f=n[a];f.defaultToken&&(s.defaultToken=f.defaultToken),f.caseInsensitive&&(o="gi");if(f.regex==null)continue;f.regex instanceof RegExp&&(f.regex=f.regex.toString().slice(1,-1));var l=f.regex,c=(new RegExp("(?:("+l+")|(.))")).exec("a").length-2;Array.isArray(f.token)?f.token.length==1||c==1?f.token=f.token[0]:c-1!=f.token.length?(this.reportError("number of classes and regexp groups doesn't match",{rule:f,groupCount:c-1}),f.token=f.token[0]):(f.tokenArray=f.token,f.token=null,f.onMatch=this.$arrayTokens):typeof f.token=="function"&&!f.onMatch&&(c>1?f.onMatch=this.$applyToken:f.onMatch=f.token),c>1&&(/\\\d/.test(f.regex)?l=f.regex.replace(/\\([0-9]+)/g,function(e,t){return"\\"+(parseInt(t,10)+i+1)}):(c=1,l=this.removeCapturingGroups(f.regex)),!f.splitRegex&&typeof f.token!="string"&&u.push(f)),s[i]=a,i+=c,r.push(l),f.onMatch||(f.onMatch=null)}r.length||(s[0]=0,r.push("$")),u.forEach(function(e){e.splitRegex=this.createSplitterRegexp(e.regex,o)},this),this.regExps[t]=new RegExp("("+r.join(")|(")+")|($)",o)}};(function(){this.$setMaxTokenCount=function(e){i=e|0},this.$applyToken=function(e){var t=this.splitRegex.exec(e).slice(1),n=this.token.apply(this,t);if(typeof n=="string")return[{type:n,value:e}];var r=[];for(var i=0,s=n.length;i<s;i++)t[i]&&(r[r.length]={type:n[i],value:t[i]});return r},this.$arrayTokens=function(e){if(!e)return[];var t=this.splitRegex.exec(e);if(!t)return"text";var n=[],r=this.tokenArray;for(var i=0,s=r.length;i<s;i++)t[i+1]&&(n[n.length]={type:r[i],value:t[i+1]});return n},this.removeCapturingGroups=function(e){var t=e.replace(/\[(?:\\.|[^\]])*?\]|\\.|\(\?[:=!]|(\()/g,function(e,t){return t?"(?:":e});return t},this.createSplitterRegexp=function(e,t){if(e.indexOf("(?=")!=-1){var n=0,r=!1,i={};e.replace(/(\\.)|(\((?:\?[=!])?)|(\))|([\[\]])/g,function(e,t,s,o,u,a){return r?r=u!="]":u?r=!0:o?(n==i.stack&&(i.end=a+1,i.stack=-1),n--):s&&(n++,s.length!=1&&(i.stack=n,i.start=a)),e}),i.end!=null&&/^\)*$/.test(e.substr(i.end))&&(e=e.substring(0,i.start)+e.substr(i.end))}return e.charAt(0)!="^"&&(e="^"+e),e.charAt(e.length-1)!="$"&&(e+="$"),new RegExp(e,(t||"").replace("g",""))},this.getLineTokens=function(e,t){if(t&&typeof t!="string"){var n=t.slice(0);t=n[0],t==="#tmp"&&(n.shift(),t=n.shift())}else var n=[];var r=t||"start",s=this.states[r];s||(r="start",s=this.states[r]);var o=this.matchMappings[r],u=this.regExps[r];u.lastIndex=0;var a,f=[],l=0,c=0,h={type:null,value:""};while(a=u.exec(e)){var p=o.defaultToken,d=null,v=a[0],m=u.lastIndex;if(m-v.length>l){var g=e.substring(l,m-v.length);h.type==p?h.value+=g:(h.type&&f.push(h),h={type:p,value:g})}for(var y=0;y<a.length-2;y++){if(a[y+1]===undefined)continue;d=s[o[y]],d.onMatch?p=d.onMatch(v,r,n,e):p=d.token,d.next&&(typeof d.next=="string"?r=d.next:r=d.next(r,n),s=this.states[r],s||(this.reportError("state doesn't exist",r),r="start",s=this.states[r]),o=this.matchMappings[r],l=m,u=this.regExps[r],u.lastIndex=m),d.consumeLineEnd&&(l=m);break}if(v)if(typeof p=="string")!!d&&d.merge===!1||h.type!==p?(h.type&&f.push(h),h={type:p,value:v}):h.value+=v;else if(p){h.type&&f.push(h),h={type:null,value:""};for(var y=0;y<p.length;y++)f.push(p[y])}if(l==e.length)break;l=m;if(c++>i){c>2*e.length&&this.reportError("infinite loop with in ace tokenizer",{startState:t,line:e});while(l<e.length)h.type&&f.push(h),h={value:e.substring(l,l+=2e3),type:"overflow"};r="start",n=[];break}}return h.type&&f.push(h),n.length>1&&n[0]!==r&&n.unshift("#tmp",r),{tokens:f,state:n.length?n:r}},this.reportError=r.reportError}).call(s.prototype),t.Tokenizer=s}),define("ace/mode/text_highlight_rules",["require","exports","module","ace/lib/lang"],function(e,t,n){"use strict";var r=e("../lib/lang"),i=function(){this.$rules={start:[{token:"empty_line",regex:"^$"},{defaultToken:"text"}]}};(function(){this.addRules=function(e,t){if(!t){for(var n in e)this.$rules[n]=e[n];return}for(var n in e){var r=e[n];for(var i=0;i<r.length;i++){var s=r[i];if(s.next||s.onMatch)typeof s.next=="string"&&s.next.indexOf(t)!==0&&(s.next=t+s.next),s.nextState&&s.nextState.indexOf(t)!==0&&(s.nextState=t+s.nextState)}this.$rules[t+n]=r}},this.getRules=function(){return this.$rules},this.embedRules=function(e,t,n,i,s){var o=typeof e=="function"?(new e).getRules():e;if(i)for(var u=0;u<i.length;u++)i[u]=t+i[u];else{i=[];for(var a in o)i.push(t+a)}this.addRules(o,t);if(n){var f=Array.prototype[s?"push":"unshift"];for(var u=0;u<i.length;u++)f.apply(this.$rules[i[u]],r.deepCopy(n))}this.$embeds||(this.$embeds=[]),this.$embeds.push(t)},this.getEmbeds=function(){return this.$embeds};var e=function(e,t){return(e!="start"||t.length)&&t.unshift(this.nextState,e),this.nextState},t=function(e,t){return t.shift(),t.shift()||"start"};this.normalizeRules=function(){function i(s){var o=r[s];o.processed=!0;for(var u=0;u<o.length;u++){var a=o[u],f=null;Array.isArray(a)&&(f=a,a={}),!a.regex&&a.start&&(a.regex=a.start,a.next||(a.next=[]),a.next.push({defaultToken:a.token},{token:a.token+".end",regex:a.end||a.start,next:"pop"}),a.token=a.token+".start",a.push=!0);var l=a.next||a.push;if(l&&Array.isArray(l)){var c=a.stateName;c||(c=a.token,typeof c!="string"&&(c=c[0]||""),r[c]&&(c+=n++)),r[c]=l,a.next=c,i(c)}else l=="pop"&&(a.next=t);a.push&&(a.nextState=a.next||a.push,a.next=e,delete a.push);if(a.rules)for(var h in a.rules)r[h]?r[h].push&&r[h].push.apply(r[h],a.rules[h]):r[h]=a.rules[h];var p=typeof a=="string"?a:a.include;p&&(Array.isArray(p)?f=p.map(function(e){return r[e]}):f=r[p]);if(f){var d=[u,1].concat(f);a.noEscape&&(d=d.filter(function(e){return!e.next})),o.splice.apply(o,d),u--}a.keywordMap&&(a.token=this.createKeywordMapper(a.keywordMap,a.defaultToken||"text",a.caseInsensitive),delete a.defaultToken)}}var n=0,r=this.$rules;Object.keys(r).forEach(i,this)},this.createKeywordMapper=function(e,t,n,r){var i=Object.create(null);return Object.keys(e).forEach(function(t){var s=e[t];n&&(s=s.toLowerCase());var o=s.split(r||"|");for(var u=o.length;u--;)i[o[u]]=t}),Object.getPrototypeOf(i)&&(i.__proto__=null),this.$keywordList=Object.keys(i),e=null,n?function(e){return i[e.toLowerCase()]||t}:function(e){return i[e]||t}},this.getKeywords=function(){return this.$keywords}}).call(i.prototype),t.TextHighlightRules=i}),define("ace/mode/behaviour",["require","exports","module"],function(e,t,n){"use strict";var r=function(){this.$behaviours={}};(function(){this.add=function(e,t,n){switch(undefined){case this.$behaviours:this.$behaviours={};case this.$behaviours[e]:this.$behaviours[e]={}}this.$behaviours[e][t]=n},this.addBehaviours=function(e){for(var t in e)for(var n in e[t])this.add(t,n,e[t][n])},this.remove=function(e){this.$behaviours&&this.$behaviours[e]&&delete this.$behaviours[e]},this.inherit=function(e,t){if(typeof e=="function")var n=(new e).getBehaviours(t);else var n=e.getBehaviours(t);this.addBehaviours(n)},this.getBehaviours=function(e){if(!e)return this.$behaviours;var t={};for(var n=0;n<e.length;n++)this.$behaviours[e[n]]&&(t[e[n]]=this.$behaviours[e[n]]);return t}}).call(r.prototype),t.Behaviour=r}),define("ace/token_iterator",["require","exports","module","ace/range"],function(e,t,n){"use strict";var r=e("./range").Range,i=function(e,t,n){this.$session=e,this.$row=t,this.$rowTokens=e.getTokens(t);var r=e.getTokenAt(t,n);this.$tokenIndex=r?r.index:-1};(function(){this.stepBackward=function(){this.$tokenIndex-=1;while(this.$tokenIndex<0){this.$row-=1;if(this.$row<0)return this.$row=0,null;this.$rowTokens=this.$session.getTokens(this.$row),this.$tokenIndex=this.$rowTokens.length-1}return this.$rowTokens[this.$tokenIndex]},this.stepForward=function(){this.$tokenIndex+=1;var e;while(this.$tokenIndex>=this.$rowTokens.length){this.$row+=1,e||(e=this.$session.getLength());if(this.$row>=e)return this.$row=e-1,null;this.$rowTokens=this.$session.getTokens(this.$row),this.$tokenIndex=0}return this.$rowTokens[this.$tokenIndex]},this.getCurrentToken=function(){return this.$rowTokens[this.$tokenIndex]},this.getCurrentTokenRow=function(){return this.$row},this.getCurrentTokenColumn=function(){var e=this.$rowTokens,t=this.$tokenIndex,n=e[t].start;if(n!==undefined)return n;n=0;while(t>0)t-=1,n+=e[t].value.length;return n},this.getCurrentTokenPosition=function(){return{row:this.$row,column:this.getCurrentTokenColumn()}},this.getCurrentTokenRange=function(){var e=this.$rowTokens[this.$tokenIndex],t=this.getCurrentTokenColumn();return new r(this.$row,t,this.$row,t+e.value.length)}}).call(i.prototype),t.TokenIterator=i}),define("ace/mode/behaviour/cstyle",["require","exports","module","ace/lib/oop","ace/mode/behaviour","ace/token_iterator","ace/lib/lang"],function(e,t,n){"use strict";var r=e("../../lib/oop"),i=e("../behaviour").Behaviour,s=e("../../token_iterator").TokenIterator,o=e("../../lib/lang"),u=["text","paren.rparen","punctuation.operator"],a=["text","paren.rparen","punctuation.operator","comment"],f,l={},c={'"':'"',"'":"'"},h=function(e){var t=-1;e.multiSelect&&(t=e.selection.index,l.rangeCount!=e.multiSelect.rangeCount&&(l={rangeCount:e.multiSelect.rangeCount}));if(l[t])return f=l[t];f=l[t]={autoInsertedBrackets:0,autoInsertedRow:-1,autoInsertedLineEnd:"",maybeInsertedBrackets:0,maybeInsertedRow:-1,maybeInsertedLineStart:"",maybeInsertedLineEnd:""}},p=function(e,t,n,r){var i=e.end.row-e.start.row;return{text:n+t+r,selection:[0,e.start.column+1,i,e.end.column+(i?0:1)]}},d=function(e){this.add("braces","insertion",function(t,n,r,i,s){var u=r.getCursorPosition(),a=i.doc.getLine(u.row);if(s=="{"){h(r);var l=r.getSelectionRange(),c=i.doc.getTextRange(l);if(c!==""&&c!=="{"&&r.getWrapBehavioursEnabled())return p(l,c,"{","}");if(d.isSaneInsertion(r,i))return/[\]\}\)]/.test(a[u.column])||r.inMultiSelectMode||e&&e.braces?(d.recordAutoInsert(r,i,"}"),{text:"{}",selection:[1,1]}):(d.recordMaybeInsert(r,i,"{"),{text:"{",selection:[1,1]})}else if(s=="}"){h(r);var v=a.substring(u.column,u.column+1);if(v=="}"){var m=i.$findOpeningBracket("}",{column:u.column+1,row:u.row});if(m!==null&&d.isAutoInsertedClosing(u,a,s))return d.popAutoInsertedClosing(),{text:"",selection:[1,1]}}}else{if(s=="\n"||s=="\r\n"){h(r);var g="";d.isMaybeInsertedClosing(u,a)&&(g=o.stringRepeat("}",f.maybeInsertedBrackets),d.clearMaybeInsertedClosing());var v=a.substring(u.column,u.column+1);if(v==="}"){var y=i.findMatchingBracket({row:u.row,column:u.column+1},"}");if(!y)return null;var b=this.$getIndent(i.getLine(y.row))}else{if(!g){d.clearMaybeInsertedClosing();return}var b=this.$getIndent(a)}var w=b+i.getTabString();return{text:"\n"+w+"\n"+b+g,selection:[1,w.length,1,w.length]}}d.clearMaybeInsertedClosing()}}),this.add("braces","deletion",function(e,t,n,r,i){var s=r.doc.getTextRange(i);if(!i.isMultiLine()&&s=="{"){h(n);var o=r.doc.getLine(i.start.row),u=o.substring(i.end.column,i.end.column+1);if(u=="}")return i.end.column++,i;f.maybeInsertedBrackets--}}),this.add("parens","insertion",function(e,t,n,r,i){if(i=="("){h(n);var s=n.getSelectionRange(),o=r.doc.getTextRange(s);if(o!==""&&n.getWrapBehavioursEnabled())return p(s,o,"(",")");if(d.isSaneInsertion(n,r))return d.recordAutoInsert(n,r,")"),{text:"()",selection:[1,1]}}else if(i==")"){h(n);var u=n.getCursorPosition(),a=r.doc.getLine(u.row),f=a.substring(u.column,u.column+1);if(f==")"){var l=r.$findOpeningBracket(")",{column:u.column+1,row:u.row});if(l!==null&&d.isAutoInsertedClosing(u,a,i))return d.popAutoInsertedClosing(),{text:"",selection:[1,1]}}}}),this.add("parens","deletion",function(e,t,n,r,i){var s=r.doc.getTextRange(i);if(!i.isMultiLine()&&s=="("){h(n);var o=r.doc.getLine(i.start.row),u=o.substring(i.start.column+1,i.start.column+2);if(u==")")return i.end.column++,i}}),this.add("brackets","insertion",function(e,t,n,r,i){if(i=="["){h(n);var s=n.getSelectionRange(),o=r.doc.getTextRange(s);if(o!==""&&n.getWrapBehavioursEnabled())return p(s,o,"[","]");if(d.isSaneInsertion(n,r))return d.recordAutoInsert(n,r,"]"),{text:"[]",selection:[1,1]}}else if(i=="]"){h(n);var u=n.getCursorPosition(),a=r.doc.getLine(u.row),f=a.substring(u.column,u.column+1);if(f=="]"){var l=r.$findOpeningBracket("]",{column:u.column+1,row:u.row});if(l!==null&&d.isAutoInsertedClosing(u,a,i))return d.popAutoInsertedClosing(),{text:"",selection:[1,1]}}}}),this.add("brackets","deletion",function(e,t,n,r,i){var s=r.doc.getTextRange(i);if(!i.isMultiLine()&&s=="["){h(n);var o=r.doc.getLine(i.start.row),u=o.substring(i.start.column+1,i.start.column+2);if(u=="]")return i.end.column++,i}}),this.add("string_dquotes","insertion",function(e,t,n,r,i){var s=r.$mode.$quotes||c;if(i.length==1&&s[i]){if(this.lineCommentStart&&this.lineCommentStart.indexOf(i)!=-1)return;h(n);var o=i,u=n.getSelectionRange(),a=r.doc.getTextRange(u);if(a!==""&&(a.length!=1||!s[a])&&n.getWrapBehavioursEnabled())return p(u,a,o,o);if(!a){var f=n.getCursorPosition(),l=r.doc.getLine(f.row),d=l.substring(f.column-1,f.column),v=l.substring(f.column,f.column+1),m=r.getTokenAt(f.row,f.column),g=r.getTokenAt(f.row,f.column+1);if(d=="\\"&&m&&/escape/.test(m.type))return null;var y=m&&/string|escape/.test(m.type),b=!g||/string|escape/.test(g.type),w;if(v==o)w=y!==b,w&&/string\.end/.test(g.type)&&(w=!1);else{if(y&&!b)return null;if(y&&b)return null;var E=r.$mode.tokenRe;E.lastIndex=0;var S=E.test(d);E.lastIndex=0;var x=E.test(d);if(S||x)return null;if(v&&!/[\s;,.})\]\\]/.test(v))return null;w=!0}return{text:w?o+o:"",selection:[1,1]}}}}),this.add("string_dquotes","deletion",function(e,t,n,r,i){var s=r.doc.getTextRange(i);if(!i.isMultiLine()&&(s=='"'||s=="'")){h(n);var o=r.doc.getLine(i.start.row),u=o.substring(i.start.column+1,i.start.column+2);if(u==s)return i.end.column++,i}})};d.isSaneInsertion=function(e,t){var n=e.getCursorPosition(),r=new s(t,n.row,n.column);if(!this.$matchTokenType(r.getCurrentToken()||"text",u)){var i=new s(t,n.row,n.column+1);if(!this.$matchTokenType(i.getCurrentToken()||"text",u))return!1}return r.stepForward(),r.getCurrentTokenRow()!==n.row||this.$matchTokenType(r.getCurrentToken()||"text",a)},d.$matchTokenType=function(e,t){return t.indexOf(e.type||e)>-1},d.recordAutoInsert=function(e,t,n){var r=e.getCursorPosition(),i=t.doc.getLine(r.row);this.isAutoInsertedClosing(r,i,f.autoInsertedLineEnd[0])||(f.autoInsertedBrackets=0),f.autoInsertedRow=r.row,f.autoInsertedLineEnd=n+i.substr(r.column),f.autoInsertedBrackets++},d.recordMaybeInsert=function(e,t,n){var r=e.getCursorPosition(),i=t.doc.getLine(r.row);this.isMaybeInsertedClosing(r,i)||(f.maybeInsertedBrackets=0),f.maybeInsertedRow=r.row,f.maybeInsertedLineStart=i.substr(0,r.column)+n,f.maybeInsertedLineEnd=i.substr(r.column),f.maybeInsertedBrackets++},d.isAutoInsertedClosing=function(e,t,n){return f.autoInsertedBrackets>0&&e.row===f.autoInsertedRow&&n===f.autoInsertedLineEnd[0]&&t.substr(e.column)===f.autoInsertedLineEnd},d.isMaybeInsertedClosing=function(e,t){return f.maybeInsertedBrackets>0&&e.row===f.maybeInsertedRow&&t.substr(e.column)===f.maybeInsertedLineEnd&&t.substr(0,e.column)==f.maybeInsertedLineStart},d.popAutoInsertedClosing=function(){f.autoInsertedLineEnd=f.autoInsertedLineEnd.substr(1),f.autoInsertedBrackets--},d.clearMaybeInsertedClosing=function(){f&&(f.maybeInsertedBrackets=0,f.maybeInsertedRow=-1)},r.inherits(d,i),t.CstyleBehaviour=d}),define("ace/unicode",["require","exports","module"],function(e,t,n){"use strict";function r(e){var n=/\w{4}/g;for(var r in e)t.packages[r]=e[r].replace(n,"\\u$&")}t.packages={},r({L:"0041-005A0061-007A00AA00B500BA00C0-00D600D8-00F600F8-02C102C6-02D102E0-02E402EC02EE0370-037403760377037A-037D03860388-038A038C038E-03A103A3-03F503F7-0481048A-05250531-055605590561-058705D0-05EA05F0-05F20621-064A066E066F0671-06D306D506E506E606EE06EF06FA-06FC06FF07100712-072F074D-07A507B107CA-07EA07F407F507FA0800-0815081A082408280904-0939093D09500958-0961097109720979-097F0985-098C098F09900993-09A809AA-09B009B209B6-09B909BD09CE09DC09DD09DF-09E109F009F10A05-0A0A0A0F0A100A13-0A280A2A-0A300A320A330A350A360A380A390A59-0A5C0A5E0A72-0A740A85-0A8D0A8F-0A910A93-0AA80AAA-0AB00AB20AB30AB5-0AB90ABD0AD00AE00AE10B05-0B0C0B0F0B100B13-0B280B2A-0B300B320B330B35-0B390B3D0B5C0B5D0B5F-0B610B710B830B85-0B8A0B8E-0B900B92-0B950B990B9A0B9C0B9E0B9F0BA30BA40BA8-0BAA0BAE-0BB90BD00C05-0C0C0C0E-0C100C12-0C280C2A-0C330C35-0C390C3D0C580C590C600C610C85-0C8C0C8E-0C900C92-0CA80CAA-0CB30CB5-0CB90CBD0CDE0CE00CE10D05-0D0C0D0E-0D100D12-0D280D2A-0D390D3D0D600D610D7A-0D7F0D85-0D960D9A-0DB10DB3-0DBB0DBD0DC0-0DC60E01-0E300E320E330E40-0E460E810E820E840E870E880E8A0E8D0E94-0E970E99-0E9F0EA1-0EA30EA50EA70EAA0EAB0EAD-0EB00EB20EB30EBD0EC0-0EC40EC60EDC0EDD0F000F40-0F470F49-0F6C0F88-0F8B1000-102A103F1050-1055105A-105D106110651066106E-10701075-1081108E10A0-10C510D0-10FA10FC1100-1248124A-124D1250-12561258125A-125D1260-1288128A-128D1290-12B012B2-12B512B8-12BE12C012C2-12C512C8-12D612D8-13101312-13151318-135A1380-138F13A0-13F41401-166C166F-167F1681-169A16A0-16EA1700-170C170E-17111720-17311740-17511760-176C176E-17701780-17B317D717DC1820-18771880-18A818AA18B0-18F51900-191C1950-196D1970-19741980-19AB19C1-19C71A00-1A161A20-1A541AA71B05-1B331B45-1B4B1B83-1BA01BAE1BAF1C00-1C231C4D-1C4F1C5A-1C7D1CE9-1CEC1CEE-1CF11D00-1DBF1E00-1F151F18-1F1D1F20-1F451F48-1F4D1F50-1F571F591F5B1F5D1F5F-1F7D1F80-1FB41FB6-1FBC1FBE1FC2-1FC41FC6-1FCC1FD0-1FD31FD6-1FDB1FE0-1FEC1FF2-1FF41FF6-1FFC2071207F2090-209421022107210A-211321152119-211D212421262128212A-212D212F-2139213C-213F2145-2149214E218321842C00-2C2E2C30-2C5E2C60-2CE42CEB-2CEE2D00-2D252D30-2D652D6F2D80-2D962DA0-2DA62DA8-2DAE2DB0-2DB62DB8-2DBE2DC0-2DC62DC8-2DCE2DD0-2DD62DD8-2DDE2E2F300530063031-3035303B303C3041-3096309D-309F30A1-30FA30FC-30FF3105-312D3131-318E31A0-31B731F0-31FF3400-4DB54E00-9FCBA000-A48CA4D0-A4FDA500-A60CA610-A61FA62AA62BA640-A65FA662-A66EA67F-A697A6A0-A6E5A717-A71FA722-A788A78BA78CA7FB-A801A803-A805A807-A80AA80C-A822A840-A873A882-A8B3A8F2-A8F7A8FBA90A-A925A930-A946A960-A97CA984-A9B2A9CFAA00-AA28AA40-AA42AA44-AA4BAA60-AA76AA7AAA80-AAAFAAB1AAB5AAB6AAB9-AABDAAC0AAC2AADB-AADDABC0-ABE2AC00-D7A3D7B0-D7C6D7CB-D7FBF900-FA2DFA30-FA6DFA70-FAD9FB00-FB06FB13-FB17FB1DFB1F-FB28FB2A-FB36FB38-FB3CFB3EFB40FB41FB43FB44FB46-FBB1FBD3-FD3DFD50-FD8FFD92-FDC7FDF0-FDFBFE70-FE74FE76-FEFCFF21-FF3AFF41-FF5AFF66-FFBEFFC2-FFC7FFCA-FFCFFFD2-FFD7FFDA-FFDC",Ll:"0061-007A00AA00B500BA00DF-00F600F8-00FF01010103010501070109010B010D010F01110113011501170119011B011D011F01210123012501270129012B012D012F01310133013501370138013A013C013E014001420144014601480149014B014D014F01510153015501570159015B015D015F01610163016501670169016B016D016F0171017301750177017A017C017E-0180018301850188018C018D019201950199-019B019E01A101A301A501A801AA01AB01AD01B001B401B601B901BA01BD-01BF01C601C901CC01CE01D001D201D401D601D801DA01DC01DD01DF01E101E301E501E701E901EB01ED01EF01F001F301F501F901FB01FD01FF02010203020502070209020B020D020F02110213021502170219021B021D021F02210223022502270229022B022D022F02310233-0239023C023F0240024202470249024B024D024F-02930295-02AF037103730377037B-037D039003AC-03CE03D003D103D5-03D703D903DB03DD03DF03E103E303E503E703E903EB03ED03EF-03F303F503F803FB03FC0430-045F04610463046504670469046B046D046F04710473047504770479047B047D047F0481048B048D048F04910493049504970499049B049D049F04A104A304A504A704A904AB04AD04AF04B104B304B504B704B904BB04BD04BF04C204C404C604C804CA04CC04CE04CF04D104D304D504D704D904DB04DD04DF04E104E304E504E704E904EB04ED04EF04F104F304F504F704F904FB04FD04FF05010503050505070509050B050D050F05110513051505170519051B051D051F0521052305250561-05871D00-1D2B1D62-1D771D79-1D9A1E011E031E051E071E091E0B1E0D1E0F1E111E131E151E171E191E1B1E1D1E1F1E211E231E251E271E291E2B1E2D1E2F1E311E331E351E371E391E3B1E3D1E3F1E411E431E451E471E491E4B1E4D1E4F1E511E531E551E571E591E5B1E5D1E5F1E611E631E651E671E691E6B1E6D1E6F1E711E731E751E771E791E7B1E7D1E7F1E811E831E851E871E891E8B1E8D1E8F1E911E931E95-1E9D1E9F1EA11EA31EA51EA71EA91EAB1EAD1EAF1EB11EB31EB51EB71EB91EBB1EBD1EBF1EC11EC31EC51EC71EC91ECB1ECD1ECF1ED11ED31ED51ED71ED91EDB1EDD1EDF1EE11EE31EE51EE71EE91EEB1EED1EEF1EF11EF31EF51EF71EF91EFB1EFD1EFF-1F071F10-1F151F20-1F271F30-1F371F40-1F451F50-1F571F60-1F671F70-1F7D1F80-1F871F90-1F971FA0-1FA71FB0-1FB41FB61FB71FBE1FC2-1FC41FC61FC71FD0-1FD31FD61FD71FE0-1FE71FF2-1FF41FF61FF7210A210E210F2113212F21342139213C213D2146-2149214E21842C30-2C5E2C612C652C662C682C6A2C6C2C712C732C742C76-2C7C2C812C832C852C872C892C8B2C8D2C8F2C912C932C952C972C992C9B2C9D2C9F2CA12CA32CA52CA72CA92CAB2CAD2CAF2CB12CB32CB52CB72CB92CBB2CBD2CBF2CC12CC32CC52CC72CC92CCB2CCD2CCF2CD12CD32CD52CD72CD92CDB2CDD2CDF2CE12CE32CE42CEC2CEE2D00-2D25A641A643A645A647A649A64BA64DA64FA651A653A655A657A659A65BA65DA65FA663A665A667A669A66BA66DA681A683A685A687A689A68BA68DA68FA691A693A695A697A723A725A727A729A72BA72DA72F-A731A733A735A737A739A73BA73DA73FA741A743A745A747A749A74BA74DA74FA751A753A755A757A759A75BA75DA75FA761A763A765A767A769A76BA76DA76FA771-A778A77AA77CA77FA781A783A785A787A78CFB00-FB06FB13-FB17FF41-FF5A",Lu:"0041-005A00C0-00D600D8-00DE01000102010401060108010A010C010E01100112011401160118011A011C011E01200122012401260128012A012C012E01300132013401360139013B013D013F0141014301450147014A014C014E01500152015401560158015A015C015E01600162016401660168016A016C016E017001720174017601780179017B017D018101820184018601870189-018B018E-0191019301940196-0198019C019D019F01A001A201A401A601A701A901AC01AE01AF01B1-01B301B501B701B801BC01C401C701CA01CD01CF01D101D301D501D701D901DB01DE01E001E201E401E601E801EA01EC01EE01F101F401F6-01F801FA01FC01FE02000202020402060208020A020C020E02100212021402160218021A021C021E02200222022402260228022A022C022E02300232023A023B023D023E02410243-02460248024A024C024E03700372037603860388-038A038C038E038F0391-03A103A3-03AB03CF03D2-03D403D803DA03DC03DE03E003E203E403E603E803EA03EC03EE03F403F703F903FA03FD-042F04600462046404660468046A046C046E04700472047404760478047A047C047E0480048A048C048E04900492049404960498049A049C049E04A004A204A404A604A804AA04AC04AE04B004B204B404B604B804BA04BC04BE04C004C104C304C504C704C904CB04CD04D004D204D404D604D804DA04DC04DE04E004E204E404E604E804EA04EC04EE04F004F204F404F604F804FA04FC04FE05000502050405060508050A050C050E05100512051405160518051A051C051E0520052205240531-055610A0-10C51E001E021E041E061E081E0A1E0C1E0E1E101E121E141E161E181E1A1E1C1E1E1E201E221E241E261E281E2A1E2C1E2E1E301E321E341E361E381E3A1E3C1E3E1E401E421E441E461E481E4A1E4C1E4E1E501E521E541E561E581E5A1E5C1E5E1E601E621E641E661E681E6A1E6C1E6E1E701E721E741E761E781E7A1E7C1E7E1E801E821E841E861E881E8A1E8C1E8E1E901E921E941E9E1EA01EA21EA41EA61EA81EAA1EAC1EAE1EB01EB21EB41EB61EB81EBA1EBC1EBE1EC01EC21EC41EC61EC81ECA1ECC1ECE1ED01ED21ED41ED61ED81EDA1EDC1EDE1EE01EE21EE41EE61EE81EEA1EEC1EEE1EF01EF21EF41EF61EF81EFA1EFC1EFE1F08-1F0F1F18-1F1D1F28-1F2F1F38-1F3F1F48-1F4D1F591F5B1F5D1F5F1F68-1F6F1FB8-1FBB1FC8-1FCB1FD8-1FDB1FE8-1FEC1FF8-1FFB21022107210B-210D2110-211221152119-211D212421262128212A-212D2130-2133213E213F214521832C00-2C2E2C602C62-2C642C672C692C6B2C6D-2C702C722C752C7E-2C802C822C842C862C882C8A2C8C2C8E2C902C922C942C962C982C9A2C9C2C9E2CA02CA22CA42CA62CA82CAA2CAC2CAE2CB02CB22CB42CB62CB82CBA2CBC2CBE2CC02CC22CC42CC62CC82CCA2CCC2CCE2CD02CD22CD42CD62CD82CDA2CDC2CDE2CE02CE22CEB2CEDA640A642A644A646A648A64AA64CA64EA650A652A654A656A658A65AA65CA65EA662A664A666A668A66AA66CA680A682A684A686A688A68AA68CA68EA690A692A694A696A722A724A726A728A72AA72CA72EA732A734A736A738A73AA73CA73EA740A742A744A746A748A74AA74CA74EA750A752A754A756A758A75AA75CA75EA760A762A764A766A768A76AA76CA76EA779A77BA77DA77EA780A782A784A786A78BFF21-FF3A",Lt:"01C501C801CB01F21F88-1F8F1F98-1F9F1FA8-1FAF1FBC1FCC1FFC",Lm:"02B0-02C102C6-02D102E0-02E402EC02EE0374037A0559064006E506E607F407F507FA081A0824082809710E460EC610FC17D718431AA71C78-1C7D1D2C-1D611D781D9B-1DBF2071207F2090-20942C7D2D6F2E2F30053031-3035303B309D309E30FC-30FEA015A4F8-A4FDA60CA67FA717-A71FA770A788A9CFAA70AADDFF70FF9EFF9F",Lo:"01BB01C0-01C3029405D0-05EA05F0-05F20621-063F0641-064A066E066F0671-06D306D506EE06EF06FA-06FC06FF07100712-072F074D-07A507B107CA-07EA0800-08150904-0939093D09500958-096109720979-097F0985-098C098F09900993-09A809AA-09B009B209B6-09B909BD09CE09DC09DD09DF-09E109F009F10A05-0A0A0A0F0A100A13-0A280A2A-0A300A320A330A350A360A380A390A59-0A5C0A5E0A72-0A740A85-0A8D0A8F-0A910A93-0AA80AAA-0AB00AB20AB30AB5-0AB90ABD0AD00AE00AE10B05-0B0C0B0F0B100B13-0B280B2A-0B300B320B330B35-0B390B3D0B5C0B5D0B5F-0B610B710B830B85-0B8A0B8E-0B900B92-0B950B990B9A0B9C0B9E0B9F0BA30BA40BA8-0BAA0BAE-0BB90BD00C05-0C0C0C0E-0C100C12-0C280C2A-0C330C35-0C390C3D0C580C590C600C610C85-0C8C0C8E-0C900C92-0CA80CAA-0CB30CB5-0CB90CBD0CDE0CE00CE10D05-0D0C0D0E-0D100D12-0D280D2A-0D390D3D0D600D610D7A-0D7F0D85-0D960D9A-0DB10DB3-0DBB0DBD0DC0-0DC60E01-0E300E320E330E40-0E450E810E820E840E870E880E8A0E8D0E94-0E970E99-0E9F0EA1-0EA30EA50EA70EAA0EAB0EAD-0EB00EB20EB30EBD0EC0-0EC40EDC0EDD0F000F40-0F470F49-0F6C0F88-0F8B1000-102A103F1050-1055105A-105D106110651066106E-10701075-1081108E10D0-10FA1100-1248124A-124D1250-12561258125A-125D1260-1288128A-128D1290-12B012B2-12B512B8-12BE12C012C2-12C512C8-12D612D8-13101312-13151318-135A1380-138F13A0-13F41401-166C166F-167F1681-169A16A0-16EA1700-170C170E-17111720-17311740-17511760-176C176E-17701780-17B317DC1820-18421844-18771880-18A818AA18B0-18F51900-191C1950-196D1970-19741980-19AB19C1-19C71A00-1A161A20-1A541B05-1B331B45-1B4B1B83-1BA01BAE1BAF1C00-1C231C4D-1C4F1C5A-1C771CE9-1CEC1CEE-1CF12135-21382D30-2D652D80-2D962DA0-2DA62DA8-2DAE2DB0-2DB62DB8-2DBE2DC0-2DC62DC8-2DCE2DD0-2DD62DD8-2DDE3006303C3041-3096309F30A1-30FA30FF3105-312D3131-318E31A0-31B731F0-31FF3400-4DB54E00-9FCBA000-A014A016-A48CA4D0-A4F7A500-A60BA610-A61FA62AA62BA66EA6A0-A6E5A7FB-A801A803-A805A807-A80AA80C-A822A840-A873A882-A8B3A8F2-A8F7A8FBA90A-A925A930-A946A960-A97CA984-A9B2AA00-AA28AA40-AA42AA44-AA4BAA60-AA6FAA71-AA76AA7AAA80-AAAFAAB1AAB5AAB6AAB9-AABDAAC0AAC2AADBAADCABC0-ABE2AC00-D7A3D7B0-D7C6D7CB-D7FBF900-FA2DFA30-FA6DFA70-FAD9FB1DFB1F-FB28FB2A-FB36FB38-FB3CFB3EFB40FB41FB43FB44FB46-FBB1FBD3-FD3DFD50-FD8FFD92-FDC7FDF0-FDFBFE70-FE74FE76-FEFCFF66-FF6FFF71-FF9DFFA0-FFBEFFC2-FFC7FFCA-FFCFFFD2-FFD7FFDA-FFDC",M:"0300-036F0483-04890591-05BD05BF05C105C205C405C505C70610-061A064B-065E067006D6-06DC06DE-06E406E706E806EA-06ED07110730-074A07A6-07B007EB-07F30816-0819081B-08230825-08270829-082D0900-0903093C093E-094E0951-0955096209630981-098309BC09BE-09C409C709C809CB-09CD09D709E209E30A01-0A030A3C0A3E-0A420A470A480A4B-0A4D0A510A700A710A750A81-0A830ABC0ABE-0AC50AC7-0AC90ACB-0ACD0AE20AE30B01-0B030B3C0B3E-0B440B470B480B4B-0B4D0B560B570B620B630B820BBE-0BC20BC6-0BC80BCA-0BCD0BD70C01-0C030C3E-0C440C46-0C480C4A-0C4D0C550C560C620C630C820C830CBC0CBE-0CC40CC6-0CC80CCA-0CCD0CD50CD60CE20CE30D020D030D3E-0D440D46-0D480D4A-0D4D0D570D620D630D820D830DCA0DCF-0DD40DD60DD8-0DDF0DF20DF30E310E34-0E3A0E47-0E4E0EB10EB4-0EB90EBB0EBC0EC8-0ECD0F180F190F350F370F390F3E0F3F0F71-0F840F860F870F90-0F970F99-0FBC0FC6102B-103E1056-1059105E-10601062-10641067-106D1071-10741082-108D108F109A-109D135F1712-17141732-1734175217531772177317B6-17D317DD180B-180D18A91920-192B1930-193B19B0-19C019C819C91A17-1A1B1A55-1A5E1A60-1A7C1A7F1B00-1B041B34-1B441B6B-1B731B80-1B821BA1-1BAA1C24-1C371CD0-1CD21CD4-1CE81CED1CF21DC0-1DE61DFD-1DFF20D0-20F02CEF-2CF12DE0-2DFF302A-302F3099309AA66F-A672A67CA67DA6F0A6F1A802A806A80BA823-A827A880A881A8B4-A8C4A8E0-A8F1A926-A92DA947-A953A980-A983A9B3-A9C0AA29-AA36AA43AA4CAA4DAA7BAAB0AAB2-AAB4AAB7AAB8AABEAABFAAC1ABE3-ABEAABECABEDFB1EFE00-FE0FFE20-FE26",Mn:"0300-036F0483-04870591-05BD05BF05C105C205C405C505C70610-061A064B-065E067006D6-06DC06DF-06E406E706E806EA-06ED07110730-074A07A6-07B007EB-07F30816-0819081B-08230825-08270829-082D0900-0902093C0941-0948094D0951-095509620963098109BC09C1-09C409CD09E209E30A010A020A3C0A410A420A470A480A4B-0A4D0A510A700A710A750A810A820ABC0AC1-0AC50AC70AC80ACD0AE20AE30B010B3C0B3F0B41-0B440B4D0B560B620B630B820BC00BCD0C3E-0C400C46-0C480C4A-0C4D0C550C560C620C630CBC0CBF0CC60CCC0CCD0CE20CE30D41-0D440D4D0D620D630DCA0DD2-0DD40DD60E310E34-0E3A0E47-0E4E0EB10EB4-0EB90EBB0EBC0EC8-0ECD0F180F190F350F370F390F71-0F7E0F80-0F840F860F870F90-0F970F99-0FBC0FC6102D-10301032-10371039103A103D103E10581059105E-10601071-1074108210851086108D109D135F1712-17141732-1734175217531772177317B7-17BD17C617C9-17D317DD180B-180D18A91920-19221927192819321939-193B1A171A181A561A58-1A5E1A601A621A65-1A6C1A73-1A7C1A7F1B00-1B031B341B36-1B3A1B3C1B421B6B-1B731B801B811BA2-1BA51BA81BA91C2C-1C331C361C371CD0-1CD21CD4-1CE01CE2-1CE81CED1DC0-1DE61DFD-1DFF20D0-20DC20E120E5-20F02CEF-2CF12DE0-2DFF302A-302F3099309AA66FA67CA67DA6F0A6F1A802A806A80BA825A826A8C4A8E0-A8F1A926-A92DA947-A951A980-A982A9B3A9B6-A9B9A9BCAA29-AA2EAA31AA32AA35AA36AA43AA4CAAB0AAB2-AAB4AAB7AAB8AABEAABFAAC1ABE5ABE8ABEDFB1EFE00-FE0FFE20-FE26",Mc:"0903093E-09400949-094C094E0982098309BE-09C009C709C809CB09CC09D70A030A3E-0A400A830ABE-0AC00AC90ACB0ACC0B020B030B3E0B400B470B480B4B0B4C0B570BBE0BBF0BC10BC20BC6-0BC80BCA-0BCC0BD70C01-0C030C41-0C440C820C830CBE0CC0-0CC40CC70CC80CCA0CCB0CD50CD60D020D030D3E-0D400D46-0D480D4A-0D4C0D570D820D830DCF-0DD10DD8-0DDF0DF20DF30F3E0F3F0F7F102B102C10311038103B103C105610571062-10641067-106D108310841087-108C108F109A-109C17B617BE-17C517C717C81923-19261929-192B193019311933-193819B0-19C019C819C91A19-1A1B1A551A571A611A631A641A6D-1A721B041B351B3B1B3D-1B411B431B441B821BA11BA61BA71BAA1C24-1C2B1C341C351CE11CF2A823A824A827A880A881A8B4-A8C3A952A953A983A9B4A9B5A9BAA9BBA9BD-A9C0AA2FAA30AA33AA34AA4DAA7BABE3ABE4ABE6ABE7ABE9ABEAABEC",Me:"0488048906DE20DD-20E020E2-20E4A670-A672",N:"0030-003900B200B300B900BC-00BE0660-066906F0-06F907C0-07C90966-096F09E6-09EF09F4-09F90A66-0A6F0AE6-0AEF0B66-0B6F0BE6-0BF20C66-0C6F0C78-0C7E0CE6-0CEF0D66-0D750E50-0E590ED0-0ED90F20-0F331040-10491090-10991369-137C16EE-16F017E0-17E917F0-17F91810-18191946-194F19D0-19DA1A80-1A891A90-1A991B50-1B591BB0-1BB91C40-1C491C50-1C5920702074-20792080-20892150-21822185-21892460-249B24EA-24FF2776-27932CFD30073021-30293038-303A3192-31953220-32293251-325F3280-328932B1-32BFA620-A629A6E6-A6EFA830-A835A8D0-A8D9A900-A909A9D0-A9D9AA50-AA59ABF0-ABF9FF10-FF19",Nd:"0030-00390660-066906F0-06F907C0-07C90966-096F09E6-09EF0A66-0A6F0AE6-0AEF0B66-0B6F0BE6-0BEF0C66-0C6F0CE6-0CEF0D66-0D6F0E50-0E590ED0-0ED90F20-0F291040-10491090-109917E0-17E91810-18191946-194F19D0-19DA1A80-1A891A90-1A991B50-1B591BB0-1BB91C40-1C491C50-1C59A620-A629A8D0-A8D9A900-A909A9D0-A9D9AA50-AA59ABF0-ABF9FF10-FF19",Nl:"16EE-16F02160-21822185-218830073021-30293038-303AA6E6-A6EF",No:"00B200B300B900BC-00BE09F4-09F90BF0-0BF20C78-0C7E0D70-0D750F2A-0F331369-137C17F0-17F920702074-20792080-20892150-215F21892460-249B24EA-24FF2776-27932CFD3192-31953220-32293251-325F3280-328932B1-32BFA830-A835",P:"0021-00230025-002A002C-002F003A003B003F0040005B-005D005F007B007D00A100AB00B700BB00BF037E0387055A-055F0589058A05BE05C005C305C605F305F40609060A060C060D061B061E061F066A-066D06D40700-070D07F7-07F90830-083E0964096509700DF40E4F0E5A0E5B0F04-0F120F3A-0F3D0F850FD0-0FD4104A-104F10FB1361-13681400166D166E169B169C16EB-16ED1735173617D4-17D617D8-17DA1800-180A1944194519DE19DF1A1E1A1F1AA0-1AA61AA8-1AAD1B5A-1B601C3B-1C3F1C7E1C7F1CD32010-20272030-20432045-20512053-205E207D207E208D208E2329232A2768-277527C527C627E6-27EF2983-299829D8-29DB29FC29FD2CF9-2CFC2CFE2CFF2E00-2E2E2E302E313001-30033008-30113014-301F3030303D30A030FBA4FEA4FFA60D-A60FA673A67EA6F2-A6F7A874-A877A8CEA8CFA8F8-A8FAA92EA92FA95FA9C1-A9CDA9DEA9DFAA5C-AA5FAADEAADFABEBFD3EFD3FFE10-FE19FE30-FE52FE54-FE61FE63FE68FE6AFE6BFF01-FF03FF05-FF0AFF0C-FF0FFF1AFF1BFF1FFF20FF3B-FF3DFF3FFF5BFF5DFF5F-FF65",Pd:"002D058A05BE140018062010-20152E172E1A301C303030A0FE31FE32FE58FE63FF0D",Ps:"0028005B007B0F3A0F3C169B201A201E2045207D208D23292768276A276C276E27702772277427C527E627E827EA27EC27EE2983298529872989298B298D298F299129932995299729D829DA29FC2E222E242E262E283008300A300C300E3010301430163018301A301DFD3EFE17FE35FE37FE39FE3BFE3DFE3FFE41FE43FE47FE59FE5BFE5DFF08FF3BFF5BFF5FFF62",Pe:"0029005D007D0F3B0F3D169C2046207E208E232A2769276B276D276F27712773277527C627E727E927EB27ED27EF298429862988298A298C298E2990299229942996299829D929DB29FD2E232E252E272E293009300B300D300F3011301530173019301B301E301FFD3FFE18FE36FE38FE3AFE3CFE3EFE40FE42FE44FE48FE5AFE5CFE5EFF09FF3DFF5DFF60FF63",Pi:"00AB2018201B201C201F20392E022E042E092E0C2E1C2E20",Pf:"00BB2019201D203A2E032E052E0A2E0D2E1D2E21",Pc:"005F203F20402054FE33FE34FE4D-FE4FFF3F",Po:"0021-00230025-0027002A002C002E002F003A003B003F0040005C00A100B700BF037E0387055A-055F058905C005C305C605F305F40609060A060C060D061B061E061F066A-066D06D40700-070D07F7-07F90830-083E0964096509700DF40E4F0E5A0E5B0F04-0F120F850FD0-0FD4104A-104F10FB1361-1368166D166E16EB-16ED1735173617D4-17D617D8-17DA1800-18051807-180A1944194519DE19DF1A1E1A1F1AA0-1AA61AA8-1AAD1B5A-1B601C3B-1C3F1C7E1C7F1CD3201620172020-20272030-2038203B-203E2041-20432047-205120532055-205E2CF9-2CFC2CFE2CFF2E002E012E06-2E082E0B2E0E-2E162E182E192E1B2E1E2E1F2E2A-2E2E2E302E313001-3003303D30FBA4FEA4FFA60D-A60FA673A67EA6F2-A6F7A874-A877A8CEA8CFA8F8-A8FAA92EA92FA95FA9C1-A9CDA9DEA9DFAA5C-AA5FAADEAADFABEBFE10-FE16FE19FE30FE45FE46FE49-FE4CFE50-FE52FE54-FE57FE5F-FE61FE68FE6AFE6BFF01-FF03FF05-FF07FF0AFF0CFF0EFF0FFF1AFF1BFF1FFF20FF3CFF61FF64FF65",S:"0024002B003C-003E005E0060007C007E00A2-00A900AC00AE-00B100B400B600B800D700F702C2-02C502D2-02DF02E5-02EB02ED02EF-02FF03750384038503F604820606-0608060B060E060F06E906FD06FE07F609F209F309FA09FB0AF10B700BF3-0BFA0C7F0CF10CF20D790E3F0F01-0F030F13-0F170F1A-0F1F0F340F360F380FBE-0FC50FC7-0FCC0FCE0FCF0FD5-0FD8109E109F13601390-139917DB194019E0-19FF1B61-1B6A1B74-1B7C1FBD1FBF-1FC11FCD-1FCF1FDD-1FDF1FED-1FEF1FFD1FFE20442052207A-207C208A-208C20A0-20B8210021012103-21062108210921142116-2118211E-2123212521272129212E213A213B2140-2144214A-214D214F2190-2328232B-23E82400-24262440-244A249C-24E92500-26CD26CF-26E126E326E8-26FF2701-27042706-2709270C-27272729-274B274D274F-27522756-275E2761-276727942798-27AF27B1-27BE27C0-27C427C7-27CA27CC27D0-27E527F0-29822999-29D729DC-29FB29FE-2B4C2B50-2B592CE5-2CEA2E80-2E992E9B-2EF32F00-2FD52FF0-2FFB300430123013302030363037303E303F309B309C319031913196-319F31C0-31E33200-321E322A-32503260-327F328A-32B032C0-32FE3300-33FF4DC0-4DFFA490-A4C6A700-A716A720A721A789A78AA828-A82BA836-A839AA77-AA79FB29FDFCFDFDFE62FE64-FE66FE69FF04FF0BFF1C-FF1EFF3EFF40FF5CFF5EFFE0-FFE6FFE8-FFEEFFFCFFFD",Sm:"002B003C-003E007C007E00AC00B100D700F703F60606-060820442052207A-207C208A-208C2140-2144214B2190-2194219A219B21A021A321A621AE21CE21CF21D221D421F4-22FF2308-230B23202321237C239B-23B323DC-23E125B725C125F8-25FF266F27C0-27C427C7-27CA27CC27D0-27E527F0-27FF2900-29822999-29D729DC-29FB29FE-2AFF2B30-2B442B47-2B4CFB29FE62FE64-FE66FF0BFF1C-FF1EFF5CFF5EFFE2FFE9-FFEC",Sc:"002400A2-00A5060B09F209F309FB0AF10BF90E3F17DB20A0-20B8A838FDFCFE69FF04FFE0FFE1FFE5FFE6",Sk:"005E006000A800AF00B400B802C2-02C502D2-02DF02E5-02EB02ED02EF-02FF0375038403851FBD1FBF-1FC11FCD-1FCF1FDD-1FDF1FED-1FEF1FFD1FFE309B309CA700-A716A720A721A789A78AFF3EFF40FFE3",So:"00A600A700A900AE00B000B60482060E060F06E906FD06FE07F609FA0B700BF3-0BF80BFA0C7F0CF10CF20D790F01-0F030F13-0F170F1A-0F1F0F340F360F380FBE-0FC50FC7-0FCC0FCE0FCF0FD5-0FD8109E109F13601390-1399194019E0-19FF1B61-1B6A1B74-1B7C210021012103-21062108210921142116-2118211E-2123212521272129212E213A213B214A214C214D214F2195-2199219C-219F21A121A221A421A521A7-21AD21AF-21CD21D021D121D321D5-21F32300-2307230C-231F2322-2328232B-237B237D-239A23B4-23DB23E2-23E82400-24262440-244A249C-24E92500-25B625B8-25C025C2-25F72600-266E2670-26CD26CF-26E126E326E8-26FF2701-27042706-2709270C-27272729-274B274D274F-27522756-275E2761-276727942798-27AF27B1-27BE2800-28FF2B00-2B2F2B452B462B50-2B592CE5-2CEA2E80-2E992E9B-2EF32F00-2FD52FF0-2FFB300430123013302030363037303E303F319031913196-319F31C0-31E33200-321E322A-32503260-327F328A-32B032C0-32FE3300-33FF4DC0-4DFFA490-A4C6A828-A82BA836A837A839AA77-AA79FDFDFFE4FFE8FFEDFFEEFFFCFFFD",Z:"002000A01680180E2000-200A20282029202F205F3000",Zs:"002000A01680180E2000-200A202F205F3000",Zl:"2028",Zp:"2029",C:"0000-001F007F-009F00AD03780379037F-0383038B038D03A20526-05300557055805600588058B-059005C8-05CF05EB-05EF05F5-0605061C061D0620065F06DD070E070F074B074C07B2-07BF07FB-07FF082E082F083F-08FF093A093B094F095609570973-097809800984098D098E0991099209A909B109B3-09B509BA09BB09C509C609C909CA09CF-09D609D8-09DB09DE09E409E509FC-0A000A040A0B-0A0E0A110A120A290A310A340A370A3A0A3B0A3D0A43-0A460A490A4A0A4E-0A500A52-0A580A5D0A5F-0A650A76-0A800A840A8E0A920AA90AB10AB40ABA0ABB0AC60ACA0ACE0ACF0AD1-0ADF0AE40AE50AF00AF2-0B000B040B0D0B0E0B110B120B290B310B340B3A0B3B0B450B460B490B4A0B4E-0B550B58-0B5B0B5E0B640B650B72-0B810B840B8B-0B8D0B910B96-0B980B9B0B9D0BA0-0BA20BA5-0BA70BAB-0BAD0BBA-0BBD0BC3-0BC50BC90BCE0BCF0BD1-0BD60BD8-0BE50BFB-0C000C040C0D0C110C290C340C3A-0C3C0C450C490C4E-0C540C570C5A-0C5F0C640C650C70-0C770C800C810C840C8D0C910CA90CB40CBA0CBB0CC50CC90CCE-0CD40CD7-0CDD0CDF0CE40CE50CF00CF3-0D010D040D0D0D110D290D3A-0D3C0D450D490D4E-0D560D58-0D5F0D640D650D76-0D780D800D810D840D97-0D990DB20DBC0DBE0DBF0DC7-0DC90DCB-0DCE0DD50DD70DE0-0DF10DF5-0E000E3B-0E3E0E5C-0E800E830E850E860E890E8B0E8C0E8E-0E930E980EA00EA40EA60EA80EA90EAC0EBA0EBE0EBF0EC50EC70ECE0ECF0EDA0EDB0EDE-0EFF0F480F6D-0F700F8C-0F8F0F980FBD0FCD0FD9-0FFF10C6-10CF10FD-10FF1249124E124F12571259125E125F1289128E128F12B112B612B712BF12C112C612C712D7131113161317135B-135E137D-137F139A-139F13F5-13FF169D-169F16F1-16FF170D1715-171F1737-173F1754-175F176D17711774-177F17B417B517DE17DF17EA-17EF17FA-17FF180F181A-181F1878-187F18AB-18AF18F6-18FF191D-191F192C-192F193C-193F1941-1943196E196F1975-197F19AC-19AF19CA-19CF19DB-19DD1A1C1A1D1A5F1A7D1A7E1A8A-1A8F1A9A-1A9F1AAE-1AFF1B4C-1B4F1B7D-1B7F1BAB-1BAD1BBA-1BFF1C38-1C3A1C4A-1C4C1C80-1CCF1CF3-1CFF1DE7-1DFC1F161F171F1E1F1F1F461F471F4E1F4F1F581F5A1F5C1F5E1F7E1F7F1FB51FC51FD41FD51FDC1FF01FF11FF51FFF200B-200F202A-202E2060-206F20722073208F2095-209F20B9-20CF20F1-20FF218A-218F23E9-23FF2427-243F244B-245F26CE26E226E4-26E727002705270A270B2728274C274E2753-2755275F27602795-279727B027BF27CB27CD-27CF2B4D-2B4F2B5A-2BFF2C2F2C5F2CF2-2CF82D26-2D2F2D66-2D6E2D70-2D7F2D97-2D9F2DA72DAF2DB72DBF2DC72DCF2DD72DDF2E32-2E7F2E9A2EF4-2EFF2FD6-2FEF2FFC-2FFF3040309730983100-3104312E-3130318F31B8-31BF31E4-31EF321F32FF4DB6-4DBF9FCC-9FFFA48D-A48FA4C7-A4CFA62C-A63FA660A661A674-A67BA698-A69FA6F8-A6FFA78D-A7FAA82C-A82FA83A-A83FA878-A87FA8C5-A8CDA8DA-A8DFA8FC-A8FFA954-A95EA97D-A97FA9CEA9DA-A9DDA9E0-A9FFAA37-AA3FAA4EAA4FAA5AAA5BAA7C-AA7FAAC3-AADAAAE0-ABBFABEEABEFABFA-ABFFD7A4-D7AFD7C7-D7CAD7FC-F8FFFA2EFA2FFA6EFA6FFADA-FAFFFB07-FB12FB18-FB1CFB37FB3DFB3FFB42FB45FBB2-FBD2FD40-FD4FFD90FD91FDC8-FDEFFDFEFDFFFE1A-FE1FFE27-FE2FFE53FE67FE6C-FE6FFE75FEFD-FF00FFBF-FFC1FFC8FFC9FFD0FFD1FFD8FFD9FFDD-FFDFFFE7FFEF-FFFBFFFEFFFF",Cc:"0000-001F007F-009F",Cf:"00AD0600-060306DD070F17B417B5200B-200F202A-202E2060-2064206A-206FFEFFFFF9-FFFB",Co:"E000-F8FF",Cs:"D800-DFFF",Cn:"03780379037F-0383038B038D03A20526-05300557055805600588058B-059005C8-05CF05EB-05EF05F5-05FF06040605061C061D0620065F070E074B074C07B2-07BF07FB-07FF082E082F083F-08FF093A093B094F095609570973-097809800984098D098E0991099209A909B109B3-09B509BA09BB09C509C609C909CA09CF-09D609D8-09DB09DE09E409E509FC-0A000A040A0B-0A0E0A110A120A290A310A340A370A3A0A3B0A3D0A43-0A460A490A4A0A4E-0A500A52-0A580A5D0A5F-0A650A76-0A800A840A8E0A920AA90AB10AB40ABA0ABB0AC60ACA0ACE0ACF0AD1-0ADF0AE40AE50AF00AF2-0B000B040B0D0B0E0B110B120B290B310B340B3A0B3B0B450B460B490B4A0B4E-0B550B58-0B5B0B5E0B640B650B72-0B810B840B8B-0B8D0B910B96-0B980B9B0B9D0BA0-0BA20BA5-0BA70BAB-0BAD0BBA-0BBD0BC3-0BC50BC90BCE0BCF0BD1-0BD60BD8-0BE50BFB-0C000C040C0D0C110C290C340C3A-0C3C0C450C490C4E-0C540C570C5A-0C5F0C640C650C70-0C770C800C810C840C8D0C910CA90CB40CBA0CBB0CC50CC90CCE-0CD40CD7-0CDD0CDF0CE40CE50CF00CF3-0D010D040D0D0D110D290D3A-0D3C0D450D490D4E-0D560D58-0D5F0D640D650D76-0D780D800D810D840D97-0D990DB20DBC0DBE0DBF0DC7-0DC90DCB-0DCE0DD50DD70DE0-0DF10DF5-0E000E3B-0E3E0E5C-0E800E830E850E860E890E8B0E8C0E8E-0E930E980EA00EA40EA60EA80EA90EAC0EBA0EBE0EBF0EC50EC70ECE0ECF0EDA0EDB0EDE-0EFF0F480F6D-0F700F8C-0F8F0F980FBD0FCD0FD9-0FFF10C6-10CF10FD-10FF1249124E124F12571259125E125F1289128E128F12B112B612B712BF12C112C612C712D7131113161317135B-135E137D-137F139A-139F13F5-13FF169D-169F16F1-16FF170D1715-171F1737-173F1754-175F176D17711774-177F17DE17DF17EA-17EF17FA-17FF180F181A-181F1878-187F18AB-18AF18F6-18FF191D-191F192C-192F193C-193F1941-1943196E196F1975-197F19AC-19AF19CA-19CF19DB-19DD1A1C1A1D1A5F1A7D1A7E1A8A-1A8F1A9A-1A9F1AAE-1AFF1B4C-1B4F1B7D-1B7F1BAB-1BAD1BBA-1BFF1C38-1C3A1C4A-1C4C1C80-1CCF1CF3-1CFF1DE7-1DFC1F161F171F1E1F1F1F461F471F4E1F4F1F581F5A1F5C1F5E1F7E1F7F1FB51FC51FD41FD51FDC1FF01FF11FF51FFF2065-206920722073208F2095-209F20B9-20CF20F1-20FF218A-218F23E9-23FF2427-243F244B-245F26CE26E226E4-26E727002705270A270B2728274C274E2753-2755275F27602795-279727B027BF27CB27CD-27CF2B4D-2B4F2B5A-2BFF2C2F2C5F2CF2-2CF82D26-2D2F2D66-2D6E2D70-2D7F2D97-2D9F2DA72DAF2DB72DBF2DC72DCF2DD72DDF2E32-2E7F2E9A2EF4-2EFF2FD6-2FEF2FFC-2FFF3040309730983100-3104312E-3130318F31B8-31BF31E4-31EF321F32FF4DB6-4DBF9FCC-9FFFA48D-A48FA4C7-A4CFA62C-A63FA660A661A674-A67BA698-A69FA6F8-A6FFA78D-A7FAA82C-A82FA83A-A83FA878-A87FA8C5-A8CDA8DA-A8DFA8FC-A8FFA954-A95EA97D-A97FA9CEA9DA-A9DDA9E0-A9FFAA37-AA3FAA4EAA4FAA5AAA5BAA7C-AA7FAAC3-AADAAAE0-ABBFABEEABEFABFA-ABFFD7A4-D7AFD7C7-D7CAD7FC-D7FFFA2EFA2FFA6EFA6FFADA-FAFFFB07-FB12FB18-FB1CFB37FB3DFB3FFB42FB45FBB2-FBD2FD40-FD4FFD90FD91FDC8-FDEFFDFEFDFFFE1A-FE1FFE27-FE2FFE53FE67FE6C-FE6FFE75FEFDFEFEFF00FFBF-FFC1FFC8FFC9FFD0FFD1FFD8FFD9FFDD-FFDFFFE7FFEF-FFF8FFFEFFFF"})}),define("ace/mode/text",["require","exports","module","ace/tokenizer","ace/mode/text_highlight_rules","ace/mode/behaviour/cstyle","ace/unicode","ace/lib/lang","ace/token_iterator","ace/range"],function(e,t,n){"use strict";var r=e("../tokenizer").Tokenizer,i=e("./text_highlight_rules").TextHighlightRules,s=e("./behaviour/cstyle").CstyleBehaviour,o=e("../unicode"),u=e("../lib/lang"),a=e("../token_iterator").TokenIterator,f=e("../range").Range,l=function(){this.HighlightRules=i};(function(){this.$defaultBehaviour=new s,this.tokenRe=new RegExp("^["+o.packages.L+o.packages.Mn+o.packages.Mc+o.packages.Nd+o.packages.Pc+"\\$_]+","g"),this.nonTokenRe=new RegExp("^(?:[^"+o.packages.L+o.packages.Mn+o.packages.Mc+o.packages.Nd+o.packages.Pc+"\\$_]|\\s])+","g"),this.getTokenizer=function(){return this.$tokenizer||(this.$highlightRules=this.$highlightRules||new this.HighlightRules(this.$highlightRuleConfig),this.$tokenizer=new r(this.$highlightRules.getRules())),this.$tokenizer},this.lineCommentStart="",this.blockComment="",this.toggleCommentLines=function(e,t,n,r){function w(e){for(var t=n;t<=r;t++)e(i.getLine(t),t)}var i=t.doc,s=!0,o=!0,a=Infinity,f=t.getTabSize(),l=!1;if(!this.lineCommentStart){if(!this.blockComment)return!1;var c=this.blockComment.start,h=this.blockComment.end,p=new RegExp("^(\\s*)(?:"+u.escapeRegExp(c)+")"),d=new RegExp("(?:"+u.escapeRegExp(h)+")\\s*$"),v=function(e,t){if(g(e,t))return;if(!s||/\S/.test(e))i.insertInLine({row:t,column:e.length},h),i.insertInLine({row:t,column:a},c)},m=function(e,t){var n;(n=e.match(d))&&i.removeInLine(t,e.length-n[0].length,e.length),(n=e.match(p))&&i.removeInLine(t,n[1].length,n[0].length)},g=function(e,n){if(p.test(e))return!0;var r=t.getTokens(n);for(var i=0;i<r.length;i++)if(r[i].type==="comment")return!0}}else{if(Array.isArray(this.lineCommentStart))var p=this.lineCommentStart.map(u.escapeRegExp).join("|"),c=this.lineCommentStart[0];else var p=u.escapeRegExp(this.lineCommentStart),c=this.lineCommentStart;p=new RegExp("^(\\s*)(?:"+p+") ?"),l=t.getUseSoftTabs();var m=function(e,t){var n=e.match(p);if(!n)return;var r=n[1].length,s=n[0].length;!b(e,r,s)&&n[0][s-1]==" "&&s--,i.removeInLine(t,r,s)},y=c+" ",v=function(e,t){if(!s||/\S/.test(e))b(e,a,a)?i.insertInLine({row:t,column:a},y):i.insertInLine({row:t,column:a},c)},g=function(e,t){return p.test(e)},b=function(e,t,n){var r=0;while(t--&&e.charAt(t)==" ")r++;if(r%f!=0)return!1;var r=0;while(e.charAt(n++)==" ")r++;return f>2?r%f!=f-1:r%f==0}}var E=Infinity;w(function(e,t){var n=e.search(/\S/);n!==-1?(n<a&&(a=n),o&&!g(e,t)&&(o=!1)):E>e.length&&(E=e.length)}),a==Infinity&&(a=E,s=!1,o=!1),l&&a%f!=0&&(a=Math.floor(a/f)*f),w(o?m:v)},this.toggleBlockComment=function(e,t,n,r){var i=this.blockComment;if(!i)return;!i.start&&i[0]&&(i=i[0]);var s=new a(t,r.row,r.column),o=s.getCurrentToken(),u=t.selection,l=t.selection.toOrientedRange(),c,h;if(o&&/comment/.test(o.type)){var p,d;while(o&&/comment/.test(o.type)){var v=o.value.indexOf(i.start);if(v!=-1){var m=s.getCurrentTokenRow(),g=s.getCurrentTokenColumn()+v;p=new f(m,g,m,g+i.start.length);break}o=s.stepBackward()}var s=new a(t,r.row,r.column),o=s.getCurrentToken();while(o&&/comment/.test(o.type)){var v=o.value.indexOf(i.end);if(v!=-1){var m=s.getCurrentTokenRow(),g=s.getCurrentTokenColumn()+v;d=new f(m,g,m,g+i.end.length);break}o=s.stepForward()}d&&t.remove(d),p&&(t.remove(p),c=p.start.row,h=-i.start.length)}else h=i.start.length,c=n.start.row,t.insert(n.end,i.end),t.insert(n.start,i.start);l.start.row==c&&(l.start.column+=h),l.end.row==c&&(l.end.column+=h),t.selection.fromOrientedRange(l)},this.getNextLineIndent=function(e,t,n){return this.$getIndent(t)},this.checkOutdent=function(e,t,n){return!1},this.autoOutdent=function(e,t,n){},this.$getIndent=function(e){return e.match(/^\s*/)[0]},this.createWorker=function(e){return null},this.createModeDelegates=function(e){this.$embeds=[],this.$modes={};for(var t in e)e[t]&&(this.$embeds.push(t),this.$modes[t]=new e[t]);var n=["toggleBlockComment","toggleCommentLines","getNextLineIndent","checkOutdent","autoOutdent","transformAction","getCompletions"];for(var t=0;t<n.length;t++)(function(e){var r=n[t],i=e[r];e[n[t]]=function(){return this.$delegator(r,arguments,i)}})(this)},this.$delegator=function(e,t,n){var r=t[0];typeof r!="string"&&(r=r[0]);for(var i=0;i<this.$embeds.length;i++){if(!this.$modes[this.$embeds[i]])continue;var s=r.split(this.$embeds[i]);if(!s[0]&&s[1]){t[0]=s[1];var o=this.$modes[this.$embeds[i]];return o[e].apply(o,t)}}var u=n.apply(this,t);return n?u:undefined},this.transformAction=function(e,t,n,r,i){if(this.$behaviour){var s=this.$behaviour.getBehaviours();for(var o in s)if(s[o][t]){var u=s[o][t].apply(this,arguments);if(u)return u}}},this.getKeywords=function(e){if(!this.completionKeywords){var t=this.$tokenizer.rules,n=[];for(var r in t){var i=t[r];for(var s=0,o=i.length;s<o;s++)if(typeof i[s].token=="string")/keyword|support|storage/.test(i[s].token)&&n.push(i[s].regex);else if(typeof i[s].token=="object")for(var u=0,a=i[s].token.length;u<a;u++)if(/keyword|support|storage/.test(i[s].token[u])){var r=i[s].regex.match(/\(.+?\)/g)[u];n.push(r.substr(1,r.length-2))}}this.completionKeywords=n}return e?n.concat(this.$keywordList||[]):this.$keywordList},this.$createKeywordList=function(){return this.$highlightRules||this.getTokenizer(),this.$keywordList=this.$highlightRules.$keywordList||[]},this.getCompletions=function(e,t,n,r){var i=this.$keywordList||this.$createKeywordList();return i.map(function(e){return{name:e,value:e,score:0,meta:"keyword"}})},this.$id="ace/mode/text"}).call(l.prototype),t.Mode=l}),define("ace/apply_delta",["require","exports","module"],function(e,t,n){"use strict";function r(e,t){throw console.log("Invalid Delta:",e),"Invalid Delta: "+t}function i(e,t){return t.row>=0&&t.row<e.length&&t.column>=0&&t.column<=e[t.row].length}function s(e,t){t.action!="insert"&&t.action!="remove"&&r(t,"delta.action must be 'insert' or 'remove'"),t.lines instanceof Array||r(t,"delta.lines must be an Array"),(!t.start||!t.end)&&r(t,"delta.start/end must be an present");var n=t.start;i(e,t.start)||r(t,"delta.start must be contained in document");var s=t.end;t.action=="remove"&&!i(e,s)&&r(t,"delta.end must contained in document for 'remove' actions");var o=s.row-n.row,u=s.column-(o==0?n.column:0);(o!=t.lines.length-1||t.lines[o].length!=u)&&r(t,"delta.range must match delta lines")}t.applyDelta=function(e,t,n){var r=t.start.row,i=t.start.column,s=e[r]||"";switch(t.action){case"insert":var o=t.lines;if(o.length===1)e[r]=s.substring(0,i)+t.lines[0]+s.substring(i);else{var u=[r,1].concat(t.lines);e.splice.apply(e,u),e[r]=s.substring(0,i)+e[r],e[r+t.lines.length-1]+=s.substring(i)}break;case"remove":var a=t.end.column,f=t.end.row;r===f?e[r]=s.substring(0,i)+s.substring(a):e.splice(r,f-r+1,s.substring(0,i)+e[f].substring(a))}}}),define("ace/anchor",["require","exports","module","ace/lib/oop","ace/lib/event_emitter"],function(e,t,n){"use strict";var r=e("./lib/oop"),i=e("./lib/event_emitter").EventEmitter,s=t.Anchor=function(e,t,n){this.$onChange=this.onChange.bind(this),this.attach(e),typeof n=="undefined"?this.setPosition(t.row,t.column):this.setPosition(t,n)};(function(){function e(e,t,n){var r=n?e.column<=t.column:e.column<t.column;return e.row<t.row||e.row==t.row&&r}function t(t,n,r){var i=t.action=="insert",s=(i?1:-1)*(t.end.row-t.start.row),o=(i?1:-1)*(t.end.column-t.start.column),u=t.start,a=i?u:t.end;return e(n,u,r)?{row:n.row,column:n.column}:e(a,n,!r)?{row:n.row+s,column:n.column+(n.row==a.row?o:0)}:{row:u.row,column:u.column}}r.implement(this,i),this.getPosition=function(){return this.$clipPositionToDocument(this.row,this.column)},this.getDocument=function(){return this.document},this.$insertRight=!1,this.onChange=function(e){if(e.start.row==e.end.row&&e.start.row!=this.row)return;if(e.start.row>this.row)return;var n=t(e,{row:this.row,column:this.column},this.$insertRight);this.setPosition(n.row,n.column,!0)},this.setPosition=function(e,t,n){var r;n?r={row:e,column:t}:r=this.$clipPositionToDocument(e,t);if(this.row==r.row&&this.column==r.column)return;var i={row:this.row,column:this.column};this.row=r.row,this.column=r.column,this._signal("change",{old:i,value:r})},this.detach=function(){this.document.removeEventListener("change",this.$onChange)},this.attach=function(e){this.document=e||this.document,this.document.on("change",this.$onChange)},this.$clipPositionToDocument=function(e,t){var n={};return e>=this.document.getLength()?(n.row=Math.max(0,this.document.getLength()-1),n.column=this.document.getLine(n.row).length):e<0?(n.row=0,n.column=0):(n.row=e,n.column=Math.min(this.document.getLine(n.row).length,Math.max(0,t))),t<0&&(n.column=0),n}}).call(s.prototype)}),define("ace/document",["require","exports","module","ace/lib/oop","ace/apply_delta","ace/lib/event_emitter","ace/range","ace/anchor"],function(e,t,n){"use strict";var r=e("./lib/oop"),i=e("./apply_delta").applyDelta,s=e("./lib/event_emitter").EventEmitter,o=e("./range").Range,u=e("./anchor").Anchor,a=function(e){this.$lines=[""],e.length===0?this.$lines=[""]:Array.isArray(e)?this.insertMergedLines({row:0,column:0},e):this.insert({row:0,column:0},e)};(function(){r.implement(this,s),this.setValue=function(e){var t=this.getLength()-1;this.remove(new o(0,0,t,this.getLine(t).length)),this.insert({row:0,column:0},e)},this.getValue=function(){return this.getAllLines().join(this.getNewLineCharacter())},this.createAnchor=function(e,t){return new u(this,e,t)},"aaa".split(/a/).length===0?this.$split=function(e){return e.replace(/\r\n|\r/g,"\n").split("\n")}:this.$split=function(e){return e.split(/\r\n|\r|\n/)},this.$detectNewLine=function(e){var t=e.match(/^.*?(\r\n|\r|\n)/m);this.$autoNewLine=t?t[1]:"\n",this._signal("changeNewLineMode")},this.getNewLineCharacter=function(){switch(this.$newLineMode){case"windows":return"\r\n";case"unix":return"\n";default:return this.$autoNewLine||"\n"}},this.$autoNewLine="",this.$newLineMode="auto",this.setNewLineMode=function(e){if(this.$newLineMode===e)return;this.$newLineMode=e,this._signal("changeNewLineMode")},this.getNewLineMode=function(){return this.$newLineMode},this.isNewLine=function(e){return e=="\r\n"||e=="\r"||e=="\n"},this.getLine=function(e){return this.$lines[e]||""},this.getLines=function(e,t){return this.$lines.slice(e,t+1)},this.getAllLines=function(){return this.getLines(0,this.getLength())},this.getLength=function(){return this.$lines.length},this.getTextRange=function(e){return this.getLinesForRange(e).join(this.getNewLineCharacter())},this.getLinesForRange=function(e){var t;if(e.start.row===e.end.row)t=[this.getLine(e.start.row).substring(e.start.column,e.end.column)];else{t=this.getLines(e.start.row,e.end.row),t[0]=(t[0]||"").substring(e.start.column);var n=t.length-1;e.end.row-e.start.row==n&&(t[n]=t[n].substring(0,e.end.column))}return t},this.insertLines=function(e,t){return console.warn("Use of document.insertLines is deprecated. Use the insertFullLines method instead."),this.insertFullLines(e,t)},this.removeLines=function(e,t){return console.warn("Use of document.removeLines is deprecated. Use the removeFullLines method instead."),this.removeFullLines(e,t)},this.insertNewLine=function(e){return console.warn("Use of document.insertNewLine is deprecated. Use insertMergedLines(position, ['', '']) instead."),this.insertMergedLines(e,["",""])},this.insert=function(e,t){return this.getLength()<=1&&this.$detectNewLine(t),this.insertMergedLines(e,this.$split(t))},this.insertInLine=function(e,t){var n=this.clippedPos(e.row,e.column),r=this.pos(e.row,e.column+t.length);return this.applyDelta({start:n,end:r,action:"insert",lines:[t]},!0),this.clonePos(r)},this.clippedPos=function(e,t){var n=this.getLength();e===undefined?e=n:e<0?e=0:e>=n&&(e=n-1,t=undefined);var r=this.getLine(e);return t==undefined&&(t=r.length),t=Math.min(Math.max(t,0),r.length),{row:e,column:t}},this.clonePos=function(e){return{row:e.row,column:e.column}},this.pos=function(e,t){return{row:e,column:t}},this.$clipPosition=function(e){var t=this.getLength();return e.row>=t?(e.row=Math.max(0,t-1),e.column=this.getLine(t-1).length):(e.row=Math.max(0,e.row),e.column=Math.min(Math.max(e.column,0),this.getLine(e.row).length)),e},this.insertFullLines=function(e,t){e=Math.min(Math.max(e,0),this.getLength());var n=0;e<this.getLength()?(t=t.concat([""]),n=0):(t=[""].concat(t),e--,n=this.$lines[e].length),this.insertMergedLines({row:e,column:n},t)},this.insertMergedLines=function(e,t){var n=this.clippedPos(e.row,e.column),r={row:n.row+t.length-1,column:(t.length==1?n.column:0)+t[t.length-1].length};return this.applyDelta({start:n,end:r,action:"insert",lines:t}),this.clonePos(r)},this.remove=function(e){var t=this.clippedPos(e.start.row,e.start.column),n=this.clippedPos(e.end.row,e.end.column);return this.applyDelta({start:t,end:n,action:"remove",lines:this.getLinesForRange({start:t,end:n})}),this.clonePos(t)},this.removeInLine=function(e,t,n){var r=this.clippedPos(e,t),i=this.clippedPos(e,n);return this.applyDelta({start:r,end:i,action:"remove",lines:this.getLinesForRange({start:r,end:i})},!0),this.clonePos(r)},this.removeFullLines=function(e,t){e=Math.min(Math.max(0,e),this.getLength()-1),t=Math.min(Math.max(0,t),this.getLength()-1);var n=t==this.getLength()-1&&e>0,r=t<this.getLength()-1,i=n?e-1:e,s=n?this.getLine(i).length:0,u=r?t+1:t,a=r?0:this.getLine(u).length,f=new o(i,s,u,a),l=this.$lines.slice(e,t+1);return this.applyDelta({start:f.start,end:f.end,action:"remove",lines:this.getLinesForRange(f)}),l},this.removeNewLine=function(e){e<this.getLength()-1&&e>=0&&this.applyDelta({start:this.pos(e,this.getLine(e).length),end:this.pos(e+1,0),action:"remove",lines:["",""]})},this.replace=function(e,t){e instanceof o||(e=o.fromPoints(e.start,e.end));if(t.length===0&&e.isEmpty())return e.start;if(t==this.getTextRange(e))return e.end;this.remove(e);var n;return t?n=this.insert(e.start,t):n=e.start,n},this.applyDeltas=function(e){for(var t=0;t<e.length;t++)this.applyDelta(e[t])},this.revertDeltas=function(e){for(var t=e.length-1;t>=0;t--)this.revertDelta(e[t])},this.applyDelta=function(e,t){var n=e.action=="insert";if(n?e.lines.length<=1&&!e.lines[0]:!o.comparePoints(e.start,e.end))return;n&&e.lines.length>2e4&&this.$splitAndapplyLargeDelta(e,2e4),i(this.$lines,e,t),this._signal("change",e)},this.$splitAndapplyLargeDelta=function(e,t){var n=e.lines,r=n.length,i=e.start.row,s=e.start.column,o=0,u=0;do{o=u,u+=t-1;var a=n.slice(o,u);if(u>r){e.lines=a,e.start.row=i+o,e.start.column=s;break}a.push(""),this.applyDelta({start:this.pos(i+o,s),end:this.pos(i+u,s=0),action:e.action,lines:a},!0)}while(!0)},this.revertDelta=function(e){this.applyDelta({start:this.clonePos(e.start),end:this.clonePos(e.end),action:e.action=="insert"?"remove":"insert",lines:e.lines.slice()})},this.indexToPosition=function(e,t){var n=this.$lines||this.getAllLines(),r=this.getNewLineCharacter().length;for(var i=t||0,s=n.length;i<s;i++){e-=n[i].length+r;if(e<0)return{row:i,column:e+n[i].length+r}}return{row:s-1,column:n[s-1].length}},this.positionToIndex=function(e,t){var n=this.$lines||this.getAllLines(),r=this.getNewLineCharacter().length,i=0,s=Math.min(e.row,n.length);for(var o=t||0;o<s;++o)i+=n[o].length+r;return i+e.column}}).call(a.prototype),t.Document=a}),define("ace/background_tokenizer",["require","exports","module","ace/lib/oop","ace/lib/event_emitter"],function(e,t,n){"use strict";var r=e("./lib/oop"),i=e("./lib/event_emitter").EventEmitter,s=function(e,t){this.running=!1,this.lines=[],this.states=[],this.currentLine=0,this.tokenizer=e;var n=this;this.$worker=function(){if(!n.running)return;var e=new Date,t=n.currentLine,r=-1,i=n.doc,s=t;while(n.lines[t])t++;var o=i.getLength(),u=0;n.running=!1;while(t<o){n.$tokenizeRow(t),r=t;do t++;while(n.lines[t]);u++;if(u%5===0&&new Date-e>20){n.running=setTimeout(n.$worker,20);break}}n.currentLine=t,r==-1&&(r=t),s<=r&&n.fireUpdateEvent(s,r)}};(function(){r.implement(this,i),this.setTokenizer=function(e){this.tokenizer=e,this.lines=[],this.states=[],this.start(0)},this.setDocument=function(e){this.doc=e,this.lines=[],this.states=[],this.stop()},this.fireUpdateEvent=function(e,t){var n={first:e,last:t};this._signal("update",{data:n})},this.start=function(e){this.currentLine=Math.min(e||0,this.currentLine,this.doc.getLength()),this.lines.splice(this.currentLine,this.lines.length),this.states.splice(this.currentLine,this.states.length),this.stop(),this.running=setTimeout(this.$worker,700)},this.scheduleStart=function(){this.running||(this.running=setTimeout(this.$worker,700))},this.$updateOnChange=function(e){var t=e.start.row,n=e.end.row-t;if(n===0)this.lines[t]=null;else if(e.action=="remove")this.lines.splice(t,n+1,null),this.states.splice(t,n+1,null);else{var r=Array(n+1);r.unshift(t,1),this.lines.splice.apply(this.lines,r),this.states.splice.apply(this.states,r)}this.currentLine=Math.min(t,this.currentLine,this.doc.getLength()),this.stop()},this.stop=function(){this.running&&clearTimeout(this.running),this.running=!1},this.getTokens=function(e){return this.lines[e]||this.$tokenizeRow(e)},this.getState=function(e){return this.currentLine==e&&this.$tokenizeRow(e),this.states[e]||"start"},this.$tokenizeRow=function(e){var t=this.doc.getLine(e),n=this.states[e-1],r=this.tokenizer.getLineTokens(t,n,e);return this.states[e]+""!=r.state+""?(this.states[e]=r.state,this.lines[e+1]=null,this.currentLine>e+1&&(this.currentLine=e+1)):this.currentLine==e&&(this.currentLine=e+1),this.lines[e]=r.tokens}}).call(s.prototype),t.BackgroundTokenizer=s}),define("ace/search_highlight",["require","exports","module","ace/lib/lang","ace/lib/oop","ace/range"],function(e,t,n){"use strict";var r=e("./lib/lang"),i=e("./lib/oop"),s=e("./range").Range,o=function(e,t,n){this.setRegexp(e),this.clazz=t,this.type=n||"text"};(function(){this.MAX_RANGES=500,this.setRegexp=function(e){if(this.regExp+""==e+"")return;this.regExp=e,this.cache=[]},this.update=function(e,t,n,i){if(!this.regExp)return;var o=i.firstRow,u=i.lastRow;for(var a=o;a<=u;a++){var f=this.cache[a];f==null&&(f=r.getMatchOffsets(n.getLine(a),this.regExp),f.length>this.MAX_RANGES&&(f=f.slice(0,this.MAX_RANGES)),f=f.map(function(e){return new s(a,e.offset,a,e.offset+e.length)}),this.cache[a]=f.length?f:"");for(var l=f.length;l--;)t.drawSingleLineMarker(e,f[l].toScreenRange(n),this.clazz,i)}}}).call(o.prototype),t.SearchHighlight=o}),define("ace/edit_session/fold_line",["require","exports","module","ace/range"],function(e,t,n){"use strict";function i(e,t){this.foldData=e,Array.isArray(t)?this.folds=t:t=this.folds=[t];var n=t[t.length-1];this.range=new r(t[0].start.row,t[0].start.column,n.end.row,n.end.column),this.start=this.range.start,this.end=this.range.end,this.folds.forEach(function(e){e.setFoldLine(this)},this)}var r=e("../range").Range;(function(){this.shiftRow=function(e){this.start.row+=e,this.end.row+=e,this.folds.forEach(function(t){t.start.row+=e,t.end.row+=e})},this.addFold=function(e){if(e.sameRow){if(e.start.row<this.startRow||e.endRow>this.endRow)throw new Error("Can't add a fold to this FoldLine as it has no connection");this.folds.push(e),this.folds.sort(function(e,t){return-e.range.compareEnd(t.start.row,t.start.column)}),this.range.compareEnd(e.start.row,e.start.column)>0?(this.end.row=e.end.row,this.end.column=e.end.column):this.range.compareStart(e.end.row,e.end.column)<0&&(this.start.row=e.start.row,this.start.column=e.start.column)}else if(e.start.row==this.end.row)this.folds.push(e),this.end.row=e.end.row,this.end.column=e.end.column;else{if(e.end.row!=this.start.row)throw new Error("Trying to add fold to FoldRow that doesn't have a matching row");this.folds.unshift(e),this.start.row=e.start.row,this.start.column=e.start.column}e.foldLine=this},this.containsRow=function(e){return e>=this.start.row&&e<=this.end.row},this.walk=function(e,t,n){var r=0,i=this.folds,s,o,u,a=!0;t==null&&(t=this.end.row,n=this.end.column);for(var f=0;f<i.length;f++){s=i[f],o=s.range.compareStart(t,n);if(o==-1){e(null,t,n,r,a);return}u=e(null,s.start.row,s.start.column,r,a),u=!u&&e(s.placeholder,s.start.row,s.start.column,r);if(u||o===0)return;a=!s.sameRow,r=s.end.column}e(null,t,n,r,a)},this.getNextFoldTo=function(e,t){var n,r;for(var i=0;i<this.folds.length;i++){n=this.folds[i],r=n.range.compareEnd(e,t);if(r==-1)return{fold:n,kind:"after"};if(r===0)return{fold:n,kind:"inside"}}return null},this.addRemoveChars=function(e,t,n){var r=this.getNextFoldTo(e,t),i,s;if(r){i=r.fold;if(r.kind=="inside"&&i.start.column!=t&&i.start.row!=e)window.console&&window.console.log(e,t,i);else if(i.start.row==e){s=this.folds;var o=s.indexOf(i);o===0&&(this.start.column+=n);for(o;o<s.length;o++){i=s[o],i.start.column+=n;if(!i.sameRow)return;i.end.column+=n}this.end.column+=n}}},this.split=function(e,t){var n=this.getNextFoldTo(e,t);if(!n||n.kind=="inside")return null;var r=n.fold,s=this.folds,o=this.foldData,u=s.indexOf(r),a=s[u-1];this.end.row=a.end.row,this.end.column=a.end.column,s=s.splice(u,s.length-u);var f=new i(o,s);return o.splice(o.indexOf(this)+1,0,f),f},this.merge=function(e){var t=e.folds;for(var n=0;n<t.length;n++)this.addFold(t[n]);var r=this.foldData;r.splice(r.indexOf(e),1)},this.toString=function(){var e=[this.range.toString()+": ["];return this.folds.forEach(function(t){e.push(" "+t.toString())}),e.push("]"),e.join("\n")},this.idxToPosition=function(e){var t=0;for(var n=0;n<this.folds.length;n++){var r=this.folds[n];e-=r.start.column-t;if(e<0)return{row:r.start.row,column:r.start.column+e};e-=r.placeholder.length;if(e<0)return r.start;t=r.end.column}return{row:this.end.row,column:this.end.column+e}}}).call(i.prototype),t.FoldLine=i}),define("ace/range_list",["require","exports","module","ace/range"],function(e,t,n){"use strict";var r=e("./range").Range,i=r.comparePoints,s=function(){this.ranges=[]};(function(){this.comparePoints=i,this.pointIndex=function(e,t,n){var r=this.ranges;for(var s=n||0;s<r.length;s++){var o=r[s],u=i(e,o.end);if(u>0)continue;var a=i(e,o.start);return u===0?t&&a!==0?-s-2:s:a>0||a===0&&!t?s:-s-1}return-s-1},this.add=function(e){var t=!e.isEmpty(),n=this.pointIndex(e.start,t);n<0&&(n=-n-1);var r=this.pointIndex(e.end,t,n);return r<0?r=-r-1:r++,this.ranges.splice(n,r-n,e)},this.addList=function(e){var t=[];for(var n=e.length;n--;)t.push.apply(t,this.add(e[n]));return t},this.substractPoint=function(e){var t=this.pointIndex(e);if(t>=0)return this.ranges.splice(t,1)},this.merge=function(){var e=[],t=this.ranges;t=t.sort(function(e,t){return i(e.start,t.start)});var n=t[0],r;for(var s=1;s<t.length;s++){r=n,n=t[s];var o=i(r.end,n.start);if(o<0)continue;if(o==0&&!r.isEmpty()&&!n.isEmpty())continue;i(r.end,n.end)<0&&(r.end.row=n.end.row,r.end.column=n.end.column),t.splice(s,1),e.push(n),n=r,s--}return this.ranges=t,e},this.contains=function(e,t){return this.pointIndex({row:e,column:t})>=0},this.containsPoint=function(e){return this.pointIndex(e)>=0},this.rangeAtPoint=function(e){var t=this.pointIndex(e);if(t>=0)return this.ranges[t]},this.clipRows=function(e,t){var n=this.ranges;if(n[0].start.row>t||n[n.length-1].start.row<e)return[];var r=this.pointIndex({row:e,column:0});r<0&&(r=-r-1);var i=this.pointIndex({row:t,column:0},r);i<0&&(i=-i-1);var s=[];for(var o=r;o<i;o++)s.push(n[o]);return s},this.removeAll=function(){return this.ranges.splice(0,this.ranges.length)},this.attach=function(e){this.session&&this.detach(),this.session=e,this.onChange=this.$onChange.bind(this),this.session.on("change",this.onChange)},this.detach=function(){if(!this.session)return;this.session.removeListener("change",this.onChange),this.session=null},this.$onChange=function(e){if(e.action=="insert")var t=e.start,n=e.end;else var n=e.start,t=e.end;var r=t.row,i=n.row,s=i-r,o=-t.column+n.column,u=this.ranges;for(var a=0,f=u.length;a<f;a++){var l=u[a];if(l.end.row<r)continue;if(l.start.row>r)break;l.start.row==r&&l.start.column>=t.column&&(l.start.column!=t.column||!this.$insertRight)&&(l.start.column+=o,l.start.row+=s);if(l.end.row==r&&l.end.column>=t.column){if(l.end.column==t.column&&this.$insertRight)continue;l.end.column==t.column&&o>0&&a<f-1&&l.end.column>l.start.column&&l.end.column==u[a+1].start.column&&(l.end.column-=o),l.end.column+=o,l.end.row+=s}}if(s!=0&&a<f)for(;a<f;a++){var l=u[a];l.start.row+=s,l.end.row+=s}}}).call(s.prototype),t.RangeList=s}),define("ace/edit_session/fold",["require","exports","module","ace/range","ace/range_list","ace/lib/oop"],function(e,t,n){"use strict";function u(e,t){e.row-=t.row,e.row==0&&(e.column-=t.column)}function a(e,t){u(e.start,t),u(e.end,t)}function f(e,t){e.row==0&&(e.column+=t.column),e.row+=t.row}function l(e,t){f(e.start,t),f(e.end,t)}var r=e("../range").Range,i=e("../range_list").RangeList,s=e("../lib/oop"),o=t.Fold=function(e,t){this.foldLine=null,this.placeholder=t,this.range=e,this.start=e.start,this.end=e.end,this.sameRow=e.start.row==e.end.row,this.subFolds=this.ranges=[]};s.inherits(o,i),function(){this.toString=function(){return'"'+this.placeholder+'" '+this.range.toString()},this.setFoldLine=function(e){this.foldLine=e,this.subFolds.forEach(function(t){t.setFoldLine(e)})},this.clone=function(){var e=this.range.clone(),t=new o(e,this.placeholder);return this.subFolds.forEach(function(e){t.subFolds.push(e.clone())}),t.collapseChildren=this.collapseChildren,t},this.addSubFold=function(e){if(this.range.isEqual(e))return;if(!this.range.containsRange(e))throw new Error("A fold can't intersect already existing fold"+e.range+this.range);a(e,this.start);var t=e.start.row,n=e.start.column;for(var r=0,i=-1;r<this.subFolds.length;r++){i=this.subFolds[r].range.compare(t,n);if(i!=1)break}var s=this.subFolds[r];if(i==0)return s.addSubFold(e);var t=e.range.end.row,n=e.range.end.column;for(var o=r,i=-1;o<this.subFolds.length;o++){i=this.subFolds[o].range.compare(t,n);if(i!=1)break}var u=this.subFolds[o];if(i==0)throw new Error("A fold can't intersect already existing fold"+e.range+this.range);var f=this.subFolds.splice(r,o-r,e);return e.setFoldLine(this.foldLine),e},this.restoreRange=function(e){return l(e,this.start)}}.call(o.prototype)}),define("ace/edit_session/folding",["require","exports","module","ace/range","ace/edit_session/fold_line","ace/edit_session/fold","ace/token_iterator"],function(e,t,n){"use strict";function u(){this.getFoldAt=function(e,t,n){var r=this.getFoldLine(e);if(!r)return null;var i=r.folds;for(var s=0;s<i.length;s++){var o=i[s];if(o.range.contains(e,t)){if(n==1&&o.range.isEnd(e,t))continue;if(n==-1&&o.range.isStart(e,t))continue;return o}}},this.getFoldsInRange=function(e){var t=e.start,n=e.end,r=this.$foldData,i=[];t.column+=1,n.column-=1;for(var s=0;s<r.length;s++){var o=r[s].range.compareRange(e);if(o==2)continue;if(o==-2)break;var u=r[s].folds;for(var a=0;a<u.length;a++){var f=u[a];o=f.range.compareRange(e);if(o==-2)break;if(o==2)continue;if(o==42)break;i.push(f)}}return t.column-=1,n.column+=1,i},this.getFoldsInRangeList=function(e){if(Array.isArray(e)){var t=[];e.forEach(function(e){t=t.concat(this.getFoldsInRange(e))},this)}else var t=this.getFoldsInRange(e);return t},this.getAllFolds=function(){var e=[],t=this.$foldData;for(var n=0;n<t.length;n++)for(var r=0;r<t[n].folds.length;r++)e.push(t[n].folds[r]);return e},this.getFoldStringAt=function(e,t,n,r){r=r||this.getFoldLine(e);if(!r)return null;var i={end:{column:0}},s,o;for(var u=0;u<r.folds.length;u++){o=r.folds[u];var a=o.range.compareEnd(e,t);if(a==-1){s=this.getLine(o.start.row).substring(i.end.column,o.start.column);break}if(a===0)return null;i=o}return s||(s=this.getLine(o.start.row).substring(i.end.column)),n==-1?s.substring(0,t-i.end.column):n==1?s.substring(t-i.end.column):s},this.getFoldLine=function(e,t){var n=this.$foldData,r=0;t&&(r=n.indexOf(t)),r==-1&&(r=0);for(r;r<n.length;r++){var i=n[r];if(i.start.row<=e&&i.end.row>=e)return i;if(i.end.row>e)return null}return null},this.getNextFoldLine=function(e,t){var n=this.$foldData,r=0;t&&(r=n.indexOf(t)),r==-1&&(r=0);for(r;r<n.length;r++){var i=n[r];if(i.end.row>=e)return i}return null},this.getFoldedRowCount=function(e,t){var n=this.$foldData,r=t-e+1;for(var i=0;i<n.length;i++){var s=n[i],o=s.end.row,u=s.start.row;if(o>=t){u<t&&(u>=e?r-=t-u:r=0);break}o>=e&&(u>=e?r-=o-u:r-=o-e+1)}return r},this.$addFoldLine=function(e){return this.$foldData.push(e),this.$foldData.sort(function(e,t){return e.start.row-t.start.row}),e},this.addFold=function(e,t){var n=this.$foldData,r=!1,o;e instanceof s?o=e:(o=new s(t,e),o.collapseChildren=t.collapseChildren),this.$clipRangeToDocument(o.range);var u=o.start.row,a=o.start.column,f=o.end.row,l=o.end.column;if(u<f||u==f&&a<=l-2){var c=this.getFoldAt(u,a,1),h=this.getFoldAt(f,l,-1);if(c&&h==c)return c.addSubFold(o);c&&!c.range.isStart(u,a)&&this.removeFold(c),h&&!h.range.isEnd(f,l)&&this.removeFold(h);var p=this.getFoldsInRange(o.range);p.length>0&&(this.removeFolds(p),p.forEach(function(e){o.addSubFold(e)}));for(var d=0;d<n.length;d++){var v=n[d];if(f==v.start.row){v.addFold(o),r=!0;break}if(u==v.end.row){v.addFold(o),r=!0;if(!o.sameRow){var m=n[d+1];if(m&&m.start.row==f){v.merge(m);break}}break}if(f<=v.start.row)break}return r||(v=this.$addFoldLine(new i(this.$foldData,o))),this.$useWrapMode?this.$updateWrapData(v.start.row,v.start.row):this.$updateRowLengthCache(v.start.row,v.start.row),this.$modified=!0,this._signal("changeFold",{data:o,action:"add"}),o}throw new Error("The range has to be at least 2 characters width")},this.addFolds=function(e){e.forEach(function(e){this.addFold(e)},this)},this.removeFold=function(e){var t=e.foldLine,n=t.start.row,r=t.end.row,i=this.$foldData,s=t.folds;if(s.length==1)i.splice(i.indexOf(t),1);else if(t.range.isEnd(e.end.row,e.end.column))s.pop(),t.end.row=s[s.length-1].end.row,t.end.column=s[s.length-1].end.column;else if(t.range.isStart(e.start.row,e.start.column))s.shift(),t.start.row=s[0].start.row,t.start.column=s[0].start.column;else if(e.sameRow)s.splice(s.indexOf(e),1);else{var o=t.split(e.start.row,e.start.column);s=o.folds,s.shift(),o.start.row=s[0].start.row,o.start.column=s[0].start.column}this.$updating||(this.$useWrapMode?this.$updateWrapData(n,r):this.$updateRowLengthCache(n,r)),this.$modified=!0,this._signal("changeFold",{data:e,action:"remove"})},this.removeFolds=function(e){var t=[];for(var n=0;n<e.length;n++)t.push(e[n]);t.forEach(function(e){this.removeFold(e)},this),this.$modified=!0},this.expandFold=function(e){this.removeFold(e),e.subFolds.forEach(function(t){e.restoreRange(t),this.addFold(t)},this),e.collapseChildren>0&&this.foldAll(e.start.row+1,e.end.row,e.collapseChildren-1),e.subFolds=[]},this.expandFolds=function(e){e.forEach(function(e){this.expandFold(e)},this)},this.unfold=function(e,t){var n,i;e==null?(n=new r(0,0,this.getLength(),0),t=!0):typeof e=="number"?n=new r(e,0,e,this.getLine(e).length):"row"in e?n=r.fromPoints(e,e):n=e,i=this.getFoldsInRangeList(n);if(t)this.removeFolds(i);else{var s=i;while(s.length)this.expandFolds(s),s=this.getFoldsInRangeList(n)}if(i.length)return i},this.isRowFolded=function(e,t){return!!this.getFoldLine(e,t)},this.getRowFoldEnd=function(e,t){var n=this.getFoldLine(e,t);return n?n.end.row:e},this.getRowFoldStart=function(e,t){var n=this.getFoldLine(e,t);return n?n.start.row:e},this.getFoldDisplayLine=function(e,t,n,r,i){r==null&&(r=e.start.row),i==null&&(i=0),t==null&&(t=e.end.row),n==null&&(n=this.getLine(t).length);var s=this.doc,o="";return e.walk(function(e,t,n,u){if(t<r)return;if(t==r){if(n<i)return;u=Math.max(i,u)}e!=null?o+=e:o+=s.getLine(t).substring(u,n)},t,n),o},this.getDisplayLine=function(e,t,n,r){var i=this.getFoldLine(e);if(!i){var s;return s=this.doc.getLine(e),s.substring(r||0,t||s.length)}return this.getFoldDisplayLine(i,e,t,n,r)},this.$cloneFoldData=function(){var e=[];return e=this.$foldData.map(function(t){var n=t.folds.map(function(e){return e.clone()});return new i(e,n)}),e},this.toggleFold=function(e){var t=this.selection,n=t.getRange(),r,i;if(n.isEmpty()){var s=n.start;r=this.getFoldAt(s.row,s.column);if(r){this.expandFold(r);return}(i=this.findMatchingBracket(s))?n.comparePoint(i)==1?n.end=i:(n.start=i,n.start.column++,n.end.column--):(i=this.findMatchingBracket({row:s.row,column:s.column+1}))?(n.comparePoint(i)==1?n.end=i:n.start=i,n.start.column++):n=this.getCommentFoldRange(s.row,s.column)||n}else{var o=this.getFoldsInRange(n);if(e&&o.length){this.expandFolds(o);return}o.length==1&&(r=o[0])}r||(r=this.getFoldAt(n.start.row,n.start.column));if(r&&r.range.toString()==n.toString()){this.expandFold(r);return}var u="...";if(!n.isMultiLine()){u=this.getTextRange(n);if(u.length<4)return;u=u.trim().substring(0,2)+".."}this.addFold(u,n)},this.getCommentFoldRange=function(e,t,n){var i=new o(this,e,t),s=i.getCurrentToken(),u=s.type;if(s&&/^comment|string/.test(u)){u=u.match(/comment|string/)[0],u=="comment"&&(u+="|doc-start");var a=new RegExp(u),f=new r;if(n!=1){do s=i.stepBackward();while(s&&a.test(s.type));i.stepForward()}f.start.row=i.getCurrentTokenRow(),f.start.column=i.getCurrentTokenColumn()+2,i=new o(this,e,t);if(n!=-1){var l=-1;do{s=i.stepForward();if(l==-1){var c=this.getState(i.$row);a.test(c)||(l=i.$row)}else if(i.$row>l)break}while(s&&a.test(s.type));s=i.stepBackward()}else s=i.getCurrentToken();return f.end.row=i.getCurrentTokenRow(),f.end.column=i.getCurrentTokenColumn()+s.value.length-2,f}},this.foldAll=function(e,t,n){n==undefined&&(n=1e5);var r=this.foldWidgets;if(!r)return;t=t||this.getLength(),e=e||0;for(var i=e;i<t;i++){r[i]==null&&(r[i]=this.getFoldWidget(i));if(r[i]!="start")continue;var s=this.getFoldWidgetRange(i);if(s&&s.isMultiLine()&&s.end.row<=t&&s.start.row>=e){i=s.end.row;try{var o=this.addFold("...",s);o&&(o.collapseChildren=n)}catch(u){}}}},this.$foldStyles={manual:1,markbegin:1,markbeginend:1},this.$foldStyle="markbegin",this.setFoldStyle=function(e){if(!this.$foldStyles[e])throw new Error("invalid fold style: "+e+"["+Object.keys(this.$foldStyles).join(", ")+"]");if(this.$foldStyle==e)return;this.$foldStyle=e,e=="manual"&&this.unfold();var t=this.$foldMode;this.$setFolding(null),this.$setFolding(t)},this.$setFolding=function(e){if(this.$foldMode==e)return;this.$foldMode=e,this.off("change",this.$updateFoldWidgets),this.off("tokenizerUpdate",this.$tokenizerUpdateFoldWidgets),this._signal("changeAnnotation");if(!e||this.$foldStyle=="manual"){this.foldWidgets=null;return}this.foldWidgets=[],this.getFoldWidget=e.getFoldWidget.bind(e,this,this.$foldStyle),this.getFoldWidgetRange=e.getFoldWidgetRange.bind(e,this,this.$foldStyle),this.$updateFoldWidgets=this.updateFoldWidgets.bind(this),this.$tokenizerUpdateFoldWidgets=this.tokenizerUpdateFoldWidgets.bind(this),this.on("change",this.$updateFoldWidgets),this.on("tokenizerUpdate",this.$tokenizerUpdateFoldWidgets)},this.getParentFoldRangeData=function(e,t){var n=this.foldWidgets;if(!n||t&&n[e])return{};var r=e-1,i;while(r>=0){var s=n[r];s==null&&(s=n[r]=this.getFoldWidget(r));if(s=="start"){var o=this.getFoldWidgetRange(r);i||(i=o);if(o&&o.end.row>=e)break}r--}return{range:r!==-1&&o,firstRange:i}},this.onFoldWidgetClick=function(e,t){t=t.domEvent;var n={children:t.shiftKey,all:t.ctrlKey||t.metaKey,siblings:t.altKey},r=this.$toggleFoldWidget(e,n);if(!r){var i=t.target||t.srcElement;i&&/ace_fold-widget/.test(i.className)&&(i.className+=" ace_invalid")}},this.$toggleFoldWidget=function(e,t){if(!this.getFoldWidget)return;var n=this.getFoldWidget(e),r=this.getLine(e),i=n==="end"?-1:1,s=this.getFoldAt(e,i===-1?0:r.length,i);if(s)return t.children||t.all?this.removeFold(s):this.expandFold(s),s;var o=this.getFoldWidgetRange(e,!0);if(o&&!o.isMultiLine()){s=this.getFoldAt(o.start.row,o.start.column,1);if(s&&o.isEqual(s.range))return this.removeFold(s),s}if(t.siblings){var u=this.getParentFoldRangeData(e);if(u.range)var a=u.range.start.row+1,f=u.range.end.row;this.foldAll(a,f,t.all?1e4:0)}else t.children?(f=o?o.end.row:this.getLength(),this.foldAll(e+1,f,t.all?1e4:0)):o&&(t.all&&(o.collapseChildren=1e4),this.addFold("...",o));return o},this.toggleFoldWidget=function(e){var t=this.selection.getCursor().row;t=this.getRowFoldStart(t);var n=this.$toggleFoldWidget(t,{});if(n)return;var r=this.getParentFoldRangeData(t,!0);n=r.range||r.firstRange;if(n){t=n.start.row;var i=this.getFoldAt(t,this.getLine(t).length,1);i?this.removeFold(i):this.addFold("...",n)}},this.updateFoldWidgets=function(e){var t=e.start.row,n=e.end.row-t;if(n===0)this.foldWidgets[t]=null;else if(e.action=="remove")this.foldWidgets.splice(t,n+1,null);else{var r=Array(n+1);r.unshift(t,1),this.foldWidgets.splice.apply(this.foldWidgets,r)}},this.tokenizerUpdateFoldWidgets=function(e){var t=e.data;t.first!=t.last&&this.foldWidgets.length>t.first&&this.foldWidgets.splice(t.first,this.foldWidgets.length)}}var r=e("../range").Range,i=e("./fold_line").FoldLine,s=e("./fold").Fold,o=e("../token_iterator").TokenIterator;t.Folding=u}),define("ace/edit_session/bracket_match",["require","exports","module","ace/token_iterator","ace/range"],function(e,t,n){"use strict";function s(){this.findMatchingBracket=function(e,t){if(e.column==0)return null;var n=t||this.getLine(e.row).charAt(e.column-1);if(n=="")return null;var r=n.match(/([\(\[\{])|([\)\]\}])/);return r?r[1]?this.$findClosingBracket(r[1],e):this.$findOpeningBracket(r[2],e):null},this.getBracketRange=function(e){var t=this.getLine(e.row),n=!0,r,s=t.charAt(e.column-1),o=s&&s.match(/([\(\[\{])|([\)\]\}])/);o||(s=t.charAt(e.column),e={row:e.row,column:e.column+1},o=s&&s.match(/([\(\[\{])|([\)\]\}])/),n=!1);if(!o)return null;if(o[1]){var u=this.$findClosingBracket(o[1],e);if(!u)return null;r=i.fromPoints(e,u),n||(r.end.column++,r.start.column--),r.cursor=r.end}else{var u=this.$findOpeningBracket(o[2],e);if(!u)return null;r=i.fromPoints(u,e),n||(r.start.column++,r.end.column--),r.cursor=r.start}return r},this.$brackets={")":"(","(":")","]":"[","[":"]","{":"}","}":"{"},this.$findOpeningBracket=function(e,t,n){var i=this.$brackets[e],s=1,o=new r(this,t.row,t.column),u=o.getCurrentToken();u||(u=o.stepForward());if(!u)return;n||(n=new RegExp("(\\.?"+u.type.replace(".","\\.").replace("rparen",".paren").replace(/\b(?:end)\b/,"(?:start|begin|end)")+")+"));var a=t.column-o.getCurrentTokenColumn()-2,f=u.value;for(;;){while(a>=0){var l=f.charAt(a);if(l==i){s-=1;if(s==0)return{row:o.getCurrentTokenRow(),column:a+o.getCurrentTokenColumn()}}else l==e&&(s+=1);a-=1}do u=o.stepBackward();while(u&&!n.test(u.type));if(u==null)break;f=u.value,a=f.length-1}return null},this.$findClosingBracket=function(e,t,n){var i=this.$brackets[e],s=1,o=new r(this,t.row,t.column),u=o.getCurrentToken();u||(u=o.stepForward());if(!u)return;n||(n=new RegExp("(\\.?"+u.type.replace(".","\\.").replace("lparen",".paren").replace(/\b(?:start|begin)\b/,"(?:start|begin|end)")+")+"));var a=t.column-o.getCurrentTokenColumn();for(;;){var f=u.value,l=f.length;while(a<l){var c=f.charAt(a);if(c==i){s-=1;if(s==0)return{row:o.getCurrentTokenRow(),column:a+o.getCurrentTokenColumn()}}else c==e&&(s+=1);a+=1}do u=o.stepForward();while(u&&!n.test(u.type));if(u==null)break;a=0}return null}}var r=e("../token_iterator").TokenIterator,i=e("../range").Range;t.BracketMatch=s}),define("ace/edit_session",["require","exports","module","ace/lib/oop","ace/lib/lang","ace/bidihandler","ace/config","ace/lib/event_emitter","ace/selection","ace/mode/text","ace/range","ace/document","ace/background_tokenizer","ace/search_highlight","ace/edit_session/folding","ace/edit_session/bracket_match"],function(e,t,n){"use strict";var r=e("./lib/oop"),i=e("./lib/lang"),s=e("./bidihandler").BidiHandler,o=e("./config"),u=e("./lib/event_emitter").EventEmitter,a=e("./selection").Selection,f=e("./mode/text").Mode,l=e("./range").Range,c=e("./document").Document,h=e("./background_tokenizer").BackgroundTokenizer,p=e("./search_highlight").SearchHighlight,d=function(e,t){this.$breakpoints=[],this.$decorations=[],this.$frontMarkers={},this.$backMarkers={},this.$markerId=1,this.$undoSelect=!0,this.$foldData=[],this.id="session"+ ++d.$uid,this.$foldData.toString=function(){return this.join("\n")},this.on("changeFold",this.onChangeFold.bind(this)),this.$onChange=this.onChange.bind(this);if(typeof e!="object"||!e.getLine)e=new c(e);this.$bidiHandler=new s(this),this.setDocument(e),this.selection=new a(this),o.resetOptions(this),this.setMode(t),o._signal("session",this)};d.$uid=0,function(){function m(e){return e<4352?!1:e>=4352&&e<=4447||e>=4515&&e<=4519||e>=4602&&e<=4607||e>=9001&&e<=9002||e>=11904&&e<=11929||e>=11931&&e<=12019||e>=12032&&e<=12245||e>=12272&&e<=12283||e>=12288&&e<=12350||e>=12353&&e<=12438||e>=12441&&e<=12543||e>=12549&&e<=12589||e>=12593&&e<=12686||e>=12688&&e<=12730||e>=12736&&e<=12771||e>=12784&&e<=12830||e>=12832&&e<=12871||e>=12880&&e<=13054||e>=13056&&e<=19903||e>=19968&&e<=42124||e>=42128&&e<=42182||e>=43360&&e<=43388||e>=44032&&e<=55203||e>=55216&&e<=55238||e>=55243&&e<=55291||e>=63744&&e<=64255||e>=65040&&e<=65049||e>=65072&&e<=65106||e>=65108&&e<=65126||e>=65128&&e<=65131||e>=65281&&e<=65376||e>=65504&&e<=65510}r.implement(this,u),this.setDocument=function(e){this.doc&&this.doc.removeListener("change",this.$onChange),this.doc=e,e.on("change",this.$onChange),this.bgTokenizer&&this.bgTokenizer.setDocument(this.getDocument()),this.resetCaches()},this.getDocument=function(){return this.doc},this.$resetRowCache=function(e){if(!e){this.$docRowCache=[],this.$screenRowCache=[];return}var t=this.$docRowCache.length,n=this.$getRowCacheIndex(this.$docRowCache,e)+1;t>n&&(this.$docRowCache.splice(n,t),this.$screenRowCache.splice(n,t))},this.$getRowCacheIndex=function(e,t){var n=0,r=e.length-1;while(n<=r){var i=n+r>>1,s=e[i];if(t>s)n=i+1;else{if(!(t<s))return i;r=i-1}}return n-1},this.resetCaches=function(){this.$modified=!0,this.$wrapData=[],this.$rowLengthCache=[],this.$resetRowCache(0),this.bgTokenizer&&this.bgTokenizer.start(0)},this.onChangeFold=function(e){var t=e.data;this.$resetRowCache(t.start.row)},this.onChange=function(e){this.$modified=!0,this.$bidiHandler.onChange(e),this.$resetRowCache(e.start.row);var t=this.$updateInternalDataOnChange(e);!this.$fromUndo&&this.$undoManager&&!e.ignore&&(this.$deltasDoc.push(e),t&&t.length!=0&&this.$deltasFold.push({action:"removeFolds",folds:t}),this.$informUndoManager.schedule()),this.bgTokenizer&&this.bgTokenizer.$updateOnChange(e),this._signal("change",e)},this.setValue=function(e){this.doc.setValue(e),this.selection.moveTo(0,0),this.$resetRowCache(0),this.$deltas=[],this.$deltasDoc=[],this.$deltasFold=[],this.setUndoManager(this.$undoManager),this.getUndoManager().reset()},this.getValue=this.toString=function(){return this.doc.getValue()},this.getSelection=function(){return this.selection},this.getState=function(e){return this.bgTokenizer.getState(e)},this.getTokens=function(e){return this.bgTokenizer.getTokens(e)},this.getTokenAt=function(e,t){var n=this.bgTokenizer.getTokens(e),r,i=0;if(t==null){var s=n.length-1;i=this.getLine(e).length}else for(var s=0;s<n.length;s++){i+=n[s].value.length;if(i>=t)break}return r=n[s],r?(r.index=s,r.start=i-r.value.length,r):null},this.setUndoManager=function(e){this.$undoManager=e,this.$deltas=[],this.$deltasDoc=[],this.$deltasFold=[],this.$informUndoManager&&this.$informUndoManager.cancel();if(e){var t=this;this.$syncInformUndoManager=function(){t.$informUndoManager.cancel(),t.$deltasFold.length&&(t.$deltas.push({group:"fold",deltas:t.$deltasFold}),t.$deltasFold=[]),t.$deltasDoc.length&&(t.$deltas.push({group:"doc",deltas:t.$deltasDoc}),t.$deltasDoc=[]),t.$deltas.length>0&&e.execute({action:"aceupdate",args:[t.$deltas,t],merge:t.mergeUndoDeltas}),t.mergeUndoDeltas=!1,t.$deltas=[]},this.$informUndoManager=i.delayedCall(this.$syncInformUndoManager)}},this.markUndoGroup=function(){this.$syncInformUndoManager&&this.$syncInformUndoManager()},this.$defaultUndoManager={undo:function(){},redo:function(){},reset:function(){}},this.getUndoManager=function(){return this.$undoManager||this.$defaultUndoManager},this.getTabString=function(){return this.getUseSoftTabs()?i.stringRepeat(" ",this.getTabSize()):" "},this.setUseSoftTabs=function(e){this.setOption("useSoftTabs",e)},this.getUseSoftTabs=function(){return this.$useSoftTabs&&!this.$mode.$indentWithTabs},this.setTabSize=function(e){this.setOption("tabSize",e)},this.getTabSize=function(){return this.$tabSize},this.isTabStop=function(e){return this.$useSoftTabs&&e.column%this.$tabSize===0},this.setNavigateWithinSoftTabs=function(e){this.setOption("navigateWithinSoftTabs",e)},this.getNavigateWithinSoftTabs=function(){return this.$navigateWithinSoftTabs},this.$overwrite=!1,this.setOverwrite=function(e){this.setOption("overwrite",e)},this.getOverwrite=function(){return this.$overwrite},this.toggleOverwrite=function(){this.setOverwrite(!this.$overwrite)},this.addGutterDecoration=function(e,t){this.$decorations[e]||(this.$decorations[e]=""),this.$decorations[e]+=" "+t,this._signal("changeBreakpoint",{})},this.removeGutterDecoration=function(e,t){this.$decorations[e]=(this.$decorations[e]||"").replace(" "+t,""),this._signal("changeBreakpoint",{})},this.getBreakpoints=function(){return this.$breakpoints},this.setBreakpoints=function(e){this.$breakpoints=[];for(var t=0;t<e.length;t++)this.$breakpoints[e[t]]="ace_breakpoint";this._signal("changeBreakpoint",{})},this.clearBreakpoints=function(){this.$breakpoints=[],this._signal("changeBreakpoint",{})},this.setBreakpoint=function(e,t){t===undefined&&(t="ace_breakpoint"),t?this.$breakpoints[e]=t:delete this.$breakpoints[e],this._signal("changeBreakpoint",{})},this.clearBreakpoint=function(e){delete this.$breakpoints[e],this._signal("changeBreakpoint",{})},this.addMarker=function(e,t,n,r){var i=this.$markerId++,s={range:e,type:n||"line",renderer:typeof n=="function"?n:null,clazz:t,inFront:!!r,id:i};return r?(this.$frontMarkers[i]=s,this._signal("changeFrontMarker")):(this.$backMarkers[i]=s,this._signal("changeBackMarker")),i},this.addDynamicMarker=function(e,t){if(!e.update)return;var n=this.$markerId++;return e.id=n,e.inFront=!!t,t?(this.$frontMarkers[n]=e,this._signal("changeFrontMarker")):(this.$backMarkers[n]=e,this._signal("changeBackMarker")),e},this.removeMarker=function(e){var t=this.$frontMarkers[e]||this.$backMarkers[e];if(!t)return;var n=t.inFront?this.$frontMarkers:this.$backMarkers;t&&(delete n[e],this._signal(t.inFront?"changeFrontMarker":"changeBackMarker"))},this.getMarkers=function(e){return e?this.$frontMarkers:this.$backMarkers},this.highlight=function(e){if(!this.$searchHighlight){var t=new p(null,"ace_selected-word","text");this.$searchHighlight=this.addDynamicMarker(t)}this.$searchHighlight.setRegexp(e)},this.highlightLines=function(e,t,n,r){typeof t!="number"&&(n=t,t=e),n||(n="ace_step");var i=new l(e,0,t,Infinity);return i.id=this.addMarker(i,n,"fullLine",r),i},this.setAnnotations=function(e){this.$annotations=e,this._signal("changeAnnotation",{})},this.getAnnotations=function(){return this.$annotations||[]},this.clearAnnotations=function(){this.setAnnotations([])},this.$detectNewLine=function(e){var t=e.match(/^.*?(\r?\n)/m);t?this.$autoNewLine=t[1]:this.$autoNewLine="\n"},this.getWordRange=function(e,t){var n=this.getLine(e),r=!1;t>0&&(r=!!n.charAt(t-1).match(this.tokenRe)),r||(r=!!n.charAt(t).match(this.tokenRe));if(r)var i=this.tokenRe;else if(/^\s+$/.test(n.slice(t-1,t+1)))var i=/\s/;else var i=this.nonTokenRe;var s=t;if(s>0){do s--;while(s>=0&&n.charAt(s).match(i));s++}var o=t;while(o<n.length&&n.charAt(o).match(i))o++;return new l(e,s,e,o)},this.getAWordRange=function(e,t){var n=this.getWordRange(e,t),r=this.getLine(n.end.row);while(r.charAt(n.end.column).match(/[ \t]/))n.end.column+=1;return n},this.setNewLineMode=function(e){this.doc.setNewLineMode(e)},this.getNewLineMode=function(){return this.doc.getNewLineMode()},this.setUseWorker=function(e){this.setOption("useWorker",e)},this.getUseWorker=function(){return this.$useWorker},this.onReloadTokenizer=function(e){var t=e.data;this.bgTokenizer.start(t.first),this._signal("tokenizerUpdate",e)},this.$modes={},this.$mode=null,this.$modeId=null,this.setMode=function(e,t){if(e&&typeof e=="object"){if(e.getTokenizer)return this.$onChangeMode(e);var n=e,r=n.path}else r=e||"ace/mode/text";this.$modes["ace/mode/text"]||(this.$modes["ace/mode/text"]=new f);if(this.$modes[r]&&!n){this.$onChangeMode(this.$modes[r]),t&&t();return}this.$modeId=r,o.loadModule(["mode",r],function(e){if(this.$modeId!==r)return t&&t();this.$modes[r]&&!n?this.$onChangeMode(this.$modes[r]):e&&e.Mode&&(e=new e.Mode(n),n||(this.$modes[r]=e,e.$id=r),this.$onChangeMode(e)),t&&t()}.bind(this)),this.$mode||this.$onChangeMode(this.$modes["ace/mode/text"],!0)},this.$onChangeMode=function(e,t){t||(this.$modeId=e.$id);if(this.$mode===e)return;this.$mode=e,this.$stopWorker(),this.$useWorker&&this.$startWorker();var n=e.getTokenizer();if(n.addEventListener!==undefined){var r=this.onReloadTokenizer.bind(this);n.addEventListener("update",r)}if(!this.bgTokenizer){this.bgTokenizer=new h(n);var i=this;this.bgTokenizer.addEventListener("update",function(e){i._signal("tokenizerUpdate",e)})}else this.bgTokenizer.setTokenizer(n);this.bgTokenizer.setDocument(this.getDocument()),this.tokenRe=e.tokenRe,this.nonTokenRe=e.nonTokenRe,t||(e.attachToSession&&e.attachToSession(this),this.$options.wrapMethod.set.call(this,this.$wrapMethod),this.$setFolding(e.foldingRules),this.bgTokenizer.start(0),this._emit("changeMode"))},this.$stopWorker=function(){this.$worker&&(this.$worker.terminate(),this.$worker=null)},this.$startWorker=function(){try{this.$worker=this.$mode.createWorker(this)}catch(e){o.warn("Could not load worker",e),this.$worker=null}},this.getMode=function(){return this.$mode},this.$scrollTop=0,this.setScrollTop=function(e){if(this.$scrollTop===e||isNaN(e))return;this.$scrollTop=e,this._signal("changeScrollTop",e)},this.getScrollTop=function(){return this.$scrollTop},this.$scrollLeft=0,this.setScrollLeft=function(e){if(this.$scrollLeft===e||isNaN(e))return;this.$scrollLeft=e,this._signal("changeScrollLeft",e)},this.getScrollLeft=function(){return this.$scrollLeft},this.getScreenWidth=function(){return this.$computeWidth(),this.lineWidgets?Math.max(this.getLineWidgetMaxWidth(),this.screenWidth):this.screenWidth},this.getLineWidgetMaxWidth=function(){if(this.lineWidgetsWidth!=null)return this.lineWidgetsWidth;var e=0;return this.lineWidgets.forEach(function(t){t&&t.screenWidth>e&&(e=t.screenWidth)}),this.lineWidgetWidth=e},this.$computeWidth=function(e){if(this.$modified||e){this.$modified=!1;if(this.$useWrapMode)return this.screenWidth=this.$wrapLimit;var t=this.doc.getAllLines(),n=this.$rowLengthCache,r=0,i=0,s=this.$foldData[i],o=s?s.start.row:Infinity,u=t.length;for(var a=0;a<u;a++){if(a>o){a=s.end.row+1;if(a>=u)break;s=this.$foldData[i++],o=s?s.start.row:Infinity}n[a]==null&&(n[a]=this.$getStringScreenWidth(t[a])[0]),n[a]>r&&(r=n[a])}this.screenWidth=r}},this.getLine=function(e){return this.doc.getLine(e)},this.getLines=function(e,t){return this.doc.getLines(e,t)},this.getLength=function(){return this.doc.getLength()},this.getTextRange=function(e){return this.doc.getTextRange(e||this.selection.getRange())},this.insert=function(e,t){return this.doc.insert(e,t)},this.remove=function(e){return this.doc.remove(e)},this.removeFullLines=function(e,t){return this.doc.removeFullLines(e,t)},this.undoChanges=function(e,t){if(!e.length)return;this.$fromUndo=!0;var n=null;for(var r=e.length-1;r!=-1;r--){var i=e[r];i.group=="doc"?(this.doc.revertDeltas(i.deltas),n=this.$getUndoSelection(i.deltas,!0,n)):i.deltas.forEach(function(e){this.addFolds(e.folds)},this)}return this.$fromUndo=!1,n&&this.$undoSelect&&!t&&this.selection.setSelectionRange(n),n},this.redoChanges=function(e,t){if(!e.length)return;this.$fromUndo=!0;var n=null;for(var r=0;r<e.length;r++){var i=e[r];i.group=="doc"&&(this.doc.applyDeltas(i.deltas),n=this.$getUndoSelection(i.deltas,!1,n))}return this.$fromUndo=!1,n&&this.$undoSelect&&!t&&this.selection.setSelectionRange(n),n},this.setUndoSelect=function(e){this.$undoSelect=e},this.$getUndoSelection=function(e,t,n){function r(e){return t?e.action!=="insert":e.action==="insert"}var i=e[0],s,o,u=!1;r(i)?(s=l.fromPoints(i.start,i.end),u=!0):(s=l.fromPoints(i.start,i.start),u=!1);for(var a=1;a<e.length;a++)i=e[a],r(i)?(o=i.start,s.compare(o.row,o.column)==-1&&s.setStart(o),o=i.end,s.compare(o.row,o.column)==1&&s.setEnd(o),u=!0):(o=i.start,s.compare(o.row,o.column)==-1&&(s=l.fromPoints(i.start,i.start)),u=!1);if(n!=null){l.comparePoints(n.start,s.start)===0&&(n.start.column+=s.end.column-s.start.column,n.end.column+=s.end.column-s.start.column);var f=n.compareRange(s);f==1?s.setStart(n.start):f==-1&&s.setEnd(n.end)}return s},this.replace=function(e,t){return this.doc.replace(e,t)},this.moveText=function(e,t,n){var r=this.getTextRange(e),i=this.getFoldsInRange(e),s=l.fromPoints(t,t);if(!n){this.remove(e);var o=e.start.row-e.end.row,u=o?-e.end.column:e.start.column-e.end.column;u&&(s.start.row==e.end.row&&s.start.column>e.end.column&&(s.start.column+=u),s.end.row==e.end.row&&s.end.column>e.end.column&&(s.end.column+=u)),o&&s.start.row>=e.end.row&&(s.start.row+=o,s.end.row+=o)}s.end=this.insert(s.start,r);if(i.length){var a=e.start,f=s.start,o=f.row-a.row,u=f.column-a.column;this.addFolds(i.map(function(e){return e=e.clone(),e.start.row==a.row&&(e.start.column+=u),e.end.row==a.row&&(e.end.column+=u),e.start.row+=o,e.end.row+=o,e}))}return s},this.indentRows=function(e,t,n){n=n.replace(/\t/g,this.getTabString());for(var r=e;r<=t;r++)this.doc.insertInLine({row:r,column:0},n)},this.outdentRows=function(e){var t=e.collapseRows(),n=new l(0,0,0,0),r=this.getTabSize();for(var i=t.start.row;i<=t.end.row;++i){var s=this.getLine(i);n.start.row=i,n.end.row=i;for(var o=0;o<r;++o)if(s.charAt(o)!=" ")break;o<r&&s.charAt(o)==" "?(n.start.column=o,n.end.column=o+1):(n.start.column=0,n.end.column=o),this.remove(n)}},this.$moveLines=function(e,t,n){e=this.getRowFoldStart(e),t=this.getRowFoldEnd(t);if(n<0){var r=this.getRowFoldStart(e+n);if(r<0)return 0;var i=r-e}else if(n>0){var r=this.getRowFoldEnd(t+n);if(r>this.doc.getLength()-1)return 0;var i=r-t}else{e=this.$clipRowToDocument(e),t=this.$clipRowToDocument(t);var i=t-e+1}var s=new l(e,0,t,Number.MAX_VALUE),o=this.getFoldsInRange(s).map(function(e){return e=e.clone(),e.start.row+=i,e.end.row+=i,e}),u=n==0?this.doc.getLines(e,t):this.doc.removeFullLines(e,t);return this.doc.insertFullLines(e+i,u),o.length&&this.addFolds(o),i},this.moveLinesUp=function(e,t){return this.$moveLines(e,t,-1)},this.moveLinesDown=function(e,t){return this.$moveLines(e,t,1)},this.duplicateLines=function(e,t){return this.$moveLines(e,t,0)},this.$clipRowToDocument=function(e){return Math.max(0,Math.min(e,this.doc.getLength()-1))},this.$clipColumnToRow=function(e,t){return t<0?0:Math.min(this.doc.getLine(e).length,t)},this.$clipPositionToDocument=function(e,t){t=Math.max(0,t);if(e<0)e=0,t=0;else{var n=this.doc.getLength();e>=n?(e=n-1,t=this.doc.getLine(n-1).length):t=Math.min(this.doc.getLine(e).length,t)}return{row:e,column:t}},this.$clipRangeToDocument=function(e){e.start.row<0?(e.start.row=0,e.start.column=0):e.start.column=this.$clipColumnToRow(e.start.row,e.start.column);var t=this.doc.getLength()-1;return e.end.row>t?(e.end.row=t,e.end.column=this.doc.getLine(t).length):e.end.column=this.$clipColumnToRow(e.end.row,e.end.column),e},this.$wrapLimit=80,this.$useWrapMode=!1,this.$wrapLimitRange={min:null,max:null},this.setUseWrapMode=function(e){if(e!=this.$useWrapMode){this.$useWrapMode=e,this.$modified=!0,this.$resetRowCache(0);if(e){var t=this.getLength();this.$wrapData=Array(t),this.$updateWrapData(0,t-1)}this._signal("changeWrapMode")}},this.getUseWrapMode=function(){return this.$useWrapMode},this.setWrapLimitRange=function(e,t){if(this.$wrapLimitRange.min!==e||this.$wrapLimitRange.max!==t)this.$wrapLimitRange={min:e,max:t},this.$modified=!0,this.$bidiHandler.markAsDirty(),this.$useWrapMode&&this._signal("changeWrapMode")},this.adjustWrapLimit=function(e,t){var n=this.$wrapLimitRange;n.max<0&&(n={min:t,max:t});var r=this.$constrainWrapLimit(e,n.min,n.max);return r!=this.$wrapLimit&&r>1?(this.$wrapLimit=r,this.$modified=!0,this.$useWrapMode&&(this.$updateWrapData(0,this.getLength()-1),this.$resetRowCache(0),this._signal("changeWrapLimit")),!0):!1},this.$constrainWrapLimit=function(e,t,n){return t&&(e=Math.max(t,e)),n&&(e=Math.min(n,e)),e},this.getWrapLimit=function(){return this.$wrapLimit},this.setWrapLimit=function(e){this.setWrapLimitRange(e,e)},this.getWrapLimitRange=function(){return{min:this.$wrapLimitRange.min,max:this.$wrapLimitRange.max}},this.$updateInternalDataOnChange=function(e){var t=this.$useWrapMode,n=e.action,r=e.start,i=e.end,s=r.row,o=i.row,u=o-s,a=null;this.$updating=!0;if(u!=0)if(n==="remove"){this[t?"$wrapData":"$rowLengthCache"].splice(s,u);var f=this.$foldData;a=this.getFoldsInRange(e),this.removeFolds(a);var l=this.getFoldLine(i.row),c=0;if(l){l.addRemoveChars(i.row,i.column,r.column-i.column),l.shiftRow(-u);var h=this.getFoldLine(s);h&&h!==l&&(h.merge(l),l=h),c=f.indexOf(l)+1}for(c;c<f.length;c++){var l=f[c];l.start.row>=i.row&&l.shiftRow(-u)}o=s}else{var p=Array(u);p.unshift(s,0);var d=t?this.$wrapData:this.$rowLengthCache;d.splice.apply(d,p);var f=this.$foldData,l=this.getFoldLine(s),c=0;if(l){var v=l.range.compareInside(r.row,r.column);v==0?(l=l.split(r.row,r.column),l&&(l.shiftRow(u),l.addRemoveChars(o,0,i.column-r.column))):v==-1&&(l.addRemoveChars(s,0,i.column-r.column),l.shiftRow(u)),c=f.indexOf(l)+1}for(c;c<f.length;c++){var l=f[c];l.start.row>=s&&l.shiftRow(u)}}else{u=Math.abs(e.start.column-e.end.column),n==="remove"&&(a=this.getFoldsInRange(e),this.removeFolds(a),u=-u);var l=this.getFoldLine(s);l&&l.addRemoveChars(s,r.column,u)}return t&&this.$wrapData.length!=this.doc.getLength()&&console.error("doc.getLength() and $wrapData.length have to be the same!"),this.$updating=!1,t?this.$updateWrapData(s,o):this.$updateRowLengthCache(s,o),a},this.$updateRowLengthCache=function(e,t,n){this.$rowLengthCache[e]=null,this.$rowLengthCache[t]=null},this.$updateWrapData=function(e,t){var r=this.doc.getAllLines(),i=this.getTabSize(),o=this.$wrapData,u=this.$wrapLimit,a,f,l=e;t=Math.min(t,r.length-1);while(l<=t)f=this.getFoldLine(l,f),f?(a=[],f.walk(function(e,t,i,o){var u;if(e!=null){u=this.$getDisplayTokens(e,a.length),u[0]=n;for(var f=1;f<u.length;f++)u[f]=s}else u=this.$getDisplayTokens(r[t].substring(o,i),a.length);a=a.concat(u)}.bind(this),f.end.row,r[f.end.row].length+1),o[f.start.row]=this.$computeWrapSplits(a,u,i),l=f.end.row+1):(a=this.$getDisplayTokens(r[l]),o[l]=this.$computeWrapSplits(a,u,i),l++)};var e=1,t=2,n=3,s=4,a=9,c=10,d=11,v=12;this.$computeWrapSplits=function(e,r,i){function g(){var t=0;if(m===0)return t;if(p)for(var n=0;n<e.length;n++){var r=e[n];if(r==c)t+=1;else{if(r!=d){if(r==v)continue;break}t+=i}}return h&&p!==!1&&(t+=i),Math.min(t,m)}function y(t){var n=e.slice(f,t),r=n.length;n.join("").replace(/12/g,function(){r-=1}).replace(/2/g,function(){r-=1}),o.length||(b=g(),o.indent=b),l+=r,o.push(l),f=t}if(e.length==0)return[];var o=[],u=e.length,f=0,l=0,h=this.$wrapAsCode,p=this.$indentedSoftWrap,m=r<=Math.max(2*i,8)||p===!1?0:Math.floor(r/2),b=0;while(u-f>r-b){var w=f+r-b;if(e[w-1]>=c&&e[w]>=c){y(w);continue}if(e[w]==n||e[w]==s){for(w;w!=f-1;w--)if(e[w]==n)break;if(w>f){y(w);continue}w=f+r;for(w;w<e.length;w++)if(e[w]!=s)break;if(w==e.length)break;y(w);continue}var E=Math.max(w-(r-(r>>2)),f-1);while(w>E&&e[w]<n)w--;if(h){while(w>E&&e[w]<n)w--;while(w>E&&e[w]==a)w--}else while(w>E&&e[w]<c)w--;if(w>E){y(++w);continue}w=f+r,e[w]==t&&w--,y(w-b)}return o},this.$getDisplayTokens=function(n,r){var i=[],s;r=r||0;for(var o=0;o<n.length;o++){var u=n.charCodeAt(o);if(u==9){s=this.getScreenTabSize(i.length+r),i.push(d);for(var f=1;f<s;f++)i.push(v)}else u==32?i.push(c):u>39&&u<48||u>57&&u<64?i.push(a):u>=4352&&m(u)?i.push(e,t):i.push(e)}return i},this.$getStringScreenWidth=function(e,t,n){if(t==0)return[0,0];t==null&&(t=Infinity),n=n||0;var r,i;for(i=0;i<e.length;i++){r=e.charCodeAt(i),r==9?n+=this.getScreenTabSize(n):r>=4352&&m(r)?n+=2:n+=1;if(n>t)break}return[n,i]},this.lineWidgets=null,this.getRowLength=function(e){if(this.lineWidgets)var t=this.lineWidgets[e]&&this.lineWidgets[e].rowCount||0;else t=0;return!this.$useWrapMode||!this.$wrapData[e]?1+t:this.$wrapData[e].length+1+t},this.getRowLineCount=function(e){return!this.$useWrapMode||!this.$wrapData[e]?1:this.$wrapData[e].length+1},this.getRowWrapIndent=function(e){if(this.$useWrapMode){var t=this.screenToDocumentPosition(e,Number.MAX_VALUE),n=this.$wrapData[t.row];return n.length&&n[0]<t.column?n.indent:0}return 0},this.getScreenLastRowColumn=function(e){var t=this.screenToDocumentPosition(e,Number.MAX_VALUE);return this.documentToScreenColumn(t.row,t.column)},this.getDocumentLastRowColumn=function(e,t){var n=this.documentToScreenRow(e,t);return this.getScreenLastRowColumn(n)},this.getDocumentLastRowColumnPosition=function(e,t){var n=this.documentToScreenRow(e,t);return this.screenToDocumentPosition(n,Number.MAX_VALUE/10)},this.getRowSplitData=function(e){return this.$useWrapMode?this.$wrapData[e]:undefined},this.getScreenTabSize=function(e){return this.$tabSize-e%this.$tabSize},this.screenToDocumentRow=function(e,t){return this.screenToDocumentPosition(e,t).row},this.screenToDocumentColumn=function(e,t){return this.screenToDocumentPosition(e,t).column},this.screenToDocumentPosition=function(e,t,n){if(e<0)return{row:0,column:0};var r,i=0,s=0,o,u=0,a=0,f=this.$screenRowCache,l=this.$getRowCacheIndex(f,e),c=f.length;if(c&&l>=0)var u=f[l],i=this.$docRowCache[l],h=e>f[c-1];else var h=!c;var p=this.getLength()-1,d=this.getNextFoldLine(i),v=d?d.start.row:Infinity;while(u<=e){a=this.getRowLength(i);if(u+a>e||i>=p)break;u+=a,i++,i>v&&(i=d.end.row+1,d=this.getNextFoldLine(i,d),v=d?d.start.row:Infinity),h&&(this.$docRowCache.push(i),this.$screenRowCache.push(u))}if(d&&d.start.row<=i)r=this.getFoldDisplayLine(d),i=d.start.row;else{if(u+a<=e||i>p)return{row:p,column:this.getLine(p).length};r=this.getLine(i),d=null}var m=0,g=Math.floor(e-u);if(this.$useWrapMode){var y=this.$wrapData[i];y&&(o=y[g],g>0&&y.length&&(m=y.indent,s=y[g-1]||y[y.length-1],r=r.substring(s)))}return n!==undefined&&this.$bidiHandler.isBidiRow(u+g,i,g)&&(t=this.$bidiHandler.offsetToCol(n)),s+=this.$getStringScreenWidth(r,t-m)[1],this.$useWrapMode&&s>=o&&(s=o-1),d?d.idxToPosition(s):{row:i,column:s}},this.documentToScreenPosition=function(e,t){if(typeof t=="undefined")var n=this.$clipPositionToDocument(e.row,e.column);else n=this.$clipPositionToDocument(e,t);e=n.row,t=n.column;var r=0,i=null,s=null;s=this.getFoldAt(e,t,1),s&&(e=s.start.row,t=s.start.column);var o,u=0,a=this.$docRowCache,f=this.$getRowCacheIndex(a,e),l=a.length;if(l&&f>=0)var u=a[f],r=this.$screenRowCache[f],c=e>a[l-1];else var c=!l;var h=this.getNextFoldLine(u),p=h?h.start.row:Infinity;while(u<e){if(u>=p){o=h.end.row+1;if(o>e)break;h=this.getNextFoldLine(o,h),p=h?h.start.row:Infinity}else o=u+1;r+=this.getRowLength(u),u=o,c&&(this.$docRowCache.push(u),this.$screenRowCache.push(r))}var d="";h&&u>=p?(d=this.getFoldDisplayLine(h,e,t),i=h.start.row):(d=this.getLine(e).substring(0,t),i=e);var v=0;if(this.$useWrapMode){var m=this.$wrapData[i];if(m){var g=0;while(d.length>=m[g])r++,g++;d=d.substring(m[g-1]||0,d.length),v=g>0?m.indent:0}}return{row:r,column:v+this.$getStringScreenWidth(d)[0]}},this.documentToScreenColumn=function(e,t){return this.documentToScreenPosition(e,t).column},this.documentToScreenRow=function(e,t){return this.documentToScreenPosition(e,t).row},this.getScreenLength=function(){var e=0,t=null;if(!this.$useWrapMode){e=this.getLength();var n=this.$foldData;for(var r=0;r<n.length;r++)t=n[r],e-=t.end.row-t.start.row}else{var i=this.$wrapData.length,s=0,r=0,t=this.$foldData[r++],o=t?t.start.row:Infinity;while(s<i){var u=this.$wrapData[s];e+=u?u.length+1:1,s++,s>o&&(s=t.end.row+1,t=this.$foldData[r++],o=t?t.start.row:Infinity)}}return this.lineWidgets&&(e+=this.$getWidgetScreenLength()),e},this.$setFontMetrics=function(e){if(!this.$enableVarChar)return;this.$getStringScreenWidth=function(t,n,r){if(n===0)return[0,0];n||(n=Infinity),r=r||0;var i,s;for(s=0;s<t.length;s++){i=t.charAt(s),i===" "?r+=this.getScreenTabSize(r):r+=e.getCharacterWidth(i);if(r>n)break}return[r,s]}},this.destroy=function(){this.bgTokenizer&&(this.bgTokenizer.setDocument(null),this.bgTokenizer=null),this.$stopWorker()},this.isFullWidth=m}.call(d.prototype),e("./edit_session/folding").Folding.call(d.prototype),e("./edit_session/bracket_match").BracketMatch.call(d.prototype),o.defineOptions(d.prototype,"session",{wrap:{set:function(e){!e||e=="off"?e=!1:e=="free"?e=!0:e=="printMargin"?e=-1:typeof e=="string"&&(e=parseInt(e,10)||!1);if(this.$wrap==e)return;this.$wrap=e;if(!e)this.setUseWrapMode(!1);else{var t=typeof e=="number"?e:null;this.setWrapLimitRange(t,t),this.setUseWrapMode(!0)}},get:function(){return this.getUseWrapMode()?this.$wrap==-1?"printMargin":this.getWrapLimitRange().min?this.$wrap:"free":"off"},handlesSet:!0},wrapMethod:{set:function(e){e=e=="auto"?this.$mode.type!="text":e!="text",e!=this.$wrapAsCode&&(this.$wrapAsCode=e,this.$useWrapMode&&(this.$modified=!0,this.$resetRowCache(0),this.$updateWrapData(0,this.getLength()-1)))},initialValue:"auto"},indentedSoftWrap:{initialValue:!0},firstLineNumber:{set:function(){this._signal("changeBreakpoint")},initialValue:1},useWorker:{set:function(e){this.$useWorker=e,this.$stopWorker(),e&&this.$startWorker()},initialValue:!0},useSoftTabs:{initialValue:!0},tabSize:{set:function(e){if(isNaN(e)||this.$tabSize===e)return;this.$modified=!0,this.$rowLengthCache=[],this.$tabSize=e,this._signal("changeTabSize")},initialValue:4,handlesSet:!0},navigateWithinSoftTabs:{initialValue:!1},overwrite:{set:function(e){this._signal("changeOverwrite")},initialValue:!1},newLineMode:{set:function(e){this.doc.setNewLineMode(e)},get:function(){return this.doc.getNewLineMode()},handlesSet:!0},mode:{set:function(e){this.setMode(e)},get:function(){return this.$modeId}}}),t.EditSession=d}),define("ace/search",["require","exports","module","ace/lib/lang","ace/lib/oop","ace/range"],function(e,t,n){"use strict";function u(e,t){function n(e){return/\w/.test(e)||t.regExp?"\\b":""}return n(e[0])+e+n(e[e.length-1])}var r=e("./lib/lang"),i=e("./lib/oop"),s=e("./range").Range,o=function(){this.$options={}};(function(){this.set=function(e){return i.mixin(this.$options,e),this},this.getOptions=function(){return r.copyObject(this.$options)},this.setOptions=function(e){this.$options=e},this.find=function(e){var t=this.$options,n=this.$matchIterator(e,t);if(!n)return!1;var r=null;return n.forEach(function(e,n,i,o){return r=new s(e,n,i,o),n==o&&t.start&&t.start.start&&t.skipCurrent!=0&&r.isEqual(t.start)?(r=null,!1):!0}),r},this.findAll=function(e){var t=this.$options;if(!t.needle)return[];this.$assembleRegExp(t);var n=t.range,i=n?e.getLines(n.start.row,n.end.row):e.doc.getAllLines(),o=[],u=t.re;if(t.$isMultiLine){var a=u.length,f=i.length-a,l;e:for(var c=u.offset||0;c<=f;c++){for(var h=0;h<a;h++)if(i[c+h].search(u[h])==-1)continue e;var p=i[c],d=i[c+a-1],v=p.length-p.match(u[0])[0].length,m=d.match(u[a-1])[0].length;if(l&&l.end.row===c&&l.end.column>v)continue;o.push(l=new s(c,v,c+a-1,m)),a>2&&(c=c+a-2)}}else for(var g=0;g<i.length;g++){var y=r.getMatchOffsets(i[g],u);for(var h=0;h<y.length;h++){var b=y[h];o.push(new s(g,b.offset,g,b.offset+b.length))}}if(n){var w=n.start.column,E=n.start.column,g=0,h=o.length-1;while(g<h&&o[g].start.column<w&&o[g].start.row==n.start.row)g++;while(g<h&&o[h].end.column>E&&o[h].end.row==n.end.row)h--;o=o.slice(g,h+1);for(g=0,h=o.length;g<h;g++)o[g].start.row+=n.start.row,o[g].end.row+=n.start.row}return o},this.replace=function(e,t){var n=this.$options,r=this.$assembleRegExp(n);if(n.$isMultiLine)return t;if(!r)return;var i=r.exec(e);if(!i||i[0].length!=e.length)return null;t=e.replace(r,t);if(n.preserveCase){t=t.split("");for(var s=Math.min(e.length,e.length);s--;){var o=e[s];o&&o.toLowerCase()!=o?t[s]=t[s].toUpperCase():t[s]=t[s].toLowerCase()}t=t.join("")}return t},this.$assembleRegExp=function(e,t){if(e.needle instanceof RegExp)return e.re=e.needle;var n=e.needle;if(!e.needle)return e.re=!1;e.regExp||(n=r.escapeRegExp(n)),e.wholeWord&&(n=u(n,e));var i=e.caseSensitive?"gm":"gmi";e.$isMultiLine=!t&&/[\n\r]/.test(n);if(e.$isMultiLine)return e.re=this.$assembleMultilineRegExp(n,i);try{var s=new RegExp(n,i)}catch(o){s=!1}return e.re=s},this.$assembleMultilineRegExp=function(e,t){var n=e.replace(/\r\n|\r|\n/g,"$\n^").split("\n"),r=[];for(var i=0;i<n.length;i++)try{r.push(new RegExp(n[i],t))}catch(s){return!1}return r},this.$matchIterator=function(e,t){var n=this.$assembleRegExp(t);if(!n)return!1;var r=t.backwards==1,i=t.skipCurrent!=0,s=t.range,o=t.start;o||(o=s?s[r?"end":"start"]:e.selection.getRange()),o.start&&(o=o[i!=r?"end":"start"]);var u=s?s.start.row:0,a=s?s.end.row:e.getLength()-1;if(r)var f=function(e){var n=o.row;if(c(n,o.column,e))return;for(n--;n>=u;n--)if(c(n,Number.MAX_VALUE,e))return;if(t.wrap==0)return;for(n=a,u=o.row;n>=u;n--)if(c(n,Number.MAX_VALUE,e))return};else var f=function(e){var n=o.row;if(c(n,o.column,e))return;for(n+=1;n<=a;n++)if(c(n,0,e))return;if(t.wrap==0)return;for(n=u,a=o.row;n<=a;n++)if(c(n,0,e))return};if(t.$isMultiLine)var l=n.length,c=function(t,i,s){var o=r?t-l+1:t;if(o<0)return;var u=e.getLine(o),a=u.search(n[0]);if(!r&&a<i||a===-1)return;for(var f=1;f<l;f++){u=e.getLine(o+f);if(u.search(n[f])==-1)return}var c=u.match(n[l-1])[0].length;if(r&&c>i)return;if(s(o,a,o+l-1,c))return!0};else if(r)var c=function(t,r,i){var s=e.getLine(t),o=[],u,a=0;n.lastIndex=0;while(u=n.exec(s)){var f=u[0].length;a=u.index;if(!f){if(a>=s.length)break;n.lastIndex=a+=1}if(u.index+f>r)break;o.push(u.index,f)}for(var l=o.length-1;l>=0;l-=2){var c=o[l-1],f=o[l];if(i(t,c,t,c+f))return!0}};else var c=function(t,r,i){var s=e.getLine(t),o,u=r;n.lastIndex=r;while(o=n.exec(s)){var a=o[0].length;u=o.index;if(i(t,u,t,u+a))return!0;if(!a){n.lastIndex=u+=1;if(u>=s.length)return!1}}};return{forEach:f}}}).call(o.prototype),t.Search=o}),define("ace/keyboard/hash_handler",["require","exports","module","ace/lib/keys","ace/lib/useragent"],function(e,t,n){"use strict";function o(e,t){this.platform=t||(i.isMac?"mac":"win"),this.commands={},this.commandKeyBinding={},this.addCommands(e),this.$singleCommand=!0}function u(e,t){o.call(this,e,t),this.$singleCommand=!1}var r=e("../lib/keys"),i=e("../lib/useragent"),s=r.KEY_MODS;u.prototype=o.prototype,function(){function e(e){return typeof e=="object"&&e.bindKey&&e.bindKey.position||(e.isDefault?-100:0)}this.addCommand=function(e){this.commands[e.name]&&this.removeCommand(e),this.commands[e.name]=e,e.bindKey&&this._buildKeyHash(e)},this.removeCommand=function(e,t){var n=e&&(typeof e=="string"?e:e.name);e=this.commands[n],t||delete this.commands[n];var r=this.commandKeyBinding;for(var i in r){var s=r[i];if(s==e)delete r[i];else if(Array.isArray(s)){var o=s.indexOf(e);o!=-1&&(s.splice(o,1),s.length==1&&(r[i]=s[0]))}}},this.bindKey=function(e,t,n){typeof e=="object"&&e&&(n==undefined&&(n=e.position),e=e[this.platform]);if(!e)return;if(typeof t=="function")return this.addCommand({exec:t,bindKey:e,name:t.name||e});e.split("|").forEach(function(e){var r="";if(e.indexOf(" ")!=-1){var i=e.split(/\s+/);e=i.pop(),i.forEach(function(e){var t=this.parseKeys(e),n=s[t.hashId]+t.key;r+=(r?" ":"")+n,this._addCommandToBinding(r,"chainKeys")},this),r+=" "}var o=this.parseKeys(e),u=s[o.hashId]+o.key;this._addCommandToBinding(r+u,t,n)},this)},this._addCommandToBinding=function(t,n,r){var i=this.commandKeyBinding,s;if(!n)delete i[t];else if(!i[t]||this.$singleCommand)i[t]=n;else{Array.isArray(i[t])?(s=i[t].indexOf(n))!=-1&&i[t].splice(s,1):i[t]=[i[t]],typeof r!="number"&&(r=e(n));var o=i[t];for(s=0;s<o.length;s++){var u=o[s],a=e(u);if(a>r)break}o.splice(s,0,n)}},this.addCommands=function(e){e&&Object.keys(e).forEach(function(t){var n=e[t];if(!n)return;if(typeof n=="string")return this.bindKey(n,t);typeof n=="function"&&(n={exec:n});if(typeof n!="object")return;n.name||(n.name=t),this.addCommand(n)},this)},this.removeCommands=function(e){Object.keys(e).forEach(function(t){this.removeCommand(e[t])},this)},this.bindKeys=function(e){Object.keys(e).forEach(function(t){this.bindKey(t,e[t])},this)},this._buildKeyHash=function(e){this.bindKey(e.bindKey,e)},this.parseKeys=function(e){var t=e.toLowerCase().split(/[\-\+]([\-\+])?/).filter(function(e){return e}),n=t.pop(),i=r[n];if(r.FUNCTION_KEYS[i])n=r.FUNCTION_KEYS[i].toLowerCase();else{if(!t.length)return{key:n,hashId:-1};if(t.length==1&&t[0]=="shift")return{key:n.toUpperCase(),hashId:-1}}var s=0;for(var o=t.length;o--;){var u=r.KEY_MODS[t[o]];if(u==null)return typeof console!="undefined"&&console.error("invalid modifier "+t[o]+" in "+e),!1;s|=u}return{key:n,hashId:s}},this.findKeyCommand=function(t,n){var r=s[t]+n;return this.commandKeyBinding[r]},this.handleKeyboard=function(e,t,n,r){if(r<0)return;var i=s[t]+n,o=this.commandKeyBinding[i];e.$keyChain&&(e.$keyChain+=" "+i,o=this.commandKeyBinding[e.$keyChain]||o);if(o)if(o=="chainKeys"||o[o.length-1]=="chainKeys")return e.$keyChain=e.$keyChain||i,{command:"null"};if(e.$keyChain)if(!!t&&t!=4||n.length!=1){if(t==-1||r>0)e.$keyChain=""}else e.$keyChain=e.$keyChain.slice(0,-i.length-1);return{command:o}},this.getStatusText=function(e,t){return t.$keyChain||""}}.call(o.prototype),t.HashHandler=o,t.MultiHashHandler=u}),define("ace/commands/command_manager",["require","exports","module","ace/lib/oop","ace/keyboard/hash_handler","ace/lib/event_emitter"],function(e,t,n){"use strict";var r=e("../lib/oop"),i=e("../keyboard/hash_handler").MultiHashHandler,s=e("../lib/event_emitter").EventEmitter,o=function(e,t){i.call(this,t,e),this.byName=this.commands,this.setDefaultHandler("exec",function(e){return e.command.exec(e.editor,e.args||{})})};r.inherits(o,i),function(){r.implement(this,s),this.exec=function(e,t,n){if(Array.isArray(e)){for(var r=e.length;r--;)if(this.exec(e[r],t,n))return!0;return!1}typeof e=="string"&&(e=this.commands[e]);if(!e)return!1;if(t&&t.$readOnly&&!e.readOnly)return!1;if(e.isAvailable&&!e.isAvailable(t))return!1;var i={editor:t,command:e,args:n};return i.returnValue=this._emit("exec",i),this._signal("afterExec",i),i.returnValue===!1?!1:!0},this.toggleRecording=function(e){if(this.$inReplay)return;return e&&e._emit("changeStatus"),this.recording?(this.macro.pop(),this.removeEventListener("exec",this.$addCommandToMacro),this.macro.length||(this.macro=this.oldMacro),this.recording=!1):(this.$addCommandToMacro||(this.$addCommandToMacro=function(e){this.macro.push([e.command,e.args])}.bind(this)),this.oldMacro=this.macro,this.macro=[],this.on("exec",this.$addCommandToMacro),this.recording=!0)},this.replay=function(e){if(this.$inReplay||!this.macro)return;if(this.recording)return this.toggleRecording(e);try{this.$inReplay=!0,this.macro.forEach(function(t){typeof t=="string"?this.exec(t,e):this.exec(t[0],e,t[1])},this)}finally{this.$inReplay=!1}},this.trimMacro=function(e){return e.map(function(e){return typeof e[0]!="string"&&(e[0]=e[0].name),e[1]||(e=e[0]),e})}}.call(o.prototype),t.CommandManager=o}),define("ace/commands/default_commands",["require","exports","module","ace/lib/lang","ace/config","ace/range"],function(e,t,n){"use strict";function o(e,t){return{win:e,mac:t}}var r=e("../lib/lang"),i=e("../config"),s=e("../range").Range;t.commands=[{name:"showSettingsMenu",bindKey:o("Ctrl-,","Command-,"),exec:function(e){i.loadModule("ace/ext/settings_menu",function(t){t.init(e),e.showSettingsMenu()})},readOnly:!0},{name:"goToNextError",bindKey:o("Alt-E","F4"),exec:function(e){i.loadModule("ace/ext/error_marker",function(t){t.showErrorMarker(e,1)})},scrollIntoView:"animate",readOnly:!0},{name:"goToPreviousError",bindKey:o("Alt-Shift-E","Shift-F4"),exec:function(e){i.loadModule("ace/ext/error_marker",function(t){t.showErrorMarker(e,-1)})},scrollIntoView:"animate",readOnly:!0},{name:"selectall",bindKey:o("Ctrl-A","Command-A"),exec:function(e){e.selectAll()},readOnly:!0},{name:"centerselection",bindKey:o(null,"Ctrl-L"),exec:function(e){e.centerSelection()},readOnly:!0},{name:"gotoline",bindKey:o("Ctrl-L","Command-L"),exec:function(e){var t=parseInt(prompt("Enter line number:"),10);isNaN(t)||e.gotoLine(t)},readOnly:!0},{name:"fold",bindKey:o("Alt-L|Ctrl-F1","Command-Alt-L|Command-F1"),exec:function(e){e.session.toggleFold(!1)},multiSelectAction:"forEach",scrollIntoView:"center",readOnly:!0},{name:"unfold",bindKey:o("Alt-Shift-L|Ctrl-Shift-F1","Command-Alt-Shift-L|Command-Shift-F1"),exec:function(e){e.session.toggleFold(!0)},multiSelectAction:"forEach",scrollIntoView:"center",readOnly:!0},{name:"toggleFoldWidget",bindKey:o("F2","F2"),exec:function(e){e.session.toggleFoldWidget()},multiSelectAction:"forEach",scrollIntoView:"center",readOnly:!0},{name:"toggleParentFoldWidget",bindKey:o("Alt-F2","Alt-F2"),exec:function(e){e.session.toggleFoldWidget(!0)},multiSelectAction:"forEach",scrollIntoView:"center",readOnly:!0},{name:"foldall",bindKey:o(null,"Ctrl-Command-Option-0"),exec:function(e){e.session.foldAll()},scrollIntoView:"center",readOnly:!0},{name:"foldOther",bindKey:o("Alt-0","Command-Option-0"),exec:function(e){e.session.foldAll(),e.session.unfold(e.selection.getAllRanges())},scrollIntoView:"center",readOnly:!0},{name:"unfoldall",bindKey:o("Alt-Shift-0","Command-Option-Shift-0"),exec:function(e){e.session.unfold()},scrollIntoView:"center",readOnly:!0},{name:"findnext",bindKey:o("Ctrl-K","Command-G"),exec:function(e){e.findNext()},multiSelectAction:"forEach",scrollIntoView:"center",readOnly:!0},{name:"findprevious",bindKey:o("Ctrl-Shift-K","Command-Shift-G"),exec:function(e){e.findPrevious()},multiSelectAction:"forEach",scrollIntoView:"center",readOnly:!0},{name:"selectOrFindNext",bindKey:o("Alt-K","Ctrl-G"),exec:function(e){e.selection.isEmpty()?e.selection.selectWord():e.findNext()},readOnly:!0},{name:"selectOrFindPrevious",bindKey:o("Alt-Shift-K","Ctrl-Shift-G"),exec:function(e){e.selection.isEmpty()?e.selection.selectWord():e.findPrevious()},readOnly:!0},{name:"find",bindKey:o("Ctrl-F","Command-F"),exec:function(e){i.loadModule("ace/ext/searchbox",function(t){t.Search(e)})},readOnly:!0},{name:"overwrite",bindKey:"Insert",exec:function(e){e.toggleOverwrite()},readOnly:!0},{name:"selecttostart",bindKey:o("Ctrl-Shift-Home","Command-Shift-Home|Command-Shift-Up"),exec:function(e){e.getSelection().selectFileStart()},multiSelectAction:"forEach",readOnly:!0,scrollIntoView:"animate",aceCommandGroup:"fileJump"},{name:"gotostart",bindKey:o("Ctrl-Home","Command-Home|Command-Up"),exec:function(e){e.navigateFileStart()},multiSelectAction:"forEach",readOnly:!0,scrollIntoView:"animate",aceCommandGroup:"fileJump"},{name:"selectup",bindKey:o("Shift-Up","Shift-Up|Ctrl-Shift-P"),exec:function(e){e.getSelection().selectUp()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"golineup",bindKey:o("Up","Up|Ctrl-P"),exec:function(e,t){e.navigateUp(t.times)},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selecttoend",bindKey:o("Ctrl-Shift-End","Command-Shift-End|Command-Shift-Down"),exec:function(e){e.getSelection().selectFileEnd()},multiSelectAction:"forEach",readOnly:!0,scrollIntoView:"animate",aceCommandGroup:"fileJump"},{name:"gotoend",bindKey:o("Ctrl-End","Command-End|Command-Down"),exec:function(e){e.navigateFileEnd()},multiSelectAction:"forEach",readOnly:!0,scrollIntoView:"animate",aceCommandGroup:"fileJump"},{name:"selectdown",bindKey:o("Shift-Down","Shift-Down|Ctrl-Shift-N"),exec:function(e){e.getSelection().selectDown()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"golinedown",bindKey:o("Down","Down|Ctrl-N"),exec:function(e,t){e.navigateDown(t.times)},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selectwordleft",bindKey:o("Ctrl-Shift-Left","Option-Shift-Left"),exec:function(e){e.getSelection().selectWordLeft()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"gotowordleft",bindKey:o("Ctrl-Left","Option-Left"),exec:function(e){e.navigateWordLeft()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selecttolinestart",bindKey:o("Alt-Shift-Left","Command-Shift-Left|Ctrl-Shift-A"),exec:function(e){e.getSelection().selectLineStart()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"gotolinestart",bindKey:o("Alt-Left|Home","Command-Left|Home|Ctrl-A"),exec:function(e){e.navigateLineStart()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selectleft",bindKey:o("Shift-Left","Shift-Left|Ctrl-Shift-B"),exec:function(e){e.getSelection().selectLeft()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"gotoleft",bindKey:o("Left","Left|Ctrl-B"),exec:function(e,t){e.navigateLeft(t.times)},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selectwordright",bindKey:o("Ctrl-Shift-Right","Option-Shift-Right"),exec:function(e){e.getSelection().selectWordRight()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"gotowordright",bindKey:o("Ctrl-Right","Option-Right"),exec:function(e){e.navigateWordRight()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selecttolineend",bindKey:o("Alt-Shift-Right","Command-Shift-Right|Shift-End|Ctrl-Shift-E"),exec:function(e){e.getSelection().selectLineEnd()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"gotolineend",bindKey:o("Alt-Right|End","Command-Right|End|Ctrl-E"),exec:function(e){e.navigateLineEnd()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selectright",bindKey:o("Shift-Right","Shift-Right"),exec:function(e){e.getSelection().selectRight()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"gotoright",bindKey:o("Right","Right|Ctrl-F"),exec:function(e,t){e.navigateRight(t.times)},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selectpagedown",bindKey:"Shift-PageDown",exec:function(e){e.selectPageDown()},readOnly:!0},{name:"pagedown",bindKey:o(null,"Option-PageDown"),exec:function(e){e.scrollPageDown()},readOnly:!0},{name:"gotopagedown",bindKey:o("PageDown","PageDown|Ctrl-V"),exec:function(e){e.gotoPageDown()},readOnly:!0},{name:"selectpageup",bindKey:"Shift-PageUp",exec:function(e){e.selectPageUp()},readOnly:!0},{name:"pageup",bindKey:o(null,"Option-PageUp"),exec:function(e){e.scrollPageUp()},readOnly:!0},{name:"gotopageup",bindKey:"PageUp",exec:function(e){e.gotoPageUp()},readOnly:!0},{name:"scrollup",bindKey:o("Ctrl-Up",null),exec:function(e){e.renderer.scrollBy(0,-2*e.renderer.layerConfig.lineHeight)},readOnly:!0},{name:"scrolldown",bindKey:o("Ctrl-Down",null),exec:function(e){e.renderer.scrollBy(0,2*e.renderer.layerConfig.lineHeight)},readOnly:!0},{name:"selectlinestart",bindKey:"Shift-Home",exec:function(e){e.getSelection().selectLineStart()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selectlineend",bindKey:"Shift-End",exec:function(e){e.getSelection().selectLineEnd()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"togglerecording",bindKey:o("Ctrl-Alt-E","Command-Option-E"),exec:function(e){e.commands.toggleRecording(e)},readOnly:!0},{name:"replaymacro",bindKey:o("Ctrl-Shift-E","Command-Shift-E"),exec:function(e){e.commands.replay(e)},readOnly:!0},{name:"jumptomatching",bindKey:o("Ctrl-P","Ctrl-P"),exec:function(e){e.jumpToMatching()},multiSelectAction:"forEach",scrollIntoView:"animate",readOnly:!0},{name:"selecttomatching",bindKey:o("Ctrl-Shift-P","Ctrl-Shift-P"),exec:function(e){e.jumpToMatching(!0)},multiSelectAction:"forEach",scrollIntoView:"animate",readOnly:!0},{name:"expandToMatching",bindKey:o("Ctrl-Shift-M","Ctrl-Shift-M"),exec:function(e){e.jumpToMatching(!0,!0)},multiSelectAction:"forEach",scrollIntoView:"animate",readOnly:!0},{name:"passKeysToBrowser",bindKey:o(null,null),exec:function(){},passEvent:!0,readOnly:!0},{name:"copy",exec:function(e){},readOnly:!0},{name:"cut",exec:function(e){var t=e.getSelectionRange();e._emit("cut",t),e.selection.isEmpty()||(e.session.remove(t),e.clearSelection())},scrollIntoView:"cursor",multiSelectAction:"forEach"},{name:"paste",exec:function(e,t){e.$handlePaste(t)},scrollIntoView:"cursor"},{name:"removeline",bindKey:o("Ctrl-D","Command-D"),exec:function(e){e.removeLines()},scrollIntoView:"cursor",multiSelectAction:"forEachLine"},{name:"duplicateSelection",bindKey:o("Ctrl-Shift-D","Command-Shift-D"),exec:function(e){e.duplicateSelection()},scrollIntoView:"cursor",multiSelectAction:"forEach"},{name:"sortlines",bindKey:o("Ctrl-Alt-S","Command-Alt-S"),exec:function(e){e.sortLines()},scrollIntoView:"selection",multiSelectAction:"forEachLine"},{name:"togglecomment",bindKey:o("Ctrl-/","Command-/"),exec:function(e){e.toggleCommentLines()},multiSelectAction:"forEachLine",scrollIntoView:"selectionPart"},{name:"toggleBlockComment",bindKey:o("Ctrl-Shift-/","Command-Shift-/"),exec:function(e){e.toggleBlockComment()},multiSelectAction:"forEach",scrollIntoView:"selectionPart"},{name:"modifyNumberUp",bindKey:o("Ctrl-Shift-Up","Alt-Shift-Up"),exec:function(e){e.modifyNumber(1)},scrollIntoView:"cursor",multiSelectAction:"forEach"},{name:"modifyNumberDown",bindKey:o("Ctrl-Shift-Down","Alt-Shift-Down"),exec:function(e){e.modifyNumber(-1)},scrollIntoView:"cursor",multiSelectAction:"forEach"},{name:"replace",bindKey:o("Ctrl-H","Command-Option-F"),exec:function(e){i.loadModule("ace/ext/searchbox",function(t){t.Search(e,!0)})}},{name:"undo",bindKey:o("Ctrl-Z","Command-Z"),exec:function(e){e.undo()}},{name:"redo",bindKey:o("Ctrl-Shift-Z|Ctrl-Y","Command-Shift-Z|Command-Y"),exec:function(e){e.redo()}},{name:"copylinesup",bindKey:o("Alt-Shift-Up","Command-Option-Up"),exec:function(e){e.copyLinesUp()},scrollIntoView:"cursor"},{name:"movelinesup",bindKey:o("Alt-Up","Option-Up"),exec:function(e){e.moveLinesUp()},scrollIntoView:"cursor"},{name:"copylinesdown",bindKey:o("Alt-Shift-Down","Command-Option-Down"),exec:function(e){e.copyLinesDown()},scrollIntoView:"cursor"},{name:"movelinesdown",bindKey:o("Alt-Down","Option-Down"),exec:function(e){e.moveLinesDown()},scrollIntoView:"cursor"},{name:"del",bindKey:o("Delete","Delete|Ctrl-D|Shift-Delete"),exec:function(e){e.remove("right")},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"backspace",bindKey:o("Shift-Backspace|Backspace","Ctrl-Backspace|Shift-Backspace|Backspace|Ctrl-H"),exec:function(e){e.remove("left")},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"cut_or_delete",bindKey:o("Shift-Delete",null),exec:function(e){if(!e.selection.isEmpty())return!1;e.remove("left")},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"removetolinestart",bindKey:o("Alt-Backspace","Command-Backspace"),exec:function(e){e.removeToLineStart()},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"removetolineend",bindKey:o("Alt-Delete","Ctrl-K|Command-Delete"),exec:function(e){e.removeToLineEnd()},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"removetolinestarthard",bindKey:o("Ctrl-Shift-Backspace",null),exec:function(e){var t=e.selection.getRange();t.start.column=0,e.session.remove(t)},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"removetolineendhard",bindKey:o("Ctrl-Shift-Delete",null),exec:function(e){var t=e.selection.getRange();t.end.column=Number.MAX_VALUE,e.session.remove(t)},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"removewordleft",bindKey:o("Ctrl-Backspace","Alt-Backspace|Ctrl-Alt-Backspace"),exec:function(e){e.removeWordLeft()},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"removewordright",bindKey:o("Ctrl-Delete","Alt-Delete"),exec:function(e){e.removeWordRight()},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"outdent",bindKey:o("Shift-Tab","Shift-Tab"),exec:function(e){e.blockOutdent()},multiSelectAction:"forEach",scrollIntoView:"selectionPart"},{name:"indent",bindKey:o("Tab","Tab"),exec:function(e){e.indent()},multiSelectAction:"forEach",scrollIntoView:"selectionPart"},{name:"blockoutdent",bindKey:o("Ctrl-[","Ctrl-["),exec:function(e){e.blockOutdent()},multiSelectAction:"forEachLine",scrollIntoView:"selectionPart"},{name:"blockindent",bindKey:o("Ctrl-]","Ctrl-]"),exec:function(e){e.blockIndent()},multiSelectAction:"forEachLine",scrollIntoView:"selectionPart"},{name:"insertstring",exec:function(e,t){e.insert(t)},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"inserttext",exec:function(e,t){e.insert(r.stringRepeat(t.text||"",t.times||1))},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"splitline",bindKey:o(null,"Ctrl-O"),exec:function(e){e.splitLine()},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"transposeletters",bindKey:o("Alt-Shift-X","Ctrl-T"),exec:function(e){e.transposeLetters()},multiSelectAction:function(e){e.transposeSelections(1)},scrollIntoView:"cursor"},{name:"touppercase",bindKey:o("Ctrl-U","Ctrl-U"),exec:function(e){e.toUpperCase()},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"tolowercase",bindKey:o("Ctrl-Shift-U","Ctrl-Shift-U"),exec:function(e){e.toLowerCase()},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"expandtoline",bindKey:o("Ctrl-Shift-L","Command-Shift-L"),exec:function(e){var t=e.selection.getRange();t.start.column=t.end.column=0,t.end.row++,e.selection.setRange(t,!1)},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"joinlines",bindKey:o(null,null),exec:function(e){var t=e.selection.isBackwards(),n=t?e.selection.getSelectionLead():e.selection.getSelectionAnchor(),i=t?e.selection.getSelectionAnchor():e.selection.getSelectionLead(),o=e.session.doc.getLine(n.row).length,u=e.session.doc.getTextRange(e.selection.getRange()),a=u.replace(/\n\s*/," ").length,f=e.session.doc.getLine(n.row);for(var l=n.row+1;l<=i.row+1;l++){var c=r.stringTrimLeft(r.stringTrimRight(e.session.doc.getLine(l)));c.length!==0&&(c=" "+c),f+=c}i.row+1<e.session.doc.getLength()-1&&(f+=e.session.doc.getNewLineCharacter()),e.clearSelection(),e.session.doc.replace(new s(n.row,0,i.row+2,0),f),a>0?(e.selection.moveCursorTo(n.row,n.column),e.selection.selectTo(n.row,n.column+a)):(o=e.session.doc.getLine(n.row).length>o?o+1:o,e.selection.moveCursorTo(n.row,o))},multiSelectAction:"forEach",readOnly:!0},{name:"invertSelection",bindKey:o(null,null),exec:function(e){var t=e.session.doc.getLength()-1,n=e.session.doc.getLine(t).length,r=e.selection.rangeList.ranges,i=[];r.length<1&&(r=[e.selection.getRange()]);for(var o=0;o<r.length;o++)o==r.length-1&&(r[o].end.row!==t||r[o].end.column!==n)&&i.push(new s(r[o].end.row,r[o].end.column,t,n)),o===0?(r[o].start.row!==0||r[o].start.column!==0)&&i.push(new s(0,0,r[o].start.row,r[o].start.column)):i.push(new s(r[o-1].end.row,r[o-1].end.column,r[o].start.row,r[o].start.column));e.exitMultiSelectMode(),e.clearSelection();for(var o=0;o<i.length;o++)e.selection.addRange(i[o],!1)},readOnly:!0,scrollIntoView:"none"}]}),define("ace/editor",["require","exports","module","ace/lib/fixoldbrowsers","ace/lib/oop","ace/lib/dom","ace/lib/lang","ace/lib/useragent","ace/keyboard/textinput","ace/mouse/mouse_handler","ace/mouse/fold_handler","ace/keyboard/keybinding","ace/edit_session","ace/search","ace/range","ace/lib/event_emitter","ace/commands/command_manager","ace/commands/default_commands","ace/config","ace/token_iterator"],function(e,t,n){"use strict";e("./lib/fixoldbrowsers");var r=e("./lib/oop"),i=e("./lib/dom"),s=e("./lib/lang"),o=e("./lib/useragent"),u=e("./keyboard/textinput").TextInput,a=e("./mouse/mouse_handler").MouseHandler,f=e("./mouse/fold_handler").FoldHandler,l=e("./keyboard/keybinding").KeyBinding,c=e("./edit_session").EditSession,h=e("./search").Search,p=e("./range").Range,d=e("./lib/event_emitter").EventEmitter,v=e("./commands/command_manager").CommandManager,m=e("./commands/default_commands").commands,g=e("./config"),y=e("./token_iterator").TokenIterator,b=function(e,t){var n=e.getContainerElement();this.container=n,this.renderer=e,this.id="editor"+ ++b.$uid,this.commands=new v(o.isMac?"mac":"win",m),typeof document=="object"&&(this.textInput=new u(e.getTextAreaContainer(),this),this.renderer.textarea=this.textInput.getElement(),this.$mouseHandler=new a(this),new f(this)),this.keyBinding=new l(this),this.$blockScrolling=0,this.$search=(new h).set({wrap:!0}),this.$historyTracker=this.$historyTracker.bind(this),this.commands.on("exec",this.$historyTracker),this.$initOperationListeners(),this._$emitInputEvent=s.delayedCall(function(){this._signal("input",{}),this.session&&this.session.bgTokenizer&&this.session.bgTokenizer.scheduleStart()}.bind(this)),this.on("change",function(e,t){t._$emitInputEvent.schedule(31)}),this.setSession(t||new c("")),g.resetOptions(this),g._signal("editor",this)};b.$uid=0,function(){r.implement(this,d),this.$initOperationListeners=function(){function e(e){return e[e.length-1]}this.selections=[],this.commands.on("exec",this.startOperation.bind(this),!0),this.commands.on("afterExec",this.endOperation.bind(this),!0),this.$opResetTimer=s.delayedCall(this.endOperation.bind(this)),this.on("change",function(){this.curOp||this.startOperation(),this.curOp.docChanged=!0}.bind(this),!0),this.on("changeSelection",function(){this.curOp||this.startOperation(),this.curOp.selectionChanged=!0}.bind(this),!0)},this.curOp=null,this.prevOp={},this.startOperation=function(e){if(this.curOp){if(!e||this.curOp.command)return;this.prevOp=this.curOp}e||(this.previousCommand=null,e={}),this.$opResetTimer.schedule(),this.curOp={command:e.command||{},args:e.args,scrollTop:this.renderer.scrollTop},this.curOp.command.name&&this.curOp.command.scrollIntoView!==undefined&&this.$blockScrolling++},this.endOperation=function(e){if(this.curOp){if(e&&e.returnValue===!1)return this.curOp=null;this._signal("beforeEndOperation");var t=this.curOp.command;t.name&&this.$blockScrolling>0&&this.$blockScrolling--;var n=t&&t.scrollIntoView;if(n){switch(n){case"center-animate":n="animate";case"center":this.renderer.scrollCursorIntoView(null,.5);break;case"animate":case"cursor":this.renderer.scrollCursorIntoView();break;case"selectionPart":var r=this.selection.getRange(),i=this.renderer.layerConfig;(r.start.row>=i.lastRow||r.end.row<=i.firstRow)&&this.renderer.scrollSelectionIntoView(this.selection.anchor,this.selection.lead);break;default:}n=="animate"&&this.renderer.animateScrolling(this.curOp.scrollTop)}this.prevOp=this.curOp,this.curOp=null}},this.$mergeableCommands=["backspace","del","insertstring"],this.$historyTracker=function(e){if(!this.$mergeUndoDeltas)return;var t=this.prevOp,n=this.$mergeableCommands,r=t.command&&e.command.name==t.command.name;if(e.command.name=="insertstring"){var i=e.args;this.mergeNextCommand===undefined&&(this.mergeNextCommand=!0),r=r&&this.mergeNextCommand&&(!/\s/.test(i)||/\s/.test(t.args)),this.mergeNextCommand=!0}else r=r&&n.indexOf(e.command.name)!==-1;this.$mergeUndoDeltas!="always"&&Date.now()-this.sequenceStartTime>2e3&&(r=!1),r?this.session.mergeUndoDeltas=!0:n.indexOf(e.command.name)!==-1&&(this.sequenceStartTime=Date.now())},this.setKeyboardHandler=function(e,t){if(e&&typeof e=="string"){this.$keybindingId=e;var n=this;g.loadModule(["keybinding",e],function(r){n.$keybindingId==e&&n.keyBinding.setKeyboardHandler(r&&r.handler),t&&t()})}else this.$keybindingId=null,this.keyBinding.setKeyboardHandler(e),t&&t()},this.getKeyboardHandler=function(){return this.keyBinding.getKeyboardHandler()},this.setSession=function(e){if(this.session==e)return;this.curOp&&this.endOperation(),this.curOp={};var t=this.session;if(t){this.session.off("change",this.$onDocumentChange),this.session.off("changeMode",this.$onChangeMode),this.session.off("tokenizerUpdate",this.$onTokenizerUpdate),this.session.off("changeTabSize",this.$onChangeTabSize),this.session.off("changeWrapLimit",this.$onChangeWrapLimit),this.session.off("changeWrapMode",this.$onChangeWrapMode),this.session.off("changeFold",this.$onChangeFold),this.session.off("changeFrontMarker",this.$onChangeFrontMarker),this.session.off("changeBackMarker",this.$onChangeBackMarker),this.session.off("changeBreakpoint",this.$onChangeBreakpoint),this.session.off("changeAnnotation",this.$onChangeAnnotation),this.session.off("changeOverwrite",this.$onCursorChange),this.session.off("changeScrollTop",this.$onScrollTopChange),this.session.off("changeScrollLeft",this.$onScrollLeftChange);var n=this.session.getSelection();n.off("changeCursor",this.$onCursorChange),n.off("changeSelection",this.$onSelectionChange)}this.session=e,e?(this.$onDocumentChange=this.onDocumentChange.bind(this),e.on("change",this.$onDocumentChange),this.renderer.setSession(e),this.$onChangeMode=this.onChangeMode.bind(this),e.on("changeMode",this.$onChangeMode),this.$onTokenizerUpdate=this.onTokenizerUpdate.bind(this),e.on("tokenizerUpdate",this.$onTokenizerUpdate),this.$onChangeTabSize=this.renderer.onChangeTabSize.bind(this.renderer),e.on("changeTabSize",this.$onChangeTabSize),this.$onChangeWrapLimit=this.onChangeWrapLimit.bind(this),e.on("changeWrapLimit",this.$onChangeWrapLimit),this.$onChangeWrapMode=this.onChangeWrapMode.bind(this),e.on("changeWrapMode",this.$onChangeWrapMode),this.$onChangeFold=this.onChangeFold.bind(this),e.on("changeFold",this.$onChangeFold),this.$onChangeFrontMarker=this.onChangeFrontMarker.bind(this),this.session.on("changeFrontMarker",this.$onChangeFrontMarker),this.$onChangeBackMarker=this.onChangeBackMarker.bind(this),this.session.on("changeBackMarker",this.$onChangeBackMarker),this.$onChangeBreakpoint=this.onChangeBreakpoint.bind(this),this.session.on("changeBreakpoint",this.$onChangeBreakpoint),this.$onChangeAnnotation=this.onChangeAnnotation.bind(this),this.session.on("changeAnnotation",this.$onChangeAnnotation),this.$onCursorChange=this.onCursorChange.bind(this),this.session.on("changeOverwrite",this.$onCursorChange),this.$onScrollTopChange=this.onScrollTopChange.bind(this),this.session.on("changeScrollTop",this.$onScrollTopChange),this.$onScrollLeftChange=this.onScrollLeftChange.bind(this),this.session.on("changeScrollLeft",this.$onScrollLeftChange),this.selection=e.getSelection(),this.selection.on("changeCursor",this.$onCursorChange),this.$onSelectionChange=this.onSelectionChange.bind(this),this.selection.on("changeSelection",this.$onSelectionChange),this.onChangeMode(),this.$blockScrolling+=1,this.onCursorChange(),this.$blockScrolling-=1,this.onScrollTopChange(),this.onScrollLeftChange(),this.onSelectionChange(),this.onChangeFrontMarker(),this.onChangeBackMarker(),this.onChangeBreakpoint(),this.onChangeAnnotation(),this.session.getUseWrapMode()&&this.renderer.adjustWrapLimit(),this.renderer.updateFull()):(this.selection=null,this.renderer.setSession(e)),this._signal("changeSession",{session:e,oldSession:t}),this.curOp=null,t&&t._signal("changeEditor",{oldEditor:this}),e&&e._signal("changeEditor",{editor:this}),e&&e.bgTokenizer&&e.bgTokenizer.scheduleStart()},this.getSession=function(){return this.session},this.setValue=function(e,t){return this.session.doc.setValue(e),t?t==1?this.navigateFileEnd():t==-1&&this.navigateFileStart():this.selectAll(),e},this.getValue=function(){return this.session.getValue()},this.getSelection=function(){return this.selection},this.resize=function(e){this.renderer.onResize(e)},this.setTheme=function(e,t){this.renderer.setTheme(e,t)},this.getTheme=function(){return this.renderer.getTheme()},this.setStyle=function(e){this.renderer.setStyle(e)},this.unsetStyle=function(e){this.renderer.unsetStyle(e)},this.getFontSize=function(){return this.getOption("fontSize")||i.computedStyle(this.container,"fontSize")},this.setFontSize=function(e){this.setOption("fontSize",e)},this.$highlightBrackets=function(){this.session.$bracketHighlight&&(this.session.removeMarker(this.session.$bracketHighlight),this.session.$bracketHighlight=null);if(this.$highlightPending)return;var e=this;this.$highlightPending=!0,setTimeout(function(){e.$highlightPending=!1;var t=e.session;if(!t||!t.bgTokenizer)return;var n=t.findMatchingBracket(e.getCursorPosition());if(n)var r=new p(n.row,n.column,n.row,n.column+1);else if(t.$mode.getMatching)var r=t.$mode.getMatching(e.session);r&&(t.$bracketHighlight=t.addMarker(r,"ace_bracket","text"))},50)},this.$highlightTags=function(){if(this.$highlightTagPending)return;var e=this;this.$highlightTagPending=!0,setTimeout(function(){e.$highlightTagPending=!1;var t=e.session;if(!t||!t.bgTokenizer)return;var n=e.getCursorPosition(),r=new y(e.session,n.row,n.column),i=r.getCurrentToken();if(!i||!/\b(?:tag-open|tag-name)/.test(i.type)){t.removeMarker(t.$tagHighlight),t.$tagHighlight=null;return}if(i.type.indexOf("tag-open")!=-1){i=r.stepForward();if(!i)return}var s=i.value,o=0,u=r.stepBackward();if(u.value=="<"){do u=i,i=r.stepForward(),i&&i.value===s&&i.type.indexOf("tag-name")!==-1&&(u.value==="<"?o++:u.value==="</"&&o--);while(i&&o>=0)}else{do i=u,u=r.stepBackward(),i&&i.value===s&&i.type.indexOf("tag-name")!==-1&&(u.value==="<"?o++:u.value==="</"&&o--);while(u&&o<=0);r.stepForward()}if(!i){t.removeMarker(t.$tagHighlight),t.$tagHighlight=null;return}var a=r.getCurrentTokenRow(),f=r.getCurrentTokenColumn(),l=new p(a,f,a,f+i.value.length),c=t.$backMarkers[t.$tagHighlight];t.$tagHighlight&&c!=undefined&&l.compareRange(c.range)!==0&&(t.removeMarker(t.$tagHighlight),t.$tagHighlight=null),l&&!t.$tagHighlight&&(t.$tagHighlight=t.addMarker(l,"ace_bracket","text"))},50)},this.focus=function(){var e=this;setTimeout(function(){e.textInput.focus()}),this.textInput.focus()},this.isFocused=function(){return this.textInput.isFocused()},this.blur=function(){this.textInput.blur()},this.onFocus=function(e){if(this.$isFocused)return;this.$isFocused=!0,this.renderer.showCursor(),this.renderer.visualizeFocus(),this._emit("focus",e)},this.onBlur=function(e){if(!this.$isFocused)return;this.$isFocused=!1,this.renderer.hideCursor(),this.renderer.visualizeBlur(),this._emit("blur",e)},this.$cursorChange=function(){this.renderer.updateCursor()},this.onDocumentChange=function(e){var t=this.session.$useWrapMode,n=e.start.row==e.end.row?e.end.row:Infinity;this.renderer.updateLines(e.start.row,n,t),this._signal("change",e),this.$cursorChange(),this.$updateHighlightActiveLine()},this.onTokenizerUpdate=function(e){var t=e.data;this.renderer.updateLines(t.first,t.last)},this.onScrollTopChange=function(){this.renderer.scrollToY(this.session.getScrollTop())},this.onScrollLeftChange=function(){this.renderer.scrollToX(this.session.getScrollLeft())},this.onCursorChange=function(){this.$cursorChange(),this.$blockScrolling||(g.warn("Automatically scrolling cursor into view after selection change","this will be disabled in the next version","set editor.$blockScrolling = Infinity to disable this message"),this.renderer.scrollCursorIntoView()),this.$highlightBrackets(),this.$highlightTags(),this.$updateHighlightActiveLine(),this._signal("changeSelection")},this.$updateHighlightActiveLine=function(){var e=this.getSession(),t;if(this.$highlightActiveLine){if(this.$selectionStyle!="line"||!this.selection.isMultiLine())t=this.getCursorPosition();this.renderer.$maxLines&&this.session.getLength()===1&&!(this.renderer.$minLines>1)&&(t=!1)}if(e.$highlightLineMarker&&!t)e.removeMarker(e.$highlightLineMarker.id),e.$highlightLineMarker=null;else if(!e.$highlightLineMarker&&t){var n=new p(t.row,t.column,t.row,Infinity);n.id=e.addMarker(n,"ace_active-line","screenLine"),e.$highlightLineMarker=n}else t&&(e.$highlightLineMarker.start.row=t.row,e.$highlightLineMarker.end.row=t.row,e.$highlightLineMarker.start.column=t.column,e._signal("changeBackMarker"))},this.onSelectionChange=function(e){var t=this.session;t.$selectionMarker&&t.removeMarker(t.$selectionMarker),t.$selectionMarker=null;if(!this.selection.isEmpty()){var n=this.selection.getRange(),r=this.getSelectionStyle();t.$selectionMarker=t.addMarker(n,"ace_selection",r)}else this.$updateHighlightActiveLine();var i=this.$highlightSelectedWord&&this.$getSelectionHighLightRegexp();this.session.highlight(i),this._signal("changeSelection")},this.$getSelectionHighLightRegexp=function(){var e=this.session,t=this.getSelectionRange();if(t.isEmpty()||t.isMultiLine())return;var n=t.start.column-1,r=t.end.column+1,i=e.getLine(t.start.row),s=i.length,o=i.substring(Math.max(n,0),Math.min(r,s));if(n>=0&&/^[\w\d]/.test(o)||r<=s&&/[\w\d]$/.test(o))return;o=i.substring(t.start.column,t.end.column);if(!/^[\w\d]+$/.test(o))return;var u=this.$search.$assembleRegExp({wholeWord:!0,caseSensitive:!0,needle:o});return u},this.onChangeFrontMarker=function(){this.renderer.updateFrontMarkers()},this.onChangeBackMarker=function(){this.renderer.updateBackMarkers()},this.onChangeBreakpoint=function(){this.renderer.updateBreakpoints()},this.onChangeAnnotation=function(){this.renderer.setAnnotations(this.session.getAnnotations())},this.onChangeMode=function(e){this.renderer.updateText(),this._emit("changeMode",e)},this.onChangeWrapLimit=function(){this.renderer.updateFull()},this.onChangeWrapMode=function(){this.renderer.onResize(!0)},this.onChangeFold=function(){this.$updateHighlightActiveLine(),this.renderer.updateFull()},this.getSelectedText=function(){return this.session.getTextRange(this.getSelectionRange())},this.getCopyText=function(){var e=this.getSelectedText();return this._signal("copy",e),e},this.onCopy=function(){this.commands.exec("copy",this)},this.onCut=function(){this.commands.exec("cut",this)},this.onPaste=function(e,t){var n={text:e,event:t};this.commands.exec("paste",this,n)},this.$handlePaste=function(e){typeof e=="string"&&(e={text:e}),this._signal("paste",e);var t=e.text;if(!this.inMultiSelectMode||this.inVirtualSelectionMode)this.insert(t);else{var n=t.split(/\r\n|\r|\n/),r=this.selection.rangeList.ranges;if(n.length>r.length||n.length<2||!n[1])return this.commands.exec("insertstring",this,t);for(var i=r.length;i--;){var s=r[i];s.isEmpty()||this.session.remove(s),this.session.insert(s.start,n[i])}}},this.execCommand=function(e,t){return this.commands.exec(e,this,t)},this.insert=function(e,t){var n=this.session,r=n.getMode(),i=this.getCursorPosition();if(this.getBehavioursEnabled()&&!t){var s=r.transformAction(n.getState(i.row),"insertion",this,n,e);s&&(e!==s.text&&(this.session.mergeUndoDeltas=!1,this.$mergeNextCommand=!1),e=s.text)}e==" "&&(e=this.session.getTabString());if(!this.selection.isEmpty()){var o=this.getSelectionRange();i=this.session.remove(o),this.clearSelection()}else if(this.session.getOverwrite()&&e.indexOf("\n")==-1){var o=new p.fromPoints(i,i);o.end.column+=e.length,this.session.remove(o)}if(e=="\n"||e=="\r\n"){var u=n.getLine(i.row);if(i.column>u.search(/\S|$/)){var a=u.substr(i.column).search(/\S|$/);n.doc.removeInLine(i.row,i.column,i.column+a)}}this.clearSelection();var f=i.column,l=n.getState(i.row),u=n.getLine(i.row),c=r.checkOutdent(l,u,e),h=n.insert(i,e);s&&s.selection&&(s.selection.length==2?this.selection.setSelectionRange(new p(i.row,f+s.selection[0],i.row,f+s.selection[1])):this.selection.setSelectionRange(new p(i.row+s.selection[0],s.selection[1],i.row+s.selection[2],s.selection[3])));if(n.getDocument().isNewLine(e)){var d=r.getNextLineIndent(l,u.slice(0,i.column),n.getTabString());n.insert({row:i.row+1,column:0},d)}c&&r.autoOutdent(l,n,i.row)},this.onTextInput=function(e){this.keyBinding.onTextInput(e)},this.onCommandKey=function(e,t,n){this.keyBinding.onCommandKey(e,t,n)},this.setOverwrite=function(e){this.session.setOverwrite(e)},this.getOverwrite=function(){return this.session.getOverwrite()},this.toggleOverwrite=function(){this.session.toggleOverwrite()},this.setScrollSpeed=function(e){this.setOption("scrollSpeed",e)},this.getScrollSpeed=function(){return this.getOption("scrollSpeed")},this.setDragDelay=function(e){this.setOption("dragDelay",e)},this.getDragDelay=function(){return this.getOption("dragDelay")},this.setSelectionStyle=function(e){this.setOption("selectionStyle",e)},this.getSelectionStyle=function(){return this.getOption("selectionStyle")},this.setHighlightActiveLine=function(e){this.setOption("highlightActiveLine",e)},this.getHighlightActiveLine=function(){return this.getOption("highlightActiveLine")},this.setHighlightGutterLine=function(e){this.setOption("highlightGutterLine",e)},this.getHighlightGutterLine=function(){return this.getOption("highlightGutterLine")},this.setHighlightSelectedWord=function(e){this.setOption("highlightSelectedWord",e)},this.getHighlightSelectedWord=function(){return this.$highlightSelectedWord},this.setAnimatedScroll=function(e){this.renderer.setAnimatedScroll(e)},this.getAnimatedScroll=function(){return this.renderer.getAnimatedScroll()},this.setShowInvisibles=function(e){this.renderer.setShowInvisibles(e)},this.getShowInvisibles=function(){return this.renderer.getShowInvisibles()},this.setDisplayIndentGuides=function(e){this.renderer.setDisplayIndentGuides(e)},this.getDisplayIndentGuides=function(){return this.renderer.getDisplayIndentGuides()},this.setShowPrintMargin=function(e){this.renderer.setShowPrintMargin(e)},this.getShowPrintMargin=function(){return this.renderer.getShowPrintMargin()},this.setPrintMarginColumn=function(e){this.renderer.setPrintMarginColumn(e)},this.getPrintMarginColumn=function(){return this.renderer.getPrintMarginColumn()},this.setReadOnly=function(e){this.setOption("readOnly",e)},this.getReadOnly=function(){return this.getOption("readOnly")},this.setBehavioursEnabled=function(e){this.setOption("behavioursEnabled",e)},this.getBehavioursEnabled=function(){return this.getOption("behavioursEnabled")},this.setWrapBehavioursEnabled=function(e){this.setOption("wrapBehavioursEnabled",e)},this.getWrapBehavioursEnabled=function(){return this.getOption("wrapBehavioursEnabled")},this.setShowFoldWidgets=function(e){this.setOption("showFoldWidgets",e)},this.getShowFoldWidgets=function(){return this.getOption("showFoldWidgets")},this.setFadeFoldWidgets=function(e){this.setOption("fadeFoldWidgets",e)},this.getFadeFoldWidgets=function(){return this.getOption("fadeFoldWidgets")},this.remove=function(e){this.selection.isEmpty()&&(e=="left"?this.selection.selectLeft():this.selection.selectRight());var t=this.getSelectionRange();if(this.getBehavioursEnabled()){var n=this.session,r=n.getState(t.start.row),i=n.getMode().transformAction(r,"deletion",this,n,t);if(t.end.column===0){var s=n.getTextRange(t);if(s[s.length-1]=="\n"){var o=n.getLine(t.end.row);/^\s+$/.test(o)&&(t.end.column=o.length)}}i&&(t=i)}this.session.remove(t),this.clearSelection()},this.removeWordRight=function(){this.selection.isEmpty()&&this.selection.selectWordRight(),this.session.remove(this.getSelectionRange()),this.clearSelection()},this.removeWordLeft=function(){this.selection.isEmpty()&&this.selection.selectWordLeft(),this.session.remove(this.getSelectionRange()),this.clearSelection()},this.removeToLineStart=function(){this.selection.isEmpty()&&this.selection.selectLineStart(),this.session.remove(this.getSelectionRange()),this.clearSelection()},this.removeToLineEnd=function(){this.selection.isEmpty()&&this.selection.selectLineEnd();var e=this.getSelectionRange();e.start.column==e.end.column&&e.start.row==e.end.row&&(e.end.column=0,e.end.row++),this.session.remove(e),this.clearSelection()},this.splitLine=function(){this.selection.isEmpty()||(this.session.remove(this.getSelectionRange()),this.clearSelection());var e=this.getCursorPosition();this.insert("\n"),this.moveCursorToPosition(e)},this.transposeLetters=function(){if(!this.selection.isEmpty())return;var e=this.getCursorPosition(),t=e.column;if(t===0)return;var n=this.session.getLine(e.row),r,i;t<n.length?(r=n.charAt(t)+n.charAt(t-1),i=new p(e.row,t-1,e.row,t+1)):(r=n.charAt(t-1)+n.charAt(t-2),i=new p(e.row,t-2,e.row,t)),this.session.replace(i,r),this.session.selection.moveToPosition(i.end)},this.toLowerCase=function(){var e=this.getSelectionRange();this.selection.isEmpty()&&this.selection.selectWord();var t=this.getSelectionRange(),n=this.session.getTextRange(t);this.session.replace(t,n.toLowerCase()),this.selection.setSelectionRange(e)},this.toUpperCase=function(){var e=this.getSelectionRange();this.selection.isEmpty()&&this.selection.selectWord();var t=this.getSelectionRange(),n=this.session.getTextRange(t);this.session.replace(t,n.toUpperCase()),this.selection.setSelectionRange(e)},this.indent=function(){var e=this.session,t=this.getSelectionRange();if(t.start.row<t.end.row){var n=this.$getSelectedRows();e.indentRows(n.first,n.last," ");return}if(t.start.column<t.end.column){var r=e.getTextRange(t);if(!/^\s+$/.test(r)){var n=this.$getSelectedRows();e.indentRows(n.first,n.last," ");return}}var i=e.getLine(t.start.row),o=t.start,u=e.getTabSize(),a=e.documentToScreenColumn(o.row,o.column);if(this.session.getUseSoftTabs())var f=u-a%u,l=s.stringRepeat(" ",f);else{var f=a%u;while(i[t.start.column-1]==" "&&f)t.start.column--,f--;this.selection.setSelectionRange(t),l=" "}return this.insert(l)},this.blockIndent=function(){var e=this.$getSelectedRows();this.session.indentRows(e.first,e.last," ")},this.blockOutdent=function(){var e=this.session.getSelection();this.session.outdentRows(e.getRange())},this.sortLines=function(){var e=this.$getSelectedRows(),t=this.session,n=[];for(var r=e.first;r<=e.last;r++)n.push(t.getLine(r));n.sort(function(e,t){return e.toLowerCase()<t.toLowerCase()?-1:e.toLowerCase()>t.toLowerCase()?1:0});var i=new p(0,0,0,0);for(var r=e.first;r<=e.last;r++){var s=t.getLine(r);i.start.row=r,i.end.row=r,i.end.column=s.length,t.replace(i,n[r-e.first])}},this.toggleCommentLines=function(){var e=this.session.getState(this.getCursorPosition().row),t=this.$getSelectedRows();this.session.getMode().toggleCommentLines(e,this.session,t.first,t.last)},this.toggleBlockComment=function(){var e=this.getCursorPosition(),t=this.session.getState(e.row),n=this.getSelectionRange();this.session.getMode().toggleBlockComment(t,this.session,n,e)},this.getNumberAt=function(e,t){var n=/[\-]?[0-9]+(?:\.[0-9]+)?/g;n.lastIndex=0;var r=this.session.getLine(e);while(n.lastIndex<t){var i=n.exec(r);if(i.index<=t&&i.index+i[0].length>=t){var s={value:i[0],start:i.index,end:i.index+i[0].length};return s}}return null},this.modifyNumber=function(e){var t=this.selection.getCursor().row,n=this.selection.getCursor().column,r=new p(t,n-1,t,n),i=this.session.getTextRange(r);if(!isNaN(parseFloat(i))&&isFinite(i)){var s=this.getNumberAt(t,n);if(s){var o=s.value.indexOf(".")>=0?s.start+s.value.indexOf(".")+1:s.end,u=s.start+s.value.length-o,a=parseFloat(s.value);a*=Math.pow(10,u),o!==s.end&&n<o?e*=Math.pow(10,s.end-n-1):e*=Math.pow(10,s.end-n),a+=e,a/=Math.pow(10,u);var f=a.toFixed(u),l=new p(t,s.start,t,s.end);this.session.replace(l,f),this.moveCursorTo(t,Math.max(s.start+1,n+f.length-s.value.length))}}},this.removeLines=function(){var e=this.$getSelectedRows();this.session.removeFullLines(e.first,e.last),this.clearSelection()},this.duplicateSelection=function(){var e=this.selection,t=this.session,n=e.getRange(),r=e.isBackwards();if(n.isEmpty()){var i=n.start.row;t.duplicateLines(i,i)}else{var s=r?n.start:n.end,o=t.insert(s,t.getTextRange(n),!1);n.start=s,n.end=o,e.setSelectionRange(n,r)}},this.moveLinesDown=function(){this.$moveLines(1,!1)},this.moveLinesUp=function(){this.$moveLines(-1,!1)},this.moveText=function(e,t,n){return this.session.moveText(e,t,n)},this.copyLinesUp=function(){this.$moveLines(-1,!0)},this.copyLinesDown=function(){this.$moveLines(1,!0)},this.$moveLines=function(e,t){var n,r,i=this.selection;if(!i.inMultiSelectMode||this.inVirtualSelectionMode){var s=i.toOrientedRange();n=this.$getSelectedRows(s),r=this.session.$moveLines(n.first,n.last,t?0:e),t&&e==-1&&(r=0),s.moveBy(r,0),i.fromOrientedRange(s)}else{var o=i.rangeList.ranges;i.rangeList.detach(this.session),this.inVirtualSelectionMode=!0;var u=0,a=0,f=o.length;for(var l=0;l<f;l++){var c=l;o[l].moveBy(u,0),n=this.$getSelectedRows(o[l]);var h=n.first,p=n.last;while(++l<f){a&&o[l].moveBy(a,0);var d=this.$getSelectedRows(o[l]);if(t&&d.first!=p)break;if(!t&&d.first>p+1)break;p=d.last}l--,u=this.session.$moveLines(h,p,t?0:e),t&&e==-1&&(c=l+1);while(c<=l)o[c].moveBy(u,0),c++;t||(u=0),a+=u}i.fromOrientedRange(i.ranges[0]),i.rangeList.attach(this.session),this.inVirtualSelectionMode=!1}},this.$getSelectedRows=function(e){return e=(e||this.getSelectionRange()).collapseRows(),{first:this.session.getRowFoldStart(e.start.row),last:this.session.getRowFoldEnd(e.end.row)}},this.onCompositionStart=function(e){this.renderer.showComposition(this.getCursorPosition())},this.onCompositionUpdate=function(e){this.renderer.setCompositionText(e)},this.onCompositionEnd=function(){this.renderer.hideComposition()},this.getFirstVisibleRow=function(){return this.renderer.getFirstVisibleRow()},this.getLastVisibleRow=function(){return this.renderer.getLastVisibleRow()},this.isRowVisible=function(e){return e>=this.getFirstVisibleRow()&&e<=this.getLastVisibleRow()},this.isRowFullyVisible=function(e){return e>=this.renderer.getFirstFullyVisibleRow()&&e<=this.renderer.getLastFullyVisibleRow()},this.$getVisibleRowCount=function(){return this.renderer.getScrollBottomRow()-this.renderer.getScrollTopRow()+1},this.$moveByPage=function(e,t){var n=this.renderer,r=this.renderer.layerConfig,i=e*Math.floor(r.height/r.lineHeight);this.$blockScrolling++,t===!0?this.selection.$moveSelection(function(){this.moveCursorBy(i,0)}):t===!1&&(this.selection.moveCursorBy(i,0),this.selection.clearSelection()),this.$blockScrolling--;var s=n.scrollTop;n.scrollBy(0,i*r.lineHeight),t!=null&&n.scrollCursorIntoView(null,.5),n.animateScrolling(s)},this.selectPageDown=function(){this.$moveByPage(1,!0)},this.selectPageUp=function(){this.$moveByPage(-1,!0)},this.gotoPageDown=function(){this.$moveByPage(1,!1)},this.gotoPageUp=function(){this.$moveByPage(-1,!1)},this.scrollPageDown=function(){this.$moveByPage(1)},this.scrollPageUp=function(){this.$moveByPage(-1)},this.scrollToRow=function(e){this.renderer.scrollToRow(e)},this.scrollToLine=function(e,t,n,r){this.renderer.scrollToLine(e,t,n,r)},this.centerSelection=function(){var e=this.getSelectionRange(),t={row:Math.floor(e.start.row+(e.end.row-e.start.row)/2),column:Math.floor(e.start.column+(e.end.column-e.start.column)/2)};this.renderer.alignCursor(t,.5)},this.getCursorPosition=function(){return this.selection.getCursor()},this.getCursorPositionScreen=function(){return this.session.documentToScreenPosition(this.getCursorPosition())},this.getSelectionRange=function(){return this.selection.getRange()},this.selectAll=function(){this.$blockScrolling+=1,this.selection.selectAll(),this.$blockScrolling-=1},this.clearSelection=function(){this.selection.clearSelection()},this.moveCursorTo=function(e,t){this.selection.moveCursorTo(e,t)},this.moveCursorToPosition=function(e){this.selection.moveCursorToPosition(e)},this.jumpToMatching=function(e,t){var n=this.getCursorPosition(),r=new y(this.session,n.row,n.column),i=r.getCurrentToken(),s=i||r.stepForward();if(!s)return;var o,u=!1,a={},f=n.column-s.start,l,c={")":"(","(":"(","]":"[","[":"[","{":"{","}":"{"};do{if(s.value.match(/[{}()\[\]]/g))for(;f<s.value.length&&!u;f++){if(!c[s.value[f]])continue;l=c[s.value[f]]+"."+s.type.replace("rparen","lparen"),isNaN(a[l])&&(a[l]=0);switch(s.value[f]){case"(":case"[":case"{":a[l]++;break;case")":case"]":case"}":a[l]--,a[l]===-1&&(o="bracket",u=!0)}}else s&&s.type.indexOf("tag-name")!==-1&&(isNaN(a[s.value])&&(a[s.value]=0),i.value==="<"?a[s.value]++:i.value==="</"&&a[s.value]--,a[s.value]===-1&&(o="tag",u=!0));u||(i=s,s=r.stepForward(),f=0)}while(s&&!u);if(!o)return;var h,d;if(o==="bracket"){h=this.session.getBracketRange(n);if(!h){h=new p(r.getCurrentTokenRow(),r.getCurrentTokenColumn()+f-1,r.getCurrentTokenRow(),r.getCurrentTokenColumn()+f-1),d=h.start;if(t||d.row===n.row&&Math.abs(d.column-n.column)<2)h=this.session.getBracketRange(d)}}else if(o==="tag"){if(!s||s.type.indexOf("tag-name")===-1)return;var v=s.value;h=new p(r.getCurrentTokenRow(),r.getCurrentTokenColumn()-2,r.getCurrentTokenRow(),r.getCurrentTokenColumn()-2);if(h.compare(n.row,n.column)===0){u=!1;do s=i,i=r.stepBackward(),i&&(i.type.indexOf("tag-close")!==-1&&h.setEnd(r.getCurrentTokenRow(),r.getCurrentTokenColumn()+1),s.value===v&&s.type.indexOf("tag-name")!==-1&&(i.value==="<"?a[v]++:i.value==="</"&&a[v]--,a[v]===0&&(u=!0)));while(i&&!u)}s&&s.type.indexOf("tag-name")&&(d=h.start,d.row==n.row&&Math.abs(d.column-n.column)<2&&(d=h.end))}d=h&&h.cursor||d,d&&(e?h&&t?this.selection.setRange(h):h&&h.isEqual(this.getSelectionRange())?this.clearSelection():this.selection.selectTo(d.row,d.column):this.selection.moveTo(d.row,d.column))},this.gotoLine=function(e,t,n){this.selection.clearSelection(),this.session.unfold({row:e-1,column:t||0}),this.$blockScrolling+=1,this.exitMultiSelectMode&&this.exitMultiSelectMode(),this.moveCursorTo(e-1,t||0),this.$blockScrolling-=1,this.isRowFullyVisible(e-1)||this.scrollToLine(e-1,!0,n)},this.navigateTo=function(e,t){this.selection.moveTo(e,t)},this.navigateUp=function(e){if(this.selection.isMultiLine()&&!this.selection.isBackwards()){var t=this.selection.anchor.getPosition();return this.moveCursorToPosition(t)}this.selection.clearSelection(),this.selection.moveCursorBy(-e||-1,0)},this.navigateDown=function(e){if(this.selection.isMultiLine()&&this.selection.isBackwards()){var t=this.selection.anchor.getPosition();return this.moveCursorToPosition(t)}this.selection.clearSelection(),this.selection.moveCursorBy(e||1,0)},this.navigateLeft=function(e){if(!this.selection.isEmpty()){var t=this.getSelectionRange().start;this.moveCursorToPosition(t)}else{e=e||1;while(e--)this.selection.moveCursorLeft()}this.clearSelection()},this.navigateRight=function(e){if(!this.selection.isEmpty()){var t=this.getSelectionRange().end;this.moveCursorToPosition(t)}else{e=e||1;while(e--)this.selection.moveCursorRight()}this.clearSelection()},this.navigateLineStart=function(){this.selection.moveCursorLineStart(),this.clearSelection()},this.navigateLineEnd=function(){this.selection.moveCursorLineEnd(),this.clearSelection()},this.navigateFileEnd=function(){this.selection.moveCursorFileEnd(),this.clearSelection()},this.navigateFileStart=function(){this.selection.moveCursorFileStart(),this.clearSelection()},this.navigateWordRight=function(){this.selection.moveCursorWordRight(),this.clearSelection()},this.navigateWordLeft=function(){this.selection.moveCursorWordLeft(),this.clearSelection()},this.replace=function(e,t){t&&this.$search.set(t);var n=this.$search.find(this.session),r=0;return n?(this.$tryReplace(n,e)&&(r=1),n!==null&&(this.selection.setSelectionRange(n),this.renderer.scrollSelectionIntoView(n.start,n.end)),r):r},this.replaceAll=function(e,t){t&&this.$search.set(t);var n=this.$search.findAll(this.session),r=0;if(!n.length)return r;this.$blockScrolling+=1;var i=this.getSelectionRange();this.selection.moveTo(0,0);for(var s=n.length-1;s>=0;--s)this.$tryReplace(n[s],e)&&r++;return this.selection.setSelectionRange(i),this.$blockScrolling-=1,r},this.$tryReplace=function(e,t){var n=this.session.getTextRange(e);return t=this.$search.replace(n,t),t!==null?(e.end=this.session.replace(e,t),e):null},this.getLastSearchOptions=function(){return this.$search.getOptions()},this.find=function(e,t,n){t||(t={}),typeof e=="string"||e instanceof RegExp?t.needle=e:typeof e=="object"&&r.mixin(t,e);var i=this.selection.getRange();t.needle==null&&(e=this.session.getTextRange(i)||this.$search.$options.needle,e||(i=this.session.getWordRange(i.start.row,i.start.column),e=this.session.getTextRange(i)),this.$search.set({needle:e})),this.$search.set(t),t.start||this.$search.set({start:i});var s=this.$search.find(this.session);if(t.preventScroll)return s;if(s)return this.revealRange(s,n),s;t.backwards?i.start=i.end:i.end=i.start,this.selection.setRange(i)},this.findNext=function(e,t){this.find({skipCurrent:!0,backwards:!1},e,t)},this.findPrevious=function(e,t){this.find(e,{skipCurrent:!0,backwards:!0},t)},this.revealRange=function(e,t){this.$blockScrolling+=1,this.session.unfold(e),this.selection.setSelectionRange(e),this.$blockScrolling-=1;var n=this.renderer.scrollTop;this.renderer.scrollSelectionIntoView(e.start,e.end,.5),t!==!1&&this.renderer.animateScrolling(n)},this.undo=function(){this.$blockScrolling++,this.session.getUndoManager().undo(),this.$blockScrolling--,this.renderer.scrollCursorIntoView(null,.5)},this.redo=function(){this.$blockScrolling++,this.session.getUndoManager().redo(),this.$blockScrolling--,this.renderer.scrollCursorIntoView(null,.5)},this.destroy=function(){this.renderer.destroy(),this._signal("destroy",this),this.session&&this.session.destroy()},this.setAutoScrollEditorIntoView=function(e){if(!e)return;var t,n=this,r=!1;this.$scrollAnchor||(this.$scrollAnchor=document.createElement("div"));var i=this.$scrollAnchor;i.style.cssText="position:absolute",this.container.insertBefore(i,this.container.firstChild);var s=this.on("changeSelection",function(){r=!0}),o=this.renderer.on("beforeRender",function(){r&&(t=n.renderer.container.getBoundingClientRect())}),u=this.renderer.on("afterRender",function(){if(r&&t&&(n.isFocused()||n.searchBox&&n.searchBox.isFocused())){var e=n.renderer,s=e.$cursorLayer.$pixelPos,o=e.layerConfig,u=s.top-o.offset;s.top>=0&&u+t.top<0?r=!0:s.top<o.height&&s.top+t.top+o.lineHeight>window.innerHeight?r=!1:r=null,r!=null&&(i.style.top=u+"px",i.style.left=s.left+"px",i.style.height=o.lineHeight+"px",i.scrollIntoView(r)),r=t=null}});this.setAutoScrollEditorIntoView=function(e){if(e)return;delete this.setAutoScrollEditorIntoView,this.off("changeSelection",s),this.renderer.off("afterRender",u),this.renderer.off("beforeRender",o)}},this.$resetCursorStyle=function(){var e=this.$cursorStyle||"ace",t=this.renderer.$cursorLayer;if(!t)return;t.setSmoothBlinking(/smooth/.test(e)),t.isBlinking=!this.$readOnly&&e!="wide",i.setCssClass(t.element,"ace_slim-cursors",/slim/.test(e))}}.call(b.prototype),g.defineOptions(b.prototype,"editor",{selectionStyle:{set:function(e){this.onSelectionChange(),this._signal("changeSelectionStyle",{data:e})},initialValue:"line"},highlightActiveLine:{set:function(){this.$updateHighlightActiveLine()},initialValue:!0},highlightSelectedWord:{set:function(e){this.$onSelectionChange()},initialValue:!0},readOnly:{set:function(e){this.$resetCursorStyle()},initialValue:!1},cursorStyle:{set:function(e){this.$resetCursorStyle()},values:["ace","slim","smooth","wide"],initialValue:"ace"},mergeUndoDeltas:{values:[!1,!0,"always"],initialValue:!0},behavioursEnabled:{initialValue:!0},wrapBehavioursEnabled:{initialValue:!0},autoScrollEditorIntoView:{set:function(e){this.setAutoScrollEditorIntoView(e)}},keyboardHandler:{set:function(e){this.setKeyboardHandler(e)},get:function(){return this.keybindingId},handlesSet:!0},hScrollBarAlwaysVisible:"renderer",vScrollBarAlwaysVisible:"renderer",highlightGutterLine:"renderer",animatedScroll:"renderer",showInvisibles:"renderer",showPrintMargin:"renderer",printMarginColumn:"renderer",printMargin:"renderer",fadeFoldWidgets:"renderer",showFoldWidgets:"renderer",showLineNumbers:"renderer",showGutter:"renderer",displayIndentGuides:"renderer",fontSize:"renderer",fontFamily:"renderer",maxLines:"renderer",minLines:"renderer",scrollPastEnd:"renderer",fixedWidthGutter:"renderer",theme:"renderer",scrollSpeed:"$mouseHandler",dragDelay:"$mouseHandler",dragEnabled:"$mouseHandler",focusTimout:"$mouseHandler",tooltipFollowsMouse:"$mouseHandler",firstLineNumber:"session",overwrite:"session",newLineMode:"session",useWorker:"session",useSoftTabs:"session",tabSize:"session",wrap:"session",indentedSoftWrap:"session",foldStyle:"session",mode:"session"}),t.Editor=b}),define("ace/undomanager",["require","exports","module"],function(e,t,n){"use strict";var r=function(){this.reset()};(function(){function e(e){return{action:e.action,start:e.start,end:e.end,lines:e.lines.length==1?null:e.lines,text:e.lines.length==1?e.lines[0]:null}}function t(e){return{action:e.action,start:e.start,end:e.end,lines:e.lines||[e.text]}}function n(e,t){var n=new Array(e.length);for(var r=0;r<e.length;r++){var i=e[r],s={group:i.group,deltas:new Array(i.length)};for(var o=0;o<i.deltas.length;o++){var u=i.deltas[o];s.deltas[o]=t(u)}n[r]=s}return n}this.execute=function(e){var t=e.args[0];this.$doc=e.args[1],e.merge&&this.hasUndo()&&(this.dirtyCounter--,t=this.$undoStack.pop().concat(t)),this.$undoStack.push(t),this.$redoStack=[],this.dirtyCounter<0&&(this.dirtyCounter=NaN),this.dirtyCounter++},this.undo=function(e){var t=this.$undoStack.pop(),n=null;return t&&(n=this.$doc.undoChanges(t,e),this.$redoStack.push(t),this.dirtyCounter--),n},this.redo=function(e){var t=this.$redoStack.pop(),n=null;return t&&(n=this.$doc.redoChanges(this.$deserializeDeltas(t),e),this.$undoStack.push(t),this.dirtyCounter++),n},this.reset=function(){this.$undoStack=[],this.$redoStack=[],this.dirtyCounter=0},this.hasUndo=function(){return this.$undoStack.length>0},this.hasRedo=function(){return this.$redoStack.length>0},this.markClean=function(){this.dirtyCounter=0},this.isClean=function(){return this.dirtyCounter===0},this.$serializeDeltas=function(t){return n(t,e)},this.$deserializeDeltas=function(e){return n(e,t)}}).call(r.prototype),t.UndoManager=r}),define("ace/layer/gutter",["require","exports","module","ace/lib/dom","ace/lib/oop","ace/lib/lang","ace/lib/event_emitter"],function(e,t,n){"use strict";var r=e("../lib/dom"),i=e("../lib/oop"),s=e("../lib/lang"),o=e("../lib/event_emitter").EventEmitter,u=function(e){this.element=r.createElement("div"),this.element.className="ace_layer ace_gutter-layer",e.appendChild(this.element),this.setShowFoldWidgets(this.$showFoldWidgets),this.gutterWidth=0,this.$annotations=[],this.$updateAnnotations=this.$updateAnnotations.bind(this),this.$cells=[]};(function(){i.implement(this,o),this.setSession=function(e){this.session&&this.session.removeEventListener("change",this.$updateAnnotations),this.session=e,e&&e.on("change",this.$updateAnnotations)},this.addGutterDecoration=function(e,t){window.console&&console.warn&&console.warn("deprecated use session.addGutterDecoration"),this.session.addGutterDecoration(e,t)},this.removeGutterDecoration=function(e,t){window.console&&console.warn&&console.warn("deprecated use session.removeGutterDecoration"),this.session.removeGutterDecoration(e,t)},this.setAnnotations=function(e){this.$annotations=[];for(var t=0;t<e.length;t++){var n=e[t],r=n.row,i=this.$annotations[r];i||(i=this.$annotations[r]={text:[]});var o=n.text;o=o?s.escapeHTML(o):n.html||"",i.text.indexOf(o)===-1&&i.text.push(o);var u=n.type;u=="error"?i.className=" ace_error":u=="warning"&&i.className!=" ace_error"?i.className=" ace_warning":u=="info"&&!i.className&&(i.className=" ace_info")}},this.$updateAnnotations=function(e){if(!this.$annotations.length)return;var t=e.start.row,n=e.end.row-t;if(n!==0)if(e.action=="remove")this.$annotations.splice(t,n+1,null);else{var r=new Array(n+1);r.unshift(t,1),this.$annotations.splice.apply(this.$annotations,r)}},this.update=function(e){var t=this.session,n=e.firstRow,i=Math.min(e.lastRow+e.gutterOffset,t.getLength()-1),s=t.getNextFoldLine(n),o=s?s.start.row:Infinity,u=this.$showFoldWidgets&&t.foldWidgets,a=t.$breakpoints,f=t.$decorations,l=t.$firstLineNumber,c=0,h=t.gutterRenderer||this.$renderer,p=null,d=-1,v=n;for(;;){v>o&&(v=s.end.row+1,s=t.getNextFoldLine(v,s),o=s?s.start.row:Infinity);if(v>i){while(this.$cells.length>d+1)p=this.$cells.pop(),this.element.removeChild(p.element);break}p=this.$cells[++d],p||(p={element:null,textNode:null,foldWidget:null},p.element=r.createElement("div"),p.textNode=document.createTextNode(""),p.element.appendChild(p.textNode),this.element.appendChild(p.element),this.$cells[d]=p);var m="ace_gutter-cell ";a[v]&&(m+=a[v]),f[v]&&(m+=f[v]),this.$annotations[v]&&(m+=this.$annotations[v].className),p.element.className!=m&&(p.element.className=m);var g=t.getRowLength(v)*e.lineHeight+"px";g!=p.element.style.height&&(p.element.style.height=g);if(u){var y=u[v];y==null&&(y=u[v]=t.getFoldWidget(v))}if(y){p.foldWidget||(p.foldWidget=r.createElement("span"),p.element.appendChild(p.foldWidget));var m="ace_fold-widget ace_"+y;y=="start"&&v==o&&v<s.end.row?m+=" ace_closed":m+=" ace_open",p.foldWidget.className!=m&&(p.foldWidget.className=m);var g=e.lineHeight+"px";p.foldWidget.style.height!=g&&(p.foldWidget.style.height=g)}else p.foldWidget&&(p.element.removeChild(p.foldWidget),p.foldWidget=null);var b=c=h?h.getText(t,v):v+l;b!==p.textNode.data&&(p.textNode.data=b),v++}this.element.style.height=e.minHeight+"px";if(this.$fixedWidth||t.$useWrapMode)c=t.getLength()+l;var w=h?h.getWidth(t,c,e):c.toString().length*e.characterWidth,E=this.$padding||this.$computePadding();w+=E.left+E.right,w!==this.gutterWidth&&!isNaN(w)&&(this.gutterWidth=w,this.element.style.width=Math.ceil(this.gutterWidth)+"px",this._emit("changeGutterWidth",w))},this.$fixedWidth=!1,this.$showLineNumbers=!0,this.$renderer="",this.setShowLineNumbers=function(e){this.$renderer=!e&&{getWidth:function(){return""},getText:function(){return""}}},this.getShowLineNumbers=function(){return this.$showLineNumbers},this.$showFoldWidgets=!0,this.setShowFoldWidgets=function(e){e?r.addCssClass(this.element,"ace_folding-enabled"):r.removeCssClass(this.element,"ace_folding-enabled"),this.$showFoldWidgets=e,this.$padding=null},this.getShowFoldWidgets=function(){return this.$showFoldWidgets},this.$computePadding=function(){if(!this.element.firstChild)return{left:0,right:0};var e=r.computedStyle(this.element.firstChild);return this.$padding={},this.$padding.left=parseInt(e.paddingLeft)+1||0,this.$padding.right=parseInt(e.paddingRight)||0,this.$padding},this.getRegion=function(e){var t=this.$padding||this.$computePadding(),n=this.element.getBoundingClientRect();if(e.x<t.left+n.left)return"markers";if(this.$showFoldWidgets&&e.x>n.right-t.right)return"foldWidgets"}}).call(u.prototype),t.Gutter=u}),define("ace/layer/marker",["require","exports","module","ace/range","ace/lib/dom"],function(e,t,n){"use strict";var r=e("../range").Range,i=e("../lib/dom"),s=function(e){this.element=i.createElement("div"),this.element.className="ace_layer ace_marker-layer",e.appendChild(this.element)};(function(){function e(e,t,n,r){return(e?1:0)|(t?2:0)|(n?4:0)|(r?8:0)}this.$padding=0,this.setPadding=function(e){this.$padding=e},this.setSession=function(e){this.session=e},this.setMarkers=function(e){this.markers=e},this.update=function(e){if(!e)return;this.config=e;var t=[];for(var n in this.markers){var r=this.markers[n];if(!r.range){r.update(t,this,this.session,e);continue}var i=r.range.clipRows(e.firstRow,e.lastRow);if(i.isEmpty())continue;i=i.toScreenRange(this.session);if(r.renderer){var s=this.$getTop(i.start.row,e),o=this.$padding+(this.session.$bidiHandler.isBidiRow(i.start.row)?this.session.$bidiHandler.getPosLeft(i.start.column):i.start.column*e.characterWidth);r.renderer(t,i,o,s,e)}else r.type=="fullLine"?this.drawFullLineMarker(t,i,r.clazz,e):r.type=="screenLine"?this.drawScreenLineMarker(t,i,r.clazz,e):i.isMultiLine()?r.type=="text"?this.drawTextMarker(t,i,r.clazz,e):this.drawMultiLineMarker(t,i,r.clazz,e):this.session.$bidiHandler.isBidiRow(i.start.row)?this.drawBidiSingleLineMarker(t,i,r.clazz+" ace_start"+" ace_br15",e):this.drawSingleLineMarker(t,i,r.clazz+" ace_start"+" ace_br15",e)}this.element.innerHTML=t.join("")},this.$getTop=function(e,t){return(e-t.firstRowScreen)*t.lineHeight},this.drawTextMarker=function(t,n,i,s,o){var u=this.session,a=n.start.row,f=n.end.row,l=a,c=0,h=0,p=u.getScreenLastRowColumn(l),d=null,v=new r(l,n.start.column,l,h);for(;l<=f;l++)v.start.row=v.end.row=l,v.start.column=l==a?n.start.column:u.getRowWrapIndent(l),v.end.column=p,c=h,h=p,p=l+1<f?u.getScreenLastRowColumn(l+1):l==f?0:n.end.column,d=i+(l==a?" ace_start":"")+" ace_br"+e(l==a||l==a+1&&n.start.column,c<h,h>p,l==f),this.session.$bidiHandler.isBidiRow(l)?this.drawBidiSingleLineMarker(t,v,d,s,l==f?0:1,o):this.drawSingleLineMarker(t,v,d,s,l==f?0:1,o)},this.drawMultiLineMarker=function(e,t,n,r,i){var s=this.$padding,o,u,a;i=i||"";if(this.session.$bidiHandler.isBidiRow(t.start.row)){var f=t.clone();f.end.row=f.start.row,f.end.column=this.session.getLine(f.start.row).length,this.drawBidiSingleLineMarker(e,f,n+" ace_br1 ace_start",r,null,i)}else o=r.lineHeight,u=this.$getTop(t.start.row,r),a=s+t.start.column*r.characterWidth,e.push("<div class='",n," ace_br1 ace_start' style='","height:",o,"px;","right:0;","top:",u,"px;","left:",a,"px;",i,"'></div>");if(this.session.$bidiHandler.isBidiRow(t.end.row)){var f=t.clone();f.start.row=f.end.row,f.start.column=0,this.drawBidiSingleLineMarker(e,f,n+" ace_br12",r,null,i)}else{var l=t.end.column*r.characterWidth;o=r.lineHeight,u=this.$getTop(t.end.row,r),e.push("<div class='",n," ace_br12' style='","height:",o,"px;","width:",l,"px;","top:",u,"px;","left:",s,"px;",i,"'></div>")}o=(t.end.row-t.start.row-1)*r.lineHeight;if(o<=0)return;u=this.$getTop(t.start.row+1,r);var c=(t.start.column?1:0)|(t.end.column?0:8);e.push("<div class='",n,c?" ace_br"+c:"","' style='","height:",o,"px;","right:0;","top:",u,"px;","left:",s,"px;",i,"'></div>")},this.drawSingleLineMarker=function(e,t,n,r,i,s){var o=r.lineHeight,u=(t.end.column+(i||0)-t.start.column)*r.characterWidth,a=this.$getTop(t.start.row,r),f=this.$padding+t.start.column*r.characterWidth;e.push("<div class='",n,"' style='","height:",o,"px;","width:",u,"px;","top:",a,"px;","left:",f,"px;",s||"","'></div>")},this.drawBidiSingleLineMarker=function(e,t,n,r,i,s){var o=r.lineHeight,u=this.$getTop(t.start.row,r),a=this.$padding,f=this.session.$bidiHandler.getSelections(t.start.column,t.end.column);f.forEach(function(t){e.push("<div class='",n,"' style='","height:",o,"px;","width:",t.width+(i||0),"px;","top:",u,"px;","left:",a+t.left,"px;",s||"","'></div>")})},this.drawFullLineMarker=function(e,t,n,r,i){var s=this.$getTop(t.start.row,r),o=r.lineHeight;t.start.row!=t.end.row&&(o+=this.$getTop(t.end.row,r)-s),e.push("<div class='",n,"' style='","height:",o,"px;","top:",s,"px;","left:0;right:0;",i||"","'></div>")},this.drawScreenLineMarker=function(e,t,n,r,i){var s=this.$getTop(t.start.row,r),o=r.lineHeight;e.push("<div class='",n,"' style='","height:",o,"px;","top:",s,"px;","left:0;right:0;",i||"","'></div>")}}).call(s.prototype),t.Marker=s}),define("ace/layer/text",["require","exports","module","ace/lib/oop","ace/lib/dom","ace/lib/lang","ace/lib/useragent","ace/lib/event_emitter"],function(e,t,n){"use strict";var r=e("../lib/oop"),i=e("../lib/dom"),s=e("../lib/lang"),o=e("../lib/useragent"),u=e("../lib/event_emitter").EventEmitter,a=function(e){this.element=i.createElement("div"),this.element.className="ace_layer ace_text-layer",e.appendChild(this.element),this.$updateEolChar=this.$updateEolChar.bind(this)};(function(){r.implement(this,u),this.EOF_CHAR="\u00b6",this.EOL_CHAR_LF="\u00ac",this.EOL_CHAR_CRLF="\u00a4",this.EOL_CHAR=this.EOL_CHAR_LF,this.TAB_CHAR="\u2014",this.SPACE_CHAR="\u00b7",this.$padding=0,this.$updateEolChar=function(){var e=this.session.doc.getNewLineCharacter()=="\n"?this.EOL_CHAR_LF:this.EOL_CHAR_CRLF;if(this.EOL_CHAR!=e)return this.EOL_CHAR=e,!0},this.setPadding=function(e){this.$padding=e,this.element.style.padding="0 "+e+"px"},this.getLineHeight=function(){return this.$fontMetrics.$characterSize.height||0},this.getCharacterWidth=function(){return this.$fontMetrics.$characterSize.width||0},this.$setFontMetrics=function(e){this.$fontMetrics=e,this.$fontMetrics.on("changeCharacterSize",function(e){this._signal("changeCharacterSize",e)}.bind(this)),this.$pollSizeChanges()},this.checkForSizeChanges=function(){this.$fontMetrics.checkForSizeChanges()},this.$pollSizeChanges=function(){return this.$pollSizeChangesTimer=this.$fontMetrics.$pollSizeChanges()},this.setSession=function(e){this.session=e,e&&this.$computeTabString()},this.showInvisibles=!1,this.setShowInvisibles=function(e){return this.showInvisibles==e?!1:(this.showInvisibles=e,this.$computeTabString(),!0)},this.displayIndentGuides=!0,this.setDisplayIndentGuides=function(e){return this.displayIndentGuides==e?!1:(this.displayIndentGuides=e,this.$computeTabString(),!0)},this.$tabStrings=[],this.onChangeTabSize=this.$computeTabString=function(){var e=this.session.getTabSize();this.tabSize=e;var t=this.$tabStrings=[0];for(var n=1;n<e+1;n++)this.showInvisibles?t.push("<span class='ace_invisible ace_invisible_tab'>"+s.stringRepeat(this.TAB_CHAR,n)+"</span>"):t.push(s.stringRepeat(" ",n));if(this.displayIndentGuides){this.$indentGuideRe=/\s\S| \t|\t |\s$/;var r="ace_indent-guide",i="",o="";if(this.showInvisibles){r+=" ace_invisible",i=" ace_invisible_space",o=" ace_invisible_tab";var u=s.stringRepeat(this.SPACE_CHAR,this.tabSize),a=s.stringRepeat(this.TAB_CHAR,this.tabSize)}else var u=s.stringRepeat(" ",this.tabSize),a=u;this.$tabStrings[" "]="<span class='"+r+i+"'>"+u+"</span>",this.$tabStrings[" "]="<span class='"+r+o+"'>"+a+"</span>"}},this.updateLines=function(e,t,n){(this.config.lastRow!=e.lastRow||this.config.firstRow!=e.firstRow)&&this.scrollLines(e),this.config=e;var r=Math.max(t,e.firstRow),i=Math.min(n,e.lastRow),s=this.element.childNodes,o=0;for(var u=e.firstRow;u<r;u++){var a=this.session.getFoldLine(u);if(a){if(a.containsRow(r)){r=a.start.row;break}u=a.end.row}o++}var u=r,a=this.session.getNextFoldLine(u),f=a?a.start.row:Infinity;for(;;){u>f&&(u=a.end.row+1,a=this.session.getNextFoldLine(u,a),f=a?a.start.row:Infinity);if(u>i)break;var l=s[o++];if(l){var c=[];this.$renderLine(c,u,!this.$useLineGroups(),u==f?a:!1),l.style.height=e.lineHeight*this.session.getRowLength(u)+"px",l.innerHTML=c.join("")}u++}},this.scrollLines=function(e){var t=this.config;this.config=e;if(!t||t.lastRow<e.firstRow)return this.update(e);if(e.lastRow<t.firstRow)return this.update(e);var n=this.element;if(t.firstRow<e.firstRow)for(var r=this.session.getFoldedRowCount(t.firstRow,e.firstRow-1);r>0;r--)n.removeChild(n.firstChild);if(t.lastRow>e.lastRow)for(var r=this.session.getFoldedRowCount(e.lastRow+1,t.lastRow);r>0;r--)n.removeChild(n.lastChild);if(e.firstRow<t.firstRow){var i=this.$renderLinesFragment(e,e.firstRow,t.firstRow-1);n.firstChild?n.insertBefore(i,n.firstChild):n.appendChild(i)}if(e.lastRow>t.lastRow){var i=this.$renderLinesFragment(e,t.lastRow+1,e.lastRow);n.appendChild(i)}},this.$renderLinesFragment=function(e,t,n){var r=this.element.ownerDocument.createDocumentFragment(),s=t,o=this.session.getNextFoldLine(s),u=o?o.start.row:Infinity;for(;;){s>u&&(s=o.end.row+1,o=this.session.getNextFoldLine(s,o),u=o?o.start.row:Infinity);if(s>n)break;var a=i.createElement("div"),f=[];this.$renderLine(f,s,!1,s==u?o:!1),a.innerHTML=f.join("");if(this.$useLineGroups())a.className="ace_line_group",r.appendChild(a),a.style.height=e.lineHeight*this.session.getRowLength(s)+"px";else while(a.firstChild)r.appendChild(a.firstChild);s++}return r},this.update=function(e){this.config=e;var t=[],n=e.firstRow,r=e.lastRow,i=n,s=this.session.getNextFoldLine(i),o=s?s.start.row:Infinity;for(;;){i>o&&(i=s.end.row+1,s=this.session.getNextFoldLine(i,s),o=s?s.start.row:Infinity);if(i>r)break;this.$useLineGroups()&&t.push("<div class='ace_line_group' style='height:",e.lineHeight*this.session.getRowLength(i),"px'>"),this.$renderLine(t,i,!1,i==o?s:!1),this.$useLineGroups()&&t.push("</div>"),i++}this.element.innerHTML=t.join("")},this.$textToken={text:!0,rparen:!0,lparen:!0},this.$renderToken=function(e,t,n,r){var i=this,o=/\t|&|<|>|( +)|([\x00-\x1f\x80-\xa0\xad\u1680\u180E\u2000-\u200f\u2028\u2029\u202F\u205F\u3000\uFEFF\uFFF9-\uFFFC])|[\u1100-\u115F\u11A3-\u11A7\u11FA-\u11FF\u2329-\u232A\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3000-\u303E\u3041-\u3096\u3099-\u30FF\u3105-\u312D\u3131-\u318E\u3190-\u31BA\u31C0-\u31E3\u31F0-\u321E\u3220-\u3247\u3250-\u32FE\u3300-\u4DBF\u4E00-\uA48C\uA490-\uA4C6\uA960-\uA97C\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFAFF\uFE10-\uFE19\uFE30-\uFE52\uFE54-\uFE66\uFE68-\uFE6B\uFF01-\uFF60\uFFE0-\uFFE6]|[\uD800-\uDBFF][\uDC00-\uDFFF]/g,u=function(e,n,r,o,u){if(n)return i.showInvisibles?"<span class='ace_invisible ace_invisible_space'>"+s.stringRepeat(i.SPACE_CHAR,e.length)+"</span>":e;if(e=="&")return"&#38;";if(e=="<")return"&#60;";if(e==">")return"&#62;";if(e==" "){var a=i.session.getScreenTabSize(t+o);return t+=a-1,i.$tabStrings[a]}if(e=="\u3000"){var f=i.showInvisibles?"ace_cjk ace_invisible ace_invisible_space":"ace_cjk",l=i.showInvisibles?i.SPACE_CHAR:"";return t+=1,"<span class='"+f+"' style='width:"+i.config.characterWidth*2+"px'>"+l+"</span>"}return r?"<span class='ace_invisible ace_invisible_space ace_invalid'>"+i.SPACE_CHAR+"</span>":(t+=1,"<span class='ace_cjk' style='width:"+i.config.characterWidth*2+"px'>"+e+"</span>")},a=r.replace(o,u);if(!this.$textToken[n.type]){var f="ace_"+n.type.replace(/\./g," ace_"),l="";n.type=="fold"&&(l=" style='width:"+n.value.length*this.config.characterWidth+"px;' "),e.push("<span class='",f,"'",l,">",a,"</span>")}else e.push(a);return t+r.length},this.renderIndentGuide=function(e,t,n){var r=t.search(this.$indentGuideRe);return r<=0||r>=n?t:t[0]==" "?(r-=r%this.tabSize,e.push(s.stringRepeat(this.$tabStrings[" "],r/this.tabSize)),t.substr(r)):t[0]==" "?(e.push(s.stringRepeat(this.$tabStrings[" "],r)),t.substr(r)):t},this.$renderWrappedLine=function(e,t,n,r){var i=0,o=0,u=n[0],a=0;for(var f=0;f<t.length;f++){var l=t[f],c=l.value;if(f==0&&this.displayIndentGuides){i=c.length,c=this.renderIndentGuide(e,c,u);if(!c)continue;i-=c.length}if(i+c.length<u)a=this.$renderToken(e,a,l,c),i+=c.length;else{while(i+c.length>=u)a=this.$renderToken(e,a,l,c.substring(0,u-i)),c=c.substring(u-i),i=u,r||e.push("</div>","<div class='ace_line' style='height:",this.config.lineHeight,"px'>"),e.push(s.stringRepeat("\u00a0",n.indent)),o++,a=0,u=n[o]||Number.MAX_VALUE;c.length!=0&&(i+=c.length,a=this.$renderToken(e,a,l,c))}}},this.$renderSimpleLine=function(e,t){var n=0,r=t[0],i=r.value;this.displayIndentGuides&&(i=this.renderIndentGuide(e,i)),i&&(n=this.$renderToken(e,n,r,i));for(var s=1;s<t.length;s++)r=t[s],i=r.value,n=this.$renderToken(e,n,r,i)},this.$renderLine=function(e,t,n,r){!r&&r!=0&&(r=this.session.getFoldLine(t));if(r)var i=this.$getFoldLineTokens(t,r);else var i=this.session.getTokens(t);n||e.push("<div class='ace_line' style='height:",this.config.lineHeight*(this.$useLineGroups()?1:this.session.getRowLength(t)),"px'>");if(i.length){var s=this.session.getRowSplitData(t);s&&s.length?this.$renderWrappedLine(e,i,s,n):this.$renderSimpleLine(e,i)}this.showInvisibles&&(r&&(t=r.end.row),e.push("<span class='ace_invisible ace_invisible_eol'>",t==this.session.getLength()-1?this.EOF_CHAR:this.EOL_CHAR,"</span>")),n||e.push("</div>")},this.$getFoldLineTokens=function(e,t){function i(e,t,n){var i=0,s=0;while(s+e[i].value.length<t){s+=e[i].value.length,i++;if(i==e.length)return}if(s!=t){var o=e[i].value.substring(t-s);o.length>n-t&&(o=o.substring(0,n-t)),r.push({type:e[i].type,value:o}),s=t+o.length,i+=1}while(s<n&&i<e.length){var o=e[i].value;o.length+s>n?r.push({type:e[i].type,value:o.substring(0,n-s)}):r.push(e[i]),s+=o.length,i+=1}}var n=this.session,r=[],s=n.getTokens(e);return t.walk(function(e,t,o,u,a){e!=null?r.push({type:"fold",value:e}):(a&&(s=n.getTokens(t)),s.length&&i(s,u,o))},t.end.row,this.session.getLine(t.end.row).length),r},this.$useLineGroups=function(){return this.session.getUseWrapMode()},this.destroy=function(){clearInterval(this.$pollSizeChangesTimer),this.$measureNode&&this.$measureNode.parentNode.removeChild(this.$measureNode),delete this.$measureNode}}).call(a.prototype),t.Text=a}),define("ace/layer/cursor",["require","exports","module","ace/lib/dom"],function(e,t,n){"use strict";var r=e("../lib/dom"),i,s=function(e){this.element=r.createElement("div"),this.element.className="ace_layer ace_cursor-layer",e.appendChild(this.element),i===undefined&&(i=!("opacity"in this.element.style)),this.isVisible=!1,this.isBlinking=!0,this.blinkInterval=1e3,this.smoothBlinking=!1,this.cursors=[],this.cursor=this.addCursor(),r.addCssClass(this.element,"ace_hidden-cursors"),this.$updateCursors=(i?this.$updateVisibility:this.$updateOpacity).bind(this)};(function(){this.$updateVisibility=function(e){var t=this.cursors;for(var n=t.length;n--;)t[n].style.visibility=e?"":"hidden"},this.$updateOpacity=function(e){var t=this.cursors;for(var n=t.length;n--;)t[n].style.opacity=e?"":"0"},this.$padding=0,this.setPadding=function(e){this.$padding=e},this.setSession=function(e){this.session=e},this.setBlinking=function(e){e!=this.isBlinking&&(this.isBlinking=e,this.restartTimer())},this.setBlinkInterval=function(e){e!=this.blinkInterval&&(this.blinkInterval=e,this.restartTimer())},this.setSmoothBlinking=function(e){e!=this.smoothBlinking&&!i&&(this.smoothBlinking=e,r.setCssClass(this.element,"ace_smooth-blinking",e),this.$updateCursors(!0),this.$updateCursors=this.$updateOpacity.bind(this),this.restartTimer())},this.addCursor=function(){var e=r.createElement("div");return e.className="ace_cursor",this.element.appendChild(e),this.cursors.push(e),e},this.removeCursor=function(){if(this.cursors.length>1){var e=this.cursors.pop();return e.parentNode.removeChild(e),e}},this.hideCursor=function(){this.isVisible=!1,r.addCssClass(this.element,"ace_hidden-cursors"),this.restartTimer()},this.showCursor=function(){this.isVisible=!0,r.removeCssClass(this.element,"ace_hidden-cursors"),this.restartTimer()},this.restartTimer=function(){var e=this.$updateCursors;clearInterval(this.intervalId),clearTimeout(this.timeoutId),this.smoothBlinking&&r.removeCssClass(this.element,"ace_smooth-blinking"),e(!0);if(!this.isBlinking||!this.blinkInterval||!this.isVisible)return;this.smoothBlinking&&setTimeout(function(){r.addCssClass(this.element,"ace_smooth-blinking")}.bind(this));var t=function(){this.timeoutId=setTimeout(function(){e(!1)},.6*this.blinkInterval)}.bind(this);this.intervalId=setInterval(function(){e(!0),t()},this.blinkInterval),t()},this.getPixelPosition=function(e,t){if(!this.config||!this.session)return{left:0,top:0};e||(e=this.session.selection.getCursor());var n=this.session.documentToScreenPosition(e),r=this.$padding+(this.session.$bidiHandler.isBidiRow(n.row,e.row)?this.session.$bidiHandler.getPosLeft(n.column):n.column*this.config.characterWidth),i=(n.row-(t?this.config.firstRowScreen:0))*this.config.lineHeight;return{left:r,top:i}},this.update=function(e){this.config=e;var t=this.session.$selectionMarkers,n=0,r=0;if(t===undefined||t.length===0)t=[{cursor:null}];for(var n=0,i=t.length;n<i;n++){var s=this.getPixelPosition(t[n].cursor,!0);if((s.top>e.height+e.offset||s.top<0)&&n>1)continue;var o=(this.cursors[r++]||this.addCursor()).style;this.drawCursor?this.drawCursor(o,s,e,t[n],this.session):(o.left=s.left+"px",o.top=s.top+"px",o.width=e.characterWidth+"px",o.height=e.lineHeight+"px")}while(this.cursors.length>r)this.removeCursor();var u=this.session.getOverwrite();this.$setOverwrite(u),this.$pixelPos=s,this.restartTimer()},this.drawCursor=null,this.$setOverwrite=function(e){e!=this.overwrite&&(this.overwrite=e,e?r.addCssClass(this.element,"ace_overwrite-cursors"):r.removeCssClass(this.element,"ace_overwrite-cursors"))},this.destroy=function(){clearInterval(this.intervalId),clearTimeout(this.timeoutId)}}).call(s.prototype),t.Cursor=s}),define("ace/scrollbar",["require","exports","module","ace/lib/oop","ace/lib/dom","ace/lib/event","ace/lib/event_emitter"],function(e,t,n){"use strict";var r=e("./lib/oop"),i=e("./lib/dom"),s=e("./lib/event"),o=e("./lib/event_emitter").EventEmitter,u=32768,a=function(e){this.element=i.createElement("div"),this.element.className="ace_scrollbar ace_scrollbar"+this.classSuffix,this.inner=i.createElement("div"),this.inner.className="ace_scrollbar-inner",this.element.appendChild(this.inner),e.appendChild(this.element),this.setVisible(!1),this.skipEvent=!1,s.addListener(this.element,"scroll",this.onScroll.bind(this)),s.addListener(this.element,"mousedown",s.preventDefault)};(function(){r.implement(this,o),this.setVisible=function(e){this.element.style.display=e?"":"none",this.isVisible=e,this.coeff=1}}).call(a.prototype);var f=function(e,t){a.call(this,e),this.scrollTop=0,this.scrollHeight=0,t.$scrollbarWidth=this.width=i.scrollbarWidth(e.ownerDocument),this.inner.style.width=this.element.style.width=(this.width||15)+5+"px",this.$minWidth=0};r.inherits(f,a),function(){this.classSuffix="-v",this.onScroll=function(){if(!this.skipEvent){this.scrollTop=this.element.scrollTop;if(this.coeff!=1){var e=this.element.clientHeight/this.scrollHeight;this.scrollTop=this.scrollTop*(1-e)/(this.coeff-e)}this._emit("scroll",{data:this.scrollTop})}this.skipEvent=!1},this.getWidth=function(){return Math.max(this.isVisible?this.width:0,this.$minWidth||0)},this.setHeight=function(e){this.element.style.height=e+"px"},this.setInnerHeight=this.setScrollHeight=function(e){this.scrollHeight=e,e>u?(this.coeff=u/e,e=u):this.coeff!=1&&(this.coeff=1),this.inner.style.height=e+"px"},this.setScrollTop=function(e){this.scrollTop!=e&&(this.skipEvent=!0,this.scrollTop=e,this.element.scrollTop=e*this.coeff)}}.call(f.prototype);var l=function(e,t){a.call(this,e),this.scrollLeft=0,this.height=t.$scrollbarWidth,this.inner.style.height=this.element.style.height=(this.height||15)+5+"px"};r.inherits(l,a),function(){this.classSuffix="-h",this.onScroll=function(){this.skipEvent||(this.scrollLeft=this.element.scrollLeft,this._emit("scroll",{data:this.scrollLeft})),this.skipEvent=!1},this.getHeight=function(){return this.isVisible?this.height:0},this.setWidth=function(e){this.element.style.width=e+"px"},this.setInnerWidth=function(e){this.inner.style.width=e+"px"},this.setScrollWidth=function(e){this.inner.style.width=e+"px"},this.setScrollLeft=function(e){this.scrollLeft!=e&&(this.skipEvent=!0,this.scrollLeft=this.element.scrollLeft=e)}}.call(l.prototype),t.ScrollBar=f,t.ScrollBarV=f,t.ScrollBarH=l,t.VScrollBar=f,t.HScrollBar=l}),define("ace/renderloop",["require","exports","module","ace/lib/event"],function(e,t,n){"use strict";var r=e("./lib/event"),i=function(e,t){this.onRender=e,this.pending=!1,this.changes=0,this.window=t||window};(function(){this.schedule=function(e){this.changes=this.changes|e;if(!this.pending&&this.changes){this.pending=!0;var t=this;r.nextFrame(function(){t.pending=!1;var e;while(e=t.changes)t.changes=0,t.onRender(e)},this.window)}}}).call(i.prototype),t.RenderLoop=i}),define("ace/layer/font_metrics",["require","exports","module","ace/lib/oop","ace/lib/dom","ace/lib/lang","ace/lib/useragent","ace/lib/event_emitter"],function(e,t,n){var r=e("../lib/oop"),i=e("../lib/dom"),s=e("../lib/lang"),o=e("../lib/useragent"),u=e("../lib/event_emitter").EventEmitter,a=0,f=t.FontMetrics=function(e){this.el=i.createElement("div"),this.$setMeasureNodeStyles(this.el.style,!0),this.$main=i.createElement("div"),this.$setMeasureNodeStyles(this.$main.style),this.$measureNode=i.createElement("div"),this.$setMeasureNodeStyles(this.$measureNode.style),this.el.appendChild(this.$main),this.el.appendChild(this.$measureNode),e.appendChild(this.el),a||this.$testFractionalRect(),this.$measureNode.innerHTML=s.stringRepeat("X",a),this.$characterSize={width:0,height:0},this.checkForSizeChanges()};(function(){r.implement(this,u),this.$characterSize={width:0,height:0},this.$testFractionalRect=function(){var e=i.createElement("div");this.$setMeasureNodeStyles(e.style),e.style.width="0.2px",document.documentElement.appendChild(e);var t=e.getBoundingClientRect().width;t>0&&t<1?a=50:a=100,e.parentNode.removeChild(e)},this.$setMeasureNodeStyles=function(e,t){e.width=e.height="auto",e.left=e.top="0px",e.visibility="hidden",e.position="absolute",e.whiteSpace="pre",o.isIE<8?e["font-family"]="inherit":e.font="inherit",e.overflow=t?"hidden":"visible"},this.checkForSizeChanges=function(){var e=this.$measureSizes();if(e&&(this.$characterSize.width!==e.width||this.$characterSize.height!==e.height)){this.$measureNode.style.fontWeight="bold";var t=this.$measureSizes();this.$measureNode.style.fontWeight="",this.$characterSize=e,this.charSizes=Object.create(null),this.allowBoldFonts=t&&t.width===e.width&&t.height===e.height,this._emit("changeCharacterSize",{data:e})}},this.$pollSizeChanges=function(){if(this.$pollSizeChangesTimer)return this.$pollSizeChangesTimer;var e=this;return this.$pollSizeChangesTimer=setInterval(function(){e.checkForSizeChanges()},500)},this.setPolling=function(e){e?this.$pollSizeChanges():this.$pollSizeChangesTimer&&(clearInterval(this.$pollSizeChangesTimer),this.$pollSizeChangesTimer=0)},this.$measureSizes=function(){if(a===50){var e=null;try{e=this.$measureNode.getBoundingClientRect()}catch(t){e={width:0,height:0}}var n={height:e.height,width:e.width/a}}else var n={height:this.$measureNode.clientHeight,width:this.$measureNode.clientWidth/a};return n.width===0||n.height===0?null:n},this.$measureCharWidth=function(e){this.$main.innerHTML=s.stringRepeat(e,a);var t=this.$main.getBoundingClientRect();return t.width/a},this.getCharacterWidth=function(e){var t=this.charSizes[e];return t===undefined&&(t=this.charSizes[e]=this.$measureCharWidth(e)/this.$characterSize.width),t},this.destroy=function(){clearInterval(this.$pollSizeChangesTimer),this.el&&this.el.parentNode&&this.el.parentNode.removeChild(this.el)}}).call(f.prototype)}),define("ace/virtual_renderer",["require","exports","module","ace/lib/oop","ace/lib/dom","ace/config","ace/lib/useragent","ace/layer/gutter","ace/layer/marker","ace/layer/text","ace/layer/cursor","ace/scrollbar","ace/scrollbar","ace/renderloop","ace/layer/font_metrics","ace/lib/event_emitter"],function(e,t,n){"use strict";var r=e("./lib/oop"),i=e("./lib/dom"),s=e("./config"),o=e("./lib/useragent"),u=e("./layer/gutter").Gutter,a=e("./layer/marker").Marker,f=e("./layer/text").Text,l=e("./layer/cursor").Cursor,c=e("./scrollbar").HScrollBar,h=e("./scrollbar").VScrollBar,p=e("./renderloop").RenderLoop,d=e("./layer/font_metrics").FontMetrics,v=e("./lib/event_emitter").EventEmitter,m='.ace_editor {position: relative;overflow: hidden;font: 12px/normal \'Monaco\', \'Menlo\', \'Ubuntu Mono\', \'Consolas\', \'source-code-pro\', monospace;direction: ltr;text-align: left;-webkit-tap-highlight-color: rgba(0, 0, 0, 0);}.ace_scroller {position: absolute;overflow: hidden;top: 0;bottom: 0;background-color: inherit;-ms-user-select: none;-moz-user-select: none;-webkit-user-select: none;user-select: none;cursor: text;}.ace_content {position: absolute;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;min-width: 100%;}.ace_dragging .ace_scroller:before{position: absolute;top: 0;left: 0;right: 0;bottom: 0;content: \'\';background: rgba(250, 250, 250, 0.01);z-index: 1000;}.ace_dragging.ace_dark .ace_scroller:before{background: rgba(0, 0, 0, 0.01);}.ace_selecting, .ace_selecting * {cursor: text !important;}.ace_gutter {position: absolute;overflow : hidden;width: auto;top: 0;bottom: 0;left: 0;cursor: default;z-index: 4;-ms-user-select: none;-moz-user-select: none;-webkit-user-select: none;user-select: none;}.ace_gutter-active-line {position: absolute;left: 0;right: 0;}.ace_scroller.ace_scroll-left {box-shadow: 17px 0 16px -16px rgba(0, 0, 0, 0.4) inset;}.ace_gutter-cell {padding-left: 19px;padding-right: 6px;background-repeat: no-repeat;}.ace_gutter-cell.ace_error {background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAABOFBMVEX/////////QRswFAb/Ui4wFAYwFAYwFAaWGAfDRymzOSH/PxswFAb/SiUwFAYwFAbUPRvjQiDllog5HhHdRybsTi3/Tyv9Tir+Syj/UC3////XurebMBIwFAb/RSHbPx/gUzfdwL3kzMivKBAwFAbbvbnhPx66NhowFAYwFAaZJg8wFAaxKBDZurf/RB6mMxb/SCMwFAYwFAbxQB3+RB4wFAb/Qhy4Oh+4QifbNRcwFAYwFAYwFAb/QRzdNhgwFAYwFAbav7v/Uy7oaE68MBK5LxLewr/r2NXewLswFAaxJw4wFAbkPRy2PyYwFAaxKhLm1tMwFAazPiQwFAaUGAb/QBrfOx3bvrv/VC/maE4wFAbRPBq6MRO8Qynew8Dp2tjfwb0wFAbx6eju5+by6uns4uH9/f36+vr/GkHjAAAAYnRSTlMAGt+64rnWu/bo8eAA4InH3+DwoN7j4eLi4xP99Nfg4+b+/u9B/eDs1MD1mO7+4PHg2MXa347g7vDizMLN4eG+Pv7i5evs/v79yu7S3/DV7/498Yv24eH+4ufQ3Ozu/v7+y13sRqwAAADLSURBVHjaZc/XDsFgGIBhtDrshlitmk2IrbHFqL2pvXf/+78DPokj7+Fz9qpU/9UXJIlhmPaTaQ6QPaz0mm+5gwkgovcV6GZzd5JtCQwgsxoHOvJO15kleRLAnMgHFIESUEPmawB9ngmelTtipwwfASilxOLyiV5UVUyVAfbG0cCPHig+GBkzAENHS0AstVF6bacZIOzgLmxsHbt2OecNgJC83JERmePUYq8ARGkJx6XtFsdddBQgZE2nPR6CICZhawjA4Fb/chv+399kfR+MMMDGOQAAAABJRU5ErkJggg==");background-repeat: no-repeat;background-position: 2px center;}.ace_gutter-cell.ace_warning {background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAmVBMVEX///8AAAD///8AAAAAAABPSzb/5sAAAAB/blH/73z/ulkAAAAAAAD85pkAAAAAAAACAgP/vGz/rkDerGbGrV7/pkQICAf////e0IsAAAD/oED/qTvhrnUAAAD/yHD/njcAAADuv2r/nz//oTj/p064oGf/zHAAAAA9Nir/tFIAAAD/tlTiuWf/tkIAAACynXEAAAAAAAAtIRW7zBpBAAAAM3RSTlMAABR1m7RXO8Ln31Z36zT+neXe5OzooRDfn+TZ4p3h2hTf4t3k3ucyrN1K5+Xaks52Sfs9CXgrAAAAjklEQVR42o3PbQ+CIBQFYEwboPhSYgoYunIqqLn6/z8uYdH8Vmdnu9vz4WwXgN/xTPRD2+sgOcZjsge/whXZgUaYYvT8QnuJaUrjrHUQreGczuEafQCO/SJTufTbroWsPgsllVhq3wJEk2jUSzX3CUEDJC84707djRc5MTAQxoLgupWRwW6UB5fS++NV8AbOZgnsC7BpEAAAAABJRU5ErkJggg==");background-position: 2px center;}.ace_gutter-cell.ace_info {background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAAAAAA6mKC9AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAAJ0Uk5TAAB2k804AAAAPklEQVQY02NgIB68QuO3tiLznjAwpKTgNyDbMegwisCHZUETUZV0ZqOquBpXj2rtnpSJT1AEnnRmL2OgGgAAIKkRQap2htgAAAAASUVORK5CYII=");background-position: 2px center;}.ace_dark .ace_gutter-cell.ace_info {background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQBAMAAADt3eJSAAAAJFBMVEUAAAChoaGAgIAqKiq+vr6tra1ZWVmUlJSbm5s8PDxubm56enrdgzg3AAAAAXRSTlMAQObYZgAAAClJREFUeNpjYMAPdsMYHegyJZFQBlsUlMFVCWUYKkAZMxZAGdxlDMQBAG+TBP4B6RyJAAAAAElFTkSuQmCC");}.ace_scrollbar {position: absolute;right: 0;bottom: 0;z-index: 6;}.ace_scrollbar-inner {position: absolute;cursor: text;left: 0;top: 0;}.ace_scrollbar-v{overflow-x: hidden;overflow-y: scroll;top: 0;}.ace_scrollbar-h {overflow-x: scroll;overflow-y: hidden;left: 0;}.ace_print-margin {position: absolute;height: 100%;}.ace_text-input {position: absolute;z-index: 0;width: 0.5em;height: 1em;opacity: 0;background: transparent;-moz-appearance: none;appearance: none;border: none;resize: none;outline: none;overflow: hidden;font: inherit;padding: 0 1px;margin: 0 -1px;text-indent: -1em;-ms-user-select: text;-moz-user-select: text;-webkit-user-select: text;user-select: text;white-space: pre!important;}.ace_text-input.ace_composition {background: inherit;color: inherit;z-index: 1000;opacity: 1;text-indent: 0;}.ace_layer {z-index: 1;position: absolute;overflow: hidden;word-wrap: normal;white-space: pre;height: 100%;width: 100%;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;pointer-events: none;}.ace_gutter-layer {position: relative;width: auto;text-align: right;pointer-events: auto;}.ace_text-layer {font: inherit !important;}.ace_cjk {display: inline-block;text-align: center;}.ace_cursor-layer {z-index: 4;}.ace_cursor {z-index: 4;position: absolute;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;border-left: 2px solid;transform: translatez(0);}.ace_multiselect .ace_cursor {border-left-width: 1px;}.ace_slim-cursors .ace_cursor {border-left-width: 1px;}.ace_overwrite-cursors .ace_cursor {border-left-width: 0;border-bottom: 1px solid;}.ace_hidden-cursors .ace_cursor {opacity: 0.2;}.ace_smooth-blinking .ace_cursor {-webkit-transition: opacity 0.18s;transition: opacity 0.18s;}.ace_marker-layer .ace_step, .ace_marker-layer .ace_stack {position: absolute;z-index: 3;}.ace_marker-layer .ace_selection {position: absolute;z-index: 5;}.ace_marker-layer .ace_bracket {position: absolute;z-index: 6;}.ace_marker-layer .ace_active-line {position: absolute;z-index: 2;}.ace_marker-layer .ace_selected-word {position: absolute;z-index: 4;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;}.ace_line .ace_fold {-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;display: inline-block;height: 11px;margin-top: -2px;vertical-align: middle;background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAAJCAYAAADU6McMAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAJpJREFUeNpi/P//PwOlgAXGYGRklAVSokD8GmjwY1wasKljQpYACtpCFeADcHVQfQyMQAwzwAZI3wJKvCLkfKBaMSClBlR7BOQikCFGQEErIH0VqkabiGCAqwUadAzZJRxQr/0gwiXIal8zQQPnNVTgJ1TdawL0T5gBIP1MUJNhBv2HKoQHHjqNrA4WO4zY0glyNKLT2KIfIMAAQsdgGiXvgnYAAAAASUVORK5CYII="),url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAA3CAYAAADNNiA5AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAACJJREFUeNpi+P//fxgTAwPDBxDxD078RSX+YeEyDFMCIMAAI3INmXiwf2YAAAAASUVORK5CYII=");background-repeat: no-repeat, repeat-x;background-position: center center, top left;color: transparent;border: 1px solid black;border-radius: 2px;cursor: pointer;pointer-events: auto;}.ace_dark .ace_fold {}.ace_fold:hover{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAAJCAYAAADU6McMAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAJpJREFUeNpi/P//PwOlgAXGYGRklAVSokD8GmjwY1wasKljQpYACtpCFeADcHVQfQyMQAwzwAZI3wJKvCLkfKBaMSClBlR7BOQikCFGQEErIH0VqkabiGCAqwUadAzZJRxQr/0gwiXIal8zQQPnNVTgJ1TdawL0T5gBIP1MUJNhBv2HKoQHHjqNrA4WO4zY0glyNKLT2KIfIMAAQsdgGiXvgnYAAAAASUVORK5CYII="),url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAA3CAYAAADNNiA5AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAACBJREFUeNpi+P//fz4TAwPDZxDxD5X4i5fLMEwJgAADAEPVDbjNw87ZAAAAAElFTkSuQmCC");}.ace_tooltip {background-color: #FFF;background-image: -webkit-linear-gradient(top, transparent, rgba(0, 0, 0, 0.1));background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.1));border: 1px solid gray;border-radius: 1px;box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);color: black;max-width: 100%;padding: 3px 4px;position: fixed;z-index: 999999;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;cursor: default;white-space: pre;word-wrap: break-word;line-height: normal;font-style: normal;font-weight: normal;letter-spacing: normal;pointer-events: none;}.ace_folding-enabled > .ace_gutter-cell {padding-right: 13px;}.ace_fold-widget {-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;margin: 0 -12px 0 1px;display: none;width: 11px;vertical-align: top;background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAANElEQVR42mWKsQ0AMAzC8ixLlrzQjzmBiEjp0A6WwBCSPgKAXoLkqSot7nN3yMwR7pZ32NzpKkVoDBUxKAAAAABJRU5ErkJggg==");background-repeat: no-repeat;background-position: center;border-radius: 3px;border: 1px solid transparent;cursor: pointer;}.ace_folding-enabled .ace_fold-widget {display: inline-block; }.ace_fold-widget.ace_end {background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAANElEQVR42m3HwQkAMAhD0YzsRchFKI7sAikeWkrxwScEB0nh5e7KTPWimZki4tYfVbX+MNl4pyZXejUO1QAAAABJRU5ErkJggg==");}.ace_fold-widget.ace_closed {background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAAGCAYAAAAG5SQMAAAAOUlEQVR42jXKwQkAMAgDwKwqKD4EwQ26sSOkVWjgIIHAzPiCgaqiqnJHZnKICBERHN194O5b9vbLuAVRL+l0YWnZAAAAAElFTkSuQmCCXA==");}.ace_fold-widget:hover {border: 1px solid rgba(0, 0, 0, 0.3);background-color: rgba(255, 255, 255, 0.2);box-shadow: 0 1px 1px rgba(255, 255, 255, 0.7);}.ace_fold-widget:active {border: 1px solid rgba(0, 0, 0, 0.4);background-color: rgba(0, 0, 0, 0.05);box-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);}.ace_dark .ace_fold-widget {background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHklEQVQIW2P4//8/AzoGEQ7oGCaLLAhWiSwB146BAQCSTPYocqT0AAAAAElFTkSuQmCC");}.ace_dark .ace_fold-widget.ace_end {background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAH0lEQVQIW2P4//8/AxQ7wNjIAjDMgC4AxjCVKBirIAAF0kz2rlhxpAAAAABJRU5ErkJggg==");}.ace_dark .ace_fold-widget.ace_closed {background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAAFCAYAAACAcVaiAAAAHElEQVQIW2P4//+/AxAzgDADlOOAznHAKgPWAwARji8UIDTfQQAAAABJRU5ErkJggg==");}.ace_dark .ace_fold-widget:hover {box-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);background-color: rgba(255, 255, 255, 0.1);}.ace_dark .ace_fold-widget:active {box-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);}.ace_fold-widget.ace_invalid {background-color: #FFB4B4;border-color: #DE5555;}.ace_fade-fold-widgets .ace_fold-widget {-webkit-transition: opacity 0.4s ease 0.05s;transition: opacity 0.4s ease 0.05s;opacity: 0;}.ace_fade-fold-widgets:hover .ace_fold-widget {-webkit-transition: opacity 0.05s ease 0.05s;transition: opacity 0.05s ease 0.05s;opacity:1;}.ace_underline {text-decoration: underline;}.ace_bold {font-weight: bold;}.ace_nobold .ace_bold {font-weight: normal;}.ace_italic {font-style: italic;}.ace_error-marker {background-color: rgba(255, 0, 0,0.2);position: absolute;z-index: 9;}.ace_highlight-marker {background-color: rgba(255, 255, 0,0.2);position: absolute;z-index: 8;}.ace_br1 {border-top-left-radius : 3px;}.ace_br2 {border-top-right-radius : 3px;}.ace_br3 {border-top-left-radius : 3px; border-top-right-radius: 3px;}.ace_br4 {border-bottom-right-radius: 3px;}.ace_br5 {border-top-left-radius : 3px; border-bottom-right-radius: 3px;}.ace_br6 {border-top-right-radius : 3px; border-bottom-right-radius: 3px;}.ace_br7 {border-top-left-radius : 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px;}.ace_br8 {border-bottom-left-radius : 3px;}.ace_br9 {border-top-left-radius : 3px; border-bottom-left-radius: 3px;}.ace_br10{border-top-right-radius : 3px; border-bottom-left-radius: 3px;}.ace_br11{border-top-left-radius : 3px; border-top-right-radius: 3px; border-bottom-left-radius: 3px;}.ace_br12{border-bottom-right-radius: 3px; border-bottom-left-radius: 3px;}.ace_br13{border-top-left-radius : 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px;}.ace_br14{border-top-right-radius : 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px;}.ace_br15{border-top-left-radius : 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px;}.ace_text-input-ios {position: absolute !important;top: -100000px !important;left: -100000px !important;}';i.importCssString(m,"ace_editor.css");var g=function(e,t){var n=this;this.container=e||i.createElement("div"),this.$keepTextAreaAtCursor=!o.isOldIE,i.addCssClass(this.container,"ace_editor"),this.setTheme(t),this.$gutter=i.createElement("div"),this.$gutter.className="ace_gutter",this.container.appendChild(this.$gutter),this.$gutter.setAttribute("aria-hidden",!0),this.scroller=i.createElement("div"),this.scroller.className="ace_scroller",this.container.appendChild(this.scroller),this.content=i.createElement("div"),this.content.className="ace_content",this.scroller.appendChild(this.content),this.$gutterLayer=new u(this.$gutter),this.$gutterLayer.on("changeGutterWidth",this.onGutterResize.bind(this)),this.$markerBack=new a(this.content);var r=this.$textLayer=new f(this.content);this.canvas=r.element,this.$markerFront=new a(this.content),this.$cursorLayer=new l(this.content),this.$horizScroll=!1,this.$vScroll=!1,this.scrollBar=this.scrollBarV=new h(this.container,this),this.scrollBarH=new c(this.container,this),this.scrollBarV.addEventListener("scroll",function(e){n.$scrollAnimation||n.session.setScrollTop(e.data-n.scrollMargin.top)}),this.scrollBarH.addEventListener("scroll",function(e){n.$scrollAnimation||n.session.setScrollLeft(e.data-n.scrollMargin.left)}),this.scrollTop=0,this.scrollLeft=0,this.cursorPos={row:0,column:0},this.$fontMetrics=new d(this.container),this.$textLayer.$setFontMetrics(this.$fontMetrics),this.$textLayer.addEventListener("changeCharacterSize",function(e){n.updateCharacterSize(),n.onResize(!0,n.gutterWidth,n.$size.width,n.$size.height),n._signal("changeCharacterSize",e)}),this.$size={width:0,height:0,scrollerHeight:0,scrollerWidth:0,$dirty:!0},this.layerConfig={width:1,padding:0,firstRow:0,firstRowScreen:0,lastRow:0,lineHeight:0,characterWidth:0,minHeight:1,maxHeight:1,offset:0,height:1,gutterOffset:1},this.scrollMargin={left:0,right:0,top:0,bottom:0,v:0,h:0},this.$loop=new p(this.$renderChanges.bind(this),this.container.ownerDocument.defaultView),this.$loop.schedule(this.CHANGE_FULL),this.updateCharacterSize(),this.setPadding(4),s.resetOptions(this),s._emit("renderer",this)};(function(){this.CHANGE_CURSOR=1,this.CHANGE_MARKER=2,this.CHANGE_GUTTER=4,this.CHANGE_SCROLL=8,this.CHANGE_LINES=16,this.CHANGE_TEXT=32,this.CHANGE_SIZE=64,this.CHANGE_MARKER_BACK=128,this.CHANGE_MARKER_FRONT=256,this.CHANGE_FULL=512,this.CHANGE_H_SCROLL=1024,r.implement(this,v),this.updateCharacterSize=function(){this.$textLayer.allowBoldFonts!=this.$allowBoldFonts&&(this.$allowBoldFonts=this.$textLayer.allowBoldFonts,this.setStyle("ace_nobold",!this.$allowBoldFonts)),this.layerConfig.characterWidth=this.characterWidth=this.$textLayer.getCharacterWidth(),this.layerConfig.lineHeight=this.lineHeight=this.$textLayer.getLineHeight(),this.$updatePrintMargin()},this.setSession=function(e){this.session&&this.session.doc.off("changeNewLineMode",this.onChangeNewLineMode),this.session=e,e&&this.scrollMargin.top&&e.getScrollTop()<=0&&e.setScrollTop(-this.scrollMargin.top),this.$cursorLayer.setSession(e),this.$markerBack.setSession(e),this.$markerFront.setSession(e),this.$gutterLayer.setSession(e),this.$textLayer.setSession(e);if(!e)return;this.$loop.schedule(this.CHANGE_FULL),this.session.$setFontMetrics(this.$fontMetrics),this.scrollBarH.scrollLeft=this.scrollBarV.scrollTop=null,this.onChangeNewLineMode=this.onChangeNewLineMode.bind(this),this.onChangeNewLineMode(),this.session.doc.on("changeNewLineMode",this.onChangeNewLineMode)},this.updateLines=function(e,t,n){t===undefined&&(t=Infinity),this.$changedLines?(this.$changedLines.firstRow>e&&(this.$changedLines.firstRow=e),this.$changedLines.lastRow<t&&(this.$changedLines.lastRow=t)):this.$changedLines={firstRow:e,lastRow:t};if(this.$changedLines.lastRow<this.layerConfig.firstRow){if(!n)return;this.$changedLines.lastRow=this.layerConfig.lastRow}if(this.$changedLines.firstRow>this.layerConfig.lastRow)return;this.$loop.schedule(this.CHANGE_LINES)},this.onChangeNewLineMode=function(){this.$loop.schedule(this.CHANGE_TEXT),this.$textLayer.$updateEolChar(),this.session.$bidiHandler.setEolChar(this.$textLayer.EOL_CHAR)},this.onChangeTabSize=function(){this.$loop.schedule(this.CHANGE_TEXT|this.CHANGE_MARKER),this.$textLayer.onChangeTabSize()},this.updateText=function(){this.$loop.schedule(this.CHANGE_TEXT)},this.updateFull=function(e){e?this.$renderChanges(this.CHANGE_FULL,!0):this.$loop.schedule(this.CHANGE_FULL)},this.updateFontSize=function(){this.$textLayer.checkForSizeChanges()},this.$changes=0,this.$updateSizeAsync=function(){this.$loop.pending?this.$size.$dirty=!0:this.onResize()},this.onResize=function(e,t,n,r){if(this.resizing>2)return;this.resizing>0?this.resizing++:this.resizing=e?1:0;var i=this.container;r||(r=i.clientHeight||i.scrollHeight),n||(n=i.clientWidth||i.scrollWidth);var s=this.$updateCachedSize(e,t,n,r);if(!this.$size.scrollerHeight||!n&&!r)return this.resizing=0;e&&(this.$gutterLayer.$padding=null),e?this.$renderChanges(s|this.$changes,!0):this.$loop.schedule(s|this.$changes),this.resizing&&(this.resizing=0),this.scrollBarV.scrollLeft=this.scrollBarV.scrollTop=null},this.$updateCachedSize=function(e,t,n,r){r-=this.$extraHeight||0;var i=0,s=this.$size,o={width:s.width,height:s.height,scrollerHeight:s.scrollerHeight,scrollerWidth:s.scrollerWidth};r&&(e||s.height!=r)&&(s.height=r,i|=this.CHANGE_SIZE,s.scrollerHeight=s.height,this.$horizScroll&&(s.scrollerHeight-=this.scrollBarH.getHeight()),this.scrollBarV.element.style.bottom=this.scrollBarH.getHeight()+"px",i|=this.CHANGE_SCROLL);if(n&&(e||s.width!=n)){i|=this.CHANGE_SIZE,s.width=n,t==null&&(t=this.$showGutter?this.$gutter.offsetWidth:0),this.gutterWidth=t,this.scrollBarH.element.style.left=this.scroller.style.left=t+"px",s.scrollerWidth=Math.max(0,n-t-this.scrollBarV.getWidth()),this.scrollBarH.element.style.right=this.scroller.style.right=this.scrollBarV.getWidth()+"px",this.scroller.style.bottom=this.scrollBarH.getHeight()+"px";if(this.session&&this.session.getUseWrapMode()&&this.adjustWrapLimit()||e)i|=this.CHANGE_FULL}return s.$dirty=!n||!r,i&&this._signal("resize",o),i},this.onGutterResize=function(){var e=this.$showGutter?this.$gutter.offsetWidth:0;e!=this.gutterWidth&&(this.$changes|=this.$updateCachedSize(!0,e,this.$size.width,this.$size.height)),this.session.getUseWrapMode()&&this.adjustWrapLimit()?this.$loop.schedule(this.CHANGE_FULL):this.$size.$dirty?this.$loop.schedule(this.CHANGE_FULL):(this.$computeLayerConfig(),this.$loop.schedule(this.CHANGE_MARKER))},this.adjustWrapLimit=function(){var e=this.$size.scrollerWidth-this.$padding*2,t=Math.floor(e/this.characterWidth);return this.session.adjustWrapLimit(t,this.$showPrintMargin&&this.$printMarginColumn)},this.setAnimatedScroll=function(e){this.setOption("animatedScroll",e)},this.getAnimatedScroll=function(){return this.$animatedScroll},this.setShowInvisibles=function(e){this.setOption("showInvisibles",e),this.session.$bidiHandler.setShowInvisibles(e)},this.getShowInvisibles=function(){return this.getOption("showInvisibles")},this.getDisplayIndentGuides=function(){return this.getOption("displayIndentGuides")},this.setDisplayIndentGuides=function(e){this.setOption("displayIndentGuides",e)},this.setShowPrintMargin=function(e){this.setOption("showPrintMargin",e)},this.getShowPrintMargin=function(){return this.getOption("showPrintMargin")},this.setPrintMarginColumn=function(e){this.setOption("printMarginColumn",e)},this.getPrintMarginColumn=function(){return this.getOption("printMarginColumn")},this.getShowGutter=function(){return this.getOption("showGutter")},this.setShowGutter=function(e){return this.setOption("showGutter",e)},this.getFadeFoldWidgets=function(){return this.getOption("fadeFoldWidgets")},this.setFadeFoldWidgets=function(e){this.setOption("fadeFoldWidgets",e)},this.setHighlightGutterLine=function(e){this.setOption("highlightGutterLine",e)},this.getHighlightGutterLine=function(){return this.getOption("highlightGutterLine")},this.$updateGutterLineHighlight=function(){var e=this.$cursorLayer.$pixelPos,t=this.layerConfig.lineHeight;if(this.session.getUseWrapMode()){var n=this.session.selection.getCursor();n.column=0,e=this.$cursorLayer.getPixelPosition(n,!0),t*=this.session.getRowLength(n.row)}this.$gutterLineHighlight.style.top=e.top-this.layerConfig.offset+"px",this.$gutterLineHighlight.style.height=t+"px"},this.$updatePrintMargin=function(){if(!this.$showPrintMargin&&!this.$printMarginEl)return;if(!this.$printMarginEl){var e=i.createElement("div");e.className="ace_layer ace_print-margin-layer",this.$printMarginEl=i.createElement("div"),this.$printMarginEl.className="ace_print-margin",e.appendChild(this.$printMarginEl),this.content.insertBefore(e,this.content.firstChild)}var t=this.$printMarginEl.style;t.left=this.characterWidth*this.$printMarginColumn+this.$padding+"px",t.visibility=this.$showPrintMargin?"visible":"hidden",this.session&&this.session.$wrap==-1&&this.adjustWrapLimit()},this.getContainerElement=function(){return this.container},this.getMouseEventTarget=function(){return this.scroller},this.getTextAreaContainer=function(){return this.container},this.$moveTextAreaToCursor=function(){if(!this.$keepTextAreaAtCursor)return;var e=this.layerConfig,t=this.$cursorLayer.$pixelPos.top,n=this.$cursorLayer.$pixelPos.left;t-=e.offset;var r=this.textarea.style,i=this.lineHeight;if(t<0||t>e.height-i){r.top=r.left="0";return}var s=this.characterWidth;if(this.$composition){var o=this.textarea.value.replace(/^\x01+/,"");s*=this.session.$getStringScreenWidth(o)[0]+2,i+=2}n-=this.scrollLeft,n>this.$size.scrollerWidth-s&&(n=this.$size.scrollerWidth-s),n+=this.gutterWidth,r.height=i+"px",r.width=s+"px",r.left=Math.min(n,this.$size.scrollerWidth-s)+"px",r.top=Math.min(t,this.$size.height-i)+"px"},this.getFirstVisibleRow=function(){return this.layerConfig.firstRow},this.getFirstFullyVisibleRow=function(){return this.layerConfig.firstRow+(this.layerConfig.offset===0?0:1)},this.getLastFullyVisibleRow=function(){var e=this.layerConfig,t=e.lastRow,n=this.session.documentToScreenRow(t,0)*e.lineHeight;return n-this.session.getScrollTop()>e.height-e.lineHeight?t-1:t},this.getLastVisibleRow=function(){return this.layerConfig.lastRow},this.$padding=null,this.setPadding=function(e){this.$padding=e,this.$textLayer.setPadding(e),this.$cursorLayer.setPadding(e),this.$markerFront.setPadding(e),this.$markerBack.setPadding(e),this.$loop.schedule(this.CHANGE_FULL),this.$updatePrintMargin()},this.setScrollMargin=function(e,t,n,r){var i=this.scrollMargin;i.top=e|0,i.bottom=t|0,i.right=r|0,i.left=n|0,i.v=i.top+i.bottom,i.h=i.left+i.right,i.top&&this.scrollTop<=0&&this.session&&this.session.setScrollTop(-i.top),this.updateFull()},this.getHScrollBarAlwaysVisible=function(){return this.$hScrollBarAlwaysVisible},this.setHScrollBarAlwaysVisible=function(e){this.setOption("hScrollBarAlwaysVisible",e)},this.getVScrollBarAlwaysVisible=function(){return this.$vScrollBarAlwaysVisible},this.setVScrollBarAlwaysVisible=function(e){this.setOption("vScrollBarAlwaysVisible",e)},this.$updateScrollBarV=function(){var e=this.layerConfig.maxHeight,t=this.$size.scrollerHeight;!this.$maxLines&&this.$scrollPastEnd&&(e-=(t-this.lineHeight)*this.$scrollPastEnd,this.scrollTop>e-t&&(e=this.scrollTop+t,this.scrollBarV.scrollTop=null)),this.scrollBarV.setScrollHeight(e+this.scrollMargin.v),this.scrollBarV.setScrollTop(this.scrollTop+this.scrollMargin.top)},this.$updateScrollBarH=function(){this.scrollBarH.setScrollWidth(this.layerConfig.width+2*this.$padding+this.scrollMargin.h),this.scrollBarH.setScrollLeft(this.scrollLeft+this.scrollMargin.left)},this.$frozen=!1,this.freeze=function(){this.$frozen=!0},this.unfreeze=function(){this.$frozen=!1},this.$renderChanges=function(e,t){this.$changes&&(e|=this.$changes,this.$changes=0);if(!this.session||!this.container.offsetWidth||this.$frozen||!e&&!t){this.$changes|=e;return}if(this.$size.$dirty)return this.$changes|=e,this.onResize(!0);this.lineHeight||this.$textLayer.checkForSizeChanges(),this._signal("beforeRender"),this.session&&this.session.$bidiHandler&&this.session.$bidiHandler.updateCharacterWidths(this.$fontMetrics);var n=this.layerConfig;if(e&this.CHANGE_FULL||e&this.CHANGE_SIZE||e&this.CHANGE_TEXT||e&this.CHANGE_LINES||e&this.CHANGE_SCROLL||e&this.CHANGE_H_SCROLL){e|=this.$computeLayerConfig();if(n.firstRow!=this.layerConfig.firstRow&&n.firstRowScreen==this.layerConfig.firstRowScreen){var r=this.scrollTop+(n.firstRow-this.layerConfig.firstRow)*this.lineHeight;r>0&&(this.scrollTop=r,e|=this.CHANGE_SCROLL,e|=this.$computeLayerConfig())}n=this.layerConfig,this.$updateScrollBarV(),e&this.CHANGE_H_SCROLL&&this.$updateScrollBarH(),this.$gutterLayer.element.style.marginTop=-n.offset+"px",this.content.style.marginTop=-n.offset+"px",this.content.style.width=n.width+2*this.$padding+"px",this.content.style.height=n.minHeight+"px"}e&this.CHANGE_H_SCROLL&&(this.content.style.marginLeft=-this.scrollLeft+"px",this.scroller.className=this.scrollLeft<=0?"ace_scroller":"ace_scroller ace_scroll-left");if(e&this.CHANGE_FULL){this.$textLayer.update(n),this.$showGutter&&this.$gutterLayer.update(n),this.$markerBack.update(n),this.$markerFront.update(n),this.$cursorLayer.update(n),this.$moveTextAreaToCursor(),this.$highlightGutterLine&&this.$updateGutterLineHighlight(),this._signal("afterRender");return}if(e&this.CHANGE_SCROLL){e&this.CHANGE_TEXT||e&this.CHANGE_LINES?this.$textLayer.update(n):this.$textLayer.scrollLines(n),this.$showGutter&&this.$gutterLayer.update(n),this.$markerBack.update(n),this.$markerFront.update(n),this.$cursorLayer.update(n),this.$highlightGutterLine&&this.$updateGutterLineHighlight(),this.$moveTextAreaToCursor(),this._signal("afterRender");return}e&this.CHANGE_TEXT?(this.$textLayer.update(n),this.$showGutter&&this.$gutterLayer.update(n)):e&this.CHANGE_LINES?(this.$updateLines()||e&this.CHANGE_GUTTER&&this.$showGutter)&&this.$gutterLayer.update(n):(e&this.CHANGE_TEXT||e&this.CHANGE_GUTTER)&&this.$showGutter&&this.$gutterLayer.update(n),e&this.CHANGE_CURSOR&&(this.$cursorLayer.update(n),this.$moveTextAreaToCursor(),this.$highlightGutterLine&&this.$updateGutterLineHighlight()),e&(this.CHANGE_MARKER|this.CHANGE_MARKER_FRONT)&&this.$markerFront.update(n),e&(this.CHANGE_MARKER|this.CHANGE_MARKER_BACK)&&this.$markerBack.update(n),this._signal("afterRender")},this.$autosize=function(){var e=this.session.getScreenLength()*this.lineHeight,t=this.$maxLines*this.lineHeight,n=Math.min(t,Math.max((this.$minLines||1)*this.lineHeight,e))+this.scrollMargin.v+(this.$extraHeight||0);this.$horizScroll&&(n+=this.scrollBarH.getHeight()),this.$maxPixelHeight&&n>this.$maxPixelHeight&&(n=this.$maxPixelHeight);var r=e>t;if(n!=this.desiredHeight||this.$size.height!=this.desiredHeight||r!=this.$vScroll){r!=this.$vScroll&&(this.$vScroll=r,this.scrollBarV.setVisible(r));var i=this.container.clientWidth;this.container.style.height=n+"px",this.$updateCachedSize(!0,this.$gutterWidth,i,n),this.desiredHeight=n,this._signal("autosize")}},this.$computeLayerConfig=function(){var e=this.session,t=this.$size,n=t.height<=2*this.lineHeight,r=this.session.getScreenLength(),i=r*this.lineHeight,s=this.$getLongestLine(),o=!n&&(this.$hScrollBarAlwaysVisible||t.scrollerWidth-s-2*this.$padding<0),u=this.$horizScroll!==o;u&&(this.$horizScroll=o,this.scrollBarH.setVisible(o));var a=this.$vScroll;this.$maxLines&&this.lineHeight>1&&this.$autosize();var f=this.scrollTop%this.lineHeight,l=t.scrollerHeight+this.lineHeight,c=!this.$maxLines&&this.$scrollPastEnd?(t.scrollerHeight-this.lineHeight)*this.$scrollPastEnd:0;i+=c;var h=this.scrollMargin;this.session.setScrollTop(Math.max(-h.top,Math.min(this.scrollTop,i-t.scrollerHeight+h.bottom))),this.session.setScrollLeft(Math.max(-h.left,Math.min(this.scrollLeft,s+2*this.$padding-t.scrollerWidth+h.right)));var p=!n&&(this.$vScrollBarAlwaysVisible||t.scrollerHeight-i+c<0||this.scrollTop>h.top),d=a!==p;d&&(this.$vScroll=p,this.scrollBarV.setVisible(p));var v=Math.ceil(l/this.lineHeight)-1,m=Math.max(0,Math.round((this.scrollTop-f)/this.lineHeight)),g=m+v,y,b,w=this.lineHeight;m=e.screenToDocumentRow(m,0);var E=e.getFoldLine(m);E&&(m=E.start.row),y=e.documentToScreenRow(m,0),b=e.getRowLength(m)*w,g=Math.min(e.screenToDocumentRow(g,0),e.getLength()-1),l=t.scrollerHeight+e.getRowLength(g)*w+b,f=this.scrollTop-y*w;var S=0;this.layerConfig.width!=s&&(S=this.CHANGE_H_SCROLL);if(u||d)S=this.$updateCachedSize(!0,this.gutterWidth,t.width,t.height),this._signal("scrollbarVisibilityChanged"),d&&(s=this.$getLongestLine());return this.layerConfig={width:s,padding:this.$padding,firstRow:m,firstRowScreen:y,lastRow:g,lineHeight:w,characterWidth:this.characterWidth,minHeight:l,maxHeight:i,offset:f,gutterOffset:w?Math.max(0,Math.ceil((f+t.height-t.scrollerHeight)/w)):0,height:this.$size.scrollerHeight},S},this.$updateLines=function(){if(!this.$changedLines)return;var e=this.$changedLines.firstRow,t=this.$changedLines.lastRow;this.$changedLines=null;var n=this.layerConfig;if(e>n.lastRow+1)return;if(t<n.firstRow)return;if(t===Infinity){this.$showGutter&&this.$gutterLayer.update(n),this.$textLayer.update(n);return}return this.$textLayer.updateLines(n,e,t),!0},this.$getLongestLine=function(){var e=this.session.getScreenWidth();return this.showInvisibles&&!this.session.$useWrapMode&&(e+=1),Math.max(this.$size.scrollerWidth-2*this.$padding,Math.round(e*this.characterWidth))},this.updateFrontMarkers=function(){this.$markerFront.setMarkers(this.session.getMarkers(!0)),this.$loop.schedule(this.CHANGE_MARKER_FRONT)},this.updateBackMarkers=function(){this.$markerBack.setMarkers(this.session.getMarkers()),this.$loop.schedule(this.CHANGE_MARKER_BACK)},this.addGutterDecoration=function(e,t){this.$gutterLayer.addGutterDecoration(e,t)},this.removeGutterDecoration=function(e,t){this.$gutterLayer.removeGutterDecoration(e,t)},this.updateBreakpoints=function(e){this.$loop.schedule(this.CHANGE_GUTTER)},this.setAnnotations=function(e){this.$gutterLayer.setAnnotations(e),this.$loop.schedule(this.CHANGE_GUTTER)},this.updateCursor=function(){this.$loop.schedule(this.CHANGE_CURSOR)},this.hideCursor=function(){this.$cursorLayer.hideCursor()},this.showCursor=function(){this.$cursorLayer.showCursor()},this.scrollSelectionIntoView=function(e,t,n){this.scrollCursorIntoView(e,n),this.scrollCursorIntoView(t,n)},this.scrollCursorIntoView=function(e,t,n){if(this.$size.scrollerHeight===0)return;var r=this.$cursorLayer.getPixelPosition(e),i=r.left,s=r.top,o=n&&n.top||0,u=n&&n.bottom||0,a=this.$scrollAnimation?this.session.getScrollTop():this.scrollTop;a+o>s?(t&&a+o>s+this.lineHeight&&(s-=t*this.$size.scrollerHeight),s===0&&(s=-this.scrollMargin.top),this.session.setScrollTop(s)):a+this.$size.scrollerHeight-u<s+this.lineHeight&&(t&&a+this.$size.scrollerHeight-u<s-this.lineHeight&&(s+=t*this.$size.scrollerHeight),this.session.setScrollTop(s+this.lineHeight-this.$size.scrollerHeight));var f=this.scrollLeft;f>i?(i<this.$padding+2*this.layerConfig.characterWidth&&(i=-this.scrollMargin.left),this.session.setScrollLeft(i)):f+this.$size.scrollerWidth<i+this.characterWidth?this.session.setScrollLeft(Math.round(i+this.characterWidth-this.$size.scrollerWidth)):f<=this.$padding&&i-f<this.characterWidth&&this.session.setScrollLeft(0)},this.getScrollTop=function(){return this.session.getScrollTop()},this.getScrollLeft=function(){return this.session.getScrollLeft()},this.getScrollTopRow=function(){return this.scrollTop/this.lineHeight},this.getScrollBottomRow=function(){return Math.max(0,Math.floor((this.scrollTop+this.$size.scrollerHeight)/this.lineHeight)-1)},this.scrollToRow=function(e){this.session.setScrollTop(e*this.lineHeight)},this.alignCursor=function(e,t){typeof e=="number"&&(e={row:e,column:0});var n=this.$cursorLayer.getPixelPosition(e),r=this.$size.scrollerHeight-this.lineHeight,i=n.top-r*(t||0);return this.session.setScrollTop(i),i},this.STEPS=8,this.$calcSteps=function(e,t){var n=0,r=this.STEPS,i=[],s=function(e,t,n){return n*(Math.pow(e-1,3)+1)+t};for(n=0;n<r;++n)i.push(s(n/this.STEPS,e,t-e));return i},this.scrollToLine=function(e,t,n,r){var i=this.$cursorLayer.getPixelPosition({row:e,column:0}),s=i.top;t&&(s-=this.$size.scrollerHeight/2);var o=this.scrollTop;this.session.setScrollTop(s),n!==!1&&this.animateScrolling(o,r)},this.animateScrolling=function(e,t){var n=this.scrollTop;if(!this.$animatedScroll)return;var r=this;if(e==n)return;if(this.$scrollAnimation){var i=this.$scrollAnimation.steps;if(i.length){e=i[0];if(e==n)return}}var s=r.$calcSteps(e,n);this.$scrollAnimation={from:e,to:n,steps:s},clearInterval(this.$timer),r.session.setScrollTop(s.shift()),r.session.$scrollTop=n,this.$timer=setInterval(function(){s.length?(r.session.setScrollTop(s.shift()),r.session.$scrollTop=n):n!=null?(r.session.$scrollTop=-1,r.session.setScrollTop(n),n=null):(r.$timer=clearInterval(r.$timer),r.$scrollAnimation=null,t&&t())},10)},this.scrollToY=function(e){this.scrollTop!==e&&(this.$loop.schedule(this.CHANGE_SCROLL),this.scrollTop=e)},this.scrollToX=function(e){this.scrollLeft!==e&&(this.scrollLeft=e),this.$loop.schedule(this.CHANGE_H_SCROLL)},this.scrollTo=function(e,t){this.session.setScrollTop(t),this.session.setScrollLeft(t)},this.scrollBy=function(e,t){t&&this.session.setScrollTop(this.session.getScrollTop()+t),e&&this.session.setScrollLeft(this.session.getScrollLeft()+e)},this.isScrollableBy=function(e,t){if(t<0&&this.session.getScrollTop()>=1-this.scrollMargin.top)return!0;if(t>0&&this.session.getScrollTop()+this.$size.scrollerHeight-this.layerConfig.maxHeight<-1+this.scrollMargin.bottom)return!0;if(e<0&&this.session.getScrollLeft()>=1-this.scrollMargin.left)return!0;if(e>0&&this.session.getScrollLeft()+this.$size.scrollerWidth-this.layerConfig.width<-1+this.scrollMargin.right)return!0},this.pixelToScreenCoordinates=function(e,t){var n=this.scroller.getBoundingClientRect(),r=e+this.scrollLeft-n.left-this.$padding,i=r/this.characterWidth,s=Math.floor((t+this.scrollTop-n.top)/this.lineHeight),o=Math.round(i);return{row:s,column:o,side:i-o>0?1:-1,offsetX:r}},this.screenToTextCoordinates=function(e,t){var n=this.scroller.getBoundingClientRect(),r=e+this.scrollLeft-n.left-this.$padding,i=Math.round(r/this.characterWidth),s=(t+this.scrollTop-n.top)/this.lineHeight;return this.session.screenToDocumentPosition(s,Math.max(i,0),r)},this.textToScreenCoordinates=function(e,t){var n=this.scroller.getBoundingClientRect(),r=this.session.documentToScreenPosition(e,t),i=this.$padding+(this.session.$bidiHandler.isBidiRow(r.row,e)?this.session.$bidiHandler.getPosLeft(r.column):Math.round(r.column*this.characterWidth)),s=r.row*this.lineHeight;return{pageX:n.left+i-this.scrollLeft,pageY:n.top+s-this.scrollTop}},this.visualizeFocus=function(){i.addCssClass(this.container,"ace_focus")},this.visualizeBlur=function(){i.removeCssClass(this.container,"ace_focus")},this.showComposition=function(e){this.$composition||(this.$composition={keepTextAreaAtCursor:this.$keepTextAreaAtCursor,cssText:this.textarea.style.cssText}),this.$keepTextAreaAtCursor=!0,i.addCssClass(this.textarea,"ace_composition"),this.textarea.style.cssText="",this.$moveTextAreaToCursor()},this.setCompositionText=function(e){this.$moveTextAreaToCursor()},this.hideComposition=function(){if(!this.$composition)return;i.removeCssClass(this.textarea,"ace_composition"),this.$keepTextAreaAtCursor=this.$composition.keepTextAreaAtCursor,this.textarea.style.cssText=this.$composition.cssText,this.$composition=null},this.setTheme=function(e,t){function o(r){if(n.$themeId!=e)return t&&t();if(!r||!r.cssClass)throw new Error("couldn't load module "+e+" or it didn't call define");i.importCssString(r.cssText,r.cssClass,n.container.ownerDocument),n.theme&&i.removeCssClass(n.container,n.theme.cssClass);var s="padding"in r?r.padding:"padding"in(n.theme||{})?4:n.$padding;n.$padding&&s!=n.$padding&&n.setPadding(s),n.$theme=r.cssClass,n.theme=r,i.addCssClass(n.container,r.cssClass),i.setCssClass(n.container,"ace_dark",r.isDark),n.$size&&(n.$size.width=0,n.$updateSizeAsync()),n._dispatchEvent("themeLoaded",{theme:r}),t&&t()}var n=this;this.$themeId=e,n._dispatchEvent("themeChange",{theme:e});if(!e||typeof e=="string"){var r=e||this.$options.theme.initialValue;s.loadModule(["theme",r],o)}else o(e)},this.getTheme=function(){return this.$themeId},this.setStyle=function(e,t){i.setCssClass(this.container,e,t!==!1)},this.unsetStyle=function(e){i.removeCssClass(this.container,e)},this.setCursorStyle=function(e){this.scroller.style.cursor!=e&&(this.scroller.style.cursor=e)},this.setMouseCursor=function(e){this.scroller.style.cursor=e},this.destroy=function(){this.$textLayer.destroy(),this.$cursorLayer.destroy()}}).call(g.prototype),s.defineOptions(g.prototype,"renderer",{animatedScroll:{initialValue:!1},showInvisibles:{set:function(e){this.$textLayer.setShowInvisibles(e)&&this.$loop.schedule(this.CHANGE_TEXT)},initialValue:!1},showPrintMargin:{set:function(){this.$updatePrintMargin()},initialValue:!0},printMarginColumn:{set:function(){this.$updatePrintMargin()},initialValue:80},printMargin:{set:function(e){typeof e=="number"&&(this.$printMarginColumn=e),this.$showPrintMargin=!!e,this.$updatePrintMargin()},get:function(){return this.$showPrintMargin&&this.$printMarginColumn}},showGutter:{set:function(e){this.$gutter.style.display=e?"block":"none",this.$loop.schedule(this.CHANGE_FULL),this.onGutterResize()},initialValue:!0},fadeFoldWidgets:{set:function(e){i.setCssClass(this.$gutter,"ace_fade-fold-widgets",e)},initialValue:!1},showFoldWidgets:{set:function(e){this.$gutterLayer.setShowFoldWidgets(e)},initialValue:!0},showLineNumbers:{set:function(e){this.$gutterLayer.setShowLineNumbers(e),this.$loop.schedule(this.CHANGE_GUTTER)},initialValue:!0},displayIndentGuides:{set:function(e){this.$textLayer.setDisplayIndentGuides(e)&&this.$loop.schedule(this.CHANGE_TEXT)},initialValue:!0},highlightGutterLine:{set:function(e){if(!this.$gutterLineHighlight){this.$gutterLineHighlight=i.createElement("div"),this.$gutterLineHighlight.className="ace_gutter-active-line",this.$gutter.appendChild(this.$gutterLineHighlight);return}this.$gutterLineHighlight.style.display=e?"":"none",this.$cursorLayer.$pixelPos&&this.$updateGutterLineHighlight()},initialValue:!1,value:!0},hScrollBarAlwaysVisible:{set:function(e){(!this.$hScrollBarAlwaysVisible||!this.$horizScroll)&&this.$loop.schedule(this.CHANGE_SCROLL)},initialValue:!1},vScrollBarAlwaysVisible:{set:function(e){(!this.$vScrollBarAlwaysVisible||!this.$vScroll)&&this.$loop.schedule(this.CHANGE_SCROLL)},initialValue:!1},fontSize:{set:function(e){typeof e=="number"&&(e+="px"),this.container.style.fontSize=e,this.updateFontSize()},initialValue:12},fontFamily:{set:function(e){this.container.style.fontFamily=e,this.updateFontSize()}},maxLines:{set:function(e){this.updateFull()}},minLines:{set:function(e){this.updateFull()}},maxPixelHeight:{set:function(e){this.updateFull()},initialValue:0},scrollPastEnd:{set:function(e){e=+e||0;if(this.$scrollPastEnd==e)return;this.$scrollPastEnd=e,this.$loop.schedule(this.CHANGE_SCROLL)},initialValue:0,handlesSet:!0},fixedWidthGutter:{set:function(e){this.$gutterLayer.$fixedWidth=!!e,this.$loop.schedule(this.CHANGE_GUTTER)}},theme:{set:function(e){this.setTheme(e)},get:function(){return this.$themeId||this.theme},initialValue:"./theme/textmate",handlesSet:!0}}),t.VirtualRenderer=g}),define("ace/worker/worker_client",["require","exports","module","ace/lib/oop","ace/lib/net","ace/lib/event_emitter","ace/config"],function(e,t,n){"use strict";function u(e){var t="importScripts('"+i.qualifyURL(e)+"');";try{return new Blob([t],{type:"application/javascript"})}catch(n){var r=window.BlobBuilder||window.WebKitBlobBuilder||window.MozBlobBuilder,s=new r;return s.append(t),s.getBlob("application/javascript")}}function a(e){var t=u(e),n=window.URL||window.webkitURL,r=n.createObjectURL(t);return new Worker(r)}var r=e("../lib/oop"),i=e("../lib/net"),s=e("../lib/event_emitter").EventEmitter,o=e("../config"),f=function(t,n,r,i,s){this.$sendDeltaQueue=this.$sendDeltaQueue.bind(this),this.changeListener=this.changeListener.bind(this),this.onMessage=this.onMessage.bind(this),e.nameToUrl&&!e.toUrl&&(e.toUrl=e.nameToUrl);if(o.get("packaged")||!e.toUrl)i=i||o.moduleUrl(n,"worker");else{var u=this.$normalizePath;i=i||u(e.toUrl("ace/worker/worker.js",null,"_"));var f={};t.forEach(function(t){f[t]=u(e.toUrl(t,null,"_").replace(/(\.js)?(\?.*)?$/,""))})}this.$worker=a(i),s&&this.send("importScripts",s),this.$worker.postMessage({init:!0,tlns:f,module:n,classname:r}),this.callbackId=1,this.callbacks={},this.$worker.onmessage=this.onMessage};(function(){r.implement(this,s),this.onMessage=function(e){var t=e.data;switch(t.type){case"event":this._signal(t.name,{data:t.data});break;case"call":var n=this.callbacks[t.id];n&&(n(t.data),delete this.callbacks[t.id]);break;case"error":this.reportError(t.data);break;case"log":window.console&&console.log&&console.log.apply(console,t.data)}},this.reportError=function(e){window.console&&console.error&&console.error(e)},this.$normalizePath=function(e){return i.qualifyURL(e)},this.terminate=function(){this._signal("terminate",{}),this.deltaQueue=null,this.$worker.terminate(),this.$worker=null,this.$doc&&this.$doc.off("change",this.changeListener),this.$doc=null},this.send=function(e,t){this.$worker.postMessage({command:e,args:t})},this.call=function(e,t,n){if(n){var r=this.callbackId++;this.callbacks[r]=n,t.push(r)}this.send(e,t)},this.emit=function(e,t){try{this.$worker.postMessage({event:e,data:{data:t.data}})}catch(n){console.error(n.stack)}},this.attachToDocument=function(e){this.$doc&&this.terminate(),this.$doc=e,this.call("setValue",[e.getValue()]),e.on("change",this.changeListener)},this.changeListener=function(e){this.deltaQueue||(this.deltaQueue=[],setTimeout(this.$sendDeltaQueue,0)),e.action=="insert"?this.deltaQueue.push(e.start,e.lines):this.deltaQueue.push(e.start,e.end)},this.$sendDeltaQueue=function(){var e=this.deltaQueue;if(!e)return;this.deltaQueue=null,e.length>50&&e.length>this.$doc.getLength()>>1?this.call("setValue",[this.$doc.getValue()]):this.emit("change",{data:e})}}).call(f.prototype);var l=function(e,t,n){this.$sendDeltaQueue=this.$sendDeltaQueue.bind(this),this.changeListener=this.changeListener.bind(this),this.callbackId=1,this.callbacks={},this.messageBuffer=[];var r=null,i=!1,u=Object.create(s),a=this;this.$worker={},this.$worker.terminate=function(){},this.$worker.postMessage=function(e){a.messageBuffer.push(e),r&&(i?setTimeout(f):f())},this.setEmitSync=function(e){i=e};var f=function(){var e=a.messageBuffer.shift();e.command?r[e.command].apply(r,e.args):e.event&&u._signal(e.event,e.data)};u.postMessage=function(e){a.onMessage({data:e})},u.callback=function(e,t){this.postMessage({type:"call",id:t,data:e})},u.emit=function(e,t){this.postMessage({type:"event",name:e,data:t})},o.loadModule(["worker",t],function(e){r=new e[n](u);while(a.messageBuffer.length)f()})};l.prototype=f.prototype,t.UIWorkerClient=l,t.WorkerClient=f,t.createWorker=a}),define("ace/placeholder",["require","exports","module","ace/range","ace/lib/event_emitter","ace/lib/oop"],function(e,t,n){"use strict";var r=e("./range").Range,i=e("./lib/event_emitter").EventEmitter,s=e("./lib/oop"),o=function(e,t,n,r,i,s){var o=this;this.length=t,this.session=e,this.doc=e.getDocument(),this.mainClass=i,this.othersClass=s,this.$onUpdate=this.onUpdate.bind(this),this.doc.on("change",this.$onUpdate),this.$others=r,this.$onCursorChange=function(){setTimeout(function(){o.onCursorChange()})},this.$pos=n;var u=e.getUndoManager().$undoStack||e.getUndoManager().$undostack||{length:-1};this.$undoStackDepth=u.length,this.setup(),e.selection.on("changeCursor",this.$onCursorChange)};(function(){s.implement(this,i),this.setup=function(){var e=this,t=this.doc,n=this.session;this.selectionBefore=n.selection.toJSON(),n.selection.inMultiSelectMode&&n.selection.toSingleRange(),this.pos=t.createAnchor(this.$pos.row,this.$pos.column);var i=this.pos;i.$insertRight=!0,i.detach(),i.markerId=n.addMarker(new r(i.row,i.column,i.row,i.column+this.length),this.mainClass,null,!1),this.others=[],this.$others.forEach(function(n){var r=t.createAnchor(n.row,n.column);r.$insertRight=!0,r.detach(),e.others.push(r)}),n.setUndoSelect(!1)},this.showOtherMarkers=function(){if(this.othersActive)return;var e=this.session,t=this;this.othersActive=!0,this.others.forEach(function(n){n.markerId=e.addMarker(new r(n.row,n.column,n.row,n.column+t.length),t.othersClass,null,!1)})},this.hideOtherMarkers=function(){if(!this.othersActive)return;this.othersActive=!1;for(var e=0;e<this.others.length;e++)this.session.removeMarker(this.others[e].markerId)},this.onUpdate=function(e){if(this.$updating)return this.updateAnchors(e);var t=e;if(t.start.row!==t.end.row)return;if(t.start.row!==this.pos.row)return;this.$updating=!0;var n=e.action==="insert"?t.end.column-t.start.column:t.start.column-t.end.column,i=t.start.column>=this.pos.column&&t.start.column<=this.pos.column+this.length+1,s=t.start.column-this.pos.column;this.updateAnchors(e),i&&(this.length+=n);if(i&&!this.session.$fromUndo)if(e.action==="insert")for(var o=this.others.length-1;o>=0;o--){var u=this.others[o],a={row:u.row,column:u.column+s};this.doc.insertMergedLines(a,e.lines)}else if(e.action==="remove")for(var o=this.others.length-1;o>=0;o--){var u=this.others[o],a={row:u.row,column:u.column+s};this.doc.remove(new r(a.row,a.column,a.row,a.column-n))}this.$updating=!1,this.updateMarkers()},this.updateAnchors=function(e){this.pos.onChange(e);for(var t=this.others.length;t--;)this.others[t].onChange(e);this.updateMarkers()},this.updateMarkers=function(){if(this.$updating)return;var e=this,t=this.session,n=function(n,i){t.removeMarker(n.markerId),n.markerId=t.addMarker(new r(n.row,n.column,n.row,n.column+e.length),i,null,!1)};n(this.pos,this.mainClass);for(var i=this.others.length;i--;)n(this.others[i],this.othersClass)},this.onCursorChange=function(e){if(this.$updating||!this.session)return;var t=this.session.selection.getCursor();t.row===this.pos.row&&t.column>=this.pos.column&&t.column<=this.pos.column+this.length?(this.showOtherMarkers(),this._emit("cursorEnter",e)):(this.hideOtherMarkers(),this._emit("cursorLeave",e))},this.detach=function(){this.session.removeMarker(this.pos&&this.pos.markerId),this.hideOtherMarkers(),this.doc.removeEventListener("change",this.$onUpdate),this.session.selection.removeEventListener("changeCursor",this.$onCursorChange),this.session.setUndoSelect(!0),this.session=null},this.cancel=function(){if(this.$undoStackDepth===-1)return;var e=this.session.getUndoManager(),t=(e.$undoStack||e.$undostack).length-this.$undoStackDepth;for(var n=0;n<t;n++)e.undo(!0);this.selectionBefore&&this.session.selection.fromJSON(this.selectionBefore)}}).call(o.prototype),t.PlaceHolder=o}),define("ace/mouse/multi_select_handler",["require","exports","module","ace/lib/event","ace/lib/useragent"],function(e,t,n){function s(e,t){return e.row==t.row&&e.column==t.column}function o(e){var t=e.domEvent,n=t.altKey,o=t.shiftKey,u=t.ctrlKey,a=e.getAccelKey(),f=e.getButton();u&&i.isMac&&(f=t.button);if(e.editor.inMultiSelectMode&&f==2){e.editor.textInput.onContextMenu(e.domEvent);return}if(!u&&!n&&!a){f===0&&e.editor.inMultiSelectMode&&e.editor.exitMultiSelectMode();return}if(f!==0)return;var l=e.editor,c=l.selection,h=l.inMultiSelectMode,p=e.getDocumentPosition(),d=c.getCursor(),v=e.inSelection()||c.isEmpty()&&s(p,d),m=e.x,g=e.y,y=function(e){m=e.clientX,g=e.clientY},b=l.session,w=l.renderer.pixelToScreenCoordinates(m,g),E=w,S;if(l.$mouseHandler.$enableJumpToDef)u&&n||a&&n?S=o?"block":"add":n&&l.$blockSelectEnabled&&(S="block");else if(a&&!n){S="add";if(!h&&o)return}else n&&l.$blockSelectEnabled&&(S="block");S&&i.isMac&&t.ctrlKey&&l.$mouseHandler.cancelContextMenu();if(S=="add"){if(!h&&v)return;if(!h){var x=c.toOrientedRange();l.addSelectionMarker(x)}var T=c.rangeList.rangeAtPoint(p);l.$blockScrolling++,l.inVirtualSelectionMode=!0,o&&(T=null,x=c.ranges[0]||x,l.removeSelectionMarker(x)),l.once("mouseup",function(){var e=c.toOrientedRange();T&&e.isEmpty()&&s(T.cursor,e.cursor)?c.substractPoint(e.cursor):(o?c.substractPoint(x.cursor):x&&(l.removeSelectionMarker(x),c.addRange(x)),c.addRange(e)),l.$blockScrolling--,l.inVirtualSelectionMode=!1})}else if(S=="block"){e.stop(),l.inVirtualSelectionMode=!0;var N,C=[],k=function(){var e=l.renderer.pixelToScreenCoordinates(m,g),t=b.screenToDocumentPosition(e.row,e.column,e.offsetX);if(s(E,e)&&s(t,c.lead))return;E=e,l.$blockScrolling++,l.selection.moveToPosition(t),l.renderer.scrollCursorIntoView(),l.removeSelectionMarkers(C),C=c.rectangularRangeBlock(E,w),l.$mouseHandler.$clickSelection&&C.length==1&&C[0].isEmpty()&&(C[0]=l.$mouseHandler.$clickSelection.clone()),C.forEach(l.addSelectionMarker,l),l.updateSelectionMarkers(),l.$blockScrolling--};l.$blockScrolling++,h&&!a?c.toSingleRange():!h&&a&&(N=c.toOrientedRange(),l.addSelectionMarker(N)),o?w=b.documentToScreenPosition(c.lead):c.moveToPosition(p),l.$blockScrolling--,E={row:-1,column:-1};var L=function(e){clearInterval(O),l.removeSelectionMarkers(C),C.length||(C=[c.toOrientedRange()]),l.$blockScrolling++,N&&(l.removeSelectionMarker(N),c.toSingleRange(N));for(var t=0;t<C.length;t++)c.addRange(C[t]);l.inVirtualSelectionMode=!1,l.$mouseHandler.$clickSelection=null,l.$blockScrolling--},A=k;r.capture(l.container,y,L);var O=setInterval(function(){A()},20);return e.preventDefault()}}var r=e("../lib/event"),i=e("../lib/useragent");t.onMouseDown=o}),define("ace/commands/multi_select_commands",["require","exports","module","ace/keyboard/hash_handler"],function(e,t,n){t.defaultCommands=[{name:"addCursorAbove",exec:function(e){e.selectMoreLines(-1)},bindKey:{win:"Ctrl-Alt-Up",mac:"Ctrl-Alt-Up"},scrollIntoView:"cursor",readOnly:!0},{name:"addCursorBelow",exec:function(e){e.selectMoreLines(1)},bindKey:{win:"Ctrl-Alt-Down",mac:"Ctrl-Alt-Down"},scrollIntoView:"cursor",readOnly:!0},{name:"addCursorAboveSkipCurrent",exec:function(e){e.selectMoreLines(-1,!0)},bindKey:{win:"Ctrl-Alt-Shift-Up",mac:"Ctrl-Alt-Shift-Up"},scrollIntoView:"cursor",readOnly:!0},{name:"addCursorBelowSkipCurrent",exec:function(e){e.selectMoreLines(1,!0)},bindKey:{win:"Ctrl-Alt-Shift-Down",mac:"Ctrl-Alt-Shift-Down"},scrollIntoView:"cursor",readOnly:!0},{name:"selectMoreBefore",exec:function(e){e.selectMore(-1)},bindKey:{win:"Ctrl-Alt-Left",mac:"Ctrl-Alt-Left"},scrollIntoView:"cursor",readOnly:!0},{name:"selectMoreAfter",exec:function(e){e.selectMore(1)},bindKey:{win:"Ctrl-Alt-Right",mac:"Ctrl-Alt-Right"},scrollIntoView:"cursor",readOnly:!0},{name:"selectNextBefore",exec:function(e){e.selectMore(-1,!0)},bindKey:{win:"Ctrl-Alt-Shift-Left",mac:"Ctrl-Alt-Shift-Left"},scrollIntoView:"cursor",readOnly:!0},{name:"selectNextAfter",exec:function(e){e.selectMore(1,!0)},bindKey:{win:"Ctrl-Alt-Shift-Right",mac:"Ctrl-Alt-Shift-Right"},scrollIntoView:"cursor",readOnly:!0},{name:"splitIntoLines",exec:function(e){e.multiSelect.splitIntoLines()},bindKey:{win:"Ctrl-Alt-L",mac:"Ctrl-Alt-L"},readOnly:!0},{name:"alignCursors",exec:function(e){e.alignCursors()},bindKey:{win:"Ctrl-Alt-A",mac:"Ctrl-Alt-A"},scrollIntoView:"cursor"},{name:"findAll",exec:function(e){e.findAll()},bindKey:{win:"Ctrl-Alt-K",mac:"Ctrl-Alt-G"},scrollIntoView:"cursor",readOnly:!0}],t.multiSelectCommands=[{name:"singleSelection",bindKey:"esc",exec:function(e){e.exitMultiSelectMode()},scrollIntoView:"cursor",readOnly:!0,isAvailable:function(e){return e&&e.inMultiSelectMode}}];var r=e("../keyboard/hash_handler").HashHandler;t.keyboardHandler=new r(t.multiSelectCommands)}),define("ace/multi_select",["require","exports","module","ace/range_list","ace/range","ace/selection","ace/mouse/multi_select_handler","ace/lib/event","ace/lib/lang","ace/commands/multi_select_commands","ace/search","ace/edit_session","ace/editor","ace/config"],function(e,t,n){function h(e,t,n){return c.$options.wrap=!0,c.$options.needle=t,c.$options.backwards=n==-1,c.find(e)}function v(e,t){return e.row==t.row&&e.column==t.column}function m(e){if(e.$multiselectOnSessionChange)return;e.$onAddRange=e.$onAddRange.bind(e),e.$onRemoveRange=e.$onRemoveRange.bind(e),e.$onMultiSelect=e.$onMultiSelect.bind(e),e.$onSingleSelect=e.$onSingleSelect.bind(e),e.$multiselectOnSessionChange=t.onSessionChange.bind(e),e.$checkMultiselectChange=e.$checkMultiselectChange.bind(e),e.$multiselectOnSessionChange(e),e.on("changeSession",e.$multiselectOnSessionChange),e.on("mousedown",o),e.commands.addCommands(f.defaultCommands),g(e)}function g(e){function r(t){n&&(e.renderer.setMouseCursor(""),n=!1)}var t=e.textInput.getElement(),n=!1;u.addListener(t,"keydown",function(t){var i=t.keyCode==18&&!(t.ctrlKey||t.shiftKey||t.metaKey);e.$blockSelectEnabled&&i?n||(e.renderer.setMouseCursor("crosshair"),n=!0):n&&r()}),u.addListener(t,"keyup",r),u.addListener(t,"blur",r)}var r=e("./range_list").RangeList,i=e("./range").Range,s=e("./selection").Selection,o=e("./mouse/multi_select_handler").onMouseDown,u=e("./lib/event"),a=e("./lib/lang"),f=e("./commands/multi_select_commands");t.commands=f.defaultCommands.concat(f.multiSelectCommands);var l=e("./search").Search,c=new l,p=e("./edit_session").EditSession;(function(){this.getSelectionMarkers=function(){return this.$selectionMarkers}}).call(p.prototype),function(){this.ranges=null,this.rangeList=null,this.addRange=function(e,t){if(!e)return;if(!this.inMultiSelectMode&&this.rangeCount===0){var n=this.toOrientedRange();this.rangeList.add(n),this.rangeList.add(e);if(this.rangeList.ranges.length!=2)return this.rangeList.removeAll(),t||this.fromOrientedRange(e);this.rangeList.removeAll(),this.rangeList.add(n),this.$onAddRange(n)}e.cursor||(e.cursor=e.end);var r=this.rangeList.add(e);return this.$onAddRange(e),r.length&&this.$onRemoveRange(r),this.rangeCount>1&&!this.inMultiSelectMode&&(this._signal("multiSelect"),this.inMultiSelectMode=!0,this.session.$undoSelect=!1,this.rangeList.attach(this.session)),t||this.fromOrientedRange(e)},this.toSingleRange=function(e){e=e||this.ranges[0];var t=this.rangeList.removeAll();t.length&&this.$onRemoveRange(t),e&&this.fromOrientedRange(e)},this.substractPoint=function(e){var t=this.rangeList.substractPoint(e);if(t)return this.$onRemoveRange(t),t[0]},this.mergeOverlappingRanges=function(){var e=this.rangeList.merge();e.length?this.$onRemoveRange(e):this.ranges[0]&&this.fromOrientedRange(this.ranges[0])},this.$onAddRange=function(e){this.rangeCount=this.rangeList.ranges.length,this.ranges.unshift(e),this._signal("addRange",{range:e})},this.$onRemoveRange=function(e){this.rangeCount=this.rangeList.ranges.length;if(this.rangeCount==1&&this.inMultiSelectMode){var t=this.rangeList.ranges.pop();e.push(t),this.rangeCount=0}for(var n=e.length;n--;){var r=this.ranges.indexOf(e[n]);this.ranges.splice(r,1)}this._signal("removeRange",{ranges:e}),this.rangeCount===0&&this.inMultiSelectMode&&(this.inMultiSelectMode=!1,this._signal("singleSelect"),this.session.$undoSelect=!0,this.rangeList.detach(this.session)),t=t||this.ranges[0],t&&!t.isEqual(this.getRange())&&this.fromOrientedRange(t)},this.$initRangeList=function(){if(this.rangeList)return;this.rangeList=new r,this.ranges=[],this.rangeCount=0},this.getAllRanges=function(){return this.rangeCount?this.rangeList.ranges.concat():[this.getRange()]},this.splitIntoLines=function(){if(this.rangeCount>1){var e=this.rangeList.ranges,t=e[e.length-1],n=i.fromPoints(e[0].start,t.end);this.toSingleRange(),this.setSelectionRange(n,t.cursor==t.start)}else{var n=this.getRange(),r=this.isBackwards(),s=n.start.row,o=n.end.row;if(s==o){if(r)var u=n.end,a=n.start;else var u=n.start,a=n.end;this.addRange(i.fromPoints(a,a)),this.addRange(i.fromPoints(u,u));return}var f=[],l=this.getLineRange(s,!0);l.start.column=n.start.column,f.push(l);for(var c=s+1;c<o;c++)f.push(this.getLineRange(c,!0));l=this.getLineRange(o,!0),l.end.column=n.end.column,f.push(l),f.forEach(this.addRange,this)}},this.toggleBlockSelection=function(){if(this.rangeCount>1){var e=this.rangeList.ranges,t=e[e.length-1],n=i.fromPoints(e[0].start,t.end);this.toSingleRange(),this.setSelectionRange(n,t.cursor==t.start)}else{var r=this.session.documentToScreenPosition(this.selectionLead),s=this.session.documentToScreenPosition(this.selectionAnchor),o=this.rectangularRangeBlock(r,s);o.forEach(this.addRange,this)}},this.rectangularRangeBlock=function(e,t,n){var r=[],s=e.column<t.column;if(s)var o=e.column,u=t.column,a=e.offsetX,f=t.offsetX;else var o=t.column,u=e.column,a=t.offsetX,f=e.offsetX;var l=e.row<t.row;if(l)var c=e.row,h=t.row;else var c=t.row,h=e.row;o<0&&(o=0),c<0&&(c=0),c==h&&(n=!0);for(var p=c;p<=h;p++){var d=i.fromPoints(this.session.screenToDocumentPosition(p,o,a),this.session.screenToDocumentPosition(p,u,f));if(d.isEmpty()){if(m&&v(d.end,m))break;var m=d.end}d.cursor=s?d.start:d.end,r.push(d)}l&&r.reverse();if(!n){var g=r.length-1;while(r[g].isEmpty()&&g>0)g--;if(g>0){var y=0;while(r[y].isEmpty())y++}for(var b=g;b>=y;b--)r[b].isEmpty()&&r.splice(b,1)}return r}}.call(s.prototype);var d=e("./editor").Editor;(function(){this.updateSelectionMarkers=function(){this.renderer.updateCursor(),this.renderer.updateBackMarkers()},this.addSelectionMarker=function(e){e.cursor||(e.cursor=e.end);var t=this.getSelectionStyle();return e.marker=this.session.addMarker(e,"ace_selection",t),this.session.$selectionMarkers.push(e),this.session.selectionMarkerCount=this.session.$selectionMarkers.length,e},this.removeSelectionMarker=function(e){if(!e.marker)return;this.session.removeMarker(e.marker);var t=this.session.$selectionMarkers.indexOf(e);t!=-1&&this.session.$selectionMarkers.splice(t,1),this.session.selectionMarkerCount=this.session.$selectionMarkers.length},this.removeSelectionMarkers=function(e){var t=this.session.$selectionMarkers;for(var n=e.length;n--;){var r=e[n];if(!r.marker)continue;this.session.removeMarker(r.marker);var i=t.indexOf(r);i!=-1&&t.splice(i,1)}this.session.selectionMarkerCount=t.length},this.$onAddRange=function(e){this.addSelectionMarker(e.range),this.renderer.updateCursor(),this.renderer.updateBackMarkers()},this.$onRemoveRange=function(e){this.removeSelectionMarkers(e.ranges),this.renderer.updateCursor(),this.renderer.updateBackMarkers()},this.$onMultiSelect=function(e){if(this.inMultiSelectMode)return;this.inMultiSelectMode=!0,this.setStyle("ace_multiselect"),this.keyBinding.addKeyboardHandler(f.keyboardHandler),this.commands.setDefaultHandler("exec",this.$onMultiSelectExec),this.renderer.updateCursor(),this.renderer.updateBackMarkers()},this.$onSingleSelect=function(e){if(this.session.multiSelect.inVirtualMode)return;this.inMultiSelectMode=!1,this.unsetStyle("ace_multiselect"),this.keyBinding.removeKeyboardHandler(f.keyboardHandler),this.commands.removeDefaultHandler("exec",this.$onMultiSelectExec),this.renderer.updateCursor(),this.renderer.updateBackMarkers(),this._emit("changeSelection")},this.$onMultiSelectExec=function(e){var t=e.command,n=e.editor;if(!n.multiSelect)return;if(!t.multiSelectAction){var r=t.exec(n,e.args||{});n.multiSelect.addRange(n.multiSelect.toOrientedRange()),n.multiSelect.mergeOverlappingRanges()}else t.multiSelectAction=="forEach"?r=n.forEachSelection(t,e.args):t.multiSelectAction=="forEachLine"?r=n.forEachSelection(t,e.args,!0):t.multiSelectAction=="single"?(n.exitMultiSelectMode(),r=t.exec(n,e.args||{})):r=t.multiSelectAction(n,e.args||{});return r},this.forEachSelection=function(e,t,n){if(this.inVirtualSelectionMode)return;var r=n&&n.keepOrder,i=n==1||n&&n.$byLines,o=this.session,u=this.selection,a=u.rangeList,f=(r?u:a).ranges,l;if(!f.length)return e.exec?e.exec(this,t||{}):e(this,t||{});var c=u._eventRegistry;u._eventRegistry={};var h=new s(o);this.inVirtualSelectionMode=!0;for(var p=f.length;p--;){if(i)while(p>0&&f[p].start.row==f[p-1].end.row)p--;h.fromOrientedRange(f[p]),h.index=p,this.selection=o.selection=h;var d=e.exec?e.exec(this,t||{}):e(this,t||{});!l&&d!==undefined&&(l=d),h.toOrientedRange(f[p])}h.detach(),this.selection=o.selection=u,this.inVirtualSelectionMode=!1,u._eventRegistry=c,u.mergeOverlappingRanges();var v=this.renderer.$scrollAnimation;return this.onCursorChange(),this.onSelectionChange(),v&&v.from==v.to&&this.renderer.animateScrolling(v.from),l},this.exitMultiSelectMode=function(){if(!this.inMultiSelectMode||this.inVirtualSelectionMode)return;this.multiSelect.toSingleRange()},this.getSelectedText=function(){var e="";if(this.inMultiSelectMode&&!this.inVirtualSelectionMode){var t=this.multiSelect.rangeList.ranges,n=[];for(var r=0;r<t.length;r++)n.push(this.session.getTextRange(t[r]));var i=this.session.getDocument().getNewLineCharacter();e=n.join(i),e.length==(n.length-1)*i.length&&(e="")}else this.selection.isEmpty()||(e=this.session.getTextRange(this.getSelectionRange()));return e},this.$checkMultiselectChange=function(e,t){if(this.inMultiSelectMode&&!this.inVirtualSelectionMode){var n=this.multiSelect.ranges[0];if(this.multiSelect.isEmpty()&&t==this.multiSelect.anchor)return;var r=t==this.multiSelect.anchor?n.cursor==n.start?n.end:n.start:n.cursor;(r.row!=t.row||this.session.$clipPositionToDocument(r.row,r.column).column!=t.column)&&this.multiSelect.toSingleRange(this.multiSelect.toOrientedRange())}},this.findAll=function(e,t,n){t=t||{},t.needle=e||t.needle;if(t.needle==undefined){var r=this.selection.isEmpty()?this.selection.getWordRange():this.selection.getRange();t.needle=this.session.getTextRange(r)}this.$search.set(t);var i=this.$search.findAll(this.session);if(!i.length)return 0;this.$blockScrolling+=1;var s=this.multiSelect;n||s.toSingleRange(i[0]);for(var o=i.length;o--;)s.addRange(i[o],!0);return r&&s.rangeList.rangeAtPoint(r.start)&&s.addRange(r,!0),this.$blockScrolling-=1,i.length},this.selectMoreLines=function(e,t){var n=this.selection.toOrientedRange(),r=n.cursor==n.end,s=this.session.documentToScreenPosition(n.cursor);this.selection.$desiredColumn&&(s.column=this.selection.$desiredColumn);var o=this.session.screenToDocumentPosition(s.row+e,s.column);if(!n.isEmpty())var u=this.session.documentToScreenPosition(r?n.end:n.start),a=this.session.screenToDocumentPosition(u.row+e,u.column);else var a=o;if(r){var f=i.fromPoints(o,a);f.cursor=f.start}else{var f=i.fromPoints(a,o);f.cursor=f.end}f.desiredColumn=s.column;if(!this.selection.inMultiSelectMode)this.selection.addRange(n);else if(t)var l=n.cursor;this.selection.addRange(f),l&&this.selection.substractPoint(l)},this.transposeSelections=function(e){var t=this.session,n=t.multiSelect,r=n.ranges;for(var i=r.length;i--;){var s=r[i];if(s.isEmpty()){var o=t.getWordRange(s.start.row,s.start.column);s.start.row=o.start.row,s.start.column=o.start.column,s.end.row=o.end.row,s.end.column=o.end.column}}n.mergeOverlappingRanges();var u=[];for(var i=r.length;i--;){var s=r[i];u.unshift(t.getTextRange(s))}e<0?u.unshift(u.pop()):u.push(u.shift());for(var i=r.length;i--;){var s=r[i],o=s.clone();t.replace(s,u[i]),s.start.row=o.start.row,s.start.column=o.start.column}},this.selectMore=function(e,t,n){var r=this.session,i=r.multiSelect,s=i.toOrientedRange();if(s.isEmpty()){s=r.getWordRange(s.start.row,s.start.column),s.cursor=e==-1?s.start:s.end,this.multiSelect.addRange(s);if(n)return}var o=r.getTextRange(s),u=h(r,o,e);u&&(u.cursor=e==-1?u.start:u.end,this.$blockScrolling+=1,this.session.unfold(u),this.multiSelect.addRange(u),this.$blockScrolling-=1,this.renderer.scrollCursorIntoView(null,.5)),t&&this.multiSelect.substractPoint(s.cursor)},this.alignCursors=function(){var e=this.session,t=e.multiSelect,n=t.ranges,r=-1,s=n.filter(function(e){if(e.cursor.row==r)return!0;r=e.cursor.row});if(!n.length||s.length==n.length-1){var o=this.selection.getRange(),u=o.start.row,f=o.end.row,l=u==f;if(l){var c=this.session.getLength(),h;do h=this.session.getLine(f);while(/[=:]/.test(h)&&++f<c);do h=this.session.getLine(u);while(/[=:]/.test(h)&&--u>0);u<0&&(u=0),f>=c&&(f=c-1)}var p=this.session.removeFullLines(u,f);p=this.$reAlignText(p,l),this.session.insert({row:u,column:0},p.join("\n")+"\n"),l||(o.start.column=0,o.end.column=p[p.length-1].length),this.selection.setRange(o)}else{s.forEach(function(e){t.substractPoint(e.cursor)});var d=0,v=Infinity,m=n.map(function(t){var n=t.cursor,r=e.getLine(n.row),i=r.substr(n.column).search(/\S/g);return i==-1&&(i=0),n.column>d&&(d=n.column),i<v&&(v=i),i});n.forEach(function(t,n){var r=t.cursor,s=d-r.column,o=m[n]-v;s>o?e.insert(r,a.stringRepeat(" ",s-o)):e.remove(new i(r.row,r.column,r.row,r.column-s+o)),t.start.column=t.end.column=d,t.start.row=t.end.row=r.row,t.cursor=t.end}),t.fromOrientedRange(n[0]),this.renderer.updateCursor(),this.renderer.updateBackMarkers()}},this.$reAlignText=function(e,t){function u(e){return a.stringRepeat(" ",e)}function f(e){return e[2]?u(i)+e[2]+u(s-e[2].length+o)+e[4].replace(/^([=:])\s+/,"$1 "):e[0]}function l(e){return e[2]?u(i+s-e[2].length)+e[2]+u(o," ")+e[4].replace(/^([=:])\s+/,"$1 "):e[0]}function c(e){return e[2]?u(i)+e[2]+u(o)+e[4].replace(/^([=:])\s+/,"$1 "):e[0]}var n=!0,r=!0,i,s,o;return e.map(function(e){var t=e.match(/(\s*)(.*?)(\s*)([=:].*)/);return t?i==null?(i=t[1].length,s=t[2].length,o=t[3].length,t):(i+s+o!=t[1].length+t[2].length+t[3].length&&(r=!1),i!=t[1].length&&(n=!1),i>t[1].length&&(i=t[1].length),s<t[2].length&&(s=t[2].length),o>t[3].length&&(o=t[3].length),t):[e]}).map(t?f:n?r?l:f:c)}}).call(d.prototype),t.onSessionChange=function(e){var t=e.session;t&&!t.multiSelect&&(t.$selectionMarkers=[],t.selection.$initRangeList(),t.multiSelect=t.selection),this.multiSelect=t&&t.multiSelect;var n=e.oldSession;n&&(n.multiSelect.off("addRange",this.$onAddRange),n.multiSelect.off("removeRange",this.$onRemoveRange),n.multiSelect.off("multiSelect",this.$onMultiSelect),n.multiSelect.off("singleSelect",this.$onSingleSelect),n.multiSelect.lead.off("change",this.$checkMultiselectChange),n.multiSelect.anchor.off("change",this.$checkMultiselectChange)),t&&(t.multiSelect.on("addRange",this.$onAddRange),t.multiSelect.on("removeRange",this.$onRemoveRange),t.multiSelect.on("multiSelect",this.$onMultiSelect),t.multiSelect.on("singleSelect",this.$onSingleSelect),t.multiSelect.lead.on("change",this.$checkMultiselectChange),t.multiSelect.anchor.on("change",this.$checkMultiselectChange)),t&&this.inMultiSelectMode!=t.selection.inMultiSelectMode&&(t.selection.inMultiSelectMode?this.$onMultiSelect():this.$onSingleSelect())},t.MultiSelect=m,e("./config").defineOptions(d.prototype,"editor",{enableMultiselect:{set:function(e){m(this),e?(this.on("changeSession",this.$multiselectOnSessionChange),this.on("mousedown",o)):(this.off("changeSession",this.$multiselectOnSessionChange),this.off("mousedown",o))},value:!0},enableBlockSelect:{set:function(e){this.$blockSelectEnabled=e},value:!0}})}),define("ace/mode/folding/fold_mode",["require","exports","module","ace/range"],function(e,t,n){"use strict";var r=e("../../range").Range,i=t.FoldMode=function(){};(function(){this.foldingStartMarker=null,this.foldingStopMarker=null,this.getFoldWidget=function(e,t,n){var r=e.getLine(n);return this.foldingStartMarker.test(r)?"start":t=="markbeginend"&&this.foldingStopMarker&&this.foldingStopMarker.test(r)?"end":""},this.getFoldWidgetRange=function(e,t,n){return null},this.indentationBlock=function(e,t,n){var i=/\S/,s=e.getLine(t),o=s.search(i);if(o==-1)return;var u=n||s.length,a=e.getLength(),f=t,l=t;while(++t<a){var c=e.getLine(t).search(i);if(c==-1)continue;if(c<=o)break;l=t}if(l>f){var h=e.getLine(l).length;return new r(f,u,l,h)}},this.openingBracketBlock=function(e,t,n,i,s){var o={row:n,column:i+1},u=e.$findClosingBracket(t,o,s);if(!u)return;var a=e.foldWidgets[u.row];return a==null&&(a=e.getFoldWidget(u.row)),a=="start"&&u.row>o.row&&(u.row--,u.column=e.getLine(u.row).length),r.fromPoints(o,u)},this.closingBracketBlock=function(e,t,n,i,s){var o={row:n,column:i},u=e.$findOpeningBracket(t,o);if(!u)return;return u.column++,o.column--,r.fromPoints(u,o)}}).call(i.prototype)}),define("ace/theme/textmate",["require","exports","module","ace/lib/dom"],function(e,t,n){"use strict";t.isDark=!1,t.cssClass="ace-tm",t.cssText='.ace-tm .ace_gutter {background: #f0f0f0;color: #333;}.ace-tm .ace_print-margin {width: 1px;background: #e8e8e8;}.ace-tm .ace_fold {background-color: #6B72E6;}.ace-tm {background-color: #FFFFFF;color: black;}.ace-tm .ace_cursor {color: black;}.ace-tm .ace_invisible {color: rgb(191, 191, 191);}.ace-tm .ace_storage,.ace-tm .ace_keyword {color: blue;}.ace-tm .ace_constant {color: rgb(197, 6, 11);}.ace-tm .ace_constant.ace_buildin {color: rgb(88, 72, 246);}.ace-tm .ace_constant.ace_language {color: rgb(88, 92, 246);}.ace-tm .ace_constant.ace_library {color: rgb(6, 150, 14);}.ace-tm .ace_invalid {background-color: rgba(255, 0, 0, 0.1);color: red;}.ace-tm .ace_support.ace_function {color: rgb(60, 76, 114);}.ace-tm .ace_support.ace_constant {color: rgb(6, 150, 14);}.ace-tm .ace_support.ace_type,.ace-tm .ace_support.ace_class {color: rgb(109, 121, 222);}.ace-tm .ace_keyword.ace_operator {color: rgb(104, 118, 135);}.ace-tm .ace_string {color: rgb(3, 106, 7);}.ace-tm .ace_comment {color: rgb(76, 136, 107);}.ace-tm .ace_comment.ace_doc {color: rgb(0, 102, 255);}.ace-tm .ace_comment.ace_doc.ace_tag {color: rgb(128, 159, 191);}.ace-tm .ace_constant.ace_numeric {color: rgb(0, 0, 205);}.ace-tm .ace_variable {color: rgb(49, 132, 149);}.ace-tm .ace_xml-pe {color: rgb(104, 104, 91);}.ace-tm .ace_entity.ace_name.ace_function {color: #0000A2;}.ace-tm .ace_heading {color: rgb(12, 7, 255);}.ace-tm .ace_list {color:rgb(185, 6, 144);}.ace-tm .ace_meta.ace_tag {color:rgb(0, 22, 142);}.ace-tm .ace_string.ace_regex {color: rgb(255, 0, 0)}.ace-tm .ace_marker-layer .ace_selection {background: rgb(181, 213, 255);}.ace-tm.ace_multiselect .ace_selection.ace_start {box-shadow: 0 0 3px 0px white;}.ace-tm .ace_marker-layer .ace_step {background: rgb(252, 255, 0);}.ace-tm .ace_marker-layer .ace_stack {background: rgb(164, 229, 101);}.ace-tm .ace_marker-layer .ace_bracket {margin: -1px 0 0 -1px;border: 1px solid rgb(192, 192, 192);}.ace-tm .ace_marker-layer .ace_active-line {background: rgba(0, 0, 0, 0.07);}.ace-tm .ace_gutter-active-line {background-color : #dcdcdc;}.ace-tm .ace_marker-layer .ace_selected-word {background: rgb(250, 250, 255);border: 1px solid rgb(200, 200, 250);}.ace-tm .ace_indent-guide {background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAE0lEQVQImWP4////f4bLly//BwAmVgd1/w11/gAAAABJRU5ErkJggg==") right repeat-y;}';var r=e("../lib/dom");r.importCssString(t.cssText,t.cssClass)}),define("ace/line_widgets",["require","exports","module","ace/lib/oop","ace/lib/dom","ace/range"],function(e,t,n){"use strict";function o(e){this.session=e,this.session.widgetManager=this,this.session.getRowLength=this.getRowLength,this.session.$getWidgetScreenLength=this.$getWidgetScreenLength,this.updateOnChange=this.updateOnChange.bind(this),this.renderWidgets=this.renderWidgets.bind(this),this.measureWidgets=this.measureWidgets.bind(this),this.session._changedWidgets=[],this.$onChangeEditor=this.$onChangeEditor.bind(this),this.session.on("change",this.updateOnChange),this.session.on("changeFold",this.updateOnFold),this.session.on("changeEditor",this.$onChangeEditor)}var r=e("./lib/oop"),i=e("./lib/dom"),s=e("./range").Range;(function(){this.getRowLength=function(e){var t;return this.lineWidgets?t=this.lineWidgets[e]&&this.lineWidgets[e].rowCount||0:t=0,!this.$useWrapMode||!this.$wrapData[e]?1+t:this.$wrapData[e].length+1+t},this.$getWidgetScreenLength=function(){var e=0;return this.lineWidgets.forEach(function(t){t&&t.rowCount&&!t.hidden&&(e+=t.rowCount)}),e},this.$onChangeEditor=function(e){this.attach(e.editor)},this.attach=function(e){e&&e.widgetManager&&e.widgetManager!=this&&e.widgetManager.detach();if(this.editor==e)return;this.detach(),this.editor=e,e&&(e.widgetManager=this,e.renderer.on("beforeRender",this.measureWidgets),e.renderer.on("afterRender",this.renderWidgets))},this.detach=function(e){var t=this.editor;if(!t)return;this.editor=null,t.widgetManager=null,t.renderer.off("beforeRender",this.measureWidgets),t.renderer.off("afterRender",this.renderWidgets);var n=this.session.lineWidgets;n&&n.forEach(function(e){e&&e.el&&e.el.parentNode&&(e._inDocument=!1,e.el.parentNode.removeChild(e.el))})},this.updateOnFold=function(e,t){var n=t.lineWidgets;if(!n||!e.action)return;var r=e.data,i=r.start.row,s=r.end.row,o=e.action=="add";for(var u=i+1;u<s;u++)n[u]&&(n[u].hidden=o);n[s]&&(o?n[i]?n[s].hidden=o:n[i]=n[s]:(n[i]==n[s]&&(n[i]=undefined),n[s].hidden=o))},this.updateOnChange=function(e){var t=this.session.lineWidgets;if(!t)return;var n=e.start.row,r=e.end.row-n;if(r!==0)if(e.action=="remove"){var i=t.splice(n+1,r);i.forEach(function(e){e&&this.removeLineWidget(e)},this),this.$updateRows()}else{var s=new Array(r);s.unshift(n,0),t.splice.apply(t,s),this.$updateRows()}},this.$updateRows=function(){var e=this.session.lineWidgets;if(!e)return;var t=!0;e.forEach(function(e,n){if(e){t=!1,e.row=n;while(e.$oldWidget)e.$oldWidget.row=n,e=e.$oldWidget}}),t&&(this.session.lineWidgets=null)},this.addLineWidget=function(e){this.session.lineWidgets||(this.session.lineWidgets=new Array(this.session.getLength()));var t=this.session.lineWidgets[e.row];t&&(e.$oldWidget=t,t.el&&t.el.parentNode&&(t.el.parentNode.removeChild(t.el),t._inDocument=!1)),this.session.lineWidgets[e.row]=e,e.session=this.session;var n=this.editor.renderer;e.html&&!e.el&&(e.el=i.createElement("div"),e.el.innerHTML=e.html),e.el&&(i.addCssClass(e.el,"ace_lineWidgetContainer"),e.el.style.position="absolute",e.el.style.zIndex=5,n.container.appendChild(e.el),e._inDocument=!0),e.coverGutter||(e.el.style.zIndex=3),e.pixelHeight==null&&(e.pixelHeight=e.el.offsetHeight),e.rowCount==null&&(e.rowCount=e.pixelHeight/n.layerConfig.lineHeight);var r=this.session.getFoldAt(e.row,0);e.$fold=r;if(r){var s=this.session.lineWidgets;e.row==r.end.row&&!s[r.start.row]?s[r.start.row]=e:e.hidden=!0}return this.session._emit("changeFold",{data:{start:{row:e.row}}}),this.$updateRows(),this.renderWidgets(null,n),this.onWidgetChanged(e),e},this.removeLineWidget=function(e){e._inDocument=!1,e.session=null,e.el&&e.el.parentNode&&e.el.parentNode.removeChild(e.el);if(e.editor&&e.editor.destroy)try{e.editor.destroy()}catch(t){}if(this.session.lineWidgets){var n=this.session.lineWidgets[e.row];if(n==e)this.session.lineWidgets[e.row]=e.$oldWidget,e.$oldWidget&&this.onWidgetChanged(e.$oldWidget);else while(n){if(n.$oldWidget==e){n.$oldWidget=e.$oldWidget;break}n=n.$oldWidget}}this.session._emit("changeFold",{data:{start:{row:e.row}}}),this.$updateRows()},this.getWidgetsAtRow=function(e){var t=this.session.lineWidgets,n=t&&t[e],r=[];while(n)r.push(n),n=n.$oldWidget;return r},this.onWidgetChanged=function(e){this.session._changedWidgets.push(e),this.editor&&this.editor.renderer.updateFull()},this.measureWidgets=function(e,t){var n=this.session._changedWidgets,r=t.layerConfig;if(!n||!n.length)return;var i=Infinity;for(var s=0;s<n.length;s++){var o=n[s];if(!o||!o.el)continue;if(o.session!=this.session)continue;if(!o._inDocument){if(this.session.lineWidgets[o.row]!=o)continue;o._inDocument=!0,t.container.appendChild(o.el)}o.h=o.el.offsetHeight,o.fixedWidth||(o.w=o.el.offsetWidth,o.screenWidth=Math.ceil(o.w/r.characterWidth));var u=o.h/r.lineHeight;o.coverLine&&(u-=this.session.getRowLineCount(o.row),u<0&&(u=0)),o.rowCount!=u&&(o.rowCount=u,o.row<i&&(i=o.row))}i!=Infinity&&(this.session._emit("changeFold",{data:{start:{row:i}}}),this.session.lineWidgetWidth=null),this.session._changedWidgets=[]},this.renderWidgets=function(e,t){var n=t.layerConfig,r=this.session.lineWidgets;if(!r)return;var i=Math.min(this.firstRow,n.firstRow),s=Math.max(this.lastRow,n.lastRow,r.length);while(i>0&&!r[i])i--;this.firstRow=n.firstRow,this.lastRow=n.lastRow,t.$cursorLayer.config=n;for(var o=i;o<=s;o++){var u=r[o];if(!u||!u.el)continue;if(u.hidden){u.el.style.top=-100-(u.pixelHeight||0)+"px";continue}u._inDocument||(u._inDocument=!0,t.container.appendChild(u.el));var a=t.$cursorLayer.getPixelPosition({row:o,column:0},!0).top;u.coverLine||(a+=n.lineHeight*this.session.getRowLineCount(u.row)),u.el.style.top=a-n.offset+"px";var f=u.coverGutter?0:t.gutterWidth;u.fixedWidth||(f-=t.scrollLeft),u.el.style.left=f+"px",u.fullWidth&&u.screenWidth&&(u.el.style.minWidth=n.width+2*n.padding+"px"),u.fixedWidth?u.el.style.right=t.scrollBar.getWidth()+"px":u.el.style.right=""}}}).call(o.prototype),t.LineWidgets=o}),define("ace/ext/error_marker",["require","exports","module","ace/line_widgets","ace/lib/dom","ace/range"],function(e,t,n){"use strict";function o(e,t,n){var r=0,i=e.length-1;while(r<=i){var s=r+i>>1,o=n(t,e[s]);if(o>0)r=s+1;else{if(!(o<0))return s;i=s-1}}return-(r+1)}function u(e,t,n){var r=e.getAnnotations().sort(s.comparePoints);if(!r.length)return;var i=o(r,{row:t,column:-1},s.comparePoints);i<0&&(i=-i-1),i>=r.length?i=n>0?0:r.length-1:i===0&&n<0&&(i=r.length-1);var u=r[i];if(!u||!n)return;if(u.row===t){do u=r[i+=n];while(u&&u.row===t);if(!u)return r.slice()}var a=[];t=u.row;do a[n<0?"unshift":"push"](u),u=r[i+=n];while(u&&u.row==t);return a.length&&a}var r=e("../line_widgets").LineWidgets,i=e("../lib/dom"),s=e("../range").Range;t.showErrorMarker=function(e,t){var n=e.session;n.widgetManager||(n.widgetManager=new r(n),n.widgetManager.attach(e));var s=e.getCursorPosition(),o=s.row,a=n.widgetManager.getWidgetsAtRow(o).filter(function(e){return e.type=="errorMarker"})[0];a?a.destroy():o-=t;var f=u(n,o,t),l;if(f){var c=f[0];s.column=(c.pos&&typeof c.column!="number"?c.pos.sc:c.column)||0,s.row=c.row,l=e.renderer.$gutterLayer.$annotations[s.row]}else{if(a)return;l={text:["Looks good!"],className:"ace_ok"}}e.session.unfold(s.row),e.selection.moveToPosition(s);var h={row:s.row,fixedWidth:!0,coverGutter:!0,el:i.createElement("div"),type:"errorMarker"},p=h.el.appendChild(i.createElement("div")),d=h.el.appendChild(i.createElement("div"));d.className="error_widget_arrow "+l.className;var v=e.renderer.$cursorLayer.getPixelPosition(s).left;d.style.left=v+e.renderer.gutterWidth-5+"px",h.el.className="error_widget_wrapper",p.className="error_widget "+l.className,p.innerHTML=l.text.join("<br>"),p.appendChild(i.createElement("div"));var m=function(e,t,n){if(t===0&&(n==="esc"||n==="return"))return h.destroy(),{command:"null"}};h.destroy=function(){if(e.$mouseHandler.isMousePressed)return;e.keyBinding.removeKeyboardHandler(m),n.widgetManager.removeLineWidget(h),e.off("changeSelection",h.destroy),e.off("changeSession",h.destroy),e.off("mouseup",h.destroy),e.off("change",h.destroy)},e.keyBinding.addKeyboardHandler(m),e.on("changeSelection",h.destroy),e.on("changeSession",h.destroy),e.on("mouseup",h.destroy),e.on("change",h.destroy),e.session.widgetManager.addLineWidget(h),h.el.onmousedown=e.focus.bind(e),e.renderer.scrollCursorIntoView(null,.5,{bottom:h.el.offsetHeight})},i.importCssString(" .error_widget_wrapper { background: inherit; color: inherit; border:none } .error_widget { border-top: solid 2px; border-bottom: solid 2px; margin: 5px 0; padding: 10px 40px; white-space: pre-wrap; } .error_widget.ace_error, .error_widget_arrow.ace_error{ border-color: #ff5a5a } .error_widget.ace_warning, .error_widget_arrow.ace_warning{ border-color: #F1D817 } .error_widget.ace_info, .error_widget_arrow.ace_info{ border-color: #5a5a5a } .error_widget.ace_ok, .error_widget_arrow.ace_ok{ border-color: #5aaa5a } .error_widget_arrow { position: absolute; border: solid 5px; border-top-color: transparent!important; border-right-color: transparent!important; border-left-color: transparent!important; top: -5px; }","")}),define("ace/ace",["require","exports","module","ace/lib/fixoldbrowsers","ace/lib/dom","ace/lib/event","ace/editor","ace/edit_session","ace/undomanager","ace/virtual_renderer","ace/worker/worker_client","ace/keyboard/hash_handler","ace/placeholder","ace/multi_select","ace/mode/folding/fold_mode","ace/theme/textmate","ace/ext/error_marker","ace/config"],function(e,t,n){"use strict";e("./lib/fixoldbrowsers");var r=e("./lib/dom"),i=e("./lib/event"),s=e("./editor").Editor,o=e("./edit_session").EditSession,u=e("./undomanager").UndoManager,a=e("./virtual_renderer").VirtualRenderer;e("./worker/worker_client"),e("./keyboard/hash_handler"),e("./placeholder"),e("./multi_select"),e("./mode/folding/fold_mode"),e("./theme/textmate"),e("./ext/error_marker"),t.config=e("./config"),t.require=e,typeof define=="function"&&(t.define=define),t.edit=function(e){if(typeof e=="string"){var n=e;e=document.getElementById(n);if(!e)throw new Error("ace.edit can't find div #"+n)}if(e&&e.env&&e.env.editor instanceof s)return e.env.editor;var o="";if(e&&/input|textarea/i.test(e.tagName)){var u=e;o=u.value,e=r.createElement("pre"),u.parentNode.replaceChild(e,u)}else e&&(o=r.getInnerText(e),e.innerHTML="");var f=t.createEditSession(o),l=new s(new a(e));l.setSession(f);var c={document:f,editor:l,onResize:l.resize.bind(l,null)};return u&&(c.textarea=u),i.addListener(window,"resize",c.onResize),l.on("destroy",function(){i.removeListener(window,"resize",c.onResize),c.editor.container.env=null}),l.container.env=l.env=c,l},t.createEditSession=function(e,t){var n=new o(e,t);return n.setUndoManager(new u),n},t.EditSession=o,t.UndoManager=u,t.version="1.2.9"}); (function() { window.require(["ace/ace"], function(a) { if (a) { a.config.init(true); a.define = window.define; } if (!window.ace) window.ace = a; for (var key in a) if (a.hasOwnProperty(key)) window.ace[key] = a[key]; }); })();
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-adminservice/src/main/java/com/ctrip/framework/apollo/adminservice/ServletInitializer.java
package com.ctrip.framework.apollo.adminservice; import org.springframework.boot.builder.SpringApplicationBuilder; import org.springframework.boot.web.servlet.support.SpringBootServletInitializer; /** * Entry point for traditional web app * * @author Jason Song([email protected]) */ public class ServletInitializer extends SpringBootServletInitializer { @Override protected SpringApplicationBuilder configure(SpringApplicationBuilder application) { return application.sources(AdminServiceApplication.class); } }
package com.ctrip.framework.apollo.adminservice; import org.springframework.boot.builder.SpringApplicationBuilder; import org.springframework.boot.web.servlet.support.SpringBootServletInitializer; /** * Entry point for traditional web app * * @author Jason Song([email protected]) */ public class ServletInitializer extends SpringBootServletInitializer { @Override protected SpringApplicationBuilder configure(SpringApplicationBuilder application) { return application.sources(AdminServiceApplication.class); } }
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-portal/src/main/java/com/ctrip/framework/apollo/portal/entity/po/Permission.java
package com.ctrip.framework.apollo.portal.entity.po; import com.ctrip.framework.apollo.common.entity.BaseEntity; import org.hibernate.annotations.SQLDelete; import org.hibernate.annotations.Where; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.Table; /** * @author Jason Song([email protected]) */ @Entity @Table(name = "Permission") @SQLDelete(sql = "Update Permission set isDeleted = 1 where id = ?") @Where(clause = "isDeleted = 0") public class Permission extends BaseEntity { @Column(name = "PermissionType", nullable = false) private String permissionType; @Column(name = "TargetId", nullable = false) private String targetId; public String getPermissionType() { return permissionType; } public void setPermissionType(String permissionType) { this.permissionType = permissionType; } public String getTargetId() { return targetId; } public void setTargetId(String targetId) { this.targetId = targetId; } }
package com.ctrip.framework.apollo.portal.entity.po; import com.ctrip.framework.apollo.common.entity.BaseEntity; import org.hibernate.annotations.SQLDelete; import org.hibernate.annotations.Where; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.Table; /** * @author Jason Song([email protected]) */ @Entity @Table(name = "Permission") @SQLDelete(sql = "Update Permission set isDeleted = 1 where id = ?") @Where(clause = "isDeleted = 0") public class Permission extends BaseEntity { @Column(name = "PermissionType", nullable = false) private String permissionType; @Column(name = "TargetId", nullable = false) private String targetId; public String getPermissionType() { return permissionType; } public void setPermissionType(String permissionType) { this.permissionType = permissionType; } public String getTargetId() { return targetId; } public void setTargetId(String targetId) { this.targetId = targetId; } }
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-portal/src/test/resources/yaml/case1.yaml
root: key1: "someValue" key2: 100 key3: key4: key5: '(%sender%) %message%' key6: '* %sender% %message%' # commented: "xxx" list: - 'item 1' - 'item 2' intList: - 100 - 200 listOfMap: - key: '#mychannel' value: '' - key: '#myprivatechannel' value: 'mypassword' listOfList: - - 'a1' - 'a2' - - 'b1' - 'b2' listOfList2: [ ['a1', 'a2'], ['b1', 'b2'] ]
root: key1: "someValue" key2: 100 key3: key4: key5: '(%sender%) %message%' key6: '* %sender% %message%' # commented: "xxx" list: - 'item 1' - 'item 2' intList: - 100 - 200 listOfMap: - key: '#mychannel' value: '' - key: '#myprivatechannel' value: 'mypassword' listOfList: - - 'a1' - 'a2' - - 'b1' - 'b2' listOfList2: [ ['a1', 'a2'], ['b1', 'b2'] ]
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-portal/src/main/resources/static/vendor/ui-ace/theme-eclipse.js
define("ace/theme/eclipse",["require","exports","module","ace/lib/dom"],function(e,t,n){"use strict";t.isDark=!1,t.cssText='.ace-eclipse .ace_gutter {background: #ebebeb;border-right: 1px solid rgb(159, 159, 159);color: rgb(136, 136, 136);}.ace-eclipse .ace_print-margin {width: 1px;background: #ebebeb;}.ace-eclipse {background-color: #FFFFFF;color: black;}.ace-eclipse .ace_fold {background-color: rgb(60, 76, 114);}.ace-eclipse .ace_cursor {color: black;}.ace-eclipse .ace_storage,.ace-eclipse .ace_keyword,.ace-eclipse .ace_variable {color: rgb(127, 0, 85);}.ace-eclipse .ace_constant.ace_buildin {color: rgb(88, 72, 246);}.ace-eclipse .ace_constant.ace_library {color: rgb(6, 150, 14);}.ace-eclipse .ace_function {color: rgb(60, 76, 114);}.ace-eclipse .ace_string {color: rgb(42, 0, 255);}.ace-eclipse .ace_comment {color: rgb(113, 150, 130);}.ace-eclipse .ace_comment.ace_doc {color: rgb(63, 95, 191);}.ace-eclipse .ace_comment.ace_doc.ace_tag {color: rgb(127, 159, 191);}.ace-eclipse .ace_constant.ace_numeric {color: darkblue;}.ace-eclipse .ace_tag {color: rgb(25, 118, 116);}.ace-eclipse .ace_type {color: rgb(127, 0, 127);}.ace-eclipse .ace_xml-pe {color: rgb(104, 104, 91);}.ace-eclipse .ace_marker-layer .ace_selection {background: rgb(181, 213, 255);}.ace-eclipse .ace_marker-layer .ace_bracket {margin: -1px 0 0 -1px;border: 1px solid rgb(192, 192, 192);}.ace-eclipse .ace_meta.ace_tag {color:rgb(25, 118, 116);}.ace-eclipse .ace_invisible {color: #ddd;}.ace-eclipse .ace_entity.ace_other.ace_attribute-name {color:rgb(127, 0, 127);}.ace-eclipse .ace_marker-layer .ace_step {background: rgb(255, 255, 0);}.ace-eclipse .ace_active-line {background: rgb(232, 242, 254);}.ace-eclipse .ace_gutter-active-line {background-color : #DADADA;}.ace-eclipse .ace_marker-layer .ace_selected-word {border: 1px solid rgb(181, 213, 255);}.ace-eclipse .ace_indent-guide {background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAE0lEQVQImWP4////f4bLly//BwAmVgd1/w11/gAAAABJRU5ErkJggg==") right repeat-y;}',t.cssClass="ace-eclipse";var r=e("../lib/dom");r.importCssString(t.cssText,t.cssClass)})
define("ace/theme/eclipse",["require","exports","module","ace/lib/dom"],function(e,t,n){"use strict";t.isDark=!1,t.cssText='.ace-eclipse .ace_gutter {background: #ebebeb;border-right: 1px solid rgb(159, 159, 159);color: rgb(136, 136, 136);}.ace-eclipse .ace_print-margin {width: 1px;background: #ebebeb;}.ace-eclipse {background-color: #FFFFFF;color: black;}.ace-eclipse .ace_fold {background-color: rgb(60, 76, 114);}.ace-eclipse .ace_cursor {color: black;}.ace-eclipse .ace_storage,.ace-eclipse .ace_keyword,.ace-eclipse .ace_variable {color: rgb(127, 0, 85);}.ace-eclipse .ace_constant.ace_buildin {color: rgb(88, 72, 246);}.ace-eclipse .ace_constant.ace_library {color: rgb(6, 150, 14);}.ace-eclipse .ace_function {color: rgb(60, 76, 114);}.ace-eclipse .ace_string {color: rgb(42, 0, 255);}.ace-eclipse .ace_comment {color: rgb(113, 150, 130);}.ace-eclipse .ace_comment.ace_doc {color: rgb(63, 95, 191);}.ace-eclipse .ace_comment.ace_doc.ace_tag {color: rgb(127, 159, 191);}.ace-eclipse .ace_constant.ace_numeric {color: darkblue;}.ace-eclipse .ace_tag {color: rgb(25, 118, 116);}.ace-eclipse .ace_type {color: rgb(127, 0, 127);}.ace-eclipse .ace_xml-pe {color: rgb(104, 104, 91);}.ace-eclipse .ace_marker-layer .ace_selection {background: rgb(181, 213, 255);}.ace-eclipse .ace_marker-layer .ace_bracket {margin: -1px 0 0 -1px;border: 1px solid rgb(192, 192, 192);}.ace-eclipse .ace_meta.ace_tag {color:rgb(25, 118, 116);}.ace-eclipse .ace_invisible {color: #ddd;}.ace-eclipse .ace_entity.ace_other.ace_attribute-name {color:rgb(127, 0, 127);}.ace-eclipse .ace_marker-layer .ace_step {background: rgb(255, 255, 0);}.ace-eclipse .ace_active-line {background: rgb(232, 242, 254);}.ace-eclipse .ace_gutter-active-line {background-color : #DADADA;}.ace-eclipse .ace_marker-layer .ace_selected-word {border: 1px solid rgb(181, 213, 255);}.ace-eclipse .ace_indent-guide {background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAE0lEQVQImWP4////f4bLly//BwAmVgd1/w11/gAAAABJRU5ErkJggg==") right repeat-y;}',t.cssClass="ace-eclipse";var r=e("../lib/dom");r.importCssString(t.cssText,t.cssClass)})
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-biz/src/test/resources/sql/namespace-branch-test.sql
INSERT INTO `app` ( `AppId`, `Name`, `OrgId`, `OrgName`, `OwnerName`, `OwnerEmail`, `IsDeleted`, `DataChange_CreatedBy`, `DataChange_LastModifiedBy`)VALUES('test', 'test0620-06', 'default', 'default', 'default', 'default', 0, 'default', 'default'); INSERT INTO `cluster` (`ID`, `Name`, `AppId`, `ParentClusterId`, `IsDeleted`, `DataChange_CreatedBy`, `DataChange_LastModifiedBy`) VALUES (1, 'default', 'test', 0, 0, 'default', 'default'); INSERT INTO `cluster` (`Name`, `AppId`, `ParentClusterId`, `IsDeleted`, `DataChange_CreatedBy`, `DataChange_LastModifiedBy`)VALUES('child-cluster', 'test', 1, 0, 'default', 'default'); INSERT INTO `namespace` (`AppId`, `ClusterName`, `NamespaceName`, `IsDeleted`, `DataChange_CreatedBy`, `DataChange_LastModifiedBy`)VALUES('test', 'default', 'application', 0, 'apollo', 'apollo'); INSERT INTO `namespace` (`AppId`, `ClusterName`, `NamespaceName`, `IsDeleted`, `DataChange_CreatedBy`, `DataChange_LastModifiedBy`)VALUES('test', 'child-cluster', 'application', 0, 'apollo', 'apollo');
INSERT INTO `app` ( `AppId`, `Name`, `OrgId`, `OrgName`, `OwnerName`, `OwnerEmail`, `IsDeleted`, `DataChange_CreatedBy`, `DataChange_LastModifiedBy`)VALUES('test', 'test0620-06', 'default', 'default', 'default', 'default', 0, 'default', 'default'); INSERT INTO `cluster` (`ID`, `Name`, `AppId`, `ParentClusterId`, `IsDeleted`, `DataChange_CreatedBy`, `DataChange_LastModifiedBy`) VALUES (1, 'default', 'test', 0, 0, 'default', 'default'); INSERT INTO `cluster` (`Name`, `AppId`, `ParentClusterId`, `IsDeleted`, `DataChange_CreatedBy`, `DataChange_LastModifiedBy`)VALUES('child-cluster', 'test', 1, 0, 'default', 'default'); INSERT INTO `namespace` (`AppId`, `ClusterName`, `NamespaceName`, `IsDeleted`, `DataChange_CreatedBy`, `DataChange_LastModifiedBy`)VALUES('test', 'default', 'application', 0, 'apollo', 'apollo'); INSERT INTO `namespace` (`AppId`, `ClusterName`, `NamespaceName`, `IsDeleted`, `DataChange_CreatedBy`, `DataChange_LastModifiedBy`)VALUES('test', 'child-cluster', 'application', 0, 'apollo', 'apollo');
-1
apolloconfig/apollo
3,488
switch off console appenders when running as backend services
## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
nobodyiam
"2021-01-10T05:01:31Z"
"2021-01-10T06:11:12Z"
41519f41fa390404c10d48a85e42de135f140aa2
137d70e7ba47ad74aa6766a1e8fb7f087038e00e
switch off console appenders when running as backend services. ## What's the purpose of this PR switch off console appenders when running as backend services ## Which issue(s) this PR fixes: Fixes #3272 #2459 ## Brief changelog 1. add `LOG_APPENDERS` environment variables to make logback appenders switchable 2. set `LOG_APPENDERS=FILE` when running as backend services 3. upgrade spring-boot-maven-plugin to 2.0.5.RELEASE Follow this checklist to help us incorporate your contribution quickly and easily: - [x] Read the [Contributing Guide](https://github.com/ctripcorp/apollo/blob/master/CONTRIBUTING.md) before making this pull request. - [x] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [x] Write necessary unit tests to verify the code. - [x] Run `mvn clean test` to make sure this pull request doesn't break anything.
./apollo-client/src/test/java/com/ctrip/framework/apollo/integration/ConfigIntegrationTest.java
package com.ctrip.framework.apollo.integration; import static org.hamcrest.core.IsEqual.equalTo; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertThat; import static org.junit.Assert.assertTrue; import com.ctrip.framework.apollo.util.OrderedProperties; import java.io.File; import java.io.FileOutputStream; import java.io.IOException; import java.nio.file.Files; import java.util.*; import java.util.concurrent.TimeUnit; import java.util.concurrent.atomic.AtomicInteger; import javax.servlet.ServletException; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.eclipse.jetty.server.Request; import org.eclipse.jetty.server.handler.AbstractHandler; import org.eclipse.jetty.server.handler.ContextHandler; import org.junit.After; import org.junit.Before; import org.junit.Test; import org.springframework.test.util.ReflectionTestUtils; import com.ctrip.framework.apollo.BaseIntegrationTest; import com.ctrip.framework.apollo.Config; import com.ctrip.framework.apollo.ConfigChangeListener; import com.ctrip.framework.apollo.ConfigService; import com.ctrip.framework.apollo.build.ApolloInjector; import com.ctrip.framework.apollo.core.ConfigConsts; import com.ctrip.framework.apollo.core.dto.ApolloConfig; import com.ctrip.framework.apollo.core.dto.ApolloConfigNotification; import com.ctrip.framework.apollo.core.utils.ClassLoaderUtil; import com.ctrip.framework.apollo.internals.RemoteConfigLongPollService; import com.ctrip.framework.apollo.model.ConfigChangeEvent; import com.google.common.base.Joiner; import com.google.common.collect.ImmutableMap; import com.google.common.collect.Lists; import com.google.common.collect.Maps; import com.google.common.util.concurrent.SettableFuture; /** * @author Jason Song([email protected]) */ public class ConfigIntegrationTest extends BaseIntegrationTest { private String someReleaseKey; private File configDir; private String defaultNamespace; private String someOtherNamespace; private RemoteConfigLongPollService remoteConfigLongPollService; @Before public void setUp() throws Exception { super.setUp(); defaultNamespace = ConfigConsts.NAMESPACE_APPLICATION; someOtherNamespace = "someOtherNamespace"; someReleaseKey = "1"; configDir = new File(ClassLoaderUtil.getClassPath() + "config-cache"); if (configDir.exists()) { configDir.delete(); } configDir.mkdirs(); remoteConfigLongPollService = ApolloInjector.getInstance(RemoteConfigLongPollService.class); } @Override @After public void tearDown() throws Exception { ReflectionTestUtils.invokeMethod(remoteConfigLongPollService, "stopLongPollingRefresh"); recursiveDelete(configDir); super.tearDown(); } private void recursiveDelete(File file) { if (!file.exists()) { return; } if (file.isDirectory()) { for (File f : file.listFiles()) { recursiveDelete(f); } } try { Files.deleteIfExists(file.toPath()); } catch (IOException e) { e.printStackTrace(); } } @Test public void testGetConfigWithNoLocalFileButWithRemoteConfig() throws Exception { String someKey = "someKey"; String someValue = "someValue"; String someNonExistedKey = "someNonExistedKey"; String someDefaultValue = "someDefaultValue"; ApolloConfig apolloConfig = assembleApolloConfig(ImmutableMap.of(someKey, someValue)); ContextHandler handler = mockConfigServerHandler(HttpServletResponse.SC_OK, apolloConfig); startServerWithHandlers(handler); Config config = ConfigService.getAppConfig(); assertEquals(someValue, config.getProperty(someKey, null)); assertEquals(someDefaultValue, config.getProperty(someNonExistedKey, someDefaultValue)); } @Test public void testOrderGetConfigWithNoLocalFileButWithRemoteConfig() throws Exception { setPropertiesOrderEnabled(true); String someKey1 = "someKey1"; String someValue1 = "someValue1"; String someKey2 = "someKey2"; String someValue2 = "someValue2"; Map<String, String> configurations = new LinkedHashMap<>(); configurations.put(someKey1, someValue1); configurations.put(someKey2, someValue2); ApolloConfig apolloConfig = assembleApolloConfig(ImmutableMap.copyOf(configurations)); ContextHandler handler = mockConfigServerHandler(HttpServletResponse.SC_OK, apolloConfig); startServerWithHandlers(handler); Config config = ConfigService.getAppConfig(); Set<String> propertyNames = config.getPropertyNames(); Iterator<String> it = propertyNames.iterator(); assertEquals(someKey1, it.next()); assertEquals(someKey2, it.next()); } @Test public void testGetConfigWithLocalFileAndWithRemoteConfig() throws Exception { String someKey = "someKey"; String someValue = "someValue"; String anotherValue = "anotherValue"; Properties properties = new Properties(); properties.put(someKey, someValue); createLocalCachePropertyFile(properties); ApolloConfig apolloConfig = assembleApolloConfig(ImmutableMap.of(someKey, anotherValue)); ContextHandler handler = mockConfigServerHandler(HttpServletResponse.SC_OK, apolloConfig); startServerWithHandlers(handler); Config config = ConfigService.getAppConfig(); assertEquals(anotherValue, config.getProperty(someKey, null)); } @Test public void testOrderGetConfigWithLocalFileAndWithRemoteConfig() throws Exception { String someKey = "someKey"; String someValue = "someValue"; String anotherValue = "anotherValue"; String someKey1 = "someKey1"; String someValue1 = "someValue1"; String anotherValue1 = "anotherValue1"; String someKey2 = "someKey2"; String someValue2 = "someValue2"; setPropertiesOrderEnabled(true); Properties properties = new OrderedProperties(); properties.put(someKey, someValue); properties.put(someKey1, someValue1); properties.put(someKey2, someValue2); createLocalCachePropertyFile(properties); Map<String, String> configurations = new LinkedHashMap<>(); configurations.put(someKey, anotherValue); configurations.put(someKey1, anotherValue1); configurations.put(someKey2, someValue2); ApolloConfig apolloConfig = assembleApolloConfig(ImmutableMap.copyOf(configurations)); ContextHandler handler = mockConfigServerHandler(HttpServletResponse.SC_OK, apolloConfig); startServerWithHandlers(handler); Config config = ConfigService.getAppConfig(); assertEquals(anotherValue, config.getProperty(someKey, null)); Set<String> propertyNames = config.getPropertyNames(); Iterator<String> it = propertyNames.iterator(); assertEquals(someKey, it.next()); assertEquals(someKey1, it.next()); assertEquals(someKey2, it.next()); assertEquals(anotherValue1, config.getProperty(someKey1, "")); } @Test public void testGetConfigWithNoLocalFileAndRemoteConfigError() throws Exception { ContextHandler handler = mockConfigServerHandler(HttpServletResponse.SC_INTERNAL_SERVER_ERROR, null); startServerWithHandlers(handler); Config config = ConfigService.getAppConfig(); String someKey = "someKey"; String someDefaultValue = "defaultValue" + Math.random(); assertEquals(someDefaultValue, config.getProperty(someKey, someDefaultValue)); } @Test public void testGetConfigWithLocalFileAndRemoteConfigError() throws Exception { String someKey = "someKey"; String someValue = "someValue"; Properties properties = new Properties(); properties.put(someKey, someValue); createLocalCachePropertyFile(properties); ContextHandler handler = mockConfigServerHandler(HttpServletResponse.SC_INTERNAL_SERVER_ERROR, null); startServerWithHandlers(handler); Config config = ConfigService.getAppConfig(); assertEquals(someValue, config.getProperty(someKey, null)); } @Test public void testOrderGetConfigWithLocalFileAndRemoteConfigError() throws Exception { String someKey1 = "someKey1"; String someValue1 = "someValue1"; String someKey2 = "someKey2"; String someValue2 = "someValue2"; setPropertiesOrderEnabled(true); Properties properties = new OrderedProperties(); properties.put(someKey1, someValue1); properties.put(someKey2, someValue2); createLocalCachePropertyFile(properties); ContextHandler handler = mockConfigServerHandler(HttpServletResponse.SC_INTERNAL_SERVER_ERROR, null); startServerWithHandlers(handler); Config config = ConfigService.getAppConfig(); assertEquals(someValue1, config.getProperty(someKey1, null)); assertEquals(someValue2, config.getProperty(someKey2, null)); Set<String> propertyNames = config.getPropertyNames(); Iterator<String> it = propertyNames.iterator(); assertEquals(someKey1, it.next()); assertEquals(someKey2, it.next()); } @Test public void testGetConfigWithNoLocalFileAndRemoteMetaServiceRetry() throws Exception { String someKey = "someKey"; String someValue = "someValue"; ApolloConfig apolloConfig = assembleApolloConfig(ImmutableMap.of(someKey, someValue)); ContextHandler configHandler = mockConfigServerHandler(HttpServletResponse.SC_OK, apolloConfig); boolean failAtFirstTime = true; ContextHandler metaServerHandler = mockMetaServerHandler(failAtFirstTime); startServerWithHandlers(metaServerHandler, configHandler); Config config = ConfigService.getAppConfig(); assertEquals(someValue, config.getProperty(someKey, null)); } @Test public void testGetConfigWithNoLocalFileAndRemoteConfigServiceRetry() throws Exception { String someKey = "someKey"; String someValue = "someValue"; ApolloConfig apolloConfig = assembleApolloConfig(ImmutableMap.of(someKey, someValue)); boolean failedAtFirstTime = true; ContextHandler handler = mockConfigServerHandler(HttpServletResponse.SC_OK, apolloConfig, failedAtFirstTime); startServerWithHandlers(handler); Config config = ConfigService.getAppConfig(); assertEquals(someValue, config.getProperty(someKey, null)); } @Test public void testRefreshConfig() throws Exception { final String someKey = "someKey"; final String someValue = "someValue"; final String anotherValue = "anotherValue"; int someRefreshInterval = 500; TimeUnit someRefreshTimeUnit = TimeUnit.MILLISECONDS; setRefreshInterval(someRefreshInterval); setRefreshTimeUnit(someRefreshTimeUnit); Map<String, String> configurations = Maps.newHashMap(); configurations.put(someKey, someValue); ApolloConfig apolloConfig = assembleApolloConfig(configurations); ContextHandler handler = mockConfigServerHandler(HttpServletResponse.SC_OK, apolloConfig); startServerWithHandlers(handler); Config config = ConfigService.getAppConfig(); final List<ConfigChangeEvent> changeEvents = Lists.newArrayList(); final SettableFuture<Boolean> refreshFinished = SettableFuture.create(); config.addChangeListener(new ConfigChangeListener() { AtomicInteger counter = new AtomicInteger(0); @Override public void onChange(ConfigChangeEvent changeEvent) { //only need to assert once if (counter.incrementAndGet() > 1) { return; } assertEquals(1, changeEvent.changedKeys().size()); assertTrue(changeEvent.isChanged(someKey)); assertEquals(someValue, changeEvent.getChange(someKey).getOldValue()); assertEquals(anotherValue, changeEvent.getChange(someKey).getNewValue()); // if there is any assertion failed above, this line won't be executed changeEvents.add(changeEvent); refreshFinished.set(true); } }); apolloConfig.getConfigurations().put(someKey, anotherValue); refreshFinished.get(someRefreshInterval * 5, someRefreshTimeUnit); assertThat( "Change event's size should equal to one or there must be some assertion failed in change listener", 1, equalTo(changeEvents.size())); assertEquals(anotherValue, config.getProperty(someKey, null)); } @Test public void testLongPollRefresh() throws Exception { final String someKey = "someKey"; final String someValue = "someValue"; final String anotherValue = "anotherValue"; long someNotificationId = 1; long pollTimeoutInMS = 50; Map<String, String> configurations = Maps.newHashMap(); configurations.put(someKey, someValue); ApolloConfig apolloConfig = assembleApolloConfig(configurations); ContextHandler configHandler = mockConfigServerHandler(HttpServletResponse.SC_OK, apolloConfig); ContextHandler pollHandler = mockPollNotificationHandler(pollTimeoutInMS, HttpServletResponse.SC_OK, Lists.newArrayList( new ApolloConfigNotification(apolloConfig.getNamespaceName(), someNotificationId)), false); startServerWithHandlers(configHandler, pollHandler); Config config = ConfigService.getAppConfig(); assertEquals(someValue, config.getProperty(someKey, null)); final SettableFuture<Boolean> longPollFinished = SettableFuture.create(); config.addChangeListener(new ConfigChangeListener() { @Override public void onChange(ConfigChangeEvent changeEvent) { longPollFinished.set(true); } }); apolloConfig.getConfigurations().put(someKey, anotherValue); longPollFinished.get(pollTimeoutInMS * 20, TimeUnit.MILLISECONDS); assertEquals(anotherValue, config.getProperty(someKey, null)); } @Test public void testLongPollRefreshWithMultipleNamespacesAndOnlyOneNamespaceNotified() throws Exception { final String someKey = "someKey"; final String someValue = "someValue"; final String anotherValue = "anotherValue"; long someNotificationId = 1; long pollTimeoutInMS = 50; Map<String, String> configurations = Maps.newHashMap(); configurations.put(someKey, someValue); ApolloConfig apolloConfig = assembleApolloConfig(configurations); ContextHandler configHandler = mockConfigServerHandler(HttpServletResponse.SC_OK, apolloConfig); ContextHandler pollHandler = mockPollNotificationHandler(pollTimeoutInMS, HttpServletResponse.SC_OK, Lists.newArrayList( new ApolloConfigNotification(apolloConfig.getNamespaceName(), someNotificationId)), false); startServerWithHandlers(configHandler, pollHandler); Config someOtherConfig = ConfigService.getConfig(someOtherNamespace); Config config = ConfigService.getAppConfig(); assertEquals(someValue, config.getProperty(someKey, null)); assertEquals(someValue, someOtherConfig.getProperty(someKey, null)); final SettableFuture<Boolean> longPollFinished = SettableFuture.create(); config.addChangeListener(new ConfigChangeListener() { @Override public void onChange(ConfigChangeEvent changeEvent) { longPollFinished.set(true); } }); apolloConfig.getConfigurations().put(someKey, anotherValue); longPollFinished.get(5000, TimeUnit.MILLISECONDS); assertEquals(anotherValue, config.getProperty(someKey, null)); TimeUnit.MILLISECONDS.sleep(pollTimeoutInMS * 10); assertEquals(someValue, someOtherConfig.getProperty(someKey, null)); } @Test public void testLongPollRefreshWithMultipleNamespacesAndMultipleNamespaceNotified() throws Exception { final String someKey = "someKey"; final String someValue = "someValue"; final String anotherValue = "anotherValue"; long someNotificationId = 1; long pollTimeoutInMS = 50; Map<String, String> configurations = Maps.newHashMap(); configurations.put(someKey, someValue); ApolloConfig apolloConfig = assembleApolloConfig(configurations); ContextHandler configHandler = mockConfigServerHandler(HttpServletResponse.SC_OK, apolloConfig); ContextHandler pollHandler = mockPollNotificationHandler(pollTimeoutInMS, HttpServletResponse.SC_OK, Lists.newArrayList( new ApolloConfigNotification(apolloConfig.getNamespaceName(), someNotificationId), new ApolloConfigNotification(someOtherNamespace, someNotificationId)), false); startServerWithHandlers(configHandler, pollHandler); Config config = ConfigService.getAppConfig(); Config someOtherConfig = ConfigService.getConfig(someOtherNamespace); assertEquals(someValue, config.getProperty(someKey, null)); assertEquals(someValue, someOtherConfig.getProperty(someKey, null)); final SettableFuture<Boolean> longPollFinished = SettableFuture.create(); final SettableFuture<Boolean> someOtherNamespacelongPollFinished = SettableFuture.create(); config.addChangeListener(new ConfigChangeListener() { @Override public void onChange(ConfigChangeEvent changeEvent) { longPollFinished.set(true); } }); someOtherConfig.addChangeListener(new ConfigChangeListener() { @Override public void onChange(ConfigChangeEvent changeEvent) { someOtherNamespacelongPollFinished.set(true); } }); apolloConfig.getConfigurations().put(someKey, anotherValue); longPollFinished.get(5000, TimeUnit.MILLISECONDS); someOtherNamespacelongPollFinished.get(5000, TimeUnit.MILLISECONDS); assertEquals(anotherValue, config.getProperty(someKey, null)); assertEquals(anotherValue, someOtherConfig.getProperty(someKey, null)); } private ContextHandler mockPollNotificationHandler(final long pollResultTimeOutInMS, final int statusCode, final List<ApolloConfigNotification> result, final boolean failedAtFirstTime) { ContextHandler context = new ContextHandler("/notifications/v2"); context.setHandler(new AbstractHandler() { AtomicInteger counter = new AtomicInteger(0); @Override public void handle(String target, Request baseRequest, HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException { if (failedAtFirstTime && counter.incrementAndGet() == 1) { response.setStatus(HttpServletResponse.SC_INTERNAL_SERVER_ERROR); baseRequest.setHandled(true); return; } try { TimeUnit.MILLISECONDS.sleep(pollResultTimeOutInMS); } catch (InterruptedException e) { } response.setContentType("application/json;charset=UTF-8"); response.setStatus(statusCode); response.getWriter().println(gson.toJson(result)); baseRequest.setHandled(true); } }); return context; } private ContextHandler mockConfigServerHandler(final int statusCode, final ApolloConfig result, final boolean failedAtFirstTime) { ContextHandler context = new ContextHandler("/configs/*"); context.setHandler(new AbstractHandler() { AtomicInteger counter = new AtomicInteger(0); @Override public void handle(String target, Request baseRequest, HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException { if (failedAtFirstTime && counter.incrementAndGet() == 1) { response.setStatus(HttpServletResponse.SC_INTERNAL_SERVER_ERROR); baseRequest.setHandled(true); return; } response.setContentType("application/json;charset=UTF-8"); response.setStatus(statusCode); response.getWriter().println(gson.toJson(result)); baseRequest.setHandled(true); } }); return context; } private ContextHandler mockConfigServerHandler(int statusCode, ApolloConfig result) { return mockConfigServerHandler(statusCode, result, false); } private ApolloConfig assembleApolloConfig(Map<String, String> configurations) { ApolloConfig apolloConfig = new ApolloConfig(someAppId, someClusterName, defaultNamespace, someReleaseKey); apolloConfig.setConfigurations(configurations); return apolloConfig; } private File createLocalCachePropertyFile(Properties properties) throws IOException { File file = new File(configDir, assembleLocalCacheFileName()); try (FileOutputStream in = new FileOutputStream(file)) { properties.store(in, "Persisted by ConfigIntegrationTest"); } return file; } private String assembleLocalCacheFileName() { return String.format("%s.properties", Joiner.on(ConfigConsts.CLUSTER_NAMESPACE_SEPARATOR) .join(someAppId, someClusterName, defaultNamespace)); } }
package com.ctrip.framework.apollo.integration; import static org.hamcrest.core.IsEqual.equalTo; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertThat; import static org.junit.Assert.assertTrue; import com.ctrip.framework.apollo.util.OrderedProperties; import java.io.File; import java.io.FileOutputStream; import java.io.IOException; import java.nio.file.Files; import java.util.*; import java.util.concurrent.TimeUnit; import java.util.concurrent.atomic.AtomicInteger; import javax.servlet.ServletException; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.eclipse.jetty.server.Request; import org.eclipse.jetty.server.handler.AbstractHandler; import org.eclipse.jetty.server.handler.ContextHandler; import org.junit.After; import org.junit.Before; import org.junit.Test; import org.springframework.test.util.ReflectionTestUtils; import com.ctrip.framework.apollo.BaseIntegrationTest; import com.ctrip.framework.apollo.Config; import com.ctrip.framework.apollo.ConfigChangeListener; import com.ctrip.framework.apollo.ConfigService; import com.ctrip.framework.apollo.build.ApolloInjector; import com.ctrip.framework.apollo.core.ConfigConsts; import com.ctrip.framework.apollo.core.dto.ApolloConfig; import com.ctrip.framework.apollo.core.dto.ApolloConfigNotification; import com.ctrip.framework.apollo.core.utils.ClassLoaderUtil; import com.ctrip.framework.apollo.internals.RemoteConfigLongPollService; import com.ctrip.framework.apollo.model.ConfigChangeEvent; import com.google.common.base.Joiner; import com.google.common.collect.ImmutableMap; import com.google.common.collect.Lists; import com.google.common.collect.Maps; import com.google.common.util.concurrent.SettableFuture; /** * @author Jason Song([email protected]) */ public class ConfigIntegrationTest extends BaseIntegrationTest { private String someReleaseKey; private File configDir; private String defaultNamespace; private String someOtherNamespace; private RemoteConfigLongPollService remoteConfigLongPollService; @Before public void setUp() throws Exception { super.setUp(); defaultNamespace = ConfigConsts.NAMESPACE_APPLICATION; someOtherNamespace = "someOtherNamespace"; someReleaseKey = "1"; configDir = new File(ClassLoaderUtil.getClassPath() + "config-cache"); if (configDir.exists()) { configDir.delete(); } configDir.mkdirs(); remoteConfigLongPollService = ApolloInjector.getInstance(RemoteConfigLongPollService.class); } @Override @After public void tearDown() throws Exception { ReflectionTestUtils.invokeMethod(remoteConfigLongPollService, "stopLongPollingRefresh"); recursiveDelete(configDir); super.tearDown(); } private void recursiveDelete(File file) { if (!file.exists()) { return; } if (file.isDirectory()) { for (File f : file.listFiles()) { recursiveDelete(f); } } try { Files.deleteIfExists(file.toPath()); } catch (IOException e) { e.printStackTrace(); } } @Test public void testGetConfigWithNoLocalFileButWithRemoteConfig() throws Exception { String someKey = "someKey"; String someValue = "someValue"; String someNonExistedKey = "someNonExistedKey"; String someDefaultValue = "someDefaultValue"; ApolloConfig apolloConfig = assembleApolloConfig(ImmutableMap.of(someKey, someValue)); ContextHandler handler = mockConfigServerHandler(HttpServletResponse.SC_OK, apolloConfig); startServerWithHandlers(handler); Config config = ConfigService.getAppConfig(); assertEquals(someValue, config.getProperty(someKey, null)); assertEquals(someDefaultValue, config.getProperty(someNonExistedKey, someDefaultValue)); } @Test public void testOrderGetConfigWithNoLocalFileButWithRemoteConfig() throws Exception { setPropertiesOrderEnabled(true); String someKey1 = "someKey1"; String someValue1 = "someValue1"; String someKey2 = "someKey2"; String someValue2 = "someValue2"; Map<String, String> configurations = new LinkedHashMap<>(); configurations.put(someKey1, someValue1); configurations.put(someKey2, someValue2); ApolloConfig apolloConfig = assembleApolloConfig(ImmutableMap.copyOf(configurations)); ContextHandler handler = mockConfigServerHandler(HttpServletResponse.SC_OK, apolloConfig); startServerWithHandlers(handler); Config config = ConfigService.getAppConfig(); Set<String> propertyNames = config.getPropertyNames(); Iterator<String> it = propertyNames.iterator(); assertEquals(someKey1, it.next()); assertEquals(someKey2, it.next()); } @Test public void testGetConfigWithLocalFileAndWithRemoteConfig() throws Exception { String someKey = "someKey"; String someValue = "someValue"; String anotherValue = "anotherValue"; Properties properties = new Properties(); properties.put(someKey, someValue); createLocalCachePropertyFile(properties); ApolloConfig apolloConfig = assembleApolloConfig(ImmutableMap.of(someKey, anotherValue)); ContextHandler handler = mockConfigServerHandler(HttpServletResponse.SC_OK, apolloConfig); startServerWithHandlers(handler); Config config = ConfigService.getAppConfig(); assertEquals(anotherValue, config.getProperty(someKey, null)); } @Test public void testOrderGetConfigWithLocalFileAndWithRemoteConfig() throws Exception { String someKey = "someKey"; String someValue = "someValue"; String anotherValue = "anotherValue"; String someKey1 = "someKey1"; String someValue1 = "someValue1"; String anotherValue1 = "anotherValue1"; String someKey2 = "someKey2"; String someValue2 = "someValue2"; setPropertiesOrderEnabled(true); Properties properties = new OrderedProperties(); properties.put(someKey, someValue); properties.put(someKey1, someValue1); properties.put(someKey2, someValue2); createLocalCachePropertyFile(properties); Map<String, String> configurations = new LinkedHashMap<>(); configurations.put(someKey, anotherValue); configurations.put(someKey1, anotherValue1); configurations.put(someKey2, someValue2); ApolloConfig apolloConfig = assembleApolloConfig(ImmutableMap.copyOf(configurations)); ContextHandler handler = mockConfigServerHandler(HttpServletResponse.SC_OK, apolloConfig); startServerWithHandlers(handler); Config config = ConfigService.getAppConfig(); assertEquals(anotherValue, config.getProperty(someKey, null)); Set<String> propertyNames = config.getPropertyNames(); Iterator<String> it = propertyNames.iterator(); assertEquals(someKey, it.next()); assertEquals(someKey1, it.next()); assertEquals(someKey2, it.next()); assertEquals(anotherValue1, config.getProperty(someKey1, "")); } @Test public void testGetConfigWithNoLocalFileAndRemoteConfigError() throws Exception { ContextHandler handler = mockConfigServerHandler(HttpServletResponse.SC_INTERNAL_SERVER_ERROR, null); startServerWithHandlers(handler); Config config = ConfigService.getAppConfig(); String someKey = "someKey"; String someDefaultValue = "defaultValue" + Math.random(); assertEquals(someDefaultValue, config.getProperty(someKey, someDefaultValue)); } @Test public void testGetConfigWithLocalFileAndRemoteConfigError() throws Exception { String someKey = "someKey"; String someValue = "someValue"; Properties properties = new Properties(); properties.put(someKey, someValue); createLocalCachePropertyFile(properties); ContextHandler handler = mockConfigServerHandler(HttpServletResponse.SC_INTERNAL_SERVER_ERROR, null); startServerWithHandlers(handler); Config config = ConfigService.getAppConfig(); assertEquals(someValue, config.getProperty(someKey, null)); } @Test public void testOrderGetConfigWithLocalFileAndRemoteConfigError() throws Exception { String someKey1 = "someKey1"; String someValue1 = "someValue1"; String someKey2 = "someKey2"; String someValue2 = "someValue2"; setPropertiesOrderEnabled(true); Properties properties = new OrderedProperties(); properties.put(someKey1, someValue1); properties.put(someKey2, someValue2); createLocalCachePropertyFile(properties); ContextHandler handler = mockConfigServerHandler(HttpServletResponse.SC_INTERNAL_SERVER_ERROR, null); startServerWithHandlers(handler); Config config = ConfigService.getAppConfig(); assertEquals(someValue1, config.getProperty(someKey1, null)); assertEquals(someValue2, config.getProperty(someKey2, null)); Set<String> propertyNames = config.getPropertyNames(); Iterator<String> it = propertyNames.iterator(); assertEquals(someKey1, it.next()); assertEquals(someKey2, it.next()); } @Test public void testGetConfigWithNoLocalFileAndRemoteMetaServiceRetry() throws Exception { String someKey = "someKey"; String someValue = "someValue"; ApolloConfig apolloConfig = assembleApolloConfig(ImmutableMap.of(someKey, someValue)); ContextHandler configHandler = mockConfigServerHandler(HttpServletResponse.SC_OK, apolloConfig); boolean failAtFirstTime = true; ContextHandler metaServerHandler = mockMetaServerHandler(failAtFirstTime); startServerWithHandlers(metaServerHandler, configHandler); Config config = ConfigService.getAppConfig(); assertEquals(someValue, config.getProperty(someKey, null)); } @Test public void testGetConfigWithNoLocalFileAndRemoteConfigServiceRetry() throws Exception { String someKey = "someKey"; String someValue = "someValue"; ApolloConfig apolloConfig = assembleApolloConfig(ImmutableMap.of(someKey, someValue)); boolean failedAtFirstTime = true; ContextHandler handler = mockConfigServerHandler(HttpServletResponse.SC_OK, apolloConfig, failedAtFirstTime); startServerWithHandlers(handler); Config config = ConfigService.getAppConfig(); assertEquals(someValue, config.getProperty(someKey, null)); } @Test public void testRefreshConfig() throws Exception { final String someKey = "someKey"; final String someValue = "someValue"; final String anotherValue = "anotherValue"; int someRefreshInterval = 500; TimeUnit someRefreshTimeUnit = TimeUnit.MILLISECONDS; setRefreshInterval(someRefreshInterval); setRefreshTimeUnit(someRefreshTimeUnit); Map<String, String> configurations = Maps.newHashMap(); configurations.put(someKey, someValue); ApolloConfig apolloConfig = assembleApolloConfig(configurations); ContextHandler handler = mockConfigServerHandler(HttpServletResponse.SC_OK, apolloConfig); startServerWithHandlers(handler); Config config = ConfigService.getAppConfig(); final List<ConfigChangeEvent> changeEvents = Lists.newArrayList(); final SettableFuture<Boolean> refreshFinished = SettableFuture.create(); config.addChangeListener(new ConfigChangeListener() { AtomicInteger counter = new AtomicInteger(0); @Override public void onChange(ConfigChangeEvent changeEvent) { //only need to assert once if (counter.incrementAndGet() > 1) { return; } assertEquals(1, changeEvent.changedKeys().size()); assertTrue(changeEvent.isChanged(someKey)); assertEquals(someValue, changeEvent.getChange(someKey).getOldValue()); assertEquals(anotherValue, changeEvent.getChange(someKey).getNewValue()); // if there is any assertion failed above, this line won't be executed changeEvents.add(changeEvent); refreshFinished.set(true); } }); apolloConfig.getConfigurations().put(someKey, anotherValue); refreshFinished.get(someRefreshInterval * 5, someRefreshTimeUnit); assertThat( "Change event's size should equal to one or there must be some assertion failed in change listener", 1, equalTo(changeEvents.size())); assertEquals(anotherValue, config.getProperty(someKey, null)); } @Test public void testLongPollRefresh() throws Exception { final String someKey = "someKey"; final String someValue = "someValue"; final String anotherValue = "anotherValue"; long someNotificationId = 1; long pollTimeoutInMS = 50; Map<String, String> configurations = Maps.newHashMap(); configurations.put(someKey, someValue); ApolloConfig apolloConfig = assembleApolloConfig(configurations); ContextHandler configHandler = mockConfigServerHandler(HttpServletResponse.SC_OK, apolloConfig); ContextHandler pollHandler = mockPollNotificationHandler(pollTimeoutInMS, HttpServletResponse.SC_OK, Lists.newArrayList( new ApolloConfigNotification(apolloConfig.getNamespaceName(), someNotificationId)), false); startServerWithHandlers(configHandler, pollHandler); Config config = ConfigService.getAppConfig(); assertEquals(someValue, config.getProperty(someKey, null)); final SettableFuture<Boolean> longPollFinished = SettableFuture.create(); config.addChangeListener(new ConfigChangeListener() { @Override public void onChange(ConfigChangeEvent changeEvent) { longPollFinished.set(true); } }); apolloConfig.getConfigurations().put(someKey, anotherValue); longPollFinished.get(pollTimeoutInMS * 20, TimeUnit.MILLISECONDS); assertEquals(anotherValue, config.getProperty(someKey, null)); } @Test public void testLongPollRefreshWithMultipleNamespacesAndOnlyOneNamespaceNotified() throws Exception { final String someKey = "someKey"; final String someValue = "someValue"; final String anotherValue = "anotherValue"; long someNotificationId = 1; long pollTimeoutInMS = 50; Map<String, String> configurations = Maps.newHashMap(); configurations.put(someKey, someValue); ApolloConfig apolloConfig = assembleApolloConfig(configurations); ContextHandler configHandler = mockConfigServerHandler(HttpServletResponse.SC_OK, apolloConfig); ContextHandler pollHandler = mockPollNotificationHandler(pollTimeoutInMS, HttpServletResponse.SC_OK, Lists.newArrayList( new ApolloConfigNotification(apolloConfig.getNamespaceName(), someNotificationId)), false); startServerWithHandlers(configHandler, pollHandler); Config someOtherConfig = ConfigService.getConfig(someOtherNamespace); Config config = ConfigService.getAppConfig(); assertEquals(someValue, config.getProperty(someKey, null)); assertEquals(someValue, someOtherConfig.getProperty(someKey, null)); final SettableFuture<Boolean> longPollFinished = SettableFuture.create(); config.addChangeListener(new ConfigChangeListener() { @Override public void onChange(ConfigChangeEvent changeEvent) { longPollFinished.set(true); } }); apolloConfig.getConfigurations().put(someKey, anotherValue); longPollFinished.get(5000, TimeUnit.MILLISECONDS); assertEquals(anotherValue, config.getProperty(someKey, null)); TimeUnit.MILLISECONDS.sleep(pollTimeoutInMS * 10); assertEquals(someValue, someOtherConfig.getProperty(someKey, null)); } @Test public void testLongPollRefreshWithMultipleNamespacesAndMultipleNamespaceNotified() throws Exception { final String someKey = "someKey"; final String someValue = "someValue"; final String anotherValue = "anotherValue"; long someNotificationId = 1; long pollTimeoutInMS = 50; Map<String, String> configurations = Maps.newHashMap(); configurations.put(someKey, someValue); ApolloConfig apolloConfig = assembleApolloConfig(configurations); ContextHandler configHandler = mockConfigServerHandler(HttpServletResponse.SC_OK, apolloConfig); ContextHandler pollHandler = mockPollNotificationHandler(pollTimeoutInMS, HttpServletResponse.SC_OK, Lists.newArrayList( new ApolloConfigNotification(apolloConfig.getNamespaceName(), someNotificationId), new ApolloConfigNotification(someOtherNamespace, someNotificationId)), false); startServerWithHandlers(configHandler, pollHandler); Config config = ConfigService.getAppConfig(); Config someOtherConfig = ConfigService.getConfig(someOtherNamespace); assertEquals(someValue, config.getProperty(someKey, null)); assertEquals(someValue, someOtherConfig.getProperty(someKey, null)); final SettableFuture<Boolean> longPollFinished = SettableFuture.create(); final SettableFuture<Boolean> someOtherNamespacelongPollFinished = SettableFuture.create(); config.addChangeListener(new ConfigChangeListener() { @Override public void onChange(ConfigChangeEvent changeEvent) { longPollFinished.set(true); } }); someOtherConfig.addChangeListener(new ConfigChangeListener() { @Override public void onChange(ConfigChangeEvent changeEvent) { someOtherNamespacelongPollFinished.set(true); } }); apolloConfig.getConfigurations().put(someKey, anotherValue); longPollFinished.get(5000, TimeUnit.MILLISECONDS); someOtherNamespacelongPollFinished.get(5000, TimeUnit.MILLISECONDS); assertEquals(anotherValue, config.getProperty(someKey, null)); assertEquals(anotherValue, someOtherConfig.getProperty(someKey, null)); } private ContextHandler mockPollNotificationHandler(final long pollResultTimeOutInMS, final int statusCode, final List<ApolloConfigNotification> result, final boolean failedAtFirstTime) { ContextHandler context = new ContextHandler("/notifications/v2"); context.setHandler(new AbstractHandler() { AtomicInteger counter = new AtomicInteger(0); @Override public void handle(String target, Request baseRequest, HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException { if (failedAtFirstTime && counter.incrementAndGet() == 1) { response.setStatus(HttpServletResponse.SC_INTERNAL_SERVER_ERROR); baseRequest.setHandled(true); return; } try { TimeUnit.MILLISECONDS.sleep(pollResultTimeOutInMS); } catch (InterruptedException e) { } response.setContentType("application/json;charset=UTF-8"); response.setStatus(statusCode); response.getWriter().println(gson.toJson(result)); baseRequest.setHandled(true); } }); return context; } private ContextHandler mockConfigServerHandler(final int statusCode, final ApolloConfig result, final boolean failedAtFirstTime) { ContextHandler context = new ContextHandler("/configs/*"); context.setHandler(new AbstractHandler() { AtomicInteger counter = new AtomicInteger(0); @Override public void handle(String target, Request baseRequest, HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException { if (failedAtFirstTime && counter.incrementAndGet() == 1) { response.setStatus(HttpServletResponse.SC_INTERNAL_SERVER_ERROR); baseRequest.setHandled(true); return; } response.setContentType("application/json;charset=UTF-8"); response.setStatus(statusCode); response.getWriter().println(gson.toJson(result)); baseRequest.setHandled(true); } }); return context; } private ContextHandler mockConfigServerHandler(int statusCode, ApolloConfig result) { return mockConfigServerHandler(statusCode, result, false); } private ApolloConfig assembleApolloConfig(Map<String, String> configurations) { ApolloConfig apolloConfig = new ApolloConfig(someAppId, someClusterName, defaultNamespace, someReleaseKey); apolloConfig.setConfigurations(configurations); return apolloConfig; } private File createLocalCachePropertyFile(Properties properties) throws IOException { File file = new File(configDir, assembleLocalCacheFileName()); try (FileOutputStream in = new FileOutputStream(file)) { properties.store(in, "Persisted by ConfigIntegrationTest"); } return file; } private String assembleLocalCacheFileName() { return String.format("%s.properties", Joiner.on(ConfigConsts.CLUSTER_NAMESPACE_SEPARATOR) .join(someAppId, someClusterName, defaultNamespace)); } }
-1