diff --git a/.asf.yaml b/.asf.yaml index 29a6c7c..916b61c 100644 --- a/.asf.yaml +++ b/.asf.yaml @@ -5,9 +5,9 @@ # 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 diff --git a/.eslintignore b/.eslintignore index 8945a63..7e3c969 100644 --- a/.eslintignore +++ b/.eslintignore @@ -1,2 +1,18 @@ +# 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. + www/assets/jasmine -www/assets/topcoat-0.7.5 \ No newline at end of file diff --git a/.eslintrc.yml b/.eslintrc.yml index b25ad7e..d6e859a 100644 --- a/.eslintrc.yml +++ b/.eslintrc.yml @@ -5,9 +5,9 @@ # 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 @@ -23,3 +23,7 @@ globals: describe: true jasmineRequire: true device: true + +overrides: + - files: [scripts/**/*.js] + extends: '@cordova/eslint-config/node' diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index be19c04..4a638fe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,12 +6,12 @@ # "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 +# 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 +# KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. @@ -25,7 +25,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - node-version: [18.x, 20.x, 22.x] + node-version: [20.x, 22.x, 24.x] os: [ubuntu-latest, windows-latest, macos-latest] steps: diff --git a/.github/workflows/release-audit.yml b/.github/workflows/release-audit.yml new file mode 100644 index 0000000..6d1c813 --- /dev/null +++ b/.github/workflows/release-audit.yml @@ -0,0 +1,55 @@ +# 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. + +name: Release Auditing + +on: + push: + branches-ignore: + - 'dependabot/**' + pull_request: + branches: + - '*' + +permissions: + contents: read + +jobs: + test: + name: Audit Licenses + runs-on: ubuntu-latest + steps: + # Checkout project + - uses: actions/checkout@v4 + + # Check license headers (v1.2.0) + - uses: erisu/apache-rat-action@3127a8c18f3bb10e91c60e835144085b31c5c463 + + # Setup environment with node + - uses: actions/setup-node@v4 + with: + node-version: 20 + + # Install node packages + - name: npm install packages + run: npm i + + # Check node package licenses (v2.0.0) + - uses: erisu/license-checker-action@1c222d0c2f5898a4c40b8bd6fd6888650bd6f68a + with: + license-config: 'licence_checker.yml' + include-asf-category-a: true diff --git a/.gitignore b/.gitignore index ad0ff3e..b27ea4a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,20 @@ +# 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. + # OS X .DS_Store diff --git a/.ratignore b/.ratignore index 33767b1..0b8cb6e 100644 --- a/.ratignore +++ b/.ratignore @@ -1 +1,21 @@ -jasmine +# 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. + +.git/* +bootstrap/* +jasmine/* +node_modules diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 21a93d7..94d5e9a 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -8,12 +8,12 @@ # "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 +# 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 +# KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. # diff --git a/LICENSE b/LICENSE index 37ec93a..261eeb9 100644 --- a/LICENSE +++ b/LICENSE @@ -1,180 +1,190 @@ -Apache License -Version 2.0, January 2004 -http://www.apache.org/licenses/ - -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - -"License" shall mean the terms and conditions for use, reproduction, and -distribution as defined by Sections 1 through 9 of this document. - -"Licensor" shall mean the copyright owner or entity authorized by the copyright -owner that is granting the License. - -"Legal Entity" shall mean the union of the acting entity and all other entities -that control, are controlled by, or are under common control with that entity. -For the purposes of this definition, "control" means (i) the power, direct or -indirect, to cause the direction or management of such entity, whether by -contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the -outstanding shares, or (iii) beneficial ownership of such entity. - -"You" (or "Your") shall mean an individual or Legal Entity exercising -permissions granted by this License. - -"Source" form shall mean the preferred form for making modifications, including -but not limited to software source code, documentation source, and configuration -files. - -"Object" form shall mean any form resulting from mechanical transformation or -translation of a Source form, including but not limited to compiled object code, -generated documentation, and conversions to other media types. - -"Work" shall mean the work of authorship, whether in Source or Object form, made -available under the License, as indicated by a copyright notice that is included -in or attached to the work (an example is provided in the Appendix below). - -"Derivative Works" shall mean any work, whether in Source or Object form, that -is based on (or derived from) the Work and for which the editorial revisions, -annotations, elaborations, or other modifications represent, as a whole, an -original work of authorship. For the purposes of this License, Derivative Works -shall not include works that remain separable from, or merely link (or bind by -name) to the interfaces of, the Work and Derivative Works thereof. - -"Contribution" shall mean any work of authorship, including the original version -of the Work and any modifications or additions to that Work or Derivative Works -thereof, that is intentionally submitted to Licensor for inclusion in the Work -by the copyright owner or by an individual or Legal Entity authorized to submit -on behalf of the copyright owner. For the purposes of this definition, -"submitted" means any form of electronic, verbal, or written communication sent -to the Licensor or its representatives, including but not limited to -communication on electronic mailing lists, source code control systems, and -issue tracking systems that are managed by, or on behalf of, the Licensor for -the purpose of discussing and improving the Work, but excluding communication -that is conspicuously marked or otherwise designated in writing by the copyright -owner as "Not a Contribution." - -"Contributor" shall mean Licensor and any individual or Legal Entity on behalf -of whom a Contribution has been received by Licensor and subsequently -incorporated within the Work. - -2. Grant of Copyright License. - -Subject to the terms and conditions of this License, each Contributor hereby -grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, -irrevocable copyright license to reproduce, prepare Derivative Works of, -publicly display, publicly perform, sublicense, and distribute the Work and such -Derivative Works in Source or Object form. - -3. Grant of Patent License. - -Subject to the terms and conditions of this License, each Contributor hereby -grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, -irrevocable (except as stated in this section) patent license to make, have -made, use, offer to sell, sell, import, and otherwise transfer the Work, where -such license applies only to those patent claims licensable by such Contributor -that are necessarily infringed by their Contribution(s) alone or by combination -of their Contribution(s) with the Work to which such Contribution(s) was -submitted. If You institute patent litigation against any entity (including a -cross-claim or counterclaim in a lawsuit) alleging that the Work or a -Contribution incorporated within the Work constitutes direct or contributory -patent infringement, then any patent licenses granted to You under this License -for that Work shall terminate as of the date such litigation is filed. - -4. Redistribution. - -You may reproduce and distribute copies of the Work or Derivative Works thereof -in any medium, with or without modifications, and in Source or Object form, -provided that You meet the following conditions: - -You must give any other recipients of the Work or Derivative Works a copy of -this License; and -You must cause any modified files to carry prominent notices stating that You -changed the files; and -You must retain, in the Source form of any Derivative Works that You distribute, -all copyright, patent, trademark, and attribution notices from the Source form -of the Work, excluding those notices that do not pertain to any part of the -Derivative Works; and -If the Work includes a "NOTICE" text file as part of its distribution, then any -Derivative Works that You distribute must include a readable copy of the -attribution notices contained within such NOTICE file, excluding those notices -that do not pertain to any part of the Derivative Works, in at least one of the -following places: within a NOTICE text file distributed as part of the -Derivative Works; within the Source form or documentation, if provided along -with the Derivative Works; or, within a display generated by the Derivative -Works, if and wherever such third-party notices normally appear. The contents of -the NOTICE file are for informational purposes only and do not modify the -License. You may add Your own attribution notices within Derivative Works that -You distribute, alongside or as an addendum to the NOTICE text from the Work, -provided that such additional attribution notices cannot be construed as -modifying the License. -You may add Your own copyright statement to Your modifications and may provide -additional or different license terms and conditions for use, reproduction, or -distribution of Your modifications, or for any such Derivative Works as a whole, -provided Your use, reproduction, and distribution of the Work otherwise complies -with the conditions stated in this License. - -5. Submission of Contributions. - -Unless You explicitly state otherwise, any Contribution intentionally submitted -for inclusion in the Work by You to the Licensor shall be under the terms and -conditions of this License, without any additional terms or conditions. -Notwithstanding the above, nothing herein shall supersede or modify the terms of -any separate license agreement you may have executed with Licensor regarding -such Contributions. - -6. Trademarks. - -This License does not grant permission to use the trade names, trademarks, -service marks, or product names of the Licensor, except as required for -reasonable and customary use in describing the origin of the Work and -reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. - -Unless required by applicable law or agreed to in writing, Licensor provides the -Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, -including, without limitation, any warranties or conditions of TITLE, -NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are -solely responsible for determining the appropriateness of using or -redistributing the Work and assume any risks associated with Your exercise of -permissions under this License. - -8. Limitation of Liability. - -In no event and under no legal theory, whether in tort (including negligence), -contract, or otherwise, unless required by applicable law (such as deliberate -and grossly negligent acts) or agreed to in writing, shall any Contributor be -liable to You for damages, including any direct, indirect, special, incidental, -or consequential damages of any character arising as a result of this License or -out of the use or inability to use the Work (including but not limited to -damages for loss of goodwill, work stoppage, computer failure or malfunction, or -any and all other commercial damages or losses), even if such Contributor has -been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. - -While redistributing the Work or Derivative Works thereof, You may choose to -offer, and charge a fee for, acceptance of support, warranty, indemnity, or -other liability obligations and/or rights consistent with this License. However, -in accepting such obligations, You may act only on Your own behalf and on Your -sole responsibility, not on behalf of any other Contributor, and only if You -agree to indemnify, defend, and hold each Contributor harmless for any liability -incurred by, or claims asserted against, such Contributor by reason of your -accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work - -To apply the Apache License to your work, attach the following boilerplate -notice, with the fields enclosed by brackets "[]" replaced with your own -identifying information. (Don't include the brackets!) The text should be -enclosed in the appropriate comment syntax for the file format. We also -recommend that a file or class name and description of purpose be included on -the same "printed page" as the copyright notice for easier identification within -third-party archives. + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. Copyright [yyyy] [name of copyright owner] @@ -182,7 +192,7 @@ third-party archives. 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 + 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, diff --git a/NOTICE b/NOTICE index 38bbb02..40c6600 100755 --- a/NOTICE +++ b/NOTICE @@ -3,220 +3,3 @@ Copyright 2014 The Apache Software Foundation This product includes software developed at The Apache Software Foundation (http://www.apache.org/). - -Topcoat is licensed under the Apache license version 2.0, January 2004 (see LICENSE file). - -Topcoat uses the following third party libraries that may have licenses -differing from that of Topcoat itself. You can find the libraries and their -respective licenses below. - - - Source Code Pro ./src/font/SourceCodePro - - https://github.com/adobe/source-code-pro - - Copyright 2010, 2012 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name 'Source'. All Rights Reserved. Source is a trademark of Adobe Systems Incorporated in the United States and/or other countries. - This Font Software is licensed under the SIL Open Font License, Version 1.1. - This license is available with a FAQ at: http://scripts.sil.org/OFL - -- Source Sans Pro ./src/font/SourceSansPro - - https://github.com/adobe/source-sans-pro - - Copyright 2010, 2012 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name 'Source'. All Rights Reserved. Source is a trademark of Adobe Systems Incorporated in the United States and/or other countries. - This Font Software is licensed under the SIL Open Font License, Version 1.1. - This license is available with a FAQ at: http://scripts.sil.org/OFL - -The following frameworks and libraries are provided just for testing and benchmarking and, as provided, should not be included as part of Topcoat output. - - - Bootstrap - ./test/third-party/bootstrap - - https://github.com/twitter/bootstrap - - Copyright 2012 Twitter, Inc - Licensed under the Apache License v2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - jQuery - ./test/third-party/jquery-1.8.2.js - - https://github.com/jquery/jquery - - Copyright 2011, John Resig - Dual licensed under the MIT or GPL Version 2 licenses. - http://jquery.org/license - - Includes Sizzle.js - http://sizzlejs.com/ - Copyright 2011, The Dojo Foundation - Released under the MIT, BSD, and GPL Licenses. - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - - - Modernizr - ./test/third-party/modernizr - - https://github.com/Modernizr/Modernizr - - Modernizr is available under the MIT license - - Copyright (c) 2009–2011 - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - THE SOFTWARE. - - - Benchmark.js - ./test/third-party/benchmarkjs - - https://github.com/alexanderbeletsky/benchmark-js - - Copyright 2010-2012 Mathias Bynens - Based on JSLitmus.js, copyright Robert Kieffer - Modified by John-David Dalton - Available under MIT license - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - - normalize.css - ./test/third-party/normalize - - Copyright (c) Nicolas Gallagher and Jonathan Neal - - Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - - Foundation - ./test/third-party/foundation - - Copyright (c) 2012 Mark Hayes - - MIT License - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - - ua-parser ./test/third-party/ua-parser - - https://github.com/faisalman/ua-parser-js - - Copyright © 2012 Faisalman - Dual licensed under GPLv2 & MIT - Copyright © 2012 Faisalman - - Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - - - HTML5 boilerplate - - https://github.com/h5bp/html5-boilerplate - - Copyright (c) HTML5 Boilerplate - - Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - - classList - ./test/third-party/classlist - - http://purl.eligrey.com/github/classList.js/blob/master/classList.js - - This software is dedicated to the public domain. No warranty is expressed or implied. - Use this software at your own risk. - - - fastclick - ./test/third-party/fastclick - - https://github.com/ftlabs/fastclick - - Copyright (C) 2012 The Financial Times Ltd. - - Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - - Jasmine - ./www/assets/jasmine - - Copyright (c) 2008-2019 Pivotal Labs - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/README.md b/README.md index 3ae57f4..d55f5c2 100644 --- a/README.md +++ b/README.md @@ -8,12 +8,12 @@ # "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 +# 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 +# KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. # diff --git a/RELEASENOTES.md b/RELEASENOTES.md index b2b3de1..576dbb6 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -7,17 +7,18 @@ # 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 -# +# +# 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 +# KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. # --> + # Release Notes ### 1.1.6 (Nov 06, 2017) diff --git a/licence_checker.yml b/licence_checker.yml new file mode 100644 index 0000000..6456f79 --- /dev/null +++ b/licence_checker.yml @@ -0,0 +1,19 @@ +# 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. + +# Empty for the release audit workflow. +# The `license-config` is required even if there are no custom configs diff --git a/package-lock.json b/package-lock.json index bef0efe..e8fc1c3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -7,7 +7,11 @@ "": { "name": "cordova-plugin-test-framework", "version": "2.0.0-dev", + "hasInstallScript": true, "license": "Apache-2.0", + "dependencies": { + "jasmine-core": "^5.9.0" + }, "devDependencies": { "@cordova/eslint-config": "^5.1.0" } @@ -30,25 +34,28 @@ } }, "node_modules/@eslint-community/eslint-utils": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", - "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.7.0.tgz", + "integrity": "sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw==", "dev": true, "license": "MIT", "dependencies": { - "eslint-visitor-keys": "^3.3.0" + "eslint-visitor-keys": "^3.4.3" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, + "funding": { + "url": "https://opencollective.com/eslint" + }, "peerDependencies": { "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" } }, "node_modules/@eslint-community/regexpp": { - "version": "4.11.0", - "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.11.0.tgz", - "integrity": "sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==", + "version": "4.12.1", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz", + "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==", "dev": true, "license": "MIT", "engines": { @@ -80,9 +87,9 @@ } }, "node_modules/@eslint/js": { - "version": "8.57.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz", - "integrity": "sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==", + "version": "8.57.1", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.1.tgz", + "integrity": "sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==", "dev": true, "license": "MIT", "engines": { @@ -90,14 +97,14 @@ } }, "node_modules/@humanwhocodes/config-array": { - "version": "0.11.14", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", - "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.13.0.tgz", + "integrity": "sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==", "deprecated": "Use @eslint/config-array instead", "dev": true, "license": "Apache-2.0", "dependencies": { - "@humanwhocodes/object-schema": "^2.0.2", + "@humanwhocodes/object-schema": "^2.0.3", "debug": "^4.3.1", "minimatch": "^3.0.5" }, @@ -165,6 +172,13 @@ "node": ">= 8" } }, + "node_modules/@rtsao/scc": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@rtsao/scc/-/scc-1.1.0.tgz", + "integrity": "sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==", + "dev": true, + "license": "MIT" + }, "node_modules/@types/json5": { "version": "0.0.29", "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", @@ -173,16 +187,16 @@ "license": "MIT" }, "node_modules/@ungap/structured-clone": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", - "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.0.tgz", + "integrity": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==", "dev": true, "license": "ISC" }, "node_modules/acorn": { - "version": "8.12.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz", - "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==", + "version": "8.15.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", + "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", "dev": true, "license": "MIT", "bin": { @@ -253,14 +267,14 @@ "license": "Python-2.0" }, "node_modules/array-buffer-byte-length": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz", - "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.2.tgz", + "integrity": "sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==", "dev": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.5", - "is-array-buffer": "^3.0.4" + "call-bound": "^1.0.3", + "is-array-buffer": "^3.0.5" }, "engines": { "node": ">= 0.4" @@ -270,18 +284,20 @@ } }, "node_modules/array-includes": { - "version": "3.1.8", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.8.tgz", - "integrity": "sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==", + "version": "3.1.9", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.9.tgz", + "integrity": "sha512-FmeCCAenzH0KH381SPT5FZmiA/TmpndpcaShhfgEN9eCVjnFBqq3l1xrI42y8+PPLI6hypzou4GXw00WHmPBLQ==", "dev": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.7", + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", "define-properties": "^1.2.1", - "es-abstract": "^1.23.2", - "es-object-atoms": "^1.0.0", - "get-intrinsic": "^1.2.4", - "is-string": "^1.0.7" + "es-abstract": "^1.24.0", + "es-object-atoms": "^1.1.1", + "get-intrinsic": "^1.3.0", + "is-string": "^1.1.1", + "math-intrinsics": "^1.1.0" }, "engines": { "node": ">= 0.4" @@ -291,18 +307,19 @@ } }, "node_modules/array.prototype.findlastindex": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.5.tgz", - "integrity": "sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==", + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.6.tgz", + "integrity": "sha512-F/TKATkzseUExPlfvmwQKGITM3DGTK+vkAsCZoDc5daVygbJBnjEUCbgkAvVFsgfXfX4YIqZ/27G3k3tdXrTxQ==", "dev": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.7", + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", "define-properties": "^1.2.1", - "es-abstract": "^1.23.2", + "es-abstract": "^1.23.9", "es-errors": "^1.3.0", - "es-object-atoms": "^1.0.0", - "es-shim-unscopables": "^1.0.2" + "es-object-atoms": "^1.1.1", + "es-shim-unscopables": "^1.1.0" }, "engines": { "node": ">= 0.4" @@ -312,16 +329,16 @@ } }, "node_modules/array.prototype.flat": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", - "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.3.tgz", + "integrity": "sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==", "dev": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-shim-unscopables": "^1.0.0" + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-shim-unscopables": "^1.0.2" }, "engines": { "node": ">= 0.4" @@ -331,16 +348,16 @@ } }, "node_modules/array.prototype.flatmap": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz", - "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==", + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.3.tgz", + "integrity": "sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==", "dev": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-shim-unscopables": "^1.0.0" + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-shim-unscopables": "^1.0.2" }, "engines": { "node": ">= 0.4" @@ -350,20 +367,19 @@ } }, "node_modules/arraybuffer.prototype.slice": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz", - "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==", + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.4.tgz", + "integrity": "sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==", "dev": true, "license": "MIT", "dependencies": { "array-buffer-byte-length": "^1.0.1", - "call-bind": "^1.0.5", + "call-bind": "^1.0.8", "define-properties": "^1.2.1", - "es-abstract": "^1.22.3", - "es-errors": "^1.2.1", - "get-intrinsic": "^1.2.3", - "is-array-buffer": "^3.0.4", - "is-shared-array-buffer": "^1.0.2" + "es-abstract": "^1.23.5", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "is-array-buffer": "^3.0.4" }, "engines": { "node": ">= 0.4" @@ -372,6 +388,16 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/async-function": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/async-function/-/async-function-1.0.0.tgz", + "integrity": "sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, "node_modules/available-typed-arrays": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", @@ -396,9 +422,9 @@ "license": "MIT" }, "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", + "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", "dev": true, "license": "MIT", "dependencies": { @@ -417,9 +443,9 @@ } }, "node_modules/builtins/node_modules/semver": { - "version": "7.6.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", - "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "version": "7.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", + "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", "dev": true, "license": "ISC", "bin": { @@ -430,17 +456,47 @@ } }, "node_modules/call-bind": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", - "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz", + "integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==", "dev": true, "license": "MIT", "dependencies": { + "call-bind-apply-helpers": "^1.0.0", "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", "get-intrinsic": "^1.2.4", - "set-function-length": "^1.2.1" + "set-function-length": "^1.2.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/call-bound": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz", + "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "get-intrinsic": "^1.3.0" }, "engines": { "node": ">= 0.4" @@ -504,9 +560,9 @@ "license": "MIT" }, "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", "dev": true, "license": "MIT", "dependencies": { @@ -519,15 +575,15 @@ } }, "node_modules/data-view-buffer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.1.tgz", - "integrity": "sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.2.tgz", + "integrity": "sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==", "dev": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.6", + "call-bound": "^1.0.3", "es-errors": "^1.3.0", - "is-data-view": "^1.0.1" + "is-data-view": "^1.0.2" }, "engines": { "node": ">= 0.4" @@ -537,31 +593,31 @@ } }, "node_modules/data-view-byte-length": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz", - "integrity": "sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.2.tgz", + "integrity": "sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==", "dev": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.7", + "call-bound": "^1.0.3", "es-errors": "^1.3.0", - "is-data-view": "^1.0.1" + "is-data-view": "^1.0.2" }, "engines": { "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/inspect-js" } }, "node_modules/data-view-byte-offset": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz", - "integrity": "sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.1.tgz", + "integrity": "sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==", "dev": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.6", + "call-bound": "^1.0.2", "es-errors": "^1.3.0", "is-data-view": "^1.0.1" }, @@ -573,13 +629,13 @@ } }, "node_modules/debug": { - "version": "4.3.6", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.6.tgz", - "integrity": "sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==", + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz", + "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==", "dev": true, "license": "MIT", "dependencies": { - "ms": "2.1.2" + "ms": "^2.1.3" }, "engines": { "node": ">=6.0" @@ -646,59 +702,82 @@ "node": ">=6.0.0" } }, + "node_modules/dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/es-abstract": { - "version": "1.23.3", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.3.tgz", - "integrity": "sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==", + "version": "1.24.0", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.24.0.tgz", + "integrity": "sha512-WSzPgsdLtTcQwm4CROfS5ju2Wa1QQcVeT37jFjYzdFz1r9ahadC8B8/a4qxJxM+09F18iumCdRmlr96ZYkQvEg==", "dev": true, "license": "MIT", "dependencies": { - "array-buffer-byte-length": "^1.0.1", - "arraybuffer.prototype.slice": "^1.0.3", + "array-buffer-byte-length": "^1.0.2", + "arraybuffer.prototype.slice": "^1.0.4", "available-typed-arrays": "^1.0.7", - "call-bind": "^1.0.7", - "data-view-buffer": "^1.0.1", - "data-view-byte-length": "^1.0.1", - "data-view-byte-offset": "^1.0.0", - "es-define-property": "^1.0.0", + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "data-view-buffer": "^1.0.2", + "data-view-byte-length": "^1.0.2", + "data-view-byte-offset": "^1.0.1", + "es-define-property": "^1.0.1", "es-errors": "^1.3.0", - "es-object-atoms": "^1.0.0", - "es-set-tostringtag": "^2.0.3", - "es-to-primitive": "^1.2.1", - "function.prototype.name": "^1.1.6", - "get-intrinsic": "^1.2.4", - "get-symbol-description": "^1.0.2", - "globalthis": "^1.0.3", - "gopd": "^1.0.1", + "es-object-atoms": "^1.1.1", + "es-set-tostringtag": "^2.1.0", + "es-to-primitive": "^1.3.0", + "function.prototype.name": "^1.1.8", + "get-intrinsic": "^1.3.0", + "get-proto": "^1.0.1", + "get-symbol-description": "^1.1.0", + "globalthis": "^1.0.4", + "gopd": "^1.2.0", "has-property-descriptors": "^1.0.2", - "has-proto": "^1.0.3", - "has-symbols": "^1.0.3", + "has-proto": "^1.2.0", + "has-symbols": "^1.1.0", "hasown": "^2.0.2", - "internal-slot": "^1.0.7", - "is-array-buffer": "^3.0.4", + "internal-slot": "^1.1.0", + "is-array-buffer": "^3.0.5", "is-callable": "^1.2.7", - "is-data-view": "^1.0.1", + "is-data-view": "^1.0.2", "is-negative-zero": "^2.0.3", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.3", - "is-string": "^1.0.7", - "is-typed-array": "^1.1.13", - "is-weakref": "^1.0.2", - "object-inspect": "^1.13.1", + "is-regex": "^1.2.1", + "is-set": "^2.0.3", + "is-shared-array-buffer": "^1.0.4", + "is-string": "^1.1.1", + "is-typed-array": "^1.1.15", + "is-weakref": "^1.1.1", + "math-intrinsics": "^1.1.0", + "object-inspect": "^1.13.4", "object-keys": "^1.1.1", - "object.assign": "^4.1.5", - "regexp.prototype.flags": "^1.5.2", - "safe-array-concat": "^1.1.2", - "safe-regex-test": "^1.0.3", - "string.prototype.trim": "^1.2.9", - "string.prototype.trimend": "^1.0.8", + "object.assign": "^4.1.7", + "own-keys": "^1.0.1", + "regexp.prototype.flags": "^1.5.4", + "safe-array-concat": "^1.1.3", + "safe-push-apply": "^1.0.0", + "safe-regex-test": "^1.1.0", + "set-proto": "^1.0.0", + "stop-iteration-iterator": "^1.1.0", + "string.prototype.trim": "^1.2.10", + "string.prototype.trimend": "^1.0.9", "string.prototype.trimstart": "^1.0.8", - "typed-array-buffer": "^1.0.2", - "typed-array-byte-length": "^1.0.1", - "typed-array-byte-offset": "^1.0.2", - "typed-array-length": "^1.0.6", - "unbox-primitive": "^1.0.2", - "which-typed-array": "^1.1.15" + "typed-array-buffer": "^1.0.3", + "typed-array-byte-length": "^1.0.3", + "typed-array-byte-offset": "^1.0.4", + "typed-array-length": "^1.0.7", + "unbox-primitive": "^1.1.0", + "which-typed-array": "^1.1.19" }, "engines": { "node": ">= 0.4" @@ -708,14 +787,11 @@ } }, "node_modules/es-define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", - "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", "dev": true, "license": "MIT", - "dependencies": { - "get-intrinsic": "^1.2.4" - }, "engines": { "node": ">= 0.4" } @@ -731,9 +807,9 @@ } }, "node_modules/es-object-atoms": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz", - "integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", "dev": true, "license": "MIT", "dependencies": { @@ -744,40 +820,44 @@ } }, "node_modules/es-set-tostringtag": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz", - "integrity": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", + "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", "dev": true, "license": "MIT", "dependencies": { - "get-intrinsic": "^1.2.4", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", "has-tostringtag": "^1.0.2", - "hasown": "^2.0.1" + "hasown": "^2.0.2" }, "engines": { "node": ">= 0.4" } }, "node_modules/es-shim-unscopables": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz", - "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.1.0.tgz", + "integrity": "sha512-d9T8ucsEhh8Bi1woXCf+TIKDIROLG5WCkxg8geBCbvk22kzwC5G2OnXVMO6FUsvQlgUUXQ2itephWDLqDzbeCw==", "dev": true, "license": "MIT", "dependencies": { - "hasown": "^2.0.0" + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" } }, "node_modules/es-to-primitive": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", - "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.3.0.tgz", + "integrity": "sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==", "dev": true, "license": "MIT", "dependencies": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" + "is-callable": "^1.2.7", + "is-date-object": "^1.0.5", + "is-symbol": "^1.0.4" }, "engines": { "node": ">= 0.4" @@ -800,17 +880,18 @@ } }, "node_modules/eslint": { - "version": "8.57.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz", - "integrity": "sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==", + "version": "8.57.1", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.1.tgz", + "integrity": "sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==", + "deprecated": "This version is no longer supported. Please see https://eslint.org/version-support for other options.", "dev": true, "license": "MIT", "dependencies": { "@eslint-community/eslint-utils": "^4.2.0", "@eslint-community/regexpp": "^4.6.1", "@eslint/eslintrc": "^2.1.4", - "@eslint/js": "8.57.0", - "@humanwhocodes/config-array": "^0.11.14", + "@eslint/js": "8.57.1", + "@humanwhocodes/config-array": "^0.13.0", "@humanwhocodes/module-importer": "^1.0.1", "@nodelib/fs.walk": "^1.2.8", "@ungap/structured-clone": "^1.2.0", @@ -908,9 +989,9 @@ } }, "node_modules/eslint-module-utils": { - "version": "2.8.1", - "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.1.tgz", - "integrity": "sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==", + "version": "2.12.1", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.12.1.tgz", + "integrity": "sha512-L8jSWTze7K2mTg0vos/RuLRS5soomksDPoJLXIslC7c8Wmut3bx7CPpJijDcBZtxQ5lrbUdM+s0OlNbz0DCDNw==", "dev": true, "license": "MIT", "dependencies": { @@ -982,35 +1063,37 @@ } }, "node_modules/eslint-plugin-import": { - "version": "2.29.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.1.tgz", - "integrity": "sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==", + "version": "2.32.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.32.0.tgz", + "integrity": "sha512-whOE1HFo/qJDyX4SnXzP4N6zOWn79WhnCUY/iDR0mPfQZO8wcYE4JClzI2oZrhBnnMUCBCHZhO6VQyoBU95mZA==", "dev": true, "license": "MIT", "dependencies": { - "array-includes": "^3.1.7", - "array.prototype.findlastindex": "^1.2.3", - "array.prototype.flat": "^1.3.2", - "array.prototype.flatmap": "^1.3.2", + "@rtsao/scc": "^1.1.0", + "array-includes": "^3.1.9", + "array.prototype.findlastindex": "^1.2.6", + "array.prototype.flat": "^1.3.3", + "array.prototype.flatmap": "^1.3.3", "debug": "^3.2.7", "doctrine": "^2.1.0", "eslint-import-resolver-node": "^0.3.9", - "eslint-module-utils": "^2.8.0", - "hasown": "^2.0.0", - "is-core-module": "^2.13.1", + "eslint-module-utils": "^2.12.1", + "hasown": "^2.0.2", + "is-core-module": "^2.16.1", "is-glob": "^4.0.3", "minimatch": "^3.1.2", - "object.fromentries": "^2.0.7", - "object.groupby": "^1.0.1", - "object.values": "^1.1.7", + "object.fromentries": "^2.0.8", + "object.groupby": "^1.0.3", + "object.values": "^1.2.1", "semver": "^6.3.1", + "string.prototype.trimend": "^1.0.9", "tsconfig-paths": "^3.15.0" }, "engines": { "node": ">=4" }, "peerDependencies": { - "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9" } }, "node_modules/eslint-plugin-import/node_modules/debug": { @@ -1063,9 +1146,9 @@ } }, "node_modules/eslint-plugin-n/node_modules/semver": { - "version": "7.6.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", - "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "version": "7.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", + "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", "dev": true, "license": "ISC", "bin": { @@ -1236,9 +1319,9 @@ "license": "MIT" }, "node_modules/fastq": { - "version": "1.17.1", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", - "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz", + "integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==", "dev": true, "license": "ISC", "dependencies": { @@ -1291,20 +1374,26 @@ } }, "node_modules/flatted": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", - "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz", + "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==", "dev": true, "license": "ISC" }, "node_modules/for-each": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", - "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.5.tgz", + "integrity": "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==", "dev": true, "license": "MIT", "dependencies": { - "is-callable": "^1.1.3" + "is-callable": "^1.2.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, "node_modules/fs.realpath": { @@ -1325,16 +1414,18 @@ } }, "node_modules/function.prototype.name": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", - "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.8.tgz", + "integrity": "sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==", "dev": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "functions-have-names": "^1.2.3" + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "functions-have-names": "^1.2.3", + "hasown": "^2.0.2", + "is-callable": "^1.2.7" }, "engines": { "node": ">= 0.4" @@ -1354,17 +1445,22 @@ } }, "node_modules/get-intrinsic": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", - "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", "dev": true, "license": "MIT", "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", "function-bind": "^1.1.2", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "hasown": "^2.0.0" + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" }, "engines": { "node": ">= 0.4" @@ -1373,16 +1469,30 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "dev": true, + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/get-symbol-description": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz", - "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.1.0.tgz", + "integrity": "sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==", "dev": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.5", + "call-bound": "^1.0.3", "es-errors": "^1.3.0", - "get-intrinsic": "^1.2.4" + "get-intrinsic": "^1.2.6" }, "engines": { "node": ">= 0.4" @@ -1460,13 +1570,13 @@ } }, "node_modules/gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", "dev": true, "license": "MIT", - "dependencies": { - "get-intrinsic": "^1.1.3" + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -1480,11 +1590,14 @@ "license": "MIT" }, "node_modules/has-bigints": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", - "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.1.0.tgz", + "integrity": "sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==", "dev": true, "license": "MIT", + "engines": { + "node": ">= 0.4" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -1513,11 +1626,14 @@ } }, "node_modules/has-proto": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", - "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.2.0.tgz", + "integrity": "sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==", "dev": true, "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.0" + }, "engines": { "node": ">= 0.4" }, @@ -1526,9 +1642,9 @@ } }, "node_modules/has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", "dev": true, "license": "MIT", "engines": { @@ -1578,9 +1694,9 @@ } }, "node_modules/import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", + "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", "dev": true, "license": "MIT", "dependencies": { @@ -1624,29 +1740,50 @@ "license": "ISC" }, "node_modules/internal-slot": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz", - "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.1.0.tgz", + "integrity": "sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==", "dev": true, "license": "MIT", "dependencies": { "es-errors": "^1.3.0", - "hasown": "^2.0.0", - "side-channel": "^1.0.4" + "hasown": "^2.0.2", + "side-channel": "^1.1.0" }, "engines": { "node": ">= 0.4" } }, "node_modules/is-array-buffer": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz", - "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.5.tgz", + "integrity": "sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "get-intrinsic": "^1.2.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-async-function": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.1.1.tgz", + "integrity": "sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==", "dev": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.1" + "async-function": "^1.0.0", + "call-bound": "^1.0.3", + "get-proto": "^1.0.1", + "has-tostringtag": "^1.0.2", + "safe-regex-test": "^1.1.0" }, "engines": { "node": ">= 0.4" @@ -1656,27 +1793,30 @@ } }, "node_modules/is-bigint": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", - "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.1.0.tgz", + "integrity": "sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==", "dev": true, "license": "MIT", "dependencies": { - "has-bigints": "^1.0.1" + "has-bigints": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-boolean-object": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", - "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.2.2.tgz", + "integrity": "sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==", "dev": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" }, "engines": { "node": ">= 0.4" @@ -1699,9 +1839,9 @@ } }, "node_modules/is-core-module": { - "version": "2.15.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.0.tgz", - "integrity": "sha512-Dd+Lb2/zvk9SKy1TGCt1wFJFo/MWBPMX5x7KcvLajWTGuomczdQX61PvY5yK6SVACwpoexWo81IfFyoKY2QnTA==", + "version": "2.16.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", + "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", "dev": true, "license": "MIT", "dependencies": { @@ -1715,12 +1855,14 @@ } }, "node_modules/is-data-view": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.1.tgz", - "integrity": "sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.2.tgz", + "integrity": "sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==", "dev": true, "license": "MIT", "dependencies": { + "call-bound": "^1.0.2", + "get-intrinsic": "^1.2.6", "is-typed-array": "^1.1.13" }, "engines": { @@ -1731,13 +1873,14 @@ } }, "node_modules/is-date-object": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", - "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.1.0.tgz", + "integrity": "sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==", "dev": true, "license": "MIT", "dependencies": { - "has-tostringtag": "^1.0.0" + "call-bound": "^1.0.2", + "has-tostringtag": "^1.0.2" }, "engines": { "node": ">= 0.4" @@ -1756,6 +1899,41 @@ "node": ">=0.10.0" } }, + "node_modules/is-finalizationregistry": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.1.1.tgz", + "integrity": "sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-generator-function": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.1.0.tgz", + "integrity": "sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "get-proto": "^1.0.0", + "has-tostringtag": "^1.0.2", + "safe-regex-test": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-glob": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", @@ -1769,6 +1947,19 @@ "node": ">=0.10.0" } }, + "node_modules/is-map": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz", + "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-negative-zero": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", @@ -1783,13 +1974,14 @@ } }, "node_modules/is-number-object": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", - "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.1.1.tgz", + "integrity": "sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==", "dev": true, "license": "MIT", "dependencies": { - "has-tostringtag": "^1.0.0" + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" }, "engines": { "node": ">= 0.4" @@ -1809,14 +2001,16 @@ } }, "node_modules/is-regex": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", - "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz", + "integrity": "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==", "dev": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" + "call-bound": "^1.0.2", + "gopd": "^1.2.0", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" }, "engines": { "node": ">= 0.4" @@ -1825,14 +2019,27 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/is-set": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz", + "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-shared-array-buffer": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz", - "integrity": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==", + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.4.tgz", + "integrity": "sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==", "dev": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.7" + "call-bound": "^1.0.3" }, "engines": { "node": ">= 0.4" @@ -1842,13 +2049,14 @@ } }, "node_modules/is-string": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", - "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.1.1.tgz", + "integrity": "sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==", "dev": true, "license": "MIT", "dependencies": { - "has-tostringtag": "^1.0.0" + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" }, "engines": { "node": ">= 0.4" @@ -1858,13 +2066,15 @@ } }, "node_modules/is-symbol": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", - "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.1.1.tgz", + "integrity": "sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==", "dev": true, "license": "MIT", "dependencies": { - "has-symbols": "^1.0.2" + "call-bound": "^1.0.2", + "has-symbols": "^1.1.0", + "safe-regex-test": "^1.1.0" }, "engines": { "node": ">= 0.4" @@ -1874,13 +2084,13 @@ } }, "node_modules/is-typed-array": { - "version": "1.1.13", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz", - "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", + "version": "1.1.15", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.15.tgz", + "integrity": "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==", "dev": true, "license": "MIT", "dependencies": { - "which-typed-array": "^1.1.14" + "which-typed-array": "^1.1.16" }, "engines": { "node": ">= 0.4" @@ -1889,14 +2099,47 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/is-weakmap": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz", + "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-weakref": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", - "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.1.1.tgz", + "integrity": "sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==", "dev": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.2" + "call-bound": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakset": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.4.tgz", + "integrity": "sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "get-intrinsic": "^1.2.6" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -1916,6 +2159,12 @@ "dev": true, "license": "ISC" }, + "node_modules/jasmine-core": { + "version": "5.9.0", + "resolved": "https://registry.npmjs.org/jasmine-core/-/jasmine-core-5.9.0.tgz", + "integrity": "sha512-OMUvF1iI6+gSRYOhMrH4QYothVLN9C3EJ6wm4g7zLJlnaTl8zbaPOr0bTw70l7QxkoM7sVFOWo83u9B2Fe2Zng==", + "license": "MIT" + }, "node_modules/js-yaml": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", @@ -2010,6 +2259,16 @@ "dev": true, "license": "MIT" }, + "node_modules/math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, "node_modules/minimatch": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", @@ -2034,9 +2293,9 @@ } }, "node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", "dev": true, "license": "MIT" }, @@ -2048,9 +2307,9 @@ "license": "MIT" }, "node_modules/object-inspect": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz", - "integrity": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==", + "version": "1.13.4", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", + "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==", "dev": true, "license": "MIT", "engines": { @@ -2071,15 +2330,17 @@ } }, "node_modules/object.assign": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", - "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", + "version": "4.1.7", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.7.tgz", + "integrity": "sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==", "dev": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.5", + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", "define-properties": "^1.2.1", - "has-symbols": "^1.0.3", + "es-object-atoms": "^1.0.0", + "has-symbols": "^1.1.0", "object-keys": "^1.1.1" }, "engines": { @@ -2124,13 +2385,14 @@ } }, "node_modules/object.values": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.0.tgz", - "integrity": "sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.1.tgz", + "integrity": "sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==", "dev": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.7", + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", "define-properties": "^1.2.1", "es-object-atoms": "^1.0.0" }, @@ -2169,6 +2431,24 @@ "node": ">= 0.8.0" } }, + "node_modules/own-keys": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/own-keys/-/own-keys-1.0.1.tgz", + "integrity": "sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==", + "dev": true, + "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.2.6", + "object-keys": "^1.1.1", + "safe-push-apply": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/p-limit": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", @@ -2252,9 +2532,9 @@ "license": "MIT" }, "node_modules/possible-typed-array-names": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", - "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz", + "integrity": "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==", "dev": true, "license": "MIT", "engines": { @@ -2302,17 +2582,42 @@ ], "license": "MIT" }, + "node_modules/reflect.getprototypeof": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.10.tgz", + "integrity": "sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.9", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.7", + "get-proto": "^1.0.1", + "which-builtin-type": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/regexp.prototype.flags": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz", - "integrity": "sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==", + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.4.tgz", + "integrity": "sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==", "dev": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.6", + "call-bind": "^1.0.8", "define-properties": "^1.2.1", "es-errors": "^1.3.0", - "set-function-name": "^2.0.1" + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "set-function-name": "^2.0.2" }, "engines": { "node": ">= 0.4" @@ -2335,19 +2640,22 @@ } }, "node_modules/resolve": { - "version": "1.22.8", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", - "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "version": "1.22.10", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz", + "integrity": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==", "dev": true, "license": "MIT", "dependencies": { - "is-core-module": "^2.13.0", + "is-core-module": "^2.16.0", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" }, "bin": { "resolve": "bin/resolve" }, + "engines": { + "node": ">= 0.4" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -2363,9 +2671,9 @@ } }, "node_modules/reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz", + "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", "dev": true, "license": "MIT", "engines": { @@ -2415,15 +2723,16 @@ } }, "node_modules/safe-array-concat": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.2.tgz", - "integrity": "sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==", + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.3.tgz", + "integrity": "sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==", "dev": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.7", - "get-intrinsic": "^1.2.4", - "has-symbols": "^1.0.3", + "call-bind": "^1.0.8", + "call-bound": "^1.0.2", + "get-intrinsic": "^1.2.6", + "has-symbols": "^1.1.0", "isarray": "^2.0.5" }, "engines": { @@ -2433,16 +2742,33 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/safe-push-apply": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/safe-push-apply/-/safe-push-apply-1.0.0.tgz", + "integrity": "sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/safe-regex-test": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz", - "integrity": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.1.0.tgz", + "integrity": "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==", "dev": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.6", + "call-bound": "^1.0.2", "es-errors": "^1.3.0", - "is-regex": "^1.1.4" + "is-regex": "^1.2.1" }, "engines": { "node": ">= 0.4" @@ -2495,6 +2821,21 @@ "node": ">= 0.4" } }, + "node_modules/set-proto": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/set-proto/-/set-proto-1.0.0.tgz", + "integrity": "sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==", + "dev": true, + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/shebang-command": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", @@ -2519,16 +2860,17 @@ } }, "node_modules/side-channel": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", - "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz", + "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==", "dev": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.7", "es-errors": "^1.3.0", - "get-intrinsic": "^1.2.4", - "object-inspect": "^1.13.1" + "object-inspect": "^1.13.3", + "side-channel-list": "^1.0.0", + "side-channel-map": "^1.0.1", + "side-channel-weakmap": "^1.0.2" }, "engines": { "node": ">= 0.4" @@ -2537,17 +2879,90 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/side-channel-list": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz", + "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "object-inspect": "^1.13.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-map": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz", + "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-weakmap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz", + "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3", + "side-channel-map": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/stop-iteration-iterator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.1.0.tgz", + "integrity": "sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "internal-slot": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/string.prototype.trim": { - "version": "1.2.9", - "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz", - "integrity": "sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==", + "version": "1.2.10", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.10.tgz", + "integrity": "sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==", "dev": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.7", + "call-bind": "^1.0.8", + "call-bound": "^1.0.2", + "define-data-property": "^1.1.4", "define-properties": "^1.2.1", - "es-abstract": "^1.23.0", - "es-object-atoms": "^1.0.0" + "es-abstract": "^1.23.5", + "es-object-atoms": "^1.0.0", + "has-property-descriptors": "^1.0.2" }, "engines": { "node": ">= 0.4" @@ -2557,16 +2972,20 @@ } }, "node_modules/string.prototype.trimend": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz", - "integrity": "sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==", + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.9.tgz", + "integrity": "sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==", "dev": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.7", + "call-bind": "^1.0.8", + "call-bound": "^1.0.2", "define-properties": "^1.2.1", "es-object-atoms": "^1.0.0" }, + "engines": { + "node": ">= 0.4" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -2698,32 +3117,32 @@ } }, "node_modules/typed-array-buffer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz", - "integrity": "sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==", + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz", + "integrity": "sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==", "dev": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.7", + "call-bound": "^1.0.3", "es-errors": "^1.3.0", - "is-typed-array": "^1.1.13" + "is-typed-array": "^1.1.14" }, "engines": { "node": ">= 0.4" } }, "node_modules/typed-array-byte-length": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz", - "integrity": "sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==", + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.3.tgz", + "integrity": "sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==", "dev": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.7", + "call-bind": "^1.0.8", "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-proto": "^1.0.3", - "is-typed-array": "^1.1.13" + "gopd": "^1.2.0", + "has-proto": "^1.2.0", + "is-typed-array": "^1.1.14" }, "engines": { "node": ">= 0.4" @@ -2733,18 +3152,19 @@ } }, "node_modules/typed-array-byte-offset": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz", - "integrity": "sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==", + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.4.tgz", + "integrity": "sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==", "dev": true, "license": "MIT", "dependencies": { "available-typed-arrays": "^1.0.7", - "call-bind": "^1.0.7", + "call-bind": "^1.0.8", "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-proto": "^1.0.3", - "is-typed-array": "^1.1.13" + "gopd": "^1.2.0", + "has-proto": "^1.2.0", + "is-typed-array": "^1.1.15", + "reflect.getprototypeof": "^1.0.9" }, "engines": { "node": ">= 0.4" @@ -2754,18 +3174,18 @@ } }, "node_modules/typed-array-length": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.6.tgz", - "integrity": "sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==", + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.7.tgz", + "integrity": "sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==", "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "for-each": "^0.3.3", "gopd": "^1.0.1", - "has-proto": "^1.0.3", "is-typed-array": "^1.1.13", - "possible-typed-array-names": "^1.0.0" + "possible-typed-array-names": "^1.0.0", + "reflect.getprototypeof": "^1.0.6" }, "engines": { "node": ">= 0.4" @@ -2775,16 +3195,19 @@ } }, "node_modules/unbox-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", - "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.1.0.tgz", + "integrity": "sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==", "dev": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", + "call-bound": "^1.0.3", "has-bigints": "^1.0.2", - "has-symbols": "^1.0.3", - "which-boxed-primitive": "^1.0.2" + "has-symbols": "^1.1.0", + "which-boxed-primitive": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -2817,33 +3240,85 @@ } }, "node_modules/which-boxed-primitive": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.1.1.tgz", + "integrity": "sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-bigint": "^1.1.0", + "is-boolean-object": "^1.2.1", + "is-number-object": "^1.1.1", + "is-string": "^1.1.1", + "is-symbol": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-builtin-type": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.2.1.tgz", + "integrity": "sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "function.prototype.name": "^1.1.6", + "has-tostringtag": "^1.0.2", + "is-async-function": "^2.0.0", + "is-date-object": "^1.1.0", + "is-finalizationregistry": "^1.1.0", + "is-generator-function": "^1.0.10", + "is-regex": "^1.2.1", + "is-weakref": "^1.0.2", + "isarray": "^2.0.5", + "which-boxed-primitive": "^1.1.0", + "which-collection": "^1.0.2", + "which-typed-array": "^1.1.16" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-collection": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", - "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz", + "integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==", "dev": true, "license": "MIT", "dependencies": { - "is-bigint": "^1.0.1", - "is-boolean-object": "^1.1.0", - "is-number-object": "^1.0.4", - "is-string": "^1.0.5", - "is-symbol": "^1.0.3" + "is-map": "^2.0.3", + "is-set": "^2.0.3", + "is-weakmap": "^2.0.2", + "is-weakset": "^2.0.3" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/which-typed-array": { - "version": "1.1.15", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.15.tgz", - "integrity": "sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==", + "version": "1.1.19", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.19.tgz", + "integrity": "sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==", "dev": true, "license": "MIT", "dependencies": { "available-typed-arrays": "^1.0.7", - "call-bind": "^1.0.7", - "for-each": "^0.3.3", - "gopd": "^1.0.1", + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "for-each": "^0.3.5", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", "has-tostringtag": "^1.0.2" }, "engines": { diff --git a/package.json b/package.json index 8218411..4430eff 100644 --- a/package.json +++ b/package.json @@ -15,11 +15,15 @@ ], "scripts": { "test": "npm run lint", - "lint": "eslint ." + "lint": "eslint .", + "postinstall": "node scripts/postinstall.js" }, "author": "Apache Software Foundation", "license": "Apache-2.0", "devDependencies": { "@cordova/eslint-config": "^5.1.0" + }, + "dependencies": { + "jasmine-core": "^5.9.0" } } diff --git a/plugin.xml b/plugin.xml index 1dee1ae..103c54f 100644 --- a/plugin.xml +++ b/plugin.xml @@ -1,21 +1,21 @@ - - - - - Cordova tests - - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
-
Log
-
-
- + + + + + Cordova tests + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+
+
+
+
+
Log
+
+
+ diff --git a/www/assets/jasmine-medic.js b/www/assets/jasmine-medic.js index e4774fb..075851e 100644 --- a/www/assets/jasmine-medic.js +++ b/www/assets/jasmine-medic.js @@ -1,22 +1,20 @@ /* - * - * 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. - * + 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. */ jasmineRequire.medic = function (j$) { diff --git a/www/assets/jasmine/.gitignore b/www/assets/jasmine/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/www/assets/jasmine/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/www/assets/jasmine/boot.js b/www/assets/jasmine/boot.js deleted file mode 100644 index d9b5a80..0000000 --- a/www/assets/jasmine/boot.js +++ /dev/null @@ -1,133 +0,0 @@ -/** - Starting with version 2.0, this file "boots" Jasmine, performing all of the necessary initialization before executing the loaded environment and all of a project's specs. This file should be loaded after `jasmine.js` and `jasmine_html.js`, but before any project source files or spec files are loaded. Thus this file can also be used to customize Jasmine for a project. - - If a project is using Jasmine via the standalone distribution, this file can be customized directly. If a project is using Jasmine via the [Ruby gem][jasmine-gem], this file can be copied into the support directory via `jasmine copy_boot_js`. Other environments (e.g., Python) will have different mechanisms. - - The location of `boot.js` can be specified and/or overridden in `jasmine.yml`. - - [jasmine-gem]: http://github.com/pivotal/jasmine-gem - */ - -(function() { - - /** - * ## Require & Instantiate - * - * Require Jasmine's core files. Specifically, this requires and attaches all of Jasmine's code to the `jasmine` reference. - */ - window.jasmine = jasmineRequire.core(jasmineRequire); - - /** - * Since this is being run in a browser and the results should populate to an HTML page, require the HTML-specific Jasmine code, injecting the same reference. - */ - jasmineRequire.html(jasmine); - - /** - * Create the Jasmine environment. This is used to run all specs in a project. - */ - var env = jasmine.getEnv(); - - /** - * ## The Global Interface - * - * Build up the functions that will be exposed as the Jasmine public interface. A project can customize, rename or alias any of these functions as desired, provided the implementation remains unchanged. - */ - var jasmineInterface = jasmineRequire.interface(jasmine, env); - - /** - * Add all of the Jasmine global/public interface to the global scope, so a project can use the public interface directly. For example, calling `describe` in specs instead of `jasmine.getEnv().describe`. - */ - extend(window, jasmineInterface); - - /** - * ## Runner Parameters - * - * More browser specific code - wrap the query string in an object and to allow for getting/setting parameters from the runner user interface. - */ - - var queryString = new jasmine.QueryString({ - getWindowLocation: function() { return window.location; } - }); - - var filterSpecs = !!queryString.getParam("spec"); - - var catchingExceptions = queryString.getParam("catch"); - env.catchExceptions(typeof catchingExceptions === "undefined" ? true : catchingExceptions); - - var throwingExpectationFailures = queryString.getParam("throwFailures"); - env.throwOnExpectationFailure(throwingExpectationFailures); - - var random = queryString.getParam("random"); - env.randomizeTests(random); - - var seed = queryString.getParam("seed"); - if (seed) { - env.seed(seed); - } - - /** - * ## Reporters - * The `HtmlReporter` builds all of the HTML UI for the runner page. This reporter paints the dots, stars, and x's for specs, as well as all spec names and all failures (if any). - */ - var htmlReporter = new jasmine.HtmlReporter({ - env: env, - onRaiseExceptionsClick: function() { queryString.navigateWithNewParam("catch", !env.catchingExceptions()); }, - onThrowExpectationsClick: function() { queryString.navigateWithNewParam("throwFailures", !env.throwingExpectationFailures()); }, - onRandomClick: function() { queryString.navigateWithNewParam("random", !env.randomTests()); }, - addToExistingQueryString: function(key, value) { return queryString.fullStringWithNewParam(key, value); }, - getContainer: function() { return document.body; }, - createElement: function() { return document.createElement.apply(document, arguments); }, - createTextNode: function() { return document.createTextNode.apply(document, arguments); }, - timer: new jasmine.Timer(), - filterSpecs: filterSpecs - }); - - /** - * The `jsApiReporter` also receives spec results, and is used by any environment that needs to extract the results from JavaScript. - */ - env.addReporter(jasmineInterface.jsApiReporter); - env.addReporter(htmlReporter); - - /** - * Filter which specs will be run by matching the start of the full name against the `spec` query param. - */ - var specFilter = new jasmine.HtmlSpecFilter({ - filterString: function() { return queryString.getParam("spec"); } - }); - - env.specFilter = function(spec) { - return specFilter.matches(spec.getFullName()); - }; - - /** - * Setting up timing functions to be able to be overridden. Certain browsers (Safari, IE 8, phantomjs) require this hack. - */ - window.setTimeout = window.setTimeout; - window.setInterval = window.setInterval; - window.clearTimeout = window.clearTimeout; - window.clearInterval = window.clearInterval; - - /** - * ## Execution - * - * Replace the browser window's `onload`, ensure it's called, and then run all of the loaded specs. This includes initializing the `HtmlReporter` instance and then executing the loaded Jasmine environment. All of this will happen after all of the specs are loaded. - */ - var currentWindowOnload = window.onload; - - window.onload = function() { - if (currentWindowOnload) { - currentWindowOnload(); - } - htmlReporter.initialize(); - env.execute(); - }; - - /** - * Helper function for readability above. - */ - function extend(destination, source) { - for (var property in source) destination[property] = source[property]; - return destination; - } - -}()); diff --git a/www/assets/jasmine/console.js b/www/assets/jasmine/console.js deleted file mode 100644 index e17973f..0000000 --- a/www/assets/jasmine/console.js +++ /dev/null @@ -1,190 +0,0 @@ -/* -Copyright (c) 2008-2020 Pivotal Labs - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -*/ -function getJasmineRequireObj() { - if (typeof module !== 'undefined' && module.exports) { - return exports; - } else { - window.jasmineRequire = window.jasmineRequire || {}; - return window.jasmineRequire; - } -} - -getJasmineRequireObj().console = function(jRequire, j$) { - j$.ConsoleReporter = jRequire.ConsoleReporter(); -}; - -getJasmineRequireObj().ConsoleReporter = function() { - - var noopTimer = { - start: function(){}, - elapsed: function(){ return 0; } - }; - - function ConsoleReporter(options) { - var print = options.print, - showColors = options.showColors || false, - onComplete = options.onComplete || function() {}, - timer = options.timer || noopTimer, - specCount, - failureCount, - failedSpecs = [], - pendingCount, - ansi = { - green: '\x1B[32m', - red: '\x1B[31m', - yellow: '\x1B[33m', - none: '\x1B[0m' - }, - failedSuites = []; - - print('ConsoleReporter is deprecated and will be removed in a future version.'); - - this.jasmineStarted = function() { - specCount = 0; - failureCount = 0; - pendingCount = 0; - print('Started'); - printNewline(); - timer.start(); - }; - - this.jasmineDone = function() { - printNewline(); - for (var i = 0; i < failedSpecs.length; i++) { - specFailureDetails(failedSpecs[i]); - } - - if(specCount > 0) { - printNewline(); - - var specCounts = specCount + ' ' + plural('spec', specCount) + ', ' + - failureCount + ' ' + plural('failure', failureCount); - - if (pendingCount) { - specCounts += ', ' + pendingCount + ' pending ' + plural('spec', pendingCount); - } - - print(specCounts); - } else { - print('No specs found'); - } - - printNewline(); - var seconds = timer.elapsed() / 1000; - print('Finished in ' + seconds + ' ' + plural('second', seconds)); - printNewline(); - - for(i = 0; i < failedSuites.length; i++) { - suiteFailureDetails(failedSuites[i]); - } - - onComplete(failureCount === 0); - }; - - this.specDone = function(result) { - specCount++; - - if (result.status == 'pending') { - pendingCount++; - print(colored('yellow', '*')); - return; - } - - if (result.status == 'passed') { - print(colored('green', '.')); - return; - } - - if (result.status == 'failed') { - failureCount++; - failedSpecs.push(result); - print(colored('red', 'F')); - } - }; - - this.suiteDone = function(result) { - if (result.failedExpectations && result.failedExpectations.length > 0) { - failureCount++; - failedSuites.push(result); - } - }; - - return this; - - function printNewline() { - print('\n'); - } - - function colored(color, str) { - return showColors ? (ansi[color] + str + ansi.none) : str; - } - - function plural(str, count) { - return count == 1 ? str : str + 's'; - } - - function repeat(thing, times) { - var arr = []; - for (var i = 0; i < times; i++) { - arr.push(thing); - } - return arr; - } - - function indent(str, spaces) { - var lines = (str || '').split('\n'); - var newArr = []; - for (var i = 0; i < lines.length; i++) { - newArr.push(repeat(' ', spaces).join('') + lines[i]); - } - return newArr.join('\n'); - } - - function specFailureDetails(result) { - printNewline(); - print(result.fullName); - - for (var i = 0; i < result.failedExpectations.length; i++) { - var failedExpectation = result.failedExpectations[i]; - printNewline(); - print(indent(failedExpectation.message, 2)); - print(indent(failedExpectation.stack, 2)); - } - - printNewline(); - } - - function suiteFailureDetails(result) { - for (var i = 0; i < result.failedExpectations.length; i++) { - printNewline(); - print(colored('red', 'An error was thrown in an afterAll')); - printNewline(); - print(colored('red', 'AfterAll ' + result.failedExpectations[i].message)); - - } - printNewline(); - } - } - - return ConsoleReporter; -}; diff --git a/www/assets/jasmine/jasmine-html.js b/www/assets/jasmine/jasmine-html.js deleted file mode 100644 index e116e86..0000000 --- a/www/assets/jasmine/jasmine-html.js +++ /dev/null @@ -1,545 +0,0 @@ -/* -Copyright (c) 2008-2020 Pivotal Labs - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -*/ -jasmineRequire.html = function(j$) { - j$.ResultsNode = jasmineRequire.ResultsNode(); - j$.HtmlReporter = jasmineRequire.HtmlReporter(j$); - j$.QueryString = jasmineRequire.QueryString(); - j$.HtmlSpecFilter = jasmineRequire.HtmlSpecFilter(); -}; - -jasmineRequire.HtmlReporter = function(j$) { - - var noopTimer = { - start: function() {}, - elapsed: function() { return 0; } - }; - - function ResultsStateBuilder() { - this.topResults = new j$.ResultsNode({}, '', null); - this.currentParent = this.topResults; - this.specsExecuted = 0; - this.failureCount = 0; - this.pendingSpecCount = 0; - } - - ResultsStateBuilder.prototype.suiteStarted = function(result) { - this.currentParent.addChild(result, 'suite'); - this.currentParent = this.currentParent.last(); - }; - - ResultsStateBuilder.prototype.suiteDone = function(result) { - if (this.currentParent !== this.topResults) { - this.currentParent = this.currentParent.parent; - } - }; - - ResultsStateBuilder.prototype.specStarted = function(result) { - }; - - ResultsStateBuilder.prototype.specDone = function(result) { - this.currentParent.addChild(result, 'spec'); - - if (result.status !== 'disabled') { - this.specsExecuted++; - } - - if (result.status === 'failed') { - this.failureCount++; - } - - if (result.status == 'pending') { - this.pendingSpecCount++; - } - }; - - - - function HtmlReporter(options) { - var env = options.env || {}, - getContainer = options.getContainer, - createElement = options.createElement, - createTextNode = options.createTextNode, - onRaiseExceptionsClick = options.onRaiseExceptionsClick || function() {}, - onThrowExpectationsClick = options.onThrowExpectationsClick || function() {}, - onRandomClick = options.onRandomClick || function() {}, - addToExistingQueryString = options.addToExistingQueryString || defaultQueryString, - filterSpecs = options.filterSpecs, - timer = options.timer || noopTimer, - results = [], - htmlReporterMain, - symbols, - failedSuites = [], - deprecationWarnings = []; - - this.initialize = function() { - clearPrior(); - htmlReporterMain = createDom('div', {className: 'jasmine_html-reporter'}, - createDom('div', {className: 'jasmine-banner'}, - createDom('a', {className: 'jasmine-title', href: 'http://jasmine.github.io/', target: '_blank'}), - createDom('span', {className: 'jasmine-version'}, j$.version) - ), - createDom('ul', {className: 'jasmine-symbol-summary'}), - createDom('div', {className: 'jasmine-alert'}), - createDom('div', {className: 'jasmine-results'}, - createDom('div', {className: 'jasmine-failures'}) - ) - ); - getContainer().appendChild(htmlReporterMain); - }; - - var totalSpecsDefined; - this.jasmineStarted = function(options) { - totalSpecsDefined = options.totalSpecsDefined || 0; - timer.start(); - }; - - var summary = createDom('div', {className: 'jasmine-summary'}); - - var stateBuilder = new ResultsStateBuilder(); - - this.suiteStarted = function(result) { - stateBuilder.suiteStarted(result); - }; - - this.suiteDone = function(result) { - if (result.status == 'failed') { - failedSuites.push(result); - } - - stateBuilder.suiteDone(result); - addDeprecationWarnings(result); - }; - - this.specStarted = function(result) { - stateBuilder.specStarted(result); - }; - - var failures = []; - this.specDone = function(result) { - stateBuilder.specDone(result); - - if(noExpectations(result) && typeof console !== 'undefined' && typeof console.error !== 'undefined') { - console.error('Spec \'' + result.fullName + '\' has no expectations.'); - } - - if (!symbols){ - symbols = find('.jasmine-symbol-summary'); - } - - symbols.appendChild(createDom('li', { - className: noExpectations(result) ? 'jasmine-empty' : 'jasmine-' + result.status, - id: 'spec_' + result.id, - title: result.fullName - } - )); - - if (result.status == 'failed') { - var failure = - createDom('div', {className: 'jasmine-spec-detail jasmine-failed'}, - createDom('div', {className: 'jasmine-description'}, - createDom('a', {title: result.fullName, href: specHref(result)}, result.fullName) - ), - createDom('div', {className: 'jasmine-messages'}) - ); - var messages = failure.childNodes[1]; - - for (var i = 0; i < result.failedExpectations.length; i++) { - var expectation = result.failedExpectations[i]; - messages.appendChild(createDom('div', {className: 'jasmine-result-message'}, expectation.message)); - messages.appendChild(createDom('div', {className: 'jasmine-stack-trace'}, expectation.stack)); - } - - failures.push(failure); - } - - addDeprecationWarnings(result); - }; - - this.jasmineDone = function(doneResult) { - var banner = find('.jasmine-banner'); - var alert = find('.jasmine-alert'); - var order = doneResult && doneResult.order; - alert.appendChild(createDom('span', {className: 'jasmine-duration'}, 'finished in ' + timer.elapsed() / 1000 + 's')); - - banner.appendChild( - createDom('div', { className: 'jasmine-run-options' }, - createDom('span', { className: 'jasmine-trigger' }, 'Options'), - createDom('div', { className: 'jasmine-payload' }, - createDom('div', { className: 'jasmine-exceptions' }, - createDom('input', { - className: 'jasmine-raise', - id: 'jasmine-raise-exceptions', - type: 'checkbox' - }), - createDom('label', { className: 'jasmine-label', 'for': 'jasmine-raise-exceptions' }, 'raise exceptions')), - createDom('div', { className: 'jasmine-throw-failures' }, - createDom('input', { - className: 'jasmine-throw', - id: 'jasmine-throw-failures', - type: 'checkbox' - }), - createDom('label', { className: 'jasmine-label', 'for': 'jasmine-throw-failures' }, 'stop spec on expectation failure')), - createDom('div', { className: 'jasmine-random-order' }, - createDom('input', { - className: 'jasmine-random', - id: 'jasmine-random-order', - type: 'checkbox' - }), - createDom('label', { className: 'jasmine-label', 'for': 'jasmine-random-order' }, 'run tests in random order')) - ) - )); - - var raiseCheckbox = find('#jasmine-raise-exceptions'); - - raiseCheckbox.checked = !env.catchingExceptions(); - raiseCheckbox.onclick = onRaiseExceptionsClick; - - var throwCheckbox = find('#jasmine-throw-failures'); - throwCheckbox.checked = env.throwingExpectationFailures(); - throwCheckbox.onclick = onThrowExpectationsClick; - - var randomCheckbox = find('#jasmine-random-order'); - randomCheckbox.checked = env.randomTests(); - randomCheckbox.onclick = onRandomClick; - - var optionsMenu = find('.jasmine-run-options'), - optionsTrigger = optionsMenu.querySelector('.jasmine-trigger'), - optionsPayload = optionsMenu.querySelector('.jasmine-payload'), - isOpen = /\bjasmine-open\b/; - - optionsTrigger.onclick = function() { - if (isOpen.test(optionsPayload.className)) { - optionsPayload.className = optionsPayload.className.replace(isOpen, ''); - } else { - optionsPayload.className += ' jasmine-open'; - } - }; - - if (stateBuilder.specsExecuted < totalSpecsDefined) { - var skippedMessage = 'Ran ' + stateBuilder.specsExecuted + ' of ' + totalSpecsDefined + ' specs - run all'; - var skippedLink = addToExistingQueryString('spec', ''); - alert.appendChild( - createDom('span', {className: 'jasmine-bar jasmine-skipped'}, - createDom('a', {href: skippedLink, title: 'Run all specs'}, skippedMessage) - ) - ); - } - var statusBarMessage = ''; - var statusBarClassName = 'jasmine-bar '; - - if (totalSpecsDefined > 0) { - statusBarMessage += pluralize('spec', stateBuilder.specsExecuted) + ', ' + pluralize('failure', stateBuilder.failureCount); - if (stateBuilder.pendingSpecCount) { statusBarMessage += ', ' + pluralize('pending spec', stateBuilder.pendingSpecCount); } - statusBarClassName += (stateBuilder.failureCount > 0) ? 'jasmine-failed' : 'jasmine-passed'; - } else { - statusBarClassName += 'jasmine-skipped'; - statusBarMessage += 'No specs found'; - } - - var seedBar; - if (order && order.random) { - seedBar = createDom('span', {className: 'jasmine-seed-bar'}, - ', randomized with seed ', - createDom('a', {title: 'randomized with seed ' + order.seed, href: seedHref(order.seed)}, order.seed) - ); - } - - alert.appendChild(createDom('span', {className: statusBarClassName}, statusBarMessage, seedBar)); - - var errorBarClassName = 'jasmine-bar jasmine-errored'; - var errorBarMessagePrefix = 'AfterAll '; - - for(var i = 0; i < failedSuites.length; i++) { - var failedSuite = failedSuites[i]; - for(var j = 0; j < failedSuite.failedExpectations.length; j++) { - alert.appendChild(createDom('span', {className: errorBarClassName}, errorBarMessagePrefix + failedSuite.failedExpectations[j].message)); - } - } - - var globalFailures = (doneResult && doneResult.failedExpectations) || []; - for(i = 0; i < globalFailures.length; i++) { - var failure = globalFailures[i]; - alert.appendChild(createDom('span', {className: errorBarClassName}, errorBarMessagePrefix + failure.message)); - } - - addDeprecationWarnings(doneResult); - - var warningBarClassName = 'jasmine-bar jasmine-warning'; - for(i = 0; i < deprecationWarnings.length; i++) { - var warning = deprecationWarnings[i]; - alert.appendChild(createDom('span', {className: warningBarClassName}, 'DEPRECATION: ' + warning)); - } - - var results = find('.jasmine-results'); - results.appendChild(summary); - - summaryList(stateBuilder.topResults, summary); - - function summaryList(resultsTree, domParent) { - var specListNode; - for (var i = 0; i < resultsTree.children.length; i++) { - var resultNode = resultsTree.children[i]; - if (filterSpecs && !hasActiveSpec(resultNode)) { - continue; - } - if (resultNode.type == 'suite') { - var suiteListNode = createDom('ul', {className: 'jasmine-suite', id: 'suite-' + resultNode.result.id}, - createDom('li', {className: 'jasmine-suite-detail'}, - createDom('a', {href: specHref(resultNode.result)}, resultNode.result.description) - ) - ); - - summaryList(resultNode, suiteListNode); - domParent.appendChild(suiteListNode); - } - if (resultNode.type == 'spec') { - if (domParent.getAttribute('class') != 'jasmine-specs') { - specListNode = createDom('ul', {className: 'jasmine-specs'}); - domParent.appendChild(specListNode); - } - var specDescription = resultNode.result.description; - if(noExpectations(resultNode.result)) { - specDescription = 'SPEC HAS NO EXPECTATIONS ' + specDescription; - } - if(resultNode.result.status === 'pending' && resultNode.result.pendingReason !== '') { - specDescription = specDescription + ' PENDING WITH MESSAGE: ' + resultNode.result.pendingReason; - } - specListNode.appendChild( - createDom('li', { - className: 'jasmine-' + resultNode.result.status, - id: 'spec-' + resultNode.result.id - }, - createDom('a', {href: specHref(resultNode.result)}, specDescription) - ) - ); - } - } - } - - if (failures.length) { - alert.appendChild( - createDom('span', {className: 'jasmine-menu jasmine-bar jasmine-spec-list'}, - createDom('span', {}, 'Spec List | '), - createDom('a', {className: 'jasmine-failures-menu', href: '#'}, 'Failures'))); - alert.appendChild( - createDom('span', {className: 'jasmine-menu jasmine-bar jasmine-failure-list'}, - createDom('a', {className: 'jasmine-spec-list-menu', href: '#'}, 'Spec List'), - createDom('span', {}, ' | Failures '))); - - find('.jasmine-failures-menu').onclick = function() { - setMenuModeTo('jasmine-failure-list'); - }; - find('.jasmine-spec-list-menu').onclick = function() { - setMenuModeTo('jasmine-spec-list'); - }; - - setMenuModeTo('jasmine-failure-list'); - - var failureNode = find('.jasmine-failures'); - for (i = 0; i < failures.length; i++) { - failureNode.appendChild(failures[i]); - } - } - }; - - return this; - - function addDeprecationWarnings(result) { - if (result && result.deprecationWarnings) { - for(var i = 0; i < result.deprecationWarnings.length; i++) { - var warning = result.deprecationWarnings[i].message; - if (!j$.util.arrayContains(warning)) { - deprecationWarnings.push(warning); - } - } - } - } - - function find(selector) { - return getContainer().querySelector('.jasmine_html-reporter ' + selector); - } - - function clearPrior() { - // return the reporter - var oldReporter = find(''); - - if(oldReporter) { - getContainer().removeChild(oldReporter); - } - } - - function createDom(type, attrs, childrenVarArgs) { - var el = createElement(type); - - for (var i = 2; i < arguments.length; i++) { - var child = arguments[i]; - - if (typeof child === 'string') { - el.appendChild(createTextNode(child)); - } else { - if (child) { - el.appendChild(child); - } - } - } - - for (var attr in attrs) { - if (attr == 'className') { - el[attr] = attrs[attr]; - } else { - el.setAttribute(attr, attrs[attr]); - } - } - - return el; - } - - function pluralize(singular, count) { - var word = (count == 1 ? singular : singular + 's'); - - return '' + count + ' ' + word; - } - - function specHref(result) { - return addToExistingQueryString('spec', result.fullName); - } - - function seedHref(seed) { - return addToExistingQueryString('seed', seed); - } - - function defaultQueryString(key, value) { - return '?' + key + '=' + value; - } - - function setMenuModeTo(mode) { - htmlReporterMain.setAttribute('class', 'jasmine_html-reporter ' + mode); - } - - function noExpectations(result) { - return (result.failedExpectations.length + result.passedExpectations.length) === 0 && - result.status === 'passed'; - } - - function hasActiveSpec(resultNode) { - if (resultNode.type == 'spec' && resultNode.result.status != 'disabled') { - return true; - } - - if (resultNode.type == 'suite') { - for (var i = 0, j = resultNode.children.length; i < j; i++) { - if (hasActiveSpec(resultNode.children[i])) { - return true; - } - } - } - } - } - - return HtmlReporter; -}; - -jasmineRequire.HtmlSpecFilter = function() { - function HtmlSpecFilter(options) { - var filterString = options && options.filterString() && options.filterString().replace(/[-[\]{}()*+?.,\\^$|#\s]/g, '\\$&'); - var filterPattern = new RegExp(filterString); - - this.matches = function(specName) { - return filterPattern.test(specName); - }; - } - - return HtmlSpecFilter; -}; - -jasmineRequire.ResultsNode = function() { - function ResultsNode(result, type, parent) { - this.result = result; - this.type = type; - this.parent = parent; - - this.children = []; - - this.addChild = function(result, type) { - this.children.push(new ResultsNode(result, type, this)); - }; - - this.last = function() { - return this.children[this.children.length - 1]; - }; - } - - return ResultsNode; -}; - -jasmineRequire.QueryString = function() { - function QueryString(options) { - - this.navigateWithNewParam = function(key, value) { - options.getWindowLocation().search = this.fullStringWithNewParam(key, value); - }; - - this.fullStringWithNewParam = function(key, value) { - var paramMap = queryStringToParamMap(); - paramMap[key] = value; - return toQueryString(paramMap); - }; - - this.getParam = function(key) { - return queryStringToParamMap()[key]; - }; - - return this; - - function toQueryString(paramMap) { - var qStrPairs = []; - for (var prop in paramMap) { - qStrPairs.push(encodeURIComponent(prop) + '=' + encodeURIComponent(paramMap[prop])); - } - return '?' + qStrPairs.join('&'); - } - - function queryStringToParamMap() { - var paramStr = options.getWindowLocation().search.substring(1), - params = [], - paramMap = {}; - - if (paramStr.length > 0) { - params = paramStr.split('&'); - for (var i = 0; i < params.length; i++) { - var p = params[i].split('='); - var value = decodeURIComponent(p[1]); - if (value === 'true' || value === 'false') { - value = JSON.parse(value); - } - paramMap[decodeURIComponent(p[0])] = value; - } - } - - return paramMap; - } - - } - - return QueryString; -}; diff --git a/www/assets/jasmine/jasmine.css b/www/assets/jasmine/jasmine.css deleted file mode 100644 index 5207c5b..0000000 --- a/www/assets/jasmine/jasmine.css +++ /dev/null @@ -1,59 +0,0 @@ -body { overflow-y: scroll; } - -.jasmine_html-reporter { background-color: #eee; padding: 5px; margin: -8px; font-size: 11px; font-family: Monaco, "Lucida Console", monospace; line-height: 14px; color: #333; } -.jasmine_html-reporter a { text-decoration: none; } -.jasmine_html-reporter a:hover { text-decoration: underline; } -.jasmine_html-reporter p, .jasmine_html-reporter h1, .jasmine_html-reporter h2, .jasmine_html-reporter h3, .jasmine_html-reporter h4, .jasmine_html-reporter h5, .jasmine_html-reporter h6 { margin: 0; line-height: 14px; } -.jasmine_html-reporter .jasmine-banner, .jasmine_html-reporter .jasmine-symbol-summary, .jasmine_html-reporter .jasmine-summary, .jasmine_html-reporter .jasmine-result-message, .jasmine_html-reporter .jasmine-spec .jasmine-description, .jasmine_html-reporter .jasmine-spec-detail .jasmine-description, .jasmine_html-reporter .jasmine-alert .jasmine-bar, .jasmine_html-reporter .jasmine-stack-trace { padding-left: 9px; padding-right: 9px; } -.jasmine_html-reporter .jasmine-banner { position: relative; } -.jasmine_html-reporter .jasmine-banner .jasmine-title { background: url('data:image/png;base64,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') no-repeat; background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjwhLS0gQ3JlYXRlZCB3aXRoIElua3NjYXBlIChodHRwOi8vd3d3Lmlua3NjYXBlLm9yZy8pIC0tPgoKPHN2ZwogICB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iCiAgIHhtbG5zOmNjPSJodHRwOi8vY3JlYXRpdmVjb21tb25zLm9yZy9ucyMiCiAgIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyIKICAgeG1sbnM6c3ZnPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogICB4bWxuczppbmtzY2FwZT0iaHR0cDovL3d3dy5pbmtzY2FwZS5vcmcvbmFtZXNwYWNlcy9pbmtzY2FwZSIKICAgdmVyc2lvbj0iMS4xIgogICB3aWR0aD0iNjgxLjk2MjUyIgogICBoZWlnaHQ9IjE4Ny41IgogICBpZD0ic3ZnMiIKICAgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PG1ldGFkYXRhCiAgICAgaWQ9Im1ldGFkYXRhOCI+PHJkZjpSREY+PGNjOldvcmsKICAgICAgICAgcmRmOmFib3V0PSIiPjxkYzpmb3JtYXQ+aW1hZ2Uvc3ZnK3htbDwvZGM6Zm9ybWF0PjxkYzp0eXBlCiAgICAgICAgICAgcmRmOnJlc291cmNlPSJodHRwOi8vcHVybC5vcmcvZGMvZGNtaXR5cGUvU3RpbGxJbWFnZSIgLz48L2NjOldvcms+PC9yZGY6UkRGPjwvbWV0YWRhdGE+PGRlZnMKICAgICBpZD0iZGVmczYiPjxjbGlwUGF0aAogICAgICAgaWQ9ImNsaXBQYXRoMTgiPjxwYXRoCiAgICAgICAgIGQ9Ik0gMCwxNTAwIDAsMCBsIDU0NTUuNzQsMCAwLDE1MDAgTCAwLDE1MDAgeiIKICAgICAgICAgaW5rc2NhcGU6Y29ubmVjdG9yLWN1cnZhdHVyZT0iMCIKICAgICAgICAgaWQ9InBhdGgyMCIgLz48L2NsaXBQYXRoPjwvZGVmcz48ZwogICAgIHRyYW5zZm9ybT0ibWF0cml4KDEuMjUsMCwwLC0xLjI1LDAsMTg3LjUpIgogICAgIGlkPSJnMTAiPjxnCiAgICAgICB0cmFuc2Zvcm09InNjYWxlKDAuMSwwLjEpIgogICAgICAgaWQ9ImcxMiI+PGcKICAgICAgICAgaWQ9ImcxNCI+PGcKICAgICAgICAgICBjbGlwLXBhdGg9InVybCgjY2xpcFBhdGgxOCkiCiAgICAgICAgICAgaWQ9ImcxNiI+PHBhdGgKICAgICAgICAgICAgIGQ9Im0gMTU0NCw1OTkuNDM0IGMgMC45MiwtNDAuMzUyIDI1LjY4LC04MS42MDIgNzEuNTMsLTgxLjYwMiAyNy41MSwwIDQ3LjY4LDEyLjgzMiA2MS40NCwzNS43NTQgMTIuODMsMjIuOTMgMTIuODMsNTYuODUyIDEyLjgzLDgyLjUyNyBsIDAsMzI5LjE4NCAtNzEuNTIsMCAwLDEwNC41NDMgMjY2LjgzLDAgMCwtMTA0LjU0MyAtNzAuNiwwIDAsLTM0NC43NyBjIDAsLTU4LjY5MSAtMy42OCwtMTA0LjUzMSAtNDQuOTMsLTE1Mi4yMTggLTM2LjY4LC00Mi4xOCAtOTYuMjgsLTY2LjAyIC0xNTMuMTQsLTY2LjAyIC0xMTcuMzcsMCAtMjA3LjI0LDc3Ljk0MSAtMjAyLjY0LDE5Ny4xNDUgbCAxMzAuMiwwIgogICAgICAgICAgICAgaW5rc2NhcGU6Y29ubmVjdG9yLWN1cnZhdHVyZT0iMCIKICAgICAgICAgICAgIGlkPSJwYXRoMjIiCiAgICAgICAgICAgICBzdHlsZT0iZmlsbDojOGE0MTgyO2ZpbGwtb3BhY2l0eToxO2ZpbGwtcnVsZTpub256ZXJvO3N0cm9rZTpub25lIiAvPjxwYXRoCiAgICAgICAgICAgICBkPSJtIDIzMDEuNCw2NjIuNjk1IGMgMCw4MC43MDMgLTY2Ljk0LDE0NS44MTMgLTE0Ny42MywxNDUuODEzIC04My40NCwwIC0xNDcuNjMsLTY4Ljc4MSAtMTQ3LjYzLC0xNTEuMzAxIDAsLTc5Ljc4NSA2Ni45NCwtMTQ1LjgwMSAxNDUuOCwtMTQ1LjgwMSA4NC4zNSwwIDE0OS40Niw2Ny44NTIgMTQ5LjQ2LDE1MS4yODkgeiBtIC0xLjgzLC0xODEuNTQ3IGMgLTM1Ljc3LC01NC4wOTcgLTkzLjUzLC03OC44NTkgLTE1Ny43MiwtNzguODU5IC0xNDAuMywwIC0yNTEuMjQsMTE2LjQ0OSAtMjUxLjI0LDI1NC45MTggMCwxNDIuMTI5IDExMy43LDI2MC40MSAyNTYuNzQsMjYwLjQxIDYzLjI3LDAgMTE4LjI5LC0yOS4zMzYgMTUyLjIyLC04Mi41MjMgbCAwLDY5LjY4NyAxNzUuMTQsMCAwLC0xMDQuNTI3IC02MS40NCwwIDAsLTI4MC41OTggNjEuNDQsMCAwLC0xMDQuNTI3IC0xNzUuMTQsMCAwLDY2LjAxOSIKICAgICAgICAgICAgIGlua3NjYXBlOmNvbm5lY3Rvci1jdXJ2YXR1cmU9IjAiCiAgICAgICAgICAgICBpZD0icGF0aDI0IgogICAgICAgICAgICAgc3R5bGU9ImZpbGw6IzhhNDE4MjtmaWxsLW9wYWNpdHk6MTtmaWxsLXJ1bGU6bm9uemVybztzdHJva2U6bm9uZSIgLz48cGF0aAogICAgICAgICAgICAgZD0ibSAyNjIyLjMzLDU1Ny4yNTggYyAzLjY3LC00NC4wMTYgMzMuMDEsLTczLjM0OCA3OC44NiwtNzMuMzQ4IDMzLjkzLDAgNjYuOTMsMjMuODI0IDY2LjkzLDYwLjUwNCAwLDQ4LjYwNiAtNDUuODQsNTYuODU2IC04My40NCw2Ni45NDEgLTg1LjI4LDIyLjAwNCAtMTc4LjgxLDQ4LjYwNiAtMTc4LjgxLDE1NS44NzkgMCw5My41MzYgNzguODYsMTQ3LjYzMyAxNjUuOTgsMTQ3LjYzMyA0NCwwIDgzLjQzLC05LjE3NiAxMTAuOTQsLTQ0LjAwOCBsIDAsMzMuOTIyIDgyLjUzLDAgMCwtMTMyLjk2NSAtMTA4LjIxLDAgYyAtMS44MywzNC44NTYgLTI4LjQyLDU3Ljc3NCAtNjMuMjYsNTcuNzc0IC0zMC4yNiwwIC02Mi4zNSwtMTcuNDIyIC02Mi4zNSwtNTEuMzQ4IDAsLTQ1Ljg0NyA0NC45MywtNTUuOTMgODAuNjksLTY0LjE4IDg4LjAyLC0yMC4xNzUgMTgyLjQ3LC00Ny42OTUgMTgyLjQ3LC0xNTcuNzM0IDAsLTk5LjAyNyAtODMuNDQsLTE1NC4wMzkgLTE3NS4xMywtMTU0LjAzOSAtNDkuNTMsMCAtOTQuNDYsMTUuNTgyIC0xMjYuNTUsNTMuMTggbCAwLC00MC4zNCAtODUuMjcsMCAwLDE0Mi4xMjkgMTE0LjYyLDAiCiAgICAgICAgICAgICBpbmtzY2FwZTpjb25uZWN0b3ItY3VydmF0dXJlPSIwIgogICAgICAgICAgICAgaWQ9InBhdGgyNiIKICAgICAgICAgICAgIHN0eWxlPSJmaWxsOiM4YTQxODI7ZmlsbC1vcGFjaXR5OjE7ZmlsbC1ydWxlOm5vbnplcm87c3Ryb2tlOm5vbmUiIC8+PHBhdGgKICAgICAgICAgICAgIGQ9Im0gMjk4OC4xOCw4MDAuMjU0IC02My4yNiwwIDAsMTA0LjUyNyAxNjUuMDUsMCAwLC03My4zNTUgYyAzMS4xOCw1MS4zNDcgNzguODYsODUuMjc3IDE0MS4yMSw4NS4yNzcgNjcuODUsMCAxMjQuNzEsLTQxLjI1OCAxNTIuMjEsLTEwMi42OTkgMjYuNiw2Mi4zNTEgOTIuNjIsMTAyLjY5OSAxNjAuNDcsMTAyLjY5OSA1My4xOSwwIDEwNS40NiwtMjIgMTQxLjIxLC02Mi4zNTEgMzguNTIsLTQ0LjkzOCAzOC41MiwtOTMuNTMyIDM4LjUyLC0xNDkuNDU3IGwgMCwtMTg1LjIzOSA2My4yNywwIDAsLTEwNC41MjcgLTIzOC40MiwwIDAsMTA0LjUyNyA2My4yOCwwIDAsMTU3LjcxNSBjIDAsMzIuMTAyIDAsNjAuNTI3IC0xNC42Nyw4OC45NTcgLTE4LjM0LDI2LjU4MiAtNDguNjEsNDAuMzQ0IC03OS43Nyw0MC4zNDQgLTMwLjI2LDAgLTYzLjI4LC0xMi44NDQgLTgyLjUzLC0zNi42NzIgLTIyLjkzLC0yOS4zNTUgLTIyLjkzLC01Ni44NjMgLTIyLjkzLC05Mi42MjkgbCAwLC0xNTcuNzE1IDYzLjI3LDAgMCwtMTA0LjUyNyAtMjM4LjQxLDAgMCwxMDQuNTI3IDYzLjI4LDAgMCwxNTAuMzgzIGMgMCwyOS4zNDggMCw2Ni4wMjMgLTE0LjY3LDkxLjY5OSAtMTUuNTksMjkuMzM2IC00Ny42OSw0NC45MzQgLTgwLjcsNDQuOTM0IC0zMS4xOCwwIC01Ny43NywtMTEuMDA4IC03Ny45NCwtMzUuNzc0IC0yNC43NywtMzAuMjUzIC0yNi42LC02Mi4zNDMgLTI2LjYsLTk5Ljk0MSBsIDAsLTE1MS4zMDEgNjMuMjcsMCAwLC0xMDQuNTI3IC0yMzguNCwwIDAsMTA0LjUyNyA2My4yNiwwIDAsMjgwLjU5OCIKICAgICAgICAgICAgIGlua3NjYXBlOmNvbm5lY3Rvci1jdXJ2YXR1cmU9IjAiCiAgICAgICAgICAgICBpZD0icGF0aDI4IgogICAgICAgICAgICAgc3R5bGU9ImZpbGw6IzhhNDE4MjtmaWxsLW9wYWNpdHk6MTtmaWxsLXJ1bGU6bm9uemVybztzdHJva2U6bm9uZSIgLz48cGF0aAogICAgICAgICAgICAgZD0ibSAzOTk4LjY2LDk1MS41NDcgLTExMS44NywwIDAsMTE4LjI5MyAxMTEuODcsMCAwLC0xMTguMjkzIHogbSAwLC00MzEuODkxIDYzLjI3LDAgMCwtMTA0LjUyNyAtMjM5LjMzLDAgMCwxMDQuNTI3IDY0LjE5LDAgMCwyODAuNTk4IC02My4yNywwIDAsMTA0LjUyNyAxNzUuMTQsMCAwLC0zODUuMTI1IgogICAgICAgICAgICAgaW5rc2NhcGU6Y29ubmVjdG9yLWN1cnZhdHVyZT0iMCIKICAgICAgICAgICAgIGlkPSJwYXRoMzAiCiAgICAgICAgICAgICBzdHlsZT0iZmlsbDojOGE0MTgyO2ZpbGwtb3BhY2l0eToxO2ZpbGwtcnVsZTpub256ZXJvO3N0cm9rZTpub25lIiAvPjxwYXRoCiAgICAgICAgICAgICBkPSJtIDQxNTkuMTIsODAwLjI1NCAtNjMuMjcsMCAwLDEwNC41MjcgMTc1LjE0LDAgMCwtNjkuNjg3IGMgMjkuMzUsNTQuMTAxIDg0LjM2LDgwLjY5OSAxNDQuODcsODAuNjk5IDUzLjE5LDAgMTA1LjQ1LC0yMi4wMTYgMTQxLjIyLC02MC41MjcgNDAuMzQsLTQ0LjkzNCA0MS4yNiwtODguMDMyIDQxLjI2LC0xNDMuOTU3IGwgMCwtMTkxLjY1MyA2My4yNywwIDAsLTEwNC41MjcgLTIzOC40LDAgMCwxMDQuNTI3IDYzLjI2LDAgMCwxNTguNjM3IGMgMCwzMC4yNjIgMCw2MS40MzQgLTE5LjI2LDg4LjAzNSAtMjAuMTcsMjYuNTgyIC01My4xOCwzOS40MTQgLTg2LjE5LDM5LjQxNCAtMzMuOTMsMCAtNjguNzcsLTEzLjc1IC04OC45NCwtNDEuMjUgLTIxLjA5LC0yNy41IC0yMS4wOSwtNjkuNjg3IC0yMS4wOSwtMTAyLjcwNyBsIDAsLTE0Mi4xMjkgNjMuMjYsMCAwLC0xMDQuNTI3IC0yMzguNCwwIDAsMTA0LjUyNyA2My4yNywwIDAsMjgwLjU5OCIKICAgICAgICAgICAgIGlua3NjYXBlOmNvbm5lY3Rvci1jdXJ2YXR1cmU9IjAiCiAgICAgICAgICAgICBpZD0icGF0aDMyIgogICAgICAgICAgICAgc3R5bGU9ImZpbGw6IzhhNDE4MjtmaWxsLW9wYWNpdHk6MTtmaWxsLXJ1bGU6bm9uemVybztzdHJva2U6bm9uZSIgLz48cGF0aAogICAgICAgICAgICAgZD0ibSA1MDgyLjQ4LDcwMy45NjUgYyAtMTkuMjQsNzAuNjA1IC04MS42LDExNS41NDcgLTE1NC4wNCwxMTUuNTQ3IC02Ni4wNCwwIC0xMjkuMywtNTEuMzQ4IC0xNDMuMDUsLTExNS41NDcgbCAyOTcuMDksMCB6IG0gODUuMjcsLTE0NC44ODMgYyAtMzguNTEsLTkzLjUyMyAtMTI5LjI3LC0xNTYuNzkzIC0yMzEuMDUsLTE1Ni43OTMgLTE0My4wNywwIC0yNTcuNjgsMTExLjg3MSAtMjU3LjY4LDI1NS44MzYgMCwxNDQuODgzIDEwOS4xMiwyNjEuMzI4IDI1NC45MSwyNjEuMzI4IDY3Ljg3LDAgMTM1LjcyLC0zMC4yNTggMTgzLjM5LC03OC44NjMgNDguNjIsLTUxLjM0NCA2OC43OSwtMTEzLjY5NSA2OC43OSwtMTgzLjM4MyBsIC0zLjY3LC0zOS40MzQgLTM5Ni4xMywwIGMgMTQuNjcsLTY3Ljg2MyA3Ny4wMywtMTE3LjM2MyAxNDYuNzIsLTExNy4zNjMgNDguNTksMCA5MC43NiwxOC4zMjggMTE4LjI4LDU4LjY3MiBsIDExNi40NCwwIgogICAgICAgICAgICAgaW5rc2NhcGU6Y29ubmVjdG9yLWN1cnZhdHVyZT0iMCIKICAgICAgICAgICAgIGlkPSJwYXRoMzQiCiAgICAgICAgICAgICBzdHlsZT0iZmlsbDojOGE0MTgyO2ZpbGwtb3BhY2l0eToxO2ZpbGwtcnVsZTpub256ZXJvO3N0cm9rZTpub25lIiAvPjxwYXRoCiAgICAgICAgICAgICBkPSJtIDY5MC44OTUsODUwLjcwMyA5MC43NSwwIDIyLjU0MywzMS4wMzUgMCwyNDMuMTIyIC0xMzUuODI5LDAgMCwtMjQzLjE0MSAyMi41MzYsLTMxLjAxNiIKICAgICAgICAgICAgIGlua3NjYXBlOmNvbm5lY3Rvci1jdXJ2YXR1cmU9IjAiCiAgICAgICAgICAgICBpZD0icGF0aDM2IgogICAgICAgICAgICAgc3R5bGU9ImZpbGw6IzhhNDE4MjtmaWxsLW9wYWNpdHk6MTtmaWxsLXJ1bGU6bm9uemVybztzdHJva2U6bm9uZSIgLz48cGF0aAogICAgICAgICAgICAgZD0ibSA2MzIuMzk1LDc0Mi4yNTggMjguMDM5LDg2LjMwNCAtMjIuNTUxLDMxLjA0IC0yMzEuMjIzLDc1LjEyOCAtNDEuOTc2LC0xMjkuMTgzIDIzMS4yNTcsLTc1LjEzNyAzNi40NTQsMTEuODQ4IgogICAgICAgICAgICAgaW5rc2NhcGU6Y29ubmVjdG9yLWN1cnZhdHVyZT0iMCIKICAgICAgICAgICAgIGlkPSJwYXRoMzgiCiAgICAgICAgICAgICBzdHlsZT0iZmlsbDojOGE0MTgyO2ZpbGwtb3BhY2l0eToxO2ZpbGwtcnVsZTpub256ZXJvO3N0cm9rZTpub25lIiAvPjxwYXRoCiAgICAgICAgICAgICBkPSJtIDcxNy40NDksNjUzLjEwNSAtNzMuNDEsNTMuMzYgLTM2LjQ4OCwtMTEuODc1IC0xNDIuOTAzLC0xOTYuNjkyIDEwOS44ODMsLTc5LjgyOCAxNDIuOTE4LDE5Ni43MDMgMCwzOC4zMzIiCiAgICAgICAgICAgICBpbmtzY2FwZTpjb25uZWN0b3ItY3VydmF0dXJlPSIwIgogICAgICAgICAgICAgaWQ9InBhdGg0MCIKICAgICAgICAgICAgIHN0eWxlPSJmaWxsOiM4YTQxODI7ZmlsbC1vcGFjaXR5OjE7ZmlsbC1ydWxlOm5vbnplcm87c3Ryb2tlOm5vbmUiIC8+PHBhdGgKICAgICAgICAgICAgIGQ9Im0gODI4LjUyLDcwNi40NjUgLTczLjQyNiwtNTMuMzQgMC4wMTEsLTM4LjM1OSBMIDg5OC4wMDQsNDE4LjA3IDEwMDcuOSw0OTcuODk4IDg2NC45NzMsNjk0LjYwOSA4MjguNTIsNzA2LjQ2NSIKICAgICAgICAgICAgIGlua3NjYXBlOmNvbm5lY3Rvci1jdXJ2YXR1cmU9IjAiCiAgICAgICAgICAgICBpZD0icGF0aDQyIgogICAgICAgICAgICAgc3R5bGU9ImZpbGw6IzhhNDE4MjtmaWxsLW9wYWNpdHk6MTtmaWxsLXJ1bGU6bm9uemVybztzdHJva2U6bm9uZSIgLz48cGF0aAogICAgICAgICAgICAgZD0ibSA4MTIuMDg2LDgyOC41ODYgMjguMDU1LC04Ni4zMiAzNi40ODQsLTExLjgzNiAyMzEuMjI1LDc1LjExNyAtNDEuOTcsMTI5LjE4MyAtMjMxLjIzOSwtNzUuMTQgLTIyLjU1NSwtMzEuMDA0IgogICAgICAgICAgICAgaW5rc2NhcGU6Y29ubmVjdG9yLWN1cnZhdHVyZT0iMCIKICAgICAgICAgICAgIGlkPSJwYXRoNDQiCiAgICAgICAgICAgICBzdHlsZT0iZmlsbDojOGE0MTgyO2ZpbGwtb3BhY2l0eToxO2ZpbGwtcnVsZTpub256ZXJvO3N0cm9rZTpub25lIiAvPjxwYXRoCiAgICAgICAgICAgICBkPSJtIDczNi4zMDEsMTMzNS44OCBjIC0zMjMuMDQ3LDAgLTU4NS44NzUsLTI2Mi43OCAtNTg1Ljg3NSwtNTg1Ljc4MiAwLC0zMjMuMTE4IDI2Mi44MjgsLTU4NS45NzcgNTg1Ljg3NSwtNTg1Ljk3NyAzMjMuMDE5LDAgNTg1LjgwOSwyNjIuODU5IDU4NS44MDksNTg1Ljk3NyAwLDMyMy4wMDIgLTI2Mi43OSw1ODUuNzgyIC01ODUuODA5LDU4NS43ODIgbCAwLDAgeiBtIDAsLTExOC42MSBjIDI1Ny45NzIsMCA0NjcuMTg5LC0yMDkuMTMgNDY3LjE4OSwtNDY3LjE3MiAwLC0yNTguMTI5IC0yMDkuMjE3LC00NjcuMzQ4IC00NjcuMTg5LC00NjcuMzQ4IC0yNTguMDc0LDAgLTQ2Ny4yNTQsMjA5LjIxOSAtNDY3LjI1NCw0NjcuMzQ4IDAsMjU4LjA0MiAyMDkuMTgsNDY3LjE3MiA0NjcuMjU0LDQ2Ny4xNzIiCiAgICAgICAgICAgICBpbmtzY2FwZTpjb25uZWN0b3ItY3VydmF0dXJlPSIwIgogICAgICAgICAgICAgaWQ9InBhdGg0NiIKICAgICAgICAgICAgIHN0eWxlPSJmaWxsOiM4YTQxODI7ZmlsbC1vcGFjaXR5OjE7ZmlsbC1ydWxlOm5vbnplcm87c3Ryb2tlOm5vbmUiIC8+PHBhdGgKICAgICAgICAgICAgIGQ9Im0gMTA5MS4xMyw2MTkuODgzIC0xNzUuNzcxLDU3LjEyMSAxMS42MjksMzUuODA4IDE3NS43NjIsLTU3LjEyMSAtMTEuNjIsLTM1LjgwOCIKICAgICAgICAgICAgIGlua3NjYXBlOmNvbm5lY3Rvci1jdXJ2YXR1cmU9IjAiCiAgICAgICAgICAgICBpZD0icGF0aDQ4IgogICAgICAgICAgICAgc3R5bGU9ImZpbGw6IzhhNDE4MjtmaWxsLW9wYWNpdHk6MTtmaWxsLXJ1bGU6bm9uemVybztzdHJva2U6bm9uZSIgLz48cGF0aAogICAgICAgICAgICAgZD0iTSA4NjYuOTU3LDkwMi4wNzQgODM2LjUsOTI0LjE5OSA5NDUuMTIxLDEwNzMuNzMgOTc1LjU4NiwxMDUxLjYxIDg2Ni45NTcsOTAyLjA3NCIKICAgICAgICAgICAgIGlua3NjYXBlOmNvbm5lY3Rvci1jdXJ2YXR1cmU9IjAiCiAgICAgICAgICAgICBpZD0icGF0aDUwIgogICAgICAgICAgICAgc3R5bGU9ImZpbGw6IzhhNDE4MjtmaWxsLW9wYWNpdHk6MTtmaWxsLXJ1bGU6bm9uemVybztzdHJva2U6bm9uZSIgLz48cGF0aAogICAgICAgICAgICAgZD0iTSA2MDcuNDY1LDkwMy40NDUgNDk4Ljg1NSwxMDUyLjk3IDUyOS4zMiwxMDc1LjEgNjM3LjkzLDkyNS41NjYgNjA3LjQ2NSw5MDMuNDQ1IgogICAgICAgICAgICAgaW5rc2NhcGU6Y29ubmVjdG9yLWN1cnZhdHVyZT0iMCIKICAgICAgICAgICAgIGlkPSJwYXRoNTIiCiAgICAgICAgICAgICBzdHlsZT0iZmlsbDojOGE0MTgyO2ZpbGwtb3BhY2l0eToxO2ZpbGwtcnVsZTpub256ZXJvO3N0cm9rZTpub25lIiAvPjxwYXRoCiAgICAgICAgICAgICBkPSJtIDM4MC42ODgsNjIyLjEyOSAtMTEuNjI2LDM1LjgwMSAxNzUuNzU4LDU3LjA5IDExLjYyMSwtMzUuODAxIC0xNzUuNzUzLC01Ny4wOSIKICAgICAgICAgICAgIGlua3NjYXBlOmNvbm5lY3Rvci1jdXJ2YXR1cmU9IjAiCiAgICAgICAgICAgICBpZD0icGF0aDU0IgogICAgICAgICAgICAgc3R5bGU9ImZpbGw6IzhhNDE4MjtmaWxsLW9wYWNpdHk6MTtmaWxsLXJ1bGU6bm9uemVybztzdHJva2U6bm9uZSIgLz48cGF0aAogICAgICAgICAgICAgZD0ibSA3MTYuMjg5LDM3Ni41OSAzNy42NDA2LDAgMCwxODQuODE2IC0zNy42NDA2LDAgMCwtMTg0LjgxNiB6IgogICAgICAgICAgICAgaW5rc2NhcGU6Y29ubmVjdG9yLWN1cnZhdHVyZT0iMCIKICAgICAgICAgICAgIGlkPSJwYXRoNTYiCiAgICAgICAgICAgICBzdHlsZT0iZmlsbDojOGE0MTgyO2ZpbGwtb3BhY2l0eToxO2ZpbGwtcnVsZTpub256ZXJvO3N0cm9rZTpub25lIiAvPjwvZz48L2c+PC9nPjwvZz48L3N2Zz4=') no-repeat, none; -moz-background-size: 100%; -o-background-size: 100%; -webkit-background-size: 100%; background-size: 100%; display: block; float: left; width: 90px; height: 25px; } -.jasmine_html-reporter .jasmine-banner .jasmine-version { margin-left: 14px; position: relative; top: 6px; } -.jasmine_html-reporter #jasmine_content { position: fixed; right: 100%; } -.jasmine_html-reporter .jasmine-version { color: #aaa; } -.jasmine_html-reporter .jasmine-banner { margin-top: 14px; } -.jasmine_html-reporter .jasmine-duration { color: #fff; float: right; line-height: 28px; padding-right: 9px; } -.jasmine_html-reporter .jasmine-symbol-summary { overflow: hidden; *zoom: 1; margin: 14px 0; } -.jasmine_html-reporter .jasmine-symbol-summary li { display: inline-block; height: 10px; width: 14px; font-size: 16px; } -.jasmine_html-reporter .jasmine-symbol-summary li.jasmine-passed { font-size: 14px; } -.jasmine_html-reporter .jasmine-symbol-summary li.jasmine-passed:before { color: #007069; content: "\02022"; } -.jasmine_html-reporter .jasmine-symbol-summary li.jasmine-failed { line-height: 9px; } -.jasmine_html-reporter .jasmine-symbol-summary li.jasmine-failed:before { color: #ca3a11; content: "\d7"; font-weight: bold; margin-left: -1px; } -.jasmine_html-reporter .jasmine-symbol-summary li.jasmine-disabled { font-size: 14px; } -.jasmine_html-reporter .jasmine-symbol-summary li.jasmine-disabled:before { color: #bababa; content: "\02022"; } -.jasmine_html-reporter .jasmine-symbol-summary li.jasmine-pending { line-height: 17px; } -.jasmine_html-reporter .jasmine-symbol-summary li.jasmine-pending:before { color: #ba9d37; content: "*"; } -.jasmine_html-reporter .jasmine-symbol-summary li.jasmine-empty { font-size: 14px; } -.jasmine_html-reporter .jasmine-symbol-summary li.jasmine-empty:before { color: #ba9d37; content: "\02022"; } -.jasmine_html-reporter .jasmine-run-options { float: right; margin-right: 5px; border: 1px solid #8a4182; color: #8a4182; position: relative; line-height: 20px; } -.jasmine_html-reporter .jasmine-run-options .jasmine-trigger { cursor: pointer; padding: 8px 16px; } -.jasmine_html-reporter .jasmine-run-options .jasmine-payload { position: absolute; display: none; right: -1px; border: 1px solid #8a4182; background-color: #eee; white-space: nowrap; padding: 4px 8px; } -.jasmine_html-reporter .jasmine-run-options .jasmine-payload.jasmine-open { display: block; } -.jasmine_html-reporter .jasmine-bar { line-height: 28px; font-size: 14px; display: block; color: #eee; } -.jasmine_html-reporter .jasmine-bar.jasmine-failed { background-color: #ca3a11; } -.jasmine_html-reporter .jasmine-bar.jasmine-passed { background-color: #007069; } -.jasmine_html-reporter .jasmine-bar.jasmine-skipped { background-color: #bababa; } -.jasmine_html-reporter .jasmine-bar.jasmine-errored { background-color: #ca3a11; } -.jasmine_html-reporter .jasmine-bar.jasmine-warning { background-color: #ba9d37; color: #333; } -.jasmine_html-reporter .jasmine-bar.jasmine-menu { background-color: #fff; color: #aaa; } -.jasmine_html-reporter .jasmine-bar.jasmine-menu a { color: #333; } -.jasmine_html-reporter .jasmine-bar a { color: white; } -.jasmine_html-reporter.jasmine-spec-list .jasmine-bar.jasmine-menu.jasmine-failure-list, .jasmine_html-reporter.jasmine-spec-list .jasmine-results .jasmine-failures { display: none; } -.jasmine_html-reporter.jasmine-failure-list .jasmine-bar.jasmine-menu.jasmine-spec-list, .jasmine_html-reporter.jasmine-failure-list .jasmine-summary { display: none; } -.jasmine_html-reporter .jasmine-results { margin-top: 14px; } -.jasmine_html-reporter .jasmine-summary { margin-top: 14px; } -.jasmine_html-reporter .jasmine-summary ul { list-style-type: none; margin-left: 14px; padding-top: 0; padding-left: 0; } -.jasmine_html-reporter .jasmine-summary ul.jasmine-suite { margin-top: 7px; margin-bottom: 7px; } -.jasmine_html-reporter .jasmine-summary li.jasmine-passed a { color: #007069; } -.jasmine_html-reporter .jasmine-summary li.jasmine-failed a { color: #ca3a11; } -.jasmine_html-reporter .jasmine-summary li.jasmine-empty a { color: #ba9d37; } -.jasmine_html-reporter .jasmine-summary li.jasmine-pending a { color: #ba9d37; } -.jasmine_html-reporter .jasmine-summary li.jasmine-disabled a { color: #bababa; } -.jasmine_html-reporter .jasmine-description + .jasmine-suite { margin-top: 0; } -.jasmine_html-reporter .jasmine-suite { margin-top: 14px; } -.jasmine_html-reporter .jasmine-suite a { color: #333; } -.jasmine_html-reporter .jasmine-failures .jasmine-spec-detail { margin-bottom: 28px; } -.jasmine_html-reporter .jasmine-failures .jasmine-spec-detail .jasmine-description { background-color: #ca3a11; } -.jasmine_html-reporter .jasmine-failures .jasmine-spec-detail .jasmine-description a { color: white; } -.jasmine_html-reporter .jasmine-result-message { padding-top: 14px; color: #333; white-space: pre; } -.jasmine_html-reporter .jasmine-result-message span.jasmine-result { display: block; } -.jasmine_html-reporter .jasmine-stack-trace { margin: 5px 0 0 0; max-height: 224px; overflow: auto; line-height: 18px; color: #666; border: 1px solid #ddd; background: white; white-space: pre; } diff --git a/www/assets/jasmine/jasmine.js b/www/assets/jasmine/jasmine.js deleted file mode 100644 index e71002f..0000000 --- a/www/assets/jasmine/jasmine.js +++ /dev/null @@ -1,5586 +0,0 @@ -/* -Copyright (c) 2008-2020 Pivotal Labs - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -*/ -var getJasmineRequireObj = (function (jasmineGlobal) { - var jasmineRequire; - - if (typeof module !== 'undefined' && module.exports && typeof exports !== 'undefined') { - if (typeof global !== 'undefined') { - jasmineGlobal = global; - } else { - jasmineGlobal = {}; - } - jasmineRequire = exports; - } else { - if (typeof window !== 'undefined' && typeof window.toString === 'function' && window.toString() === '[object GjsGlobal]') { - jasmineGlobal = window; - } - jasmineRequire = jasmineGlobal.jasmineRequire = {}; - } - - function getJasmineRequire() { - return jasmineRequire; - } - - getJasmineRequire().core = function(jRequire) { - var j$ = {}; - - jRequire.base(j$, jasmineGlobal); - j$.util = jRequire.util(j$); - j$.errors = jRequire.errors(); - j$.formatErrorMsg = jRequire.formatErrorMsg(); - j$.Any = jRequire.Any(j$); - j$.Anything = jRequire.Anything(j$); - j$.CallTracker = jRequire.CallTracker(j$); - j$.MockDate = jRequire.MockDate(); - j$.getClearStack = jRequire.clearStack(j$); - j$.Clock = jRequire.Clock(); - j$.DelayedFunctionScheduler = jRequire.DelayedFunctionScheduler(j$); - j$.Env = jRequire.Env(j$); - j$.ExceptionFormatter = jRequire.ExceptionFormatter(); - j$.Expectation = jRequire.Expectation(); - j$.buildExpectationResult = jRequire.buildExpectationResult(); - j$.JsApiReporter = jRequire.JsApiReporter(); - j$.matchersUtil = jRequire.matchersUtil(j$); - j$.ObjectContaining = jRequire.ObjectContaining(j$); - j$.ArrayContaining = jRequire.ArrayContaining(j$); - j$.ArrayWithExactContents = jRequire.ArrayWithExactContents(j$); - j$.pp = jRequire.pp(j$); - j$.QueueRunner = jRequire.QueueRunner(j$); - j$.ReportDispatcher = jRequire.ReportDispatcher(j$); - j$.Spec = jRequire.Spec(j$); - j$.Spy = jRequire.Spy(j$); - j$.SpyRegistry = jRequire.SpyRegistry(j$); - j$.SpyStrategy = jRequire.SpyStrategy(j$); - j$.StringMatching = jRequire.StringMatching(j$); - j$.UserContext = jRequire.UserContext(j$); - j$.Suite = jRequire.Suite(j$); - j$.Timer = jRequire.Timer(); - j$.TreeProcessor = jRequire.TreeProcessor(); - j$.version = jRequire.version(); - j$.Order = jRequire.Order(); - j$.DiffBuilder = jRequire.DiffBuilder(j$); - j$.NullDiffBuilder = jRequire.NullDiffBuilder(j$); - j$.ObjectPath = jRequire.ObjectPath(j$); - j$.GlobalErrors = jRequire.GlobalErrors(j$); - - j$.matchers = jRequire.requireMatchers(jRequire, j$); - - return j$; - }; - - return getJasmineRequire; -})(this); - -getJasmineRequireObj().requireMatchers = function(jRequire, j$) { - var availableMatchers = [ - 'nothing', - 'toBe', - 'toBeCloseTo', - 'toBeDefined', - 'toBeFalsy', - 'toBeGreaterThan', - 'toBeGreaterThanOrEqual', - 'toBeLessThan', - 'toBeLessThanOrEqual', - 'toBeNaN', - 'toBeNegativeInfinity', - 'toBeNull', - 'toBePositiveInfinity', - 'toBeTruthy', - 'toBeUndefined', - 'toContain', - 'toEqual', - 'toHaveBeenCalled', - 'toHaveBeenCalledBefore', - 'toHaveBeenCalledTimes', - 'toHaveBeenCalledWith', - 'toMatch', - 'toThrow', - 'toThrowError' - ], - matchers = {}; - - for (var i = 0; i < availableMatchers.length; i++) { - var name = availableMatchers[i]; - matchers[name] = jRequire[name](j$); - } - - return matchers; -}; - -getJasmineRequireObj().base = function(j$, jasmineGlobal) { - j$.unimplementedMethod_ = function() { - throw new Error('unimplemented method'); - }; - - /** - * Maximum object depth the pretty printer will print to. - * Set this to a lower value to speed up pretty printing if you have large objects. - * @name jasmine.MAX_PRETTY_PRINT_DEPTH - */ - j$.MAX_PRETTY_PRINT_DEPTH = 8; - /** - * Maximum number of array elements to display when pretty printing objects. - * This will also limit the number of keys and values displayed for an object. - * Elements past this number will be ellipised. - * @name jasmine.MAX_PRETTY_PRINT_ARRAY_LENGTH - */ - j$.MAX_PRETTY_PRINT_ARRAY_LENGTH = 50; - /** - * Maximum number of charasters to display when pretty printing objects. - * Characters past this number will be ellipised. - * @name jasmine.MAX_PRETTY_PRINT_CHARS - */ - j$.MAX_PRETTY_PRINT_CHARS = 1000; - /** - * Default number of milliseconds Jasmine will wait for an asynchronous spec to complete. - * @name jasmine.DEFAULT_TIMEOUT_INTERVAL - */ - j$.DEFAULT_TIMEOUT_INTERVAL = 5000; - - j$.getGlobal = function() { - return jasmineGlobal; - }; - - /** - * Get the currently booted Jasmine Environment. - * - * @name jasmine.getEnv - * @function - * @return {Env} - */ - j$.getEnv = function(options) { - var env = j$.currentEnv_ = j$.currentEnv_ || new j$.Env(options); - //jasmine. singletons in here (setTimeout blah blah). - return env; - }; - - j$.isArray_ = function(value) { - return j$.isA_('Array', value); - }; - - j$.isObject_ = function(value) { - return !j$.util.isUndefined(value) && value !== null && j$.isA_('Object', value); - }; - - j$.isString_ = function(value) { - return j$.isA_('String', value); - }; - - j$.isNumber_ = function(value) { - return j$.isA_('Number', value); - }; - - j$.isFunction_ = function(value) { - return j$.isA_('Function', value); - }; - - j$.isAsyncFunction_ = function(value) { - return j$.isA_('AsyncFunction', value); - }; - - j$.isTypedArray_ = function(value) { - return j$.isA_('Float32Array', value) || - j$.isA_('Float64Array', value) || - j$.isA_('Int16Array', value) || - j$.isA_('Int32Array', value) || - j$.isA_('Int8Array', value) || - j$.isA_('Uint16Array', value) || - j$.isA_('Uint32Array', value) || - j$.isA_('Uint8Array', value) || - j$.isA_('Uint8ClampedArray', value); - }; - - j$.isA_ = function(typeName, value) { - return j$.getType_(value) === '[object ' + typeName + ']'; - }; - - j$.getType_ = function(value) { - return Object.prototype.toString.apply(value); - }; - - j$.isDomNode = function(obj) { - return obj.nodeType > 0; - }; - - j$.isMap = function(obj) { - return typeof jasmineGlobal.Map !== 'undefined' && obj.constructor === jasmineGlobal.Map; - }; - - j$.isSet = function(obj) { - return typeof jasmineGlobal.Set !== 'undefined' && obj.constructor === jasmineGlobal.Set; - }; - - j$.isPromise = function(obj) { - return typeof jasmineGlobal.Promise !== 'undefined' && obj.constructor === jasmineGlobal.Promise; - }; - - j$.fnNameFor = function(func) { - if (func.name) { - return func.name; - } - - var matches = func.toString().match(/^\s*function\s*(\w*)\s*\(/) || - func.toString().match(/^\s*\[object\s*(\w*)Constructor\]/); - - return matches ? matches[1] : ''; - }; - - /** - * Get a matcher, usable in any {@link matchers|matcher} that uses Jasmine's equality (e.g. {@link matchers#toEqual|toEqual}, {@link matchers#toContain|toContain}, or {@link matchers#toHaveBeenCalledWith|toHaveBeenCalledWith}), - * that will succeed if the actual value being compared is an instance of the specified class/constructor. - * @name jasmine.any - * @function - * @param {Constructor} clazz - The constructor to check against. - */ - j$.any = function(clazz) { - return new j$.Any(clazz); - }; - - /** - * Get a matcher, usable in any {@link matchers|matcher} that uses Jasmine's equality (e.g. {@link matchers#toEqual|toEqual}, {@link matchers#toContain|toContain}, or {@link matchers#toHaveBeenCalledWith|toHaveBeenCalledWith}), - * that will succeed if the actual value being compared is not `null` and not `undefined`. - * @name jasmine.anything - * @function - */ - j$.anything = function() { - return new j$.Anything(); - }; - - /** - * Get a matcher, usable in any {@link matchers|matcher} that uses Jasmine's equality (e.g. {@link matchers#toEqual|toEqual}, {@link matchers#toContain|toContain}, or {@link matchers#toHaveBeenCalledWith|toHaveBeenCalledWith}), - * that will succeed if the actual value being compared contains at least the keys and values. - * @name jasmine.objectContaining - * @function - * @param {Object} sample - The subset of properties that _must_ be in the actual. - */ - j$.objectContaining = function(sample) { - return new j$.ObjectContaining(sample); - }; - - /** - * Get a matcher, usable in any {@link matchers|matcher} that uses Jasmine's equality (e.g. {@link matchers#toEqual|toEqual}, {@link matchers#toContain|toContain}, or {@link matchers#toHaveBeenCalledWith|toHaveBeenCalledWith}), - * that will succeed if the actual value is a `String` that matches the `RegExp` or `String`. - * @name jasmine.stringMatching - * @function - * @param {RegExp|String} expected - */ - j$.stringMatching = function(expected) { - return new j$.StringMatching(expected); - }; - - /** - * Get a matcher, usable in any {@link matchers|matcher} that uses Jasmine's equality (e.g. {@link matchers#toEqual|toEqual}, {@link matchers#toContain|toContain}, or {@link matchers#toHaveBeenCalledWith|toHaveBeenCalledWith}), - * that will succeed if the actual value is an `Array` that contains at least the elements in the sample. - * @name jasmine.arrayContaining - * @function - * @param {Array} sample - */ - j$.arrayContaining = function(sample) { - return new j$.ArrayContaining(sample); - }; - - /** - * Get a matcher, usable in any {@link matchers|matcher} that uses Jasmine's equality (e.g. {@link matchers#toEqual|toEqual}, {@link matchers#toContain|toContain}, or {@link matchers#toHaveBeenCalledWith|toHaveBeenCalledWith}), - * that will succeed if the actual value is an `Array` that contains all of the elements in the sample in any order. - * @name jasmine.arrayWithExactContents - * @function - * @param {Array} sample - */ - j$.arrayWithExactContents = function(sample) { - return new j$.ArrayWithExactContents(sample); - }; - - /** - * Create a bare {@link Spy} object. This won't be installed anywhere and will not have any implementation behind it. - * @name jasmine.createSpy - * @function - * @param {String} [name] - Name to give the spy. This will be displayed in failure messages. - * @param {Function} [originalFn] - Function to act as the real implementation. - * @return {Spy} - */ - j$.createSpy = function(name, originalFn) { - return j$.Spy(name, originalFn); - }; - - j$.isSpy = function(putativeSpy) { - if (!putativeSpy) { - return false; - } - return putativeSpy.and instanceof j$.SpyStrategy && - putativeSpy.calls instanceof j$.CallTracker; - }; - - /** - * Create an object with multiple {@link Spy}s as its members. - * @name jasmine.createSpyObj - * @function - * @param {String} [baseName] - Base name for the spies in the object. - * @param {String[]|Object} methodNames - Array of method names to create spies for, or Object whose keys will be method names and values the {@link Spy#and#returnValue|returnValue}. - * @return {Object} - */ - j$.createSpyObj = function(baseName, methodNames) { - var baseNameIsCollection = j$.isObject_(baseName) || j$.isArray_(baseName); - - if (baseNameIsCollection && j$.util.isUndefined(methodNames)) { - methodNames = baseName; - baseName = 'unknown'; - } - - var obj = {}; - var spiesWereSet = false; - - if (j$.isArray_(methodNames)) { - for (var i = 0; i < methodNames.length; i++) { - obj[methodNames[i]] = j$.createSpy(baseName + '.' + methodNames[i]); - spiesWereSet = true; - } - } else if (j$.isObject_(methodNames)) { - for (var key in methodNames) { - if (methodNames.hasOwnProperty(key)) { - obj[key] = j$.createSpy(baseName + '.' + key); - obj[key].and.returnValue(methodNames[key]); - spiesWereSet = true; - } - } - } - - if (!spiesWereSet) { - throw 'createSpyObj requires a non-empty array or object of method names to create spies for'; - } - - return obj; - }; -}; - -getJasmineRequireObj().util = function(j$) { - - var util = {}; - - util.inherit = function(childClass, parentClass) { - var Subclass = function() { - }; - Subclass.prototype = parentClass.prototype; - childClass.prototype = new Subclass(); - }; - - util.htmlEscape = function(str) { - if (!str) { - return str; - } - return str.replace(/&/g, '&') - .replace(//g, '>'); - }; - - util.argsToArray = function(args) { - var arrayOfArgs = []; - for (var i = 0; i < args.length; i++) { - arrayOfArgs.push(args[i]); - } - return arrayOfArgs; - }; - - util.isUndefined = function(obj) { - return obj === void 0; - }; - - util.arrayContains = function(array, search) { - var i = array.length; - while (i--) { - if (array[i] === search) { - return true; - } - } - return false; - }; - - util.clone = function(obj) { - if (Object.prototype.toString.apply(obj) === '[object Array]') { - return obj.slice(); - } - - var cloned = {}; - for (var prop in obj) { - if (obj.hasOwnProperty(prop)) { - cloned[prop] = obj[prop]; - } - } - - return cloned; - }; - - util.cloneArgs = function(args) { - var clonedArgs = []; - var argsAsArray = j$.util.argsToArray(args); - for(var i = 0; i < argsAsArray.length; i++) { - var str = Object.prototype.toString.apply(argsAsArray[i]), - primitives = /^\[object (Boolean|String|RegExp|Number)/; - - // All falsey values are either primitives, `null`, or `undefined. - if (!argsAsArray[i] || str.match(primitives)) { - clonedArgs.push(argsAsArray[i]); - } else { - clonedArgs.push(j$.util.clone(argsAsArray[i])); - } - } - return clonedArgs; - }; - - util.getPropertyDescriptor = function(obj, methodName) { - var descriptor, - proto = obj; - - do { - descriptor = Object.getOwnPropertyDescriptor(proto, methodName); - proto = Object.getPrototypeOf(proto); - } while (!descriptor && proto); - - return descriptor; - }; - - util.objectDifference = function(obj, toRemove) { - var diff = {}; - - for (var key in obj) { - if (util.has(obj, key) && !util.has(toRemove, key)) { - diff[key] = obj[key]; - } - } - - return diff; - }; - - util.has = function(obj, key) { - return Object.prototype.hasOwnProperty.call(obj, key); - }; - - return util; -}; - -getJasmineRequireObj().Spec = function(j$) { - function Spec(attrs) { - this.expectationFactory = attrs.expectationFactory; - this.resultCallback = attrs.resultCallback || function() {}; - this.id = attrs.id; - this.description = attrs.description || ''; - this.queueableFn = attrs.queueableFn; - this.beforeAndAfterFns = attrs.beforeAndAfterFns || function() { return {befores: [], afters: []}; }; - this.userContext = attrs.userContext || function() { return {}; }; - this.onStart = attrs.onStart || function() {}; - this.getSpecName = attrs.getSpecName || function() { return ''; }; - this.expectationResultFactory = attrs.expectationResultFactory || function() { }; - this.queueRunnerFactory = attrs.queueRunnerFactory || function() {}; - this.catchingExceptions = attrs.catchingExceptions || function() { return true; }; - this.throwOnExpectationFailure = !!attrs.throwOnExpectationFailure; - - if (!this.queueableFn.fn) { - this.pend(); - } - - /** - * @typedef SpecResult - * @property {Int} id - The unique id of this spec. - * @property {String} description - The description passed to the {@link it} that created this spec. - * @property {String} fullName - The full description including all ancestors of this spec. - * @property {Expectation[]} failedExpectations - The list of expectations that failed during execution of this spec. - * @property {Expectation[]} passedExpectations - The list of expectations that passed during execution of this spec. - * @property {Expectation[]} deprecationWarnings - The list of deprecation warnings that occurred during execution this spec. - * @property {String} pendingReason - If the spec is {@link pending}, this will be the reason. - * @property {String} status - Once the spec has completed, this string represents the pass/fail status of this spec. - */ - this.result = { - id: this.id, - description: this.description, - fullName: this.getFullName(), - failedExpectations: [], - passedExpectations: [], - deprecationWarnings: [], - pendingReason: '' - }; - } - - Spec.prototype.addExpectationResult = function(passed, data, isError) { - var expectationResult = this.expectationResultFactory(data); - if (passed) { - this.result.passedExpectations.push(expectationResult); - } else { - this.result.failedExpectations.push(expectationResult); - - if (this.throwOnExpectationFailure && !isError) { - throw new j$.errors.ExpectationFailed(); - } - } - }; - - Spec.prototype.expect = function(actual) { - return this.expectationFactory(actual, this); - }; - - Spec.prototype.execute = function(onComplete, enabled) { - var self = this; - - this.onStart(this); - - var fns = this.beforeAndAfterFns(); - var regularFns = fns.befores.concat(this.queueableFn); - - var runnerConfig = { - isLeaf: true, - queueableFns: regularFns, - cleanupFns: fns.afters, - onException: function() { self.onException.apply(self, arguments); }, - onComplete: complete, - userContext: this.userContext() - }; - - if (!this.isExecutable() || this.markedPending || enabled === false) { - runnerConfig.queueableFns = []; - runnerConfig.cleanupFns = []; - runnerConfig.onComplete = function() { complete(enabled); }; - } - - this.queueRunnerFactory(runnerConfig); - - function complete(enabledAgain) { - self.result.status = self.status(enabledAgain); - self.resultCallback(self.result); - - if (onComplete) { - onComplete(); - } - } - }; - - Spec.prototype.onException = function onException(e) { - if (Spec.isPendingSpecException(e)) { - this.pend(extractCustomPendingMessage(e)); - return; - } - - if (e instanceof j$.errors.ExpectationFailed) { - return; - } - - this.addExpectationResult(false, { - matcherName: '', - passed: false, - expected: '', - actual: '', - error: e - }, true); - }; - - Spec.prototype.disable = function() { - this.disabled = true; - }; - - Spec.prototype.pend = function(message) { - this.markedPending = true; - if (message) { - this.result.pendingReason = message; - } - }; - - Spec.prototype.getResult = function() { - this.result.status = this.status(); - return this.result; - }; - - Spec.prototype.status = function(enabled) { - if (this.disabled || enabled === false) { - return 'disabled'; - } - - if (this.markedPending) { - return 'pending'; - } - - if (this.result.failedExpectations.length > 0) { - return 'failed'; - } else { - return 'passed'; - } - }; - - Spec.prototype.isExecutable = function() { - return !this.disabled; - }; - - Spec.prototype.getFullName = function() { - return this.getSpecName(this); - }; - - Spec.prototype.addDeprecationWarning = function(msg) { - this.result.deprecationWarnings.push(this.expectationResultFactory({ message: msg })); - }; - - var extractCustomPendingMessage = function(e) { - var fullMessage = e.toString(), - boilerplateStart = fullMessage.indexOf(Spec.pendingSpecExceptionMessage), - boilerplateEnd = boilerplateStart + Spec.pendingSpecExceptionMessage.length; - - return fullMessage.substr(boilerplateEnd); - }; - - Spec.pendingSpecExceptionMessage = '=> marked Pending'; - - Spec.isPendingSpecException = function(e) { - return !!(e && e.toString && e.toString().indexOf(Spec.pendingSpecExceptionMessage) !== -1); - }; - - return Spec; -}; - -if (typeof window == void 0 && typeof exports == 'object') { - exports.Spec = jasmineRequire.Spec; -} - -/*jshint bitwise: false*/ - -getJasmineRequireObj().Order = function() { - function Order(options) { - this.random = 'random' in options ? options.random : true; - var seed = this.seed = options.seed || generateSeed(); - this.sort = this.random ? randomOrder : naturalOrder; - - function naturalOrder(items) { - return items; - } - - function randomOrder(items) { - var copy = items.slice(); - copy.sort(function(a, b) { - return jenkinsHash(seed + a.id) - jenkinsHash(seed + b.id); - }); - return copy; - } - - function generateSeed() { - return String(Math.random()).slice(-5); - } - - // Bob Jenkins One-at-a-Time Hash algorithm is a non-cryptographic hash function - // used to get a different output when the key changes slighly. - // We use your return to sort the children randomly in a consistent way when - // used in conjunction with a seed - - function jenkinsHash(key) { - var hash, i; - for(hash = i = 0; i < key.length; ++i) { - hash += key.charCodeAt(i); - hash += (hash << 10); - hash ^= (hash >> 6); - } - hash += (hash << 3); - hash ^= (hash >> 11); - hash += (hash << 15); - return hash; - } - - } - - return Order; -}; - -getJasmineRequireObj().Env = function(j$) { - /** - * _Note:_ Do not construct this directly, Jasmine will make one during booting. - * @name Env - * @classdesc The Jasmine environment - * @constructor - */ - function Env(options) { - options = options || {}; - - var self = this; - var global = options.global || j$.getGlobal(); - - var hasExecuted = false; - - var totalSpecsDefined = 0; - - var catchExceptions = true; - - var realSetTimeout = j$.getGlobal().setTimeout; - var realClearTimeout = j$.getGlobal().clearTimeout; - var clearStack = j$.getClearStack(j$.getGlobal()); - this.clock = new j$.Clock(global, function () { return new j$.DelayedFunctionScheduler(); }, new j$.MockDate(global)); - - var runnableResources = {}; - - var currentSpec = null; - var currentlyExecutingSuites = []; - var currentDeclarationSuite = null; - var throwOnExpectationFailure = false; - var random = false; - var seed = null; - - var currentSuite = function() { - return currentlyExecutingSuites[currentlyExecutingSuites.length - 1]; - }; - - var currentRunnable = function() { - return currentSpec || currentSuite(); - }; - - /** - * This represents the available reporter callback for an object passed to {@link Env#addReporter}. - * @interface Reporter - */ - var reporter = new j$.ReportDispatcher([ - /** - * `jasmineStarted` is called after all of the specs have been loaded, but just before execution starts. - * @function - * @name Reporter#jasmineStarted - * @param {JasmineStartedInfo} suiteInfo Information about the full Jasmine suite that is being run - */ - 'jasmineStarted', - /** - * When the entire suite has finished execution `jasmineDone` is called - * @function - * @name Reporter#jasmineDone - * @param {JasmineDoneInfo} suiteInfo Information about the full Jasmine suite that just finished running. - */ - 'jasmineDone', - /** - * `suiteStarted` is invoked when a `describe` starts to run - * @function - * @name Reporter#suiteStarted - * @param {SuiteResult} result Information about the individual {@link describe} being run - */ - 'suiteStarted', - /** - * `suiteDone` is invoked when all of the child specs and suites for a given suite have been run - * - * While jasmine doesn't require any specific functions, not defining a `suiteDone` will make it impossible for a reporter to know when a suite has failures in an `afterAll`. - * @function - * @name Reporter#suiteDone - * @param {SuiteResult} result - */ - 'suiteDone', - /** - * `specStarted` is invoked when an `it` starts to run (including associated `beforeEach` functions) - * @function - * @name Reporter#specStarted - * @param {SpecResult} result Information about the individual {@link it} being run - */ - 'specStarted', - /** - * `specDone` is invoked when an `it` and its associated `beforeEach` and `afterEach` functions have been run. - * - * While jasmine doesn't require any specific functions, not defining a `specDone` will make it impossible for a reporter to know when a spec has failed. - * @function - * @name Reporter#specDone - * @param {SpecResult} result - */ - 'specDone' - ]); - - var globalErrors = new j$.GlobalErrors(); - - this.specFilter = function() { - return true; - }; - - this.addCustomEqualityTester = function(tester) { - if(!currentRunnable()) { - throw new Error('Custom Equalities must be added in a before function or a spec'); - } - runnableResources[currentRunnable().id].customEqualityTesters.push(tester); - }; - - this.addMatchers = function(matchersToAdd) { - if(!currentRunnable()) { - throw new Error('Matchers must be added in a before function or a spec'); - } - var customMatchers = runnableResources[currentRunnable().id].customMatchers; - for (var matcherName in matchersToAdd) { - customMatchers[matcherName] = matchersToAdd[matcherName]; - } - }; - - j$.Expectation.addCoreMatchers(j$.matchers); - - var nextSpecId = 0; - var getNextSpecId = function() { - return 'spec' + nextSpecId++; - }; - - var nextSuiteId = 0; - var getNextSuiteId = function() { - return 'suite' + nextSuiteId++; - }; - - var expectationFactory = function(actual, spec) { - return j$.Expectation.Factory({ - util: j$.matchersUtil, - customEqualityTesters: runnableResources[spec.id].customEqualityTesters, - customMatchers: runnableResources[spec.id].customMatchers, - actual: actual, - addExpectationResult: addExpectationResult - }); - - function addExpectationResult(passed, result) { - return spec.addExpectationResult(passed, result); - } - }; - - var defaultResourcesForRunnable = function(id, parentRunnableId) { - var resources = {spies: [], customEqualityTesters: [], customMatchers: {}}; - - if(runnableResources[parentRunnableId]){ - resources.customEqualityTesters = j$.util.clone(runnableResources[parentRunnableId].customEqualityTesters); - resources.customMatchers = j$.util.clone(runnableResources[parentRunnableId].customMatchers); - } - - runnableResources[id] = resources; - }; - - var clearResourcesForRunnable = function(id) { - spyRegistry.clearSpies(); - delete runnableResources[id]; - }; - - var beforeAndAfterFns = function(suite) { - return function() { - var befores = [], - afters = []; - - while(suite) { - befores = befores.concat(suite.beforeFns); - afters = afters.concat(suite.afterFns); - - suite = suite.parentSuite; - } - - return { - befores: befores.reverse(), - afters: afters - }; - }; - }; - - var getSpecName = function(spec, suite) { - var fullName = [spec.description], - suiteFullName = suite.getFullName(); - - if (suiteFullName !== '') { - fullName.unshift(suiteFullName); - } - return fullName.join(' '); - }; - - // TODO: we may just be able to pass in the fn instead of wrapping here - var buildExpectationResult = j$.buildExpectationResult, - exceptionFormatter = new j$.ExceptionFormatter(), - expectationResultFactory = function(attrs) { - attrs.messageFormatter = exceptionFormatter.message; - attrs.stackFormatter = exceptionFormatter.stack; - - return buildExpectationResult(attrs); - }; - - // TODO: fix this naming, and here's where the value comes in - this.catchExceptions = function(value) { - catchExceptions = !!value; - if (!catchExceptions) { - this.deprecated('The catchExceptions option is deprecated and will be replaced with stopOnSpecFailure in Jasmine 3.0'); - } - return catchExceptions; - }; - - this.catchingExceptions = function() { - return catchExceptions; - }; - - var maximumSpecCallbackDepth = 20; - var currentSpecCallbackDepth = 0; - - var catchException = function(e) { - return j$.Spec.isPendingSpecException(e) || catchExceptions; - }; - - this.throwOnExpectationFailure = function(value) { - throwOnExpectationFailure = !!value; - }; - - this.throwingExpectationFailures = function() { - return throwOnExpectationFailure; - }; - - this.randomizeTests = function(value) { - random = !!value; - }; - - this.randomTests = function() { - return random; - }; - - this.seed = function(value) { - if (value) { - seed = value; - } - return seed; - }; - - this.deprecated = function(msg) { - var runnable = currentRunnable() || topSuite; - runnable.addDeprecationWarning(msg); - if(typeof console !== 'undefined' && typeof console.warn !== 'undefined') { - console.error('DEPRECATION: ' + msg); - } - }; - - var queueRunnerFactory = function(options) { - options.catchException = catchException; - options.clearStack = options.clearStack || clearStack; - options.timeout = {setTimeout: realSetTimeout, clearTimeout: realClearTimeout}; - options.fail = self.fail; - options.globalErrors = globalErrors; - options.completeOnFirstError = throwOnExpectationFailure && options.isLeaf; - options.deprecated = self.deprecated; - - new j$.QueueRunner(options).execute(); - }; - - var topSuite = new j$.Suite({ - env: this, - id: getNextSuiteId(), - description: 'Jasmine__TopLevel__Suite', - expectationFactory: expectationFactory, - expectationResultFactory: expectationResultFactory - }); - defaultResourcesForRunnable(topSuite.id); - currentDeclarationSuite = topSuite; - - this.topSuite = function() { - return topSuite; - }; - - this.execute = function(runnablesToRun) { - if (hasExecuted) { - this.deprecated('Executing the same Jasmine multiple times will no longer work in Jasmine 3.0'); - } - - hasExecuted = true; - - if(!runnablesToRun) { - if (focusedRunnables.length) { - runnablesToRun = focusedRunnables; - } else { - runnablesToRun = [topSuite.id]; - } - } - - var order = new j$.Order({ - random: random, - seed: seed - }); - - var processor = new j$.TreeProcessor({ - tree: topSuite, - runnableIds: runnablesToRun, - queueRunnerFactory: queueRunnerFactory, - nodeStart: function(suite) { - currentlyExecutingSuites.push(suite); - defaultResourcesForRunnable(suite.id, suite.parentSuite.id); - reporter.suiteStarted(suite.result); - }, - nodeComplete: function(suite, result) { - if (suite !== currentSuite()) { - throw new Error('Tried to complete the wrong suite'); - } - - if (!suite.markedPending) { - clearResourcesForRunnable(suite.id); - } - currentlyExecutingSuites.pop(); - reporter.suiteDone(result); - }, - orderChildren: function(node) { - return order.sort(node.children); - } - }); - - if(!processor.processTree().valid) { - throw new Error('Invalid order: would cause a beforeAll or afterAll to be run multiple times'); - } - - /** - * Information passed to the {@link Reporter#jasmineStarted} event. - * @typedef JasmineStartedInfo - * @property {Int} totalSpecsDefined - The total number of specs defined in this suite. - * @property {Order} order - Information about the ordering (random or not) of this execution of the suite. - */ - reporter.jasmineStarted({ - totalSpecsDefined: totalSpecsDefined, - order: order - }); - - currentlyExecutingSuites.push(topSuite); - - globalErrors.install(); - processor.execute(function() { - clearResourcesForRunnable(topSuite.id); - currentlyExecutingSuites.pop(); - globalErrors.uninstall(); - - /** - * Information passed to the {@link Reporter#jasmineDone} event. - * @typedef JasmineDoneInfo - * @property {Order} order - Information about the ordering (random or not) of this execution of the suite. - * @property {Expectation[]} failedExpectations - List of expectations that failed in an {@link afterAll} at the global level. - * @property {Expectation[]} deprecationWarnings - List of deprecation warnings that occurred at the global level. - */ - reporter.jasmineDone({ - order: order, - failedExpectations: topSuite.result.failedExpectations, - deprecationWarnings: topSuite.result.deprecationWarnings - }); - }); - }; - - /** - * Add a custom reporter to the Jasmine environment. - * @name Env#addReporter - * @function - * @param {Reporter} reporterToAdd The reporter to be added. - * @see custom_reporter - */ - this.addReporter = function(reporterToAdd) { - reporter.addReporter(reporterToAdd); - }; - - this.provideFallbackReporter = function(reporterToAdd) { - reporter.provideFallbackReporter(reporterToAdd); - }; - - this.clearReporters = function() { - reporter.clearReporters(); - }; - - var spyRegistry = new j$.SpyRegistry({currentSpies: function() { - if(!currentRunnable()) { - throw new Error('Spies must be created in a before function or a spec'); - } - return runnableResources[currentRunnable().id].spies; - }}); - - this.allowRespy = function(allow){ - spyRegistry.allowRespy(allow); - }; - - this.spyOn = function() { - return spyRegistry.spyOn.apply(spyRegistry, arguments); - }; - - this.spyOnProperty = function() { - return spyRegistry.spyOnProperty.apply(spyRegistry, arguments); - }; - - var ensureIsFunction = function(fn, caller) { - if (!j$.isFunction_(fn)) { - throw new Error(caller + ' expects a function argument; received ' + j$.getType_(fn)); - } - }; - - var ensureIsFunctionOrAsync = function(fn, caller) { - if (!j$.isFunction_(fn) && !j$.isAsyncFunction_(fn)) { - throw new Error(caller + ' expects a function argument; received ' + j$.getType_(fn)); - } - }; - - function ensureIsNotNested(method) { - var runnable = currentRunnable(); - if (runnable !== null && runnable !== undefined) { - throw new Error('\'' + method + '\' should only be used in \'describe\' function'); - } - } - - var suiteFactory = function(description) { - var suite = new j$.Suite({ - env: self, - id: getNextSuiteId(), - description: description, - parentSuite: currentDeclarationSuite, - expectationFactory: expectationFactory, - expectationResultFactory: expectationResultFactory, - throwOnExpectationFailure: throwOnExpectationFailure - }); - - return suite; - }; - - this.describe = function(description, specDefinitions) { - ensureIsNotNested('describe'); - ensureIsFunction(specDefinitions, 'describe'); - var suite = suiteFactory(description); - if (specDefinitions.length > 0) { - throw new Error('describe does not expect any arguments'); - } - if (currentDeclarationSuite.markedPending) { - suite.pend(); - } - addSpecsToSuite(suite, specDefinitions); - return suite; - }; - - this.xdescribe = function(description, specDefinitions) { - ensureIsNotNested('xdescribe'); - ensureIsFunction(specDefinitions, 'xdescribe'); - var suite = suiteFactory(description); - suite.pend(); - addSpecsToSuite(suite, specDefinitions); - return suite; - }; - - var focusedRunnables = []; - - this.fdescribe = function(description, specDefinitions) { - this.deprecated('fit and fdescribe will cause your suite to report an \'incomplete\' status in Jasmine 3.0'); - ensureIsNotNested('fdescribe'); - ensureIsFunction(specDefinitions, 'fdescribe'); - var suite = suiteFactory(description); - suite.isFocused = true; - - focusedRunnables.push(suite.id); - unfocusAncestor(); - addSpecsToSuite(suite, specDefinitions); - - return suite; - }; - - function addSpecsToSuite(suite, specDefinitions) { - var parentSuite = currentDeclarationSuite; - parentSuite.addChild(suite); - currentDeclarationSuite = suite; - - var declarationError = null; - try { - specDefinitions.call(suite); - } catch (e) { - declarationError = e; - } - - if (declarationError) { - self.it('encountered a declaration exception', function() { - throw declarationError; - }); - } - - currentDeclarationSuite = parentSuite; - } - - function findFocusedAncestor(suite) { - while (suite) { - if (suite.isFocused) { - return suite.id; - } - suite = suite.parentSuite; - } - - return null; - } - - function unfocusAncestor() { - var focusedAncestor = findFocusedAncestor(currentDeclarationSuite); - if (focusedAncestor) { - for (var i = 0; i < focusedRunnables.length; i++) { - if (focusedRunnables[i] === focusedAncestor) { - focusedRunnables.splice(i, 1); - break; - } - } - } - } - - var specFactory = function(description, fn, suite, timeout) { - totalSpecsDefined++; - var spec = new j$.Spec({ - id: getNextSpecId(), - beforeAndAfterFns: beforeAndAfterFns(suite), - expectationFactory: expectationFactory, - resultCallback: specResultCallback, - getSpecName: function(spec) { - return getSpecName(spec, suite); - }, - onStart: specStarted, - description: description, - expectationResultFactory: expectationResultFactory, - queueRunnerFactory: queueRunnerFactory, - userContext: function() { return suite.clonedSharedUserContext(); }, - queueableFn: { - fn: fn, - timeout: function() { return timeout || j$.DEFAULT_TIMEOUT_INTERVAL; } - }, - throwOnExpectationFailure: throwOnExpectationFailure - }); - - if (!self.specFilter(spec)) { - spec.disable(); - } - - return spec; - - function specResultCallback(result) { - clearResourcesForRunnable(spec.id); - currentSpec = null; - reporter.specDone(result); - } - - function specStarted(spec) { - currentSpec = spec; - defaultResourcesForRunnable(spec.id, suite.id); - reporter.specStarted(spec.result); - } - }; - - this.it = function(description, fn, timeout) { - ensureIsNotNested('it'); - // it() sometimes doesn't have a fn argument, so only check the type if - // it's given. - if (arguments.length > 1 && typeof fn !== 'undefined') { - ensureIsFunctionOrAsync(fn, 'it'); - } - var spec = specFactory(description, fn, currentDeclarationSuite, timeout); - if (currentDeclarationSuite.markedPending) { - spec.pend(); - } - currentDeclarationSuite.addChild(spec); - return spec; - }; - - this.xit = function(description, fn, timeout) { - ensureIsNotNested('xit'); - // xit(), like it(), doesn't always have a fn argument, so only check the - // type when needed. - if (arguments.length > 1 && typeof fn !== 'undefined') { - ensureIsFunctionOrAsync(fn, 'xit'); - } - var spec = this.it.apply(this, arguments); - spec.pend('Temporarily disabled with xit'); - return spec; - }; - - this.fit = function(description, fn, timeout){ - this.deprecated('fit and fdescribe will cause your suite to report an \'incomplete\' status in Jasmine 3.0'); - ensureIsNotNested('fit'); - ensureIsFunctionOrAsync(fn, 'fit'); - var spec = specFactory(description, fn, currentDeclarationSuite, timeout); - currentDeclarationSuite.addChild(spec); - focusedRunnables.push(spec.id); - unfocusAncestor(); - return spec; - }; - - this.expect = function(actual) { - if (!currentRunnable()) { - throw new Error('\'expect\' was used when there was no current spec, this could be because an asynchronous test timed out'); - } - - return currentRunnable().expect(actual); - }; - - this.beforeEach = function(beforeEachFunction, timeout) { - ensureIsNotNested('beforeEach'); - ensureIsFunctionOrAsync(beforeEachFunction, 'beforeEach'); - currentDeclarationSuite.beforeEach({ - fn: beforeEachFunction, - timeout: function() { return timeout || j$.DEFAULT_TIMEOUT_INTERVAL; } - }); - }; - - this.beforeAll = function(beforeAllFunction, timeout) { - ensureIsNotNested('beforeAll'); - ensureIsFunctionOrAsync(beforeAllFunction, 'beforeAll'); - currentDeclarationSuite.beforeAll({ - fn: beforeAllFunction, - timeout: function() { return timeout || j$.DEFAULT_TIMEOUT_INTERVAL; } - }); - }; - - this.afterEach = function(afterEachFunction, timeout) { - ensureIsNotNested('afterEach'); - ensureIsFunctionOrAsync(afterEachFunction, 'afterEach'); - afterEachFunction.isCleanup = true; - currentDeclarationSuite.afterEach({ - fn: afterEachFunction, - timeout: function() { return timeout || j$.DEFAULT_TIMEOUT_INTERVAL; } - }); - }; - - this.afterAll = function(afterAllFunction, timeout) { - ensureIsNotNested('afterAll'); - ensureIsFunctionOrAsync(afterAllFunction, 'afterAll'); - currentDeclarationSuite.afterAll({ - fn: afterAllFunction, - timeout: function() { return timeout || j$.DEFAULT_TIMEOUT_INTERVAL; } - }); - }; - - this.pending = function(message) { - var fullMessage = j$.Spec.pendingSpecExceptionMessage; - if(message) { - fullMessage += message; - } - throw fullMessage; - }; - - this.fail = function(error) { - if (!currentRunnable()) { - throw new Error('\'fail\' was used when there was no current spec, this could be because an asynchronous test timed out'); - } - - var message = 'Failed'; - if (error) { - message += ': '; - if (error.message) { - message += error.message; - } else if (jasmine.isString_(error)) { - message += error; - } else { - // pretty print all kind of objects. This includes arrays. - message += jasmine.pp(error); - } - } - - currentRunnable().addExpectationResult(false, { - matcherName: '', - passed: false, - expected: '', - actual: '', - message: message, - error: error && error.message ? error : null - }); - - if (self.throwingExpectationFailures()) { - throw new Error(message); - } - }; - } - - return Env; -}; - -getJasmineRequireObj().JsApiReporter = function() { - - var noopTimer = { - start: function(){}, - elapsed: function(){ return 0; } - }; - - /** - * @name jsApiReporter - * @classdesc {@link Reporter} added by default in `boot.js` to record results for retrieval in javascript code. An instance is made available as `jsApiReporter` on the global object. - * @class - * @hideconstructor - */ - function JsApiReporter(options) { - var timer = options.timer || noopTimer, - status = 'loaded'; - - this.started = false; - this.finished = false; - this.runDetails = {}; - - this.jasmineStarted = function() { - this.started = true; - status = 'started'; - timer.start(); - }; - - var executionTime; - - this.jasmineDone = function(runDetails) { - this.finished = true; - this.runDetails = runDetails; - executionTime = timer.elapsed(); - status = 'done'; - }; - - /** - * Get the current status for the Jasmine environment. - * @name jsApiReporter#status - * @function - * @return {String} - One of `loaded`, `started`, or `done` - */ - this.status = function() { - return status; - }; - - var suites = [], - suites_hash = {}; - - this.suiteStarted = function(result) { - suites_hash[result.id] = result; - }; - - this.suiteDone = function(result) { - storeSuite(result); - }; - - /** - * Get the results for a set of suites. - * - * Retrievable in slices for easier serialization. - * @name jsApiReporter#suiteResults - * @function - * @param {Number} index - The position in the suites list to start from. - * @param {Number} length - Maximum number of suite results to return. - * @return {SuiteResult[]} - */ - this.suiteResults = function(index, length) { - return suites.slice(index, index + length); - }; - - function storeSuite(result) { - suites.push(result); - suites_hash[result.id] = result; - } - - /** - * Get all of the suites in a single object, with their `id` as the key. - * @name jsApiReporter#suites - * @function - * @return {Object} - Map of suite id to {@link SuiteResult} - */ - this.suites = function() { - return suites_hash; - }; - - var specs = []; - - this.specDone = function(result) { - specs.push(result); - }; - - /** - * Get the results for a set of specs. - * - * Retrievable in slices for easier serialization. - * @name jsApiReporter#specResults - * @function - * @param {Number} index - The position in the specs list to start from. - * @param {Number} length - Maximum number of specs results to return. - * @return {SpecResult[]} - */ - this.specResults = function(index, length) { - return specs.slice(index, index + length); - }; - - /** - * Get all spec results. - * @name jsApiReporter#specs - * @function - * @return {SpecResult[]} - */ - this.specs = function() { - return specs; - }; - - /** - * Get the number of milliseconds it took for the full Jasmine suite to run. - * @name jsApiReporter#executionTime - * @function - * @return {Number} - */ - this.executionTime = function() { - return executionTime; - }; - - } - - return JsApiReporter; -}; - -getJasmineRequireObj().Any = function(j$) { - - function Any(expectedObject) { - if (typeof expectedObject === 'undefined') { - throw new TypeError( - 'jasmine.any() expects to be passed a constructor function. ' + - 'Please pass one or use jasmine.anything() to match any object.' - ); - } - this.expectedObject = expectedObject; - } - - Any.prototype.asymmetricMatch = function(other) { - if (this.expectedObject == String) { - return typeof other == 'string' || other instanceof String; - } - - if (this.expectedObject == Number) { - return typeof other == 'number' || other instanceof Number; - } - - if (this.expectedObject == Function) { - return typeof other == 'function' || other instanceof Function; - } - - if (this.expectedObject == Object) { - if (other === null) { - j$.getEnv().deprecated('jasmine.Any(Object) will no longer match null in Jasmine 3.0'); - } - return typeof other == 'object'; - } - - if (this.expectedObject == Boolean) { - return typeof other == 'boolean'; - } - - /* jshint -W122 */ - if (typeof Symbol != 'undefined' && this.expectedObject == Symbol) { - return typeof other == 'symbol'; - } - /* jshint +W122 */ - - return other instanceof this.expectedObject; - }; - - Any.prototype.jasmineToString = function() { - return ''; - }; - - return Any; -}; - -getJasmineRequireObj().Anything = function(j$) { - - function Anything() {} - - Anything.prototype.asymmetricMatch = function(other) { - return !j$.util.isUndefined(other) && other !== null; - }; - - Anything.prototype.jasmineToString = function() { - return ''; - }; - - return Anything; -}; - -getJasmineRequireObj().ArrayContaining = function(j$) { - function ArrayContaining(sample) { - this.sample = sample; - } - - ArrayContaining.prototype.asymmetricMatch = function(other, customTesters) { - if (!j$.isArray_(this.sample)) { - throw new Error('You must provide an array to arrayContaining, not ' + j$.pp(this.sample) + '.'); - } - - for (var i = 0; i < this.sample.length; i++) { - var item = this.sample[i]; - if (!j$.matchersUtil.contains(other, item, customTesters)) { - return false; - } - } - - return true; - }; - - ArrayContaining.prototype.jasmineToString = function () { - return ''; - }; - - return ArrayContaining; -}; - -getJasmineRequireObj().ArrayWithExactContents = function(j$) { - - function ArrayWithExactContents(sample) { - this.sample = sample; - } - - ArrayWithExactContents.prototype.asymmetricMatch = function(other, customTesters) { - if (!j$.isArray_(this.sample)) { - throw new Error('You must provide an array to arrayWithExactContents, not ' + j$.pp(this.sample) + '.'); - } - - if (this.sample.length !== other.length) { - return false; - } - - for (var i = 0; i < this.sample.length; i++) { - var item = this.sample[i]; - if (!j$.matchersUtil.contains(other, item, customTesters)) { - return false; - } - } - - return true; - }; - - ArrayWithExactContents.prototype.jasmineToString = function() { - return ''; - }; - - return ArrayWithExactContents; -}; - -getJasmineRequireObj().ObjectContaining = function(j$) { - - function ObjectContaining(sample) { - this.sample = sample; - } - - function getPrototype(obj) { - if (Object.getPrototypeOf) { - return Object.getPrototypeOf(obj); - } - - if (obj.constructor.prototype == obj) { - return null; - } - - return obj.constructor.prototype; - } - - function hasProperty(obj, property) { - if (!obj) { - return false; - } - - if (Object.prototype.hasOwnProperty.call(obj, property)) { - return true; - } - - return hasProperty(getPrototype(obj), property); - } - - ObjectContaining.prototype.asymmetricMatch = function(other, customTesters) { - if (typeof(this.sample) !== 'object') { throw new Error('You must provide an object to objectContaining, not \''+this.sample+'\'.'); } - - for (var property in this.sample) { - if (!hasProperty(other, property) || - !j$.matchersUtil.equals(this.sample[property], other[property], customTesters)) { - return false; - } - } - - return true; - }; - - ObjectContaining.prototype.jasmineToString = function() { - return ''; - }; - - return ObjectContaining; -}; - -getJasmineRequireObj().StringMatching = function(j$) { - - function StringMatching(expected) { - if (!j$.isString_(expected) && !j$.isA_('RegExp', expected)) { - throw new Error('Expected is not a String or a RegExp'); - } - - this.regexp = new RegExp(expected); - } - - StringMatching.prototype.asymmetricMatch = function(other) { - return this.regexp.test(other); - }; - - StringMatching.prototype.jasmineToString = function() { - return ''; - }; - - return StringMatching; -}; - -getJasmineRequireObj().CallTracker = function(j$) { - - /** - * @namespace Spy#calls - */ - function CallTracker() { - var calls = []; - var opts = {}; - - this.track = function(context) { - if(opts.cloneArgs) { - context.args = j$.util.cloneArgs(context.args); - } - calls.push(context); - }; - - /** - * Check whether this spy has been invoked. - * @name Spy#calls#any - * @function - * @return {Boolean} - */ - this.any = function() { - return !!calls.length; - }; - - /** - * Get the number of invocations of this spy. - * @name Spy#calls#count - * @function - * @return {Integer} - */ - this.count = function() { - return calls.length; - }; - - /** - * Get the arguments that were passed to a specific invocation of this spy. - * @name Spy#calls#argsFor - * @function - * @param {Integer} index The 0-based invocation index. - * @return {Array} - */ - this.argsFor = function(index) { - var call = calls[index]; - return call ? call.args : []; - }; - - /** - * Get the raw calls array for this spy. - * @name Spy#calls#all - * @function - * @return {Spy.callData[]} - */ - this.all = function() { - return calls; - }; - - /** - * Get all of the arguments for each invocation of this spy in the order they were received. - * @name Spy#calls#allArgs - * @function - * @return {Array} - */ - this.allArgs = function() { - var callArgs = []; - for(var i = 0; i < calls.length; i++){ - callArgs.push(calls[i].args); - } - - return callArgs; - }; - - /** - * Get the first invocation of this spy. - * @name Spy#calls#first - * @function - * @return {ObjecSpy.callData} - */ - this.first = function() { - return calls[0]; - }; - - /** - * Get the most recent invocation of this spy. - * @name Spy#calls#mostRecent - * @function - * @return {ObjecSpy.callData} - */ - this.mostRecent = function() { - return calls[calls.length - 1]; - }; - - /** - * Reset this spy as if it has never been called. - * @name Spy#calls#reset - * @function - */ - this.reset = function() { - calls = []; - }; - - /** - * Set this spy to do a shallow clone of arguments passed to each invocation. - * @name Spy#calls#saveArgumentsByValue - * @function - */ - this.saveArgumentsByValue = function() { - opts.cloneArgs = true; - }; - - } - - return CallTracker; -}; - -getJasmineRequireObj().clearStack = function(j$) { - var maxInlineCallCount = 10; - - function messageChannelImpl(global, setTimeout) { - var channel = new global.MessageChannel(), - head = {}, - tail = head; - - var taskRunning = false; - channel.port1.onmessage = function() { - head = head.next; - var task = head.task; - delete head.task; - - if (taskRunning) { - global.setTimeout(task, 0); - } else { - try { - taskRunning = true; - task(); - } finally { - taskRunning = false; - } - } - }; - - var currentCallCount = 0; - return function clearStack(fn) { - currentCallCount++; - - if (currentCallCount < maxInlineCallCount) { - tail = tail.next = { task: fn }; - channel.port2.postMessage(0); - } else { - currentCallCount = 0; - setTimeout(fn); - } - }; - } - - function getClearStack(global) { - var currentCallCount = 0; - var realSetTimeout = global.setTimeout; - var setTimeoutImpl = function clearStack(fn) { - Function.prototype.apply.apply(realSetTimeout, [global, [fn, 0]]); - }; - - if (j$.isFunction_(global.setImmediate)) { - var realSetImmediate = global.setImmediate; - return function(fn) { - currentCallCount++; - - if (currentCallCount < maxInlineCallCount) { - realSetImmediate(fn); - } else { - currentCallCount = 0; - - setTimeoutImpl(fn); - } - }; - } else if (!j$.util.isUndefined(global.MessageChannel)) { - return messageChannelImpl(global, setTimeoutImpl); - } else { - return setTimeoutImpl; - } - } - - return getClearStack; -}; - -getJasmineRequireObj().Clock = function() { - - var NODE_JS = typeof process !== 'undefined' && process.versions && typeof process.versions.node === 'string'; - - /** - * _Note:_ Do not construct this directly, Jasmine will make one during booting. You can get the current clock with {@link jasmine.clock}. - * @class Clock - * @classdesc Jasmine's mock clock is used when testing time dependent code. - */ - function Clock(global, delayedFunctionSchedulerFactory, mockDate) { - var self = this, - realTimingFunctions = { - setTimeout: global.setTimeout, - clearTimeout: global.clearTimeout, - setInterval: global.setInterval, - clearInterval: global.clearInterval - }, - fakeTimingFunctions = { - setTimeout: setTimeout, - clearTimeout: clearTimeout, - setInterval: setInterval, - clearInterval: clearInterval - }, - installed = false, - delayedFunctionScheduler, - timer; - - self.FakeTimeout = FakeTimeout; - - /** - * Install the mock clock over the built-in methods. - * @name Clock#install - * @function - * @return {Clock} - */ - self.install = function() { - if(!originalTimingFunctionsIntact()) { - throw new Error('Jasmine Clock was unable to install over custom global timer functions. Is the clock already installed?'); - } - replace(global, fakeTimingFunctions); - timer = fakeTimingFunctions; - delayedFunctionScheduler = delayedFunctionSchedulerFactory(); - installed = true; - - return self; - }; - - /** - * Uninstall the mock clock, returning the built-in methods to their places. - * @name Clock#uninstall - * @function - */ - self.uninstall = function() { - delayedFunctionScheduler = null; - mockDate.uninstall(); - replace(global, realTimingFunctions); - - timer = realTimingFunctions; - installed = false; - }; - - /** - * Execute a function with a mocked Clock - * - * The clock will be {@link Clock#install|install}ed before the function is called and {@link Clock#uninstall|uninstall}ed in a `finally` after the function completes. - * @name Clock#withMock - * @function - * @param {closure} Function The function to be called. - */ - self.withMock = function(closure) { - this.install(); - try { - closure(); - } finally { - this.uninstall(); - } - }; - - /** - * Instruct the installed Clock to also mock the date returned by `new Date()` - * @name Clock#mockDate - * @function - * @param {Date} [initialDate=now] The `Date` to provide. - */ - self.mockDate = function(initialDate) { - mockDate.install(initialDate); - }; - - self.setTimeout = function(fn, delay, params) { - if (legacyIE()) { - if (arguments.length > 2) { - throw new Error('IE < 9 cannot support extra params to setTimeout without a polyfill'); - } - return timer.setTimeout(fn, delay); - } - return Function.prototype.apply.apply(timer.setTimeout, [global, arguments]); - }; - - self.setInterval = function(fn, delay, params) { - if (legacyIE()) { - if (arguments.length > 2) { - throw new Error('IE < 9 cannot support extra params to setInterval without a polyfill'); - } - return timer.setInterval(fn, delay); - } - return Function.prototype.apply.apply(timer.setInterval, [global, arguments]); - }; - - self.clearTimeout = function(id) { - return Function.prototype.call.apply(timer.clearTimeout, [global, id]); - }; - - self.clearInterval = function(id) { - return Function.prototype.call.apply(timer.clearInterval, [global, id]); - }; - - /** - * Tick the Clock forward, running any enqueued timeouts along the way - * @name Clock#tick - * @function - * @param {int} millis The number of milliseconds to tick. - */ - self.tick = function(millis) { - if (installed) { - delayedFunctionScheduler.tick(millis, function(millis) { mockDate.tick(millis); }); - } else { - throw new Error('Mock clock is not installed, use jasmine.clock().install()'); - } - }; - - return self; - - function originalTimingFunctionsIntact() { - return global.setTimeout === realTimingFunctions.setTimeout && - global.clearTimeout === realTimingFunctions.clearTimeout && - global.setInterval === realTimingFunctions.setInterval && - global.clearInterval === realTimingFunctions.clearInterval; - } - - function legacyIE() { - //if these methods are polyfilled, apply will be present - return !(realTimingFunctions.setTimeout || realTimingFunctions.setInterval).apply; - } - - function replace(dest, source) { - for (var prop in source) { - dest[prop] = source[prop]; - } - } - - function setTimeout(fn, delay) { - if (!NODE_JS) { - return delayedFunctionScheduler.scheduleFunction(fn, delay, argSlice(arguments, 2)); - } - - var timeout = new FakeTimeout(); - - delayedFunctionScheduler.scheduleFunction(fn, delay, argSlice(arguments, 2), false, timeout); - - return timeout; - } - - function clearTimeout(id) { - return delayedFunctionScheduler.removeFunctionWithId(id); - } - - function setInterval(fn, interval) { - if (!NODE_JS) { - return delayedFunctionScheduler.scheduleFunction(fn, interval, argSlice(arguments, 2), true); - } - - var timeout = new FakeTimeout(); - - delayedFunctionScheduler.scheduleFunction(fn, interval, argSlice(arguments, 2), true, timeout); - - return timeout; - } - - function clearInterval(id) { - return delayedFunctionScheduler.removeFunctionWithId(id); - } - - function argSlice(argsObj, n) { - return Array.prototype.slice.call(argsObj, n); - } - } - - /** - * Mocks Node.js Timeout class - */ - function FakeTimeout() {} - - FakeTimeout.prototype.ref = function () { - return this; - }; - - FakeTimeout.prototype.unref = function () { - return this; - }; - - return Clock; -}; - -getJasmineRequireObj().DelayedFunctionScheduler = function(j$) { - function DelayedFunctionScheduler() { - var self = this; - var scheduledLookup = []; - var scheduledFunctions = {}; - var currentTime = 0; - var delayedFnCount = 0; - var deletedKeys = []; - - self.tick = function(millis, tickDate) { - millis = millis || 0; - var endTime = currentTime + millis; - - runScheduledFunctions(endTime, tickDate); - currentTime = endTime; - }; - - self.scheduleFunction = function(funcToCall, millis, params, recurring, timeoutKey, runAtMillis) { - var f; - if (typeof(funcToCall) === 'string') { - /* jshint evil: true */ - f = function() { return eval(funcToCall); }; - /* jshint evil: false */ - } else { - f = funcToCall; - } - - millis = millis || 0; - timeoutKey = timeoutKey || ++delayedFnCount; - runAtMillis = runAtMillis || (currentTime + millis); - - var funcToSchedule = { - runAtMillis: runAtMillis, - funcToCall: f, - recurring: recurring, - params: params, - timeoutKey: timeoutKey, - millis: millis - }; - - if (runAtMillis in scheduledFunctions) { - scheduledFunctions[runAtMillis].push(funcToSchedule); - } else { - scheduledFunctions[runAtMillis] = [funcToSchedule]; - scheduledLookup.push(runAtMillis); - scheduledLookup.sort(function (a, b) { - return a - b; - }); - } - - return timeoutKey; - }; - - self.removeFunctionWithId = function(timeoutKey) { - deletedKeys.push(timeoutKey); - - for (var runAtMillis in scheduledFunctions) { - var funcs = scheduledFunctions[runAtMillis]; - var i = indexOfFirstToPass(funcs, function (func) { - return func.timeoutKey === timeoutKey; - }); - - if (i > -1) { - if (funcs.length === 1) { - delete scheduledFunctions[runAtMillis]; - deleteFromLookup(runAtMillis); - } else { - funcs.splice(i, 1); - } - - // intervals get rescheduled when executed, so there's never more - // than a single scheduled function with a given timeoutKey - break; - } - } - }; - - return self; - - function indexOfFirstToPass(array, testFn) { - var index = -1; - - for (var i = 0; i < array.length; ++i) { - if (testFn(array[i])) { - index = i; - break; - } - } - - return index; - } - - function deleteFromLookup(key) { - var value = Number(key); - var i = indexOfFirstToPass(scheduledLookup, function (millis) { - return millis === value; - }); - - if (i > -1) { - scheduledLookup.splice(i, 1); - } - } - - function reschedule(scheduledFn) { - self.scheduleFunction(scheduledFn.funcToCall, - scheduledFn.millis, - scheduledFn.params, - true, - scheduledFn.timeoutKey, - scheduledFn.runAtMillis + scheduledFn.millis); - } - - function forEachFunction(funcsToRun, callback) { - for (var i = 0; i < funcsToRun.length; ++i) { - callback(funcsToRun[i]); - } - } - - function runScheduledFunctions(endTime, tickDate) { - tickDate = tickDate || function() {}; - if (scheduledLookup.length === 0 || scheduledLookup[0] > endTime) { - tickDate(endTime - currentTime); - return; - } - - do { - deletedKeys = []; - var newCurrentTime = scheduledLookup.shift(); - tickDate(newCurrentTime - currentTime); - - currentTime = newCurrentTime; - - var funcsToRun = scheduledFunctions[currentTime]; - - delete scheduledFunctions[currentTime]; - - forEachFunction(funcsToRun, function(funcToRun) { - if (funcToRun.recurring) { - reschedule(funcToRun); - } - }); - - forEachFunction(funcsToRun, function(funcToRun) { - if (j$.util.arrayContains(deletedKeys, funcToRun.timeoutKey)) { - // skip a timeoutKey deleted whilst we were running - return; - } - funcToRun.funcToCall.apply(null, funcToRun.params || []); - }); - } while (scheduledLookup.length > 0 && - // checking first if we're out of time prevents setTimeout(0) - // scheduled in a funcToRun from forcing an extra iteration - currentTime !== endTime && - scheduledLookup[0] <= endTime); - - // ran out of functions to call, but still time left on the clock - if (currentTime !== endTime) { - tickDate(endTime - currentTime); - } - } - } - - return DelayedFunctionScheduler; -}; - -getJasmineRequireObj().errors = function() { - function ExpectationFailed() {} - - ExpectationFailed.prototype = new Error(); - ExpectationFailed.prototype.constructor = ExpectationFailed; - - return { - ExpectationFailed: ExpectationFailed - }; -}; -getJasmineRequireObj().ExceptionFormatter = function() { - function ExceptionFormatter() { - this.message = function(error) { - var message = ''; - - if (error.name && error.message) { - message += error.name + ': ' + error.message; - } else { - message += error.toString() + ' thrown'; - } - - if (error.fileName || error.sourceURL) { - message += ' in ' + (error.fileName || error.sourceURL); - } - - if (error.line || error.lineNumber) { - message += ' (line ' + (error.line || error.lineNumber) + ')'; - } - - return message; - }; - - this.stack = function(error) { - return error ? error.stack : null; - }; - } - - return ExceptionFormatter; -}; - -getJasmineRequireObj().Expectation = function() { - - /** - * Matchers that come with Jasmine out of the box. - * @namespace matchers - */ - function Expectation(options) { - this.util = options.util || { buildFailureMessage: function() {} }; - this.customEqualityTesters = options.customEqualityTesters || []; - this.actual = options.actual; - this.addExpectationResult = options.addExpectationResult || function(){}; - this.isNot = options.isNot; - - var customMatchers = options.customMatchers || {}; - for (var matcherName in customMatchers) { - this[matcherName] = Expectation.prototype.wrapCompare(matcherName, customMatchers[matcherName]); - } - } - - Expectation.prototype.wrapCompare = function(name, matcherFactory) { - return function() { - var args = Array.prototype.slice.call(arguments, 0), - expected = args.slice(0), - message = ''; - - args.unshift(this.actual); - - var matcher = matcherFactory(this.util, this.customEqualityTesters), - matcherCompare = matcher.compare; - - function defaultNegativeCompare() { - var result = matcher.compare.apply(null, args); - result.pass = !result.pass; - return result; - } - - if (this.isNot) { - matcherCompare = matcher.negativeCompare || defaultNegativeCompare; - } - - var result = matcherCompare.apply(null, args); - - if (!result.pass) { - if (!result.message) { - args.unshift(this.isNot); - args.unshift(name); - message = this.util.buildFailureMessage.apply(null, args); - } else { - if (Object.prototype.toString.apply(result.message) === '[object Function]') { - message = result.message(); - } else { - message = result.message; - } - } - } - - if (expected.length == 1) { - expected = expected[0]; - } - - // TODO: how many of these params are needed? - this.addExpectationResult( - result.pass, - { - matcherName: name, - passed: result.pass, - message: message, - error: result.error, - actual: this.actual, - expected: expected // TODO: this may need to be arrayified/sliced - } - ); - }; - }; - - Expectation.addCoreMatchers = function(matchers) { - var prototype = Expectation.prototype; - for (var matcherName in matchers) { - var matcher = matchers[matcherName]; - prototype[matcherName] = prototype.wrapCompare(matcherName, matcher); - } - }; - - Expectation.Factory = function(options) { - options = options || {}; - - var expect = new Expectation(options); - - // TODO: this would be nice as its own Object - NegativeExpectation - // TODO: copy instead of mutate options - options.isNot = true; - expect.not = new Expectation(options); - - return expect; - }; - - return Expectation; -}; - -//TODO: expectation result may make more sense as a presentation of an expectation. -getJasmineRequireObj().buildExpectationResult = function() { - function buildExpectationResult(options) { - var messageFormatter = options.messageFormatter || function() {}, - stackFormatter = options.stackFormatter || function() {}; - - /** - * @typedef Expectation - * @property {String} matcherName - The name of the matcher that was executed for this expectation. - * @property {String} message - The failure message for the expectation. - * @property {String} stack - The stack trace for the failure if available. - * @property {Boolean} passed - Whether the expectation passed or failed. - * @property {Object} expected - If the expectation failed, what was the expected value. - * @property {Object} actual - If the expectation failed, what actual value was produced. - */ - var result = { - matcherName: options.matcherName, - message: message(), - stack: stack(), - passed: options.passed - }; - - if(!result.passed) { - result.expected = options.expected; - result.actual = options.actual; - } - - return result; - - function message() { - if (options.passed) { - return 'Passed.'; - } else if (options.message) { - return options.message; - } else if (options.error) { - return messageFormatter(options.error); - } - return ''; - } - - function stack() { - if (options.passed) { - return ''; - } - - var error = options.error; - if (!error) { - try { - throw new Error(message()); - } catch (e) { - error = e; - } - } - return stackFormatter(error); - } - } - - return buildExpectationResult; -}; - -getJasmineRequireObj().formatErrorMsg = function() { - function generateErrorMsg(domain, usage) { - var usageDefinition = usage ? '\nUsage: ' + usage : ''; - - return function errorMsg(msg) { - return domain + ' : ' + msg + usageDefinition; - }; - } - - return generateErrorMsg; -}; - -getJasmineRequireObj().GlobalErrors = function(j$) { - function GlobalErrors(global) { - var handlers = []; - global = global || j$.getGlobal(); - - var onerror = function onerror() { - var handler = handlers[handlers.length - 1]; - - if (handler) { - handler.apply(null, Array.prototype.slice.call(arguments, 0)); - } else { - throw arguments[0]; - } - }; - - this.uninstall = function noop() {}; - - this.install = function install() { - if (global.process && global.process.listeners && j$.isFunction_(global.process.on)) { - var originalHandlers = global.process.listeners('uncaughtException'); - global.process.removeAllListeners('uncaughtException'); - global.process.on('uncaughtException', onerror); - - this.uninstall = function uninstall() { - global.process.removeListener('uncaughtException', onerror); - for (var i = 0; i < originalHandlers.length; i++) { - global.process.on('uncaughtException', originalHandlers[i]); - } - }; - } else { - var originalHandler = global.onerror; - global.onerror = onerror; - - this.uninstall = function uninstall() { - global.onerror = originalHandler; - }; - } - }; - - this.pushListener = function pushListener(listener) { - handlers.push(listener); - }; - - this.popListener = function popListener() { - handlers.pop(); - }; - } - - return GlobalErrors; -}; - -getJasmineRequireObj().DiffBuilder = function(j$) { - return function DiffBuilder() { - var path = new j$.ObjectPath(), - mismatches = []; - - return { - record: function (actual, expected, formatter) { - formatter = formatter || defaultFormatter; - mismatches.push(formatter(actual, expected, path)); - }, - - getMessage: function () { - return mismatches.join('\n'); - }, - - withPath: function (pathComponent, block) { - var oldPath = path; - path = path.add(pathComponent); - block(); - path = oldPath; - } - }; - - function defaultFormatter (actual, expected, path) { - return 'Expected ' + - path + (path.depth() ? ' = ' : '') + - j$.pp(actual) + - ' to equal ' + - j$.pp(expected) + - '.'; - } - }; -}; - -getJasmineRequireObj().matchersUtil = function(j$) { - // TODO: what to do about jasmine.pp not being inject? move to JSON.stringify? gut PrettyPrinter? - - return { - equals: equals, - - contains: function(haystack, needle, customTesters) { - customTesters = customTesters || []; - - if ((Object.prototype.toString.apply(haystack) === '[object Set]')) { - return haystack.has(needle); - } - - if ((Object.prototype.toString.apply(haystack) === '[object Array]') || - (!!haystack && !haystack.indexOf)) - { - for (var i = 0; i < haystack.length; i++) { - if (equals(haystack[i], needle, customTesters)) { - return true; - } - } - return false; - } - - return !!haystack && haystack.indexOf(needle) >= 0; - }, - - buildFailureMessage: function() { - var args = Array.prototype.slice.call(arguments, 0), - matcherName = args[0], - isNot = args[1], - actual = args[2], - expected = args.slice(3), - englishyPredicate = matcherName.replace(/[A-Z]/g, function(s) { return ' ' + s.toLowerCase(); }); - - var message = 'Expected ' + - j$.pp(actual) + - (isNot ? ' not ' : ' ') + - englishyPredicate; - - if (expected.length > 0) { - for (var i = 0; i < expected.length; i++) { - if (i > 0) { - message += ','; - } - message += ' ' + j$.pp(expected[i]); - } - } - - return message + '.'; - } - }; - - function isAsymmetric(obj) { - return obj && j$.isA_('Function', obj.asymmetricMatch); - } - - function asymmetricMatch(a, b, customTesters, diffBuilder) { - var asymmetricA = isAsymmetric(a), - asymmetricB = isAsymmetric(b), - result; - - if (asymmetricA && asymmetricB) { - return undefined; - } - - if (asymmetricA) { - result = a.asymmetricMatch(b, customTesters); - if (!result) { - diffBuilder.record(a, b); - } - return result; - } - - if (asymmetricB) { - result = b.asymmetricMatch(a, customTesters); - if (!result) { - diffBuilder.record(a, b); - } - return result; - } - } - - function equals(a, b, customTesters, diffBuilder) { - customTesters = customTesters || []; - diffBuilder = diffBuilder || j$.NullDiffBuilder(); - - return eq(a, b, [], [], customTesters, diffBuilder); - } - - // Equality function lovingly adapted from isEqual in - // [Underscore](http://underscorejs.org) - function eq(a, b, aStack, bStack, customTesters, diffBuilder) { - var result = true, i; - - var asymmetricResult = asymmetricMatch(a, b, customTesters, diffBuilder); - if (!j$.util.isUndefined(asymmetricResult)) { - return asymmetricResult; - } - - for (i = 0; i < customTesters.length; i++) { - var customTesterResult = customTesters[i](a, b); - if (!j$.util.isUndefined(customTesterResult)) { - if (!customTesterResult) { - diffBuilder.record(a, b); - } - return customTesterResult; - } - } - - if (a instanceof Error && b instanceof Error) { - result = a.message == b.message; - if (!result) { - diffBuilder.record(a, b); - } - return result; - } - - // Identical objects are equal. `0 === -0`, but they aren't identical. - // See the [Harmony `egal` proposal](http://wiki.ecmascript.org/doku.php?id=harmony:egal). - if (a === b) { - result = a !== 0 || 1 / a == 1 / b; - if (!result) { - diffBuilder.record(a, b); - } - return result; - } - // A strict comparison is necessary because `null == undefined`. - if (a === null || b === null) { - result = a === b; - if (!result) { - diffBuilder.record(a, b); - } - return result; - } - var className = Object.prototype.toString.call(a); - if (className != Object.prototype.toString.call(b)) { - diffBuilder.record(a, b); - return false; - } - switch (className) { - // Strings, numbers, dates, and booleans are compared by value. - case '[object String]': - // Primitives and their corresponding object wrappers are equivalent; thus, `"5"` is - // equivalent to `new String("5")`. - result = a == String(b); - if (!result) { - diffBuilder.record(a, b); - } - return result; - case '[object Number]': - // `NaN`s are equivalent, but non-reflexive. An `egal` comparison is performed for - // other numeric values. - result = a != +a ? b != +b : (a === 0 ? 1 / a == 1 / b : a == +b); - if (!result) { - diffBuilder.record(a, b); - } - return result; - case '[object Date]': - case '[object Boolean]': - // Coerce dates and booleans to numeric primitive values. Dates are compared by their - // millisecond representations. Note that invalid dates with millisecond representations - // of `NaN` are not equivalent. - result = +a == +b; - if (!result) { - diffBuilder.record(a, b); - } - return result; - // RegExps are compared by their source patterns and flags. - case '[object RegExp]': - return a.source == b.source && - a.global == b.global && - a.multiline == b.multiline && - a.ignoreCase == b.ignoreCase; - } - if (typeof a != 'object' || typeof b != 'object') { - diffBuilder.record(a, b); - return false; - } - - var aIsDomNode = j$.isDomNode(a); - var bIsDomNode = j$.isDomNode(b); - if (aIsDomNode && bIsDomNode) { - // At first try to use DOM3 method isEqualNode - if (a.isEqualNode) { - result = a.isEqualNode(b); - if (!result) { - diffBuilder.record(a, b); - } - return result; - } - // IE8 doesn't support isEqualNode, try to use outerHTML && innerText - var aIsElement = a instanceof Element; - var bIsElement = b instanceof Element; - if (aIsElement && bIsElement) { - result = a.outerHTML == b.outerHTML; - if (!result) { - diffBuilder.record(a, b); - } - return result; - } - if (aIsElement || bIsElement) { - diffBuilder.record(a, b); - return false; - } - result = a.innerText == b.innerText && a.textContent == b.textContent; - if (!result) { - diffBuilder.record(a, b); - } - return result; - } - if (aIsDomNode || bIsDomNode) { - diffBuilder.record(a, b); - return false; - } - - var aIsPromise = j$.isPromise(a); - var bIsPromise = j$.isPromise(b); - if (aIsPromise && bIsPromise) { - return a === b; - } - - // Assume equality for cyclic structures. The algorithm for detecting cyclic - // structures is adapted from ES 5.1 section 15.12.3, abstract operation `JO`. - var length = aStack.length; - while (length--) { - // Linear search. Performance is inversely proportional to the number of - // unique nested structures. - if (aStack[length] == a) { return bStack[length] == b; } - } - // Add the first object to the stack of traversed objects. - aStack.push(a); - bStack.push(b); - var size = 0; - // Recursively compare objects and arrays. - // Compare array lengths to determine if a deep comparison is necessary. - if (className == '[object Array]') { - var aLength = a.length; - var bLength = b.length; - - diffBuilder.withPath('length', function() { - if (aLength !== bLength) { - diffBuilder.record(aLength, bLength); - result = false; - } - }); - - for (i = 0; i < aLength || i < bLength; i++) { - diffBuilder.withPath(i, function() { - result = eq(i < aLength ? a[i] : void 0, i < bLength ? b[i] : void 0, aStack, bStack, customTesters, diffBuilder) && result; - }); - } - if (!result) { - return false; - } - } else if (j$.isMap(a) && j$.isMap(b)) { - if (a.size != b.size) { - diffBuilder.record(a, b); - return false; - } - - var keysA = []; - var keysB = []; - a.forEach( function( valueA, keyA ) { - keysA.push( keyA ); - }); - b.forEach( function( valueB, keyB ) { - keysB.push( keyB ); - }); - - // For both sets of keys, check they map to equal values in both maps. - // Keep track of corresponding keys (in insertion order) in order to handle asymmetric obj keys. - var mapKeys = [keysA, keysB]; - var cmpKeys = [keysB, keysA]; - var mapIter, mapKey, mapValueA, mapValueB; - var cmpIter, cmpKey; - for (i = 0; result && i < mapKeys.length; i++) { - mapIter = mapKeys[i]; - cmpIter = cmpKeys[i]; - - for (var j = 0; result && j < mapIter.length; j++) { - mapKey = mapIter[j]; - cmpKey = cmpIter[j]; - mapValueA = a.get(mapKey); - - // Only use the cmpKey when one of the keys is asymmetric and the corresponding key matches, - // otherwise explicitly look up the mapKey in the other Map since we want keys with unique - // obj identity (that are otherwise equal) to not match. - if (isAsymmetric(mapKey) || isAsymmetric(cmpKey) && - eq(mapKey, cmpKey, aStack, bStack, customTesters, j$.NullDiffBuilder())) { - mapValueB = b.get(cmpKey); - } else { - mapValueB = b.get(mapKey); - } - result = eq(mapValueA, mapValueB, aStack, bStack, customTesters, j$.NullDiffBuilder()); - } - } - - if (!result) { - diffBuilder.record(a, b); - return false; - } - } else if (j$.isSet(a) && j$.isSet(b)) { - if (a.size != b.size) { - diffBuilder.record(a, b); - return false; - } - - var valuesA = []; - a.forEach( function( valueA ) { - valuesA.push( valueA ); - }); - var valuesB = []; - b.forEach( function( valueB ) { - valuesB.push( valueB ); - }); - - // For both sets, check they are all contained in the other set - var setPairs = [[valuesA, valuesB], [valuesB, valuesA]]; - var stackPairs = [[aStack, bStack], [bStack, aStack]]; - var baseValues, baseValue, baseStack; - var otherValues, otherValue, otherStack; - var found; - var prevStackSize; - for (i = 0; result && i < setPairs.length; i++) { - baseValues = setPairs[i][0]; - otherValues = setPairs[i][1]; - baseStack = stackPairs[i][0]; - otherStack = stackPairs[i][1]; - // For each value in the base set... - for (var k = 0; result && k < baseValues.length; k++) { - baseValue = baseValues[k]; - found = false; - // ... test that it is present in the other set - for (var l = 0; !found && l < otherValues.length; l++) { - otherValue = otherValues[l]; - prevStackSize = baseStack.length; - // compare by value equality - found = eq(baseValue, otherValue, baseStack, otherStack, customTesters, j$.NullDiffBuilder()); - if (!found && prevStackSize !== baseStack.length) { - baseStack.splice(prevStackSize); - otherStack.splice(prevStackSize); - } - } - result = result && found; - } - } - - if (!result) { - diffBuilder.record(a, b); - return false; - } - } else { - - // Objects with different constructors are not equivalent, but `Object`s - // or `Array`s from different frames are. - var aCtor = a.constructor, bCtor = b.constructor; - if (aCtor !== bCtor && - isFunction(aCtor) && isFunction(bCtor) && - a instanceof aCtor && b instanceof bCtor && - !(aCtor instanceof aCtor && bCtor instanceof bCtor)) { - - diffBuilder.record(a, b, constructorsAreDifferentFormatter); - return false; - } - } - - // Deep compare objects. - var aKeys = keys(a, className == '[object Array]'), key; - size = aKeys.length; - - // Ensure that both objects contain the same number of properties before comparing deep equality. - if (keys(b, className == '[object Array]').length !== size) { - diffBuilder.record(a, b, objectKeysAreDifferentFormatter); - return false; - } - - for (i = 0; i < size; i++) { - key = aKeys[i]; - // Deep compare each member - if (!j$.util.has(b, key)) { - diffBuilder.record(a, b, objectKeysAreDifferentFormatter); - result = false; - continue; - } - - diffBuilder.withPath(key, function() { - if(!eq(a[key], b[key], aStack, bStack, customTesters, diffBuilder)) { - result = false; - } - }); - } - - if (!result) { - return false; - } - - // Remove the first object from the stack of traversed objects. - aStack.pop(); - bStack.pop(); - - return result; - } - - function keys(obj, isArray) { - var allKeys = Object.keys ? Object.keys(obj) : - (function(o) { - var keys = []; - for (var key in o) { - if (j$.util.has(o, key)) { - keys.push(key); - } - } - return keys; - })(obj); - - if (!isArray) { - return allKeys; - } - - if (allKeys.length === 0) { - return allKeys; - } - - var extraKeys = []; - for (var i = 0; i < allKeys.length; i++) { - if (!/^[0-9]+$/.test(allKeys[i])) { - extraKeys.push(allKeys[i]); - } - } - - return extraKeys; - } - - function has(obj, key) { - return Object.prototype.hasOwnProperty.call(obj, key); - } - - function isFunction(obj) { - return typeof obj === 'function'; - } - - function objectKeysAreDifferentFormatter(actual, expected, path) { - var missingProperties = j$.util.objectDifference(expected, actual), - extraProperties = j$.util.objectDifference(actual, expected), - missingPropertiesMessage = formatKeyValuePairs(missingProperties), - extraPropertiesMessage = formatKeyValuePairs(extraProperties), - messages = []; - - if (!path.depth()) { - path = 'object'; - } - - if (missingPropertiesMessage.length) { - messages.push('Expected ' + path + ' to have properties' + missingPropertiesMessage); - } - - if (extraPropertiesMessage.length) { - messages.push('Expected ' + path + ' not to have properties' + extraPropertiesMessage); - } - - return messages.join('\n'); - } - - function constructorsAreDifferentFormatter(actual, expected, path) { - if (!path.depth()) { - path = 'object'; - } - - return 'Expected ' + - path + ' to be a kind of ' + - j$.fnNameFor(expected.constructor) + - ', but was ' + j$.pp(actual) + '.'; - } - - function formatKeyValuePairs(obj) { - var formatted = ''; - for (var key in obj) { - formatted += '\n ' + key + ': ' + j$.pp(obj[key]); - } - return formatted; - } -}; - -getJasmineRequireObj().nothing = function() { - /** - * {@link expect} nothing explicitly. - * @function - * @name matchers#nothing - * @example - * expect().nothing(); - */ - function nothing() { - return { - compare: function() { - return { - pass: true - }; - } - }; - } - - return nothing; -}; - -getJasmineRequireObj().NullDiffBuilder = function(j$) { - return function() { - return { - withPath: function(_, block) { - block(); - }, - record: function() {} - }; - }; -}; - -getJasmineRequireObj().ObjectPath = function(j$) { - function ObjectPath(components) { - this.components = components || []; - } - - ObjectPath.prototype.toString = function() { - if (this.components.length) { - return '$' + map(this.components, formatPropertyAccess).join(''); - } else { - return ''; - } - }; - - ObjectPath.prototype.add = function(component) { - return new ObjectPath(this.components.concat([component])); - }; - - ObjectPath.prototype.depth = function() { - return this.components.length; - }; - - function formatPropertyAccess(prop) { - if (typeof prop === 'number') { - return '[' + prop + ']'; - } - - if (isValidIdentifier(prop)) { - return '.' + prop; - } - - return '[\'' + prop + '\']'; - } - - function map(array, fn) { - var results = []; - for (var i = 0; i < array.length; i++) { - results.push(fn(array[i])); - } - return results; - } - - function isValidIdentifier(string) { - return /^[A-Za-z\$_][A-Za-z0-9\$_]*$/.test(string); - } - - return ObjectPath; -}; - -getJasmineRequireObj().toBe = function() { - /** - * {@link expect} the actual value to be `===` to the expected value. - * @function - * @name matchers#toBe - * @param {Object} expected - The expected value to compare against. - * @example - * expect(thing).toBe(realThing); - */ - function toBe() { - return { - compare: function(actual, expected) { - return { - pass: actual === expected - }; - } - }; - } - - return toBe; -}; - -getJasmineRequireObj().toBeCloseTo = function() { - /** - * {@link expect} the actual value to be within a specified precision of the expected value. - * @function - * @name matchers#toBeCloseTo - * @param {Object} expected - The expected value to compare against. - * @param {Number} [precision=2] - The number of decimal points to check. - * @example - * expect(number).toBeCloseTo(42.2, 3); - */ - function toBeCloseTo() { - return { - compare: function(actual, expected, precision) { - if (precision !== 0) { - precision = precision || 2; - } - - if (expected === null || actual === null) { - throw new Error('Cannot use toBeCloseTo with null. Arguments evaluated to: ' + - 'expect(' + actual + ').toBeCloseTo(' + expected + ').' - ); - } - - var pow = Math.pow(10, precision + 1); - var delta = Math.abs(expected - actual); - var maxDelta = Math.pow(10, -precision) / 2; - - return { - pass: Math.round(delta * pow) / pow <= maxDelta - }; - } - }; - } - - return toBeCloseTo; -}; - -getJasmineRequireObj().toBeDefined = function() { - /** - * {@link expect} the actual value to be defined. (Not `undefined`) - * @function - * @name matchers#toBeDefined - * @example - * expect(result).toBeDefined(); - */ - function toBeDefined() { - return { - compare: function(actual) { - return { - pass: (void 0 !== actual) - }; - } - }; - } - - return toBeDefined; -}; - -getJasmineRequireObj().toBeFalsy = function() { - /** - * {@link expect} the actual value to be falsy - * @function - * @name matchers#toBeFalsy - * @example - * expect(result).toBeFalsy(); - */ - function toBeFalsy() { - return { - compare: function(actual) { - return { - pass: !!!actual - }; - } - }; - } - - return toBeFalsy; -}; - -getJasmineRequireObj().toBeGreaterThan = function() { - /** - * {@link expect} the actual value to be greater than the expected value. - * @function - * @name matchers#toBeGreaterThan - * @param {Number} expected - The value to compare against. - * @example - * expect(result).toBeGreaterThan(3); - */ - function toBeGreaterThan() { - return { - compare: function(actual, expected) { - return { - pass: actual > expected - }; - } - }; - } - - return toBeGreaterThan; -}; - - -getJasmineRequireObj().toBeGreaterThanOrEqual = function() { - /** - * {@link expect} the actual value to be greater than or equal to the expected value. - * @function - * @name matchers#toBeGreaterThanOrEqual - * @param {Number} expected - The expected value to compare against. - * @example - * expect(result).toBeGreaterThanOrEqual(25); - */ - function toBeGreaterThanOrEqual() { - return { - compare: function(actual, expected) { - return { - pass: actual >= expected - }; - } - }; - } - - return toBeGreaterThanOrEqual; -}; - -getJasmineRequireObj().toBeLessThan = function() { - /** - * {@link expect} the actual value to be less than the expected value. - * @function - * @name matchers#toBeLessThan - * @param {Number} expected - The expected value to compare against. - * @example - * expect(result).toBeLessThan(0); - */ - function toBeLessThan() { - return { - - compare: function(actual, expected) { - return { - pass: actual < expected - }; - } - }; - } - - return toBeLessThan; -}; - -getJasmineRequireObj().toBeLessThanOrEqual = function() { - /** - * {@link expect} the actual value to be less than or equal to the expected value. - * @function - * @name matchers#toBeLessThanOrEqual - * @param {Number} expected - The expected value to compare against. - * @example - * expect(result).toBeLessThanOrEqual(123); - */ - function toBeLessThanOrEqual() { - return { - - compare: function(actual, expected) { - return { - pass: actual <= expected - }; - } - }; - } - - return toBeLessThanOrEqual; -}; - -getJasmineRequireObj().toBeNaN = function(j$) { - /** - * {@link expect} the actual value to be `NaN` (Not a Number). - * @function - * @name matchers#toBeNaN - * @example - * expect(thing).toBeNaN(); - */ - function toBeNaN() { - return { - compare: function(actual) { - var result = { - pass: (actual !== actual) - }; - - if (result.pass) { - result.message = 'Expected actual not to be NaN.'; - } else { - result.message = function() { return 'Expected ' + j$.pp(actual) + ' to be NaN.'; }; - } - - return result; - } - }; - } - - return toBeNaN; -}; - -getJasmineRequireObj().toBeNegativeInfinity = function(j$) { - /** - * {@link expect} the actual value to be `-Infinity` (-infinity). - * @function - * @name matchers#toBeNegativeInfinity - * @example - * expect(thing).toBeNegativeInfinity(); - */ - function toBeNegativeInfinity() { - return { - compare: function(actual) { - var result = { - pass: (actual === Number.NEGATIVE_INFINITY) - }; - - if (result.pass) { - result.message = 'Expected actual to be -Infinity.'; - } else { - result.message = function() { return 'Expected ' + j$.pp(actual) + ' not to be -Infinity.'; }; - } - - return result; - } - }; - } - - return toBeNegativeInfinity; -}; - -getJasmineRequireObj().toBeNull = function() { - /** - * {@link expect} the actual value to be `null`. - * @function - * @name matchers#toBeNull - * @example - * expect(result).toBeNull(); - */ - function toBeNull() { - return { - compare: function(actual) { - return { - pass: actual === null - }; - } - }; - } - - return toBeNull; -}; - -getJasmineRequireObj().toBePositiveInfinity = function(j$) { - /** - * {@link expect} the actual value to be `Infinity` (infinity). - * @function - * @name matchers#toBePositiveInfinity - * @example - * expect(thing).toBePositiveInfinity(); - */ - function toBePositiveInfinity() { - return { - compare: function(actual) { - var result = { - pass: (actual === Number.POSITIVE_INFINITY) - }; - - if (result.pass) { - result.message = 'Expected actual to be Infinity.'; - } else { - result.message = function() { return 'Expected ' + j$.pp(actual) + ' not to be Infinity.'; }; - } - - return result; - } - }; - } - - return toBePositiveInfinity; -}; - -getJasmineRequireObj().toBeTruthy = function() { - /** - * {@link expect} the actual value to be truthy. - * @function - * @name matchers#toBeTruthy - * @example - * expect(thing).toBeTruthy(); - */ - function toBeTruthy() { - return { - compare: function(actual) { - return { - pass: !!actual - }; - } - }; - } - - return toBeTruthy; -}; - -getJasmineRequireObj().toBeUndefined = function() { - /** - * {@link expect} the actual value to be `undefined`. - * @function - * @name matchers#toBeUndefined - * @example - * expect(result).toBeUndefined(): - */ - function toBeUndefined() { - return { - compare: function(actual) { - return { - pass: void 0 === actual - }; - } - }; - } - - return toBeUndefined; -}; - -getJasmineRequireObj().toContain = function() { - /** - * {@link expect} the actual value to contain a specific value. - * @function - * @name matchers#toContain - * @param {Object} expected - The value to look for. - * @example - * expect(array).toContain(anElement); - * expect(string).toContain(substring); - */ - function toContain(util, customEqualityTesters) { - customEqualityTesters = customEqualityTesters || []; - - return { - compare: function(actual, expected) { - - return { - pass: util.contains(actual, expected, customEqualityTesters) - }; - } - }; - } - - return toContain; -}; - -getJasmineRequireObj().toEqual = function(j$) { - /** - * {@link expect} the actual value to be equal to the expected, using deep equality comparison. - * @function - * @name matchers#toEqual - * @param {Object} expected - Expected value - * @example - * expect(bigObject).toEqual({"foo": ['bar', 'baz']}); - */ - function toEqual(util, customEqualityTesters) { - customEqualityTesters = customEqualityTesters || []; - - return { - compare: function(actual, expected) { - var result = { - pass: false - }, - diffBuilder = j$.DiffBuilder(); - - result.pass = util.equals(actual, expected, customEqualityTesters, diffBuilder); - - // TODO: only set error message if test fails - result.message = diffBuilder.getMessage(); - - return result; - } - }; - } - - return toEqual; -}; - -getJasmineRequireObj().toHaveBeenCalled = function(j$) { - - var getErrorMsg = j$.formatErrorMsg('', 'expect().toHaveBeenCalled()'); - - /** - * {@link expect} the actual (a {@link Spy}) to have been called. - * @function - * @name matchers#toHaveBeenCalled - * @example - * expect(mySpy).toHaveBeenCalled(); - * expect(mySpy).not.toHaveBeenCalled(); - */ - function toHaveBeenCalled() { - return { - compare: function(actual) { - var result = {}; - - if (!j$.isSpy(actual)) { - throw new Error(getErrorMsg('Expected a spy, but got ' + j$.pp(actual) + '.')); - } - - if (arguments.length > 1) { - throw new Error(getErrorMsg('Does not take arguments, use toHaveBeenCalledWith')); - } - - result.pass = actual.calls.any(); - - result.message = result.pass ? - 'Expected spy ' + actual.and.identity() + ' not to have been called.' : - 'Expected spy ' + actual.and.identity() + ' to have been called.'; - - return result; - } - }; - } - - return toHaveBeenCalled; -}; - -getJasmineRequireObj().toHaveBeenCalledBefore = function(j$) { - - var getErrorMsg = j$.formatErrorMsg('', 'expect().toHaveBeenCalledBefore()'); - - /** - * {@link expect} the actual value (a {@link Spy}) to have been called before another {@link Spy}. - * @function - * @name matchers#toHaveBeenCalledBefore - * @param {Spy} expected - {@link Spy} that should have been called after the `actual` {@link Spy}. - * @example - * expect(mySpy).toHaveBeenCalledBefore(otherSpy); - */ - function toHaveBeenCalledBefore() { - return { - compare: function(firstSpy, latterSpy) { - if (!j$.isSpy(firstSpy)) { - throw new Error(getErrorMsg('Expected a spy, but got ' + j$.pp(firstSpy) + '.')); - } - if (!j$.isSpy(latterSpy)) { - throw new Error(getErrorMsg('Expected a spy, but got ' + j$.pp(latterSpy) + '.')); - } - - var result = { pass: false }; - - if (!firstSpy.calls.count()) { - result.message = 'Expected spy ' + firstSpy.and.identity() + ' to have been called.'; - return result; - } - if (!latterSpy.calls.count()) { - result.message = 'Expected spy ' + latterSpy.and.identity() + ' to have been called.'; - return result; - } - - var latest1stSpyCall = firstSpy.calls.mostRecent().invocationOrder; - var first2ndSpyCall = latterSpy.calls.first().invocationOrder; - - result.pass = latest1stSpyCall < first2ndSpyCall; - - if (result.pass) { - result.message = 'Expected spy ' + firstSpy.and.identity() + ' to not have been called before spy ' + latterSpy.and.identity() + ', but it was'; - } else { - var first1stSpyCall = firstSpy.calls.first().invocationOrder; - var latest2ndSpyCall = latterSpy.calls.mostRecent().invocationOrder; - - if(first1stSpyCall < first2ndSpyCall) { - result.message = 'Expected latest call to spy ' + firstSpy.and.identity() + ' to have been called before first call to spy ' + latterSpy.and.identity() + ' (no interleaved calls)'; - } else if (latest2ndSpyCall > latest1stSpyCall) { - result.message = 'Expected first call to spy ' + latterSpy.and.identity() + ' to have been called after latest call to spy ' + firstSpy.and.identity() + ' (no interleaved calls)'; - } else { - result.message = 'Expected spy ' + firstSpy.and.identity() + ' to have been called before spy ' + latterSpy.and.identity(); - } - } - - return result; - } - }; - } - - return toHaveBeenCalledBefore; -}; - -getJasmineRequireObj().toHaveBeenCalledTimes = function(j$) { - - var getErrorMsg = j$.formatErrorMsg('', 'expect().toHaveBeenCalledTimes()'); - - /** - * {@link expect} the actual (a {@link Spy}) to have been called the specified number of times. - * @function - * @name matchers#toHaveBeenCalledTimes - * @param {Number} expected - The number of invocations to look for. - * @example - * expect(mySpy).toHaveBeenCalledTimes(3); - */ - function toHaveBeenCalledTimes() { - return { - compare: function(actual, expected) { - if (!j$.isSpy(actual)) { - throw new Error(getErrorMsg('Expected a spy, but got ' + j$.pp(actual) + '.')); - } - - var args = Array.prototype.slice.call(arguments, 0), - result = { pass: false }; - - if (!j$.isNumber_(expected)){ - throw new Error(getErrorMsg('The expected times failed is a required argument and must be a number.')); - } - - actual = args[0]; - var calls = actual.calls.count(); - var timesMessage = expected === 1 ? 'once' : expected + ' times'; - result.pass = calls === expected; - result.message = result.pass ? - 'Expected spy ' + actual.and.identity() + ' not to have been called ' + timesMessage + '. It was called ' + calls + ' times.' : - 'Expected spy ' + actual.and.identity() + ' to have been called ' + timesMessage + '. It was called ' + calls + ' times.'; - return result; - } - }; - } - - return toHaveBeenCalledTimes; -}; - -getJasmineRequireObj().toHaveBeenCalledWith = function(j$) { - - var getErrorMsg = j$.formatErrorMsg('', 'expect().toHaveBeenCalledWith(...arguments)'); - - /** - * {@link expect} the actual (a {@link Spy}) to have been called with particular arguments at least once. - * @function - * @name matchers#toHaveBeenCalledWith - * @param {...Object} - The arguments to look for - * @example - * expect(mySpy).toHaveBeenCalledWith('foo', 'bar', 2); - */ - function toHaveBeenCalledWith(util, customEqualityTesters) { - return { - compare: function() { - var args = Array.prototype.slice.call(arguments, 0), - actual = args[0], - expectedArgs = args.slice(1), - result = { pass: false }; - - if (!j$.isSpy(actual)) { - throw new Error(getErrorMsg('Expected a spy, but got ' + j$.pp(actual) + '.')); - } - - if (!actual.calls.any()) { - result.message = function() { return 'Expected spy ' + actual.and.identity() + ' to have been called with ' + j$.pp(expectedArgs) + ' but it was never called.'; }; - return result; - } - - if (util.contains(actual.calls.allArgs(), expectedArgs, customEqualityTesters)) { - result.pass = true; - result.message = function() { return 'Expected spy ' + actual.and.identity() + ' not to have been called with ' + j$.pp(expectedArgs) + ' but it was.'; }; - } else { - result.message = function() { return 'Expected spy ' + actual.and.identity() + ' to have been called with ' + j$.pp(expectedArgs) + ' but actual calls were ' + j$.pp(actual.calls.allArgs()).replace(/^\[ | \]$/g, '') + '.'; }; - } - - return result; - } - }; - } - - return toHaveBeenCalledWith; -}; - -getJasmineRequireObj().toMatch = function(j$) { - - var getErrorMsg = j$.formatErrorMsg('', 'expect().toMatch( || )'); - - /** - * {@link expect} the actual value to match a regular expression - * @function - * @name matchers#toMatch - * @param {RegExp|String} expected - Value to look for in the string. - * @example - * expect("my string").toMatch(/string$/); - * expect("other string").toMatch("her"); - */ - function toMatch() { - return { - compare: function(actual, expected) { - if (!j$.isString_(expected) && !j$.isA_('RegExp', expected)) { - throw new Error(getErrorMsg('Expected is not a String or a RegExp')); - } - - var regexp = new RegExp(expected); - - return { - pass: regexp.test(actual) - }; - } - }; - } - - return toMatch; -}; - -getJasmineRequireObj().toThrow = function(j$) { - - var getErrorMsg = j$.formatErrorMsg('', 'expect(function() {}).toThrow()'); - - /** - * {@link expect} a function to `throw` something. - * @function - * @name matchers#toThrow - * @param {Object} [expected] - Value that should be thrown. If not provided, simply the fact that something was thrown will be checked. - * @example - * expect(function() { return 'things'; }).toThrow('foo'); - * expect(function() { return 'stuff'; }).toThrow(); - */ - function toThrow(util) { - return { - compare: function(actual, expected) { - var result = { pass: false }, - threw = false, - thrown; - - if (typeof actual != 'function') { - throw new Error(getErrorMsg('Actual is not a Function')); - } - - try { - actual(); - } catch (e) { - threw = true; - thrown = e; - } - - if (!threw) { - result.message = 'Expected function to throw an exception.'; - return result; - } - - if (arguments.length == 1) { - result.pass = true; - result.message = function() { return 'Expected function not to throw, but it threw ' + j$.pp(thrown) + '.'; }; - - return result; - } - - if (util.equals(thrown, expected)) { - result.pass = true; - result.message = function() { return 'Expected function not to throw ' + j$.pp(expected) + '.'; }; - } else { - result.message = function() { return 'Expected function to throw ' + j$.pp(expected) + ', but it threw ' + j$.pp(thrown) + '.'; }; - } - - return result; - } - }; - } - - return toThrow; -}; - -getJasmineRequireObj().toThrowError = function(j$) { - - var getErrorMsg = j$.formatErrorMsg('', 'expect(function() {}).toThrowError(, )'); - - /** - * {@link expect} a function to `throw` an `Error`. - * @function - * @name matchers#toThrowError - * @param {Error} [expected] - `Error` constructor the object that was thrown needs to be an instance of. If not provided, `Error` will be used. - * @param {RegExp|String} [message] - The message that should be set on the thrown `Error` - * @example - * expect(function() { return 'things'; }).toThrowError(MyCustomError, 'message'); - * expect(function() { return 'things'; }).toThrowError(MyCustomError, /bar/); - * expect(function() { return 'stuff'; }).toThrowError(MyCustomError); - * expect(function() { return 'other'; }).toThrowError(/foo/); - * expect(function() { return 'other'; }).toThrowError(); - */ - function toThrowError () { - return { - compare: function(actual) { - var threw = false, - pass = {pass: true}, - fail = {pass: false}, - thrown; - - if (typeof actual != 'function') { - throw new Error(getErrorMsg('Actual is not a Function')); - } - - var errorMatcher = getMatcher.apply(null, arguments); - - try { - actual(); - } catch (e) { - threw = true; - thrown = e; - } - - if (!threw) { - fail.message = 'Expected function to throw an Error.'; - return fail; - } - - // Get Error constructor of thrown - if (!isErrorObject(thrown)) { - fail.message = function() { return 'Expected function to throw an Error, but it threw ' + j$.pp(thrown) + '.'; }; - return fail; - } - - if (errorMatcher.hasNoSpecifics()) { - pass.message = 'Expected function not to throw an Error, but it threw ' + j$.fnNameFor(thrown) + '.'; - return pass; - } - - if (errorMatcher.matches(thrown)) { - pass.message = function() { - return 'Expected function not to throw ' + errorMatcher.errorTypeDescription + errorMatcher.messageDescription() + '.'; - }; - return pass; - } else { - fail.message = function() { - return 'Expected function to throw ' + errorMatcher.errorTypeDescription + errorMatcher.messageDescription() + - ', but it threw ' + errorMatcher.thrownDescription(thrown) + '.'; - }; - return fail; - } - } - }; - - function getMatcher() { - var expected = null, - errorType = null; - - if (arguments.length == 2) { - expected = arguments[1]; - if (isAnErrorType(expected)) { - errorType = expected; - expected = null; - } - } else if (arguments.length > 2) { - errorType = arguments[1]; - expected = arguments[2]; - if (!isAnErrorType(errorType)) { - throw new Error(getErrorMsg('Expected error type is not an Error.')); - } - } - - if (expected && !isStringOrRegExp(expected)) { - if (errorType) { - throw new Error(getErrorMsg('Expected error message is not a string or RegExp.')); - } else { - throw new Error(getErrorMsg('Expected is not an Error, string, or RegExp.')); - } - } - - function messageMatch(message) { - if (typeof expected == 'string') { - return expected == message; - } else { - return expected.test(message); - } - } - - return { - errorTypeDescription: errorType ? j$.fnNameFor(errorType) : 'an exception', - thrownDescription: function(thrown) { - var thrownName = errorType ? j$.fnNameFor(thrown.constructor) : 'an exception', - thrownMessage = ''; - - if (expected) { - thrownMessage = ' with message ' + j$.pp(thrown.message); - } - - return thrownName + thrownMessage; - }, - messageDescription: function() { - if (expected === null) { - return ''; - } else if (expected instanceof RegExp) { - return ' with a message matching ' + j$.pp(expected); - } else { - return ' with message ' + j$.pp(expected); - } - }, - hasNoSpecifics: function() { - return expected === null && errorType === null; - }, - matches: function(error) { - return (errorType === null || error instanceof errorType) && - (expected === null || messageMatch(error.message)); - } - }; - } - - function isStringOrRegExp(potential) { - return potential instanceof RegExp || (typeof potential == 'string'); - } - - function isAnErrorType(type) { - if (typeof type !== 'function') { - return false; - } - - var Surrogate = function() {}; - Surrogate.prototype = type.prototype; - return isErrorObject(new Surrogate()); - } - - function isErrorObject(thrown) { - if (thrown instanceof Error) { - return true; - } - if (thrown && thrown.constructor && thrown.constructor.constructor && - (thrown instanceof (thrown.constructor.constructor('return this')()).Error)) { - return true; - } - return false; - } - } - - return toThrowError; -}; - -getJasmineRequireObj().MockDate = function() { - function MockDate(global) { - var self = this; - var currentTime = 0; - - if (!global || !global.Date) { - self.install = function() {}; - self.tick = function() {}; - self.uninstall = function() {}; - return self; - } - - var GlobalDate = global.Date; - - self.install = function(mockDate) { - if (mockDate instanceof GlobalDate) { - currentTime = mockDate.getTime(); - } else { - currentTime = new GlobalDate().getTime(); - } - - global.Date = FakeDate; - }; - - self.tick = function(millis) { - millis = millis || 0; - currentTime = currentTime + millis; - }; - - self.uninstall = function() { - currentTime = 0; - global.Date = GlobalDate; - }; - - createDateProperties(); - - return self; - - function FakeDate() { - switch(arguments.length) { - case 0: - return new GlobalDate(currentTime); - case 1: - return new GlobalDate(arguments[0]); - case 2: - return new GlobalDate(arguments[0], arguments[1]); - case 3: - return new GlobalDate(arguments[0], arguments[1], arguments[2]); - case 4: - return new GlobalDate(arguments[0], arguments[1], arguments[2], arguments[3]); - case 5: - return new GlobalDate(arguments[0], arguments[1], arguments[2], arguments[3], - arguments[4]); - case 6: - return new GlobalDate(arguments[0], arguments[1], arguments[2], arguments[3], - arguments[4], arguments[5]); - default: - return new GlobalDate(arguments[0], arguments[1], arguments[2], arguments[3], - arguments[4], arguments[5], arguments[6]); - } - } - - function createDateProperties() { - FakeDate.prototype = GlobalDate.prototype; - - FakeDate.now = function() { - if (GlobalDate.now) { - return currentTime; - } else { - throw new Error('Browser does not support Date.now()'); - } - }; - - FakeDate.toSource = GlobalDate.toSource; - FakeDate.toString = GlobalDate.toString; - FakeDate.parse = GlobalDate.parse; - FakeDate.UTC = GlobalDate.UTC; - } - } - - return MockDate; -}; - -getJasmineRequireObj().pp = function(j$) { - - function PrettyPrinter() { - this.ppNestLevel_ = 0; - this.seen = []; - this.length = 0; - this.stringParts = []; - } - - function hasCustomToString(value) { - // value.toString !== Object.prototype.toString if value has no custom toString but is from another context (e.g. - // iframe, web worker) - return j$.isFunction_(value.toString) && value.toString !== Object.prototype.toString && (value.toString() !== Object.prototype.toString.call(value)); - } - - PrettyPrinter.prototype.format = function(value) { - this.ppNestLevel_++; - try { - if (j$.util.isUndefined(value)) { - this.emitScalar('undefined'); - } else if (value === null) { - this.emitScalar('null'); - } else if (value === 0 && 1/value === -Infinity) { - this.emitScalar('-0'); - } else if (value === j$.getGlobal()) { - this.emitScalar(''); - } else if (value.jasmineToString) { - this.emitScalar(value.jasmineToString()); - } else if (typeof value === 'string') { - this.emitString(value); - } else if (j$.isSpy(value)) { - this.emitScalar('spy on ' + value.and.identity()); - } else if (value instanceof RegExp) { - this.emitScalar(value.toString()); - } else if (typeof value === 'function') { - this.emitScalar('Function'); - } else if (typeof value.nodeType === 'number') { - this.emitScalar('HTMLNode'); - } else if (value instanceof Date) { - this.emitScalar('Date(' + value + ')'); - } else if (j$.isSet(value)) { - this.emitSet(value); - } else if (j$.isMap(value)) { - this.emitMap(value); - } else if (j$.isTypedArray_(value)) { - this.emitTypedArray(value); - } else if (value.toString && typeof value === 'object' && !j$.isArray_(value) && hasCustomToString(value)) { - this.emitScalar(value.toString()); - } else if (j$.util.arrayContains(this.seen, value)) { - this.emitScalar(''); - } else if (j$.isArray_(value) || j$.isA_('Object', value)) { - this.seen.push(value); - if (j$.isArray_(value)) { - this.emitArray(value); - } else { - this.emitObject(value); - } - this.seen.pop(); - } else { - this.emitScalar(value.toString()); - } - } catch (e) { - if (this.ppNestLevel_ > 1 || !(e instanceof MaxCharsReachedError)) { - throw e; - } - } finally { - this.ppNestLevel_--; - } - }; - - PrettyPrinter.prototype.iterateObject = function(obj, fn) { - var objKeys = keys(obj, j$.isArray_(obj)); - var isGetter = function isGetter(prop) {}; - - if (obj.__lookupGetter__) { - isGetter = function isGetter(prop) { - var getter = obj.__lookupGetter__(prop); - return !j$.util.isUndefined(getter) && getter !== null; - }; - - } - var length = Math.min(objKeys.length, j$.MAX_PRETTY_PRINT_ARRAY_LENGTH); - for (var i = 0; i < length; i++) { - var property = objKeys[i]; - fn(property, isGetter(property)); - } - - return objKeys.length > length; - }; - - PrettyPrinter.prototype.emitScalar = function(value) { - this.append(value); - }; - - PrettyPrinter.prototype.emitString = function(value) { - this.append('\'' + value + '\''); - }; - - PrettyPrinter.prototype.emitArray = function(array) { - if (this.ppNestLevel_ > j$.MAX_PRETTY_PRINT_DEPTH) { - this.append('Array'); - return; - } - var length = Math.min(array.length, j$.MAX_PRETTY_PRINT_ARRAY_LENGTH); - this.append('[ '); - for (var i = 0; i < length; i++) { - if (i > 0) { - this.append(', '); - } - this.format(array[i]); - } - if(array.length > length){ - this.append(', ...'); - } - - var self = this; - var first = array.length === 0; - var truncated = this.iterateObject(array, function(property, isGetter) { - if (first) { - first = false; - } else { - self.append(', '); - } - - self.formatProperty(array, property, isGetter); - }); - - if (truncated) { this.append(', ...'); } - - this.append(' ]'); - }; - - PrettyPrinter.prototype.emitSet = function(set) { - if (this.ppNestLevel_ > j$.MAX_PRETTY_PRINT_DEPTH) { - this.append('Set'); - return; - } - this.append('Set( '); - var size = Math.min(set.size, j$.MAX_PRETTY_PRINT_ARRAY_LENGTH); - var i = 0; - set.forEach( function( value, key ) { - if (i >= size) { - return; - } - if (i > 0) { - this.append(', '); - } - this.format(value); - - i++; - }, this ); - if (set.size > size){ - this.append(', ...'); - } - this.append(' )'); - }; - - PrettyPrinter.prototype.emitMap = function(map) { - if (this.ppNestLevel_ > j$.MAX_PRETTY_PRINT_DEPTH) { - this.append('Map'); - return; - } - this.append('Map( '); - var size = Math.min(map.size, j$.MAX_PRETTY_PRINT_ARRAY_LENGTH); - var i = 0; - map.forEach( function( value, key ) { - if (i >= size) { - return; - } - if (i > 0) { - this.append(', '); - } - this.format([key,value]); - - i++; - }, this ); - if (map.size > size){ - this.append(', ...'); - } - this.append(' )'); - }; - - PrettyPrinter.prototype.emitObject = function(obj) { - var ctor = obj.constructor, - constructorName; - - constructorName = typeof ctor === 'function' && obj instanceof ctor ? - j$.fnNameFor(obj.constructor) : - 'null'; - - this.append(constructorName); - - if (this.ppNestLevel_ > j$.MAX_PRETTY_PRINT_DEPTH) { - return; - } - - var self = this; - this.append('({ '); - var first = true; - - var truncated = this.iterateObject(obj, function(property, isGetter) { - if (first) { - first = false; - } else { - self.append(', '); - } - - self.formatProperty(obj, property, isGetter); - }); - - if (truncated) { this.append(', ...'); } - - this.append(' })'); - }; - - PrettyPrinter.prototype.emitTypedArray = function(arr) { - var constructorName = j$.fnNameFor(arr.constructor), - limitedArray = Array.prototype.slice.call(arr, 0, j$.MAX_PRETTY_PRINT_ARRAY_LENGTH), - itemsString = Array.prototype.join.call(limitedArray, ', '); - - if (limitedArray.length !== arr.length) { - itemsString += ', ...'; - } - - this.append(constructorName + ' [ ' + itemsString + ' ]'); - }; - - PrettyPrinter.prototype.formatProperty = function(obj, property, isGetter) { - this.append(property); - this.append(': '); - if (isGetter) { - this.append(''); - } else { - this.format(obj[property]); - } - }; - - PrettyPrinter.prototype.append = function(value) { - var result = truncate(value, j$.MAX_PRETTY_PRINT_CHARS - this.length); - this.length += result.value.length; - this.stringParts.push(result.value); - - if (result.truncated) { - throw new MaxCharsReachedError(); - } - }; - - - function truncate(s, maxlen) { - if (s.length <= maxlen) { - return { value: s, truncated: false }; - } - - s = s.substring(0, maxlen - 4) + ' ...'; - return { value: s, truncated: true }; - } - - function MaxCharsReachedError() { - this.message = 'Exceeded ' + j$.MAX_PRETTY_PRINT_CHARS + - ' characters while pretty-printing a value'; - } - - MaxCharsReachedError.prototype = new Error(); - - function keys(obj, isArray) { - var allKeys = Object.keys ? Object.keys(obj) : - (function(o) { - var keys = []; - for (var key in o) { - if (j$.util.has(o, key)) { - keys.push(key); - } - } - return keys; - })(obj); - - if (!isArray) { - return allKeys; - } - - if (allKeys.length === 0) { - return allKeys; - } - - var extraKeys = []; - for (var i = 0; i < allKeys.length; i++) { - if (!/^[0-9]+$/.test(allKeys[i])) { - extraKeys.push(allKeys[i]); - } - } - - return extraKeys; - } - return function(value) { - var prettyPrinter = new PrettyPrinter(); - prettyPrinter.format(value); - return prettyPrinter.stringParts.join(''); - }; -}; - -getJasmineRequireObj().QueueRunner = function(j$) { - - function once(fn) { - var called = false; - return function() { - if (!called) { - called = true; - fn.apply(null, arguments); - } - return null; - }; - } - - function QueueRunner(attrs) { - var queueableFns = attrs.queueableFns || []; - this.queueableFns = queueableFns.concat(attrs.cleanupFns || []); - this.firstCleanupIx = queueableFns.length; - this.onComplete = attrs.onComplete || function() {}; - this.clearStack = attrs.clearStack || function(fn) {fn();}; - this.onException = attrs.onException || function() {}; - this.catchException = attrs.catchException || function() { return true; }; - this.userContext = attrs.userContext || new j$.UserContext(); - this.timeout = attrs.timeout || {setTimeout: setTimeout, clearTimeout: clearTimeout}; - this.fail = attrs.fail || function() {}; - this.globalErrors = attrs.globalErrors || { pushListener: function() {}, popListener: function() {} }; - this.completeOnFirstError = !!attrs.completeOnFirstError; - this.deprecated = attrs.deprecated; - } - - QueueRunner.prototype.execute = function() { - var self = this; - this.handleFinalError = function(error) { - self.onException(error); - }; - this.globalErrors.pushListener(this.handleFinalError); - this.run(0); - }; - - QueueRunner.prototype.skipToCleanup = function(lastRanIndex) { - if (lastRanIndex < this.firstCleanupIx) { - this.run(this.firstCleanupIx); - } else { - this.run(lastRanIndex + 1); - } - }; - - QueueRunner.prototype.run = function(recursiveIndex) { - var length = this.queueableFns.length, - self = this, - iterativeIndex; - - - for(iterativeIndex = recursiveIndex; iterativeIndex < length; iterativeIndex++) { - var result = attempt(iterativeIndex); - - if (!result.completedSynchronously) { - return; - } - - if (this.completeOnFirstError && result.errored) { - this.skipToCleanup(iterativeIndex); - return; - } - } - - this.clearStack(function() { - self.globalErrors.popListener(self.handleFinalError); - self.onComplete(); - }); - - function attempt() { - var clearTimeout = function () { - Function.prototype.apply.apply(self.timeout.clearTimeout, [j$.getGlobal(), [timeoutId]]); - }, - setTimeout = function(delayedFn, delay) { - return Function.prototype.apply.apply(self.timeout.setTimeout, [j$.getGlobal(), [delayedFn, delay]]); - }, - completedSynchronously = true, - handleError = function(error) { - onException(error); - next(); - }, - cleanup = once(function() { - clearTimeout(timeoutId); - self.globalErrors.popListener(handleError); - }), - next = once(function (err) { - cleanup(); - - if (err instanceof Error) { - self.deprecated('done callback received an Error object. Jasmine 3.0 will treat this as a failure'); - } - - function runNext() { - if (self.completeOnFirstError && errored) { - self.skipToCleanup(iterativeIndex); - } else { - self.run(iterativeIndex + 1); - } - } - - if (completedSynchronously) { - setTimeout(runNext); - } else { - runNext(); - } - }), - errored = false, - queueableFn = self.queueableFns[iterativeIndex], - timeoutId; - - next.fail = function() { - self.fail.apply(null, arguments); - errored = true; - next(); - }; - - self.globalErrors.pushListener(handleError); - - if (queueableFn.timeout) { - timeoutId = setTimeout(function() { - var error = new Error('Timeout - Async callback was not invoked within timeout specified by jasmine.DEFAULT_TIMEOUT_INTERVAL.'); - onException(error); - next(); - }, queueableFn.timeout()); - } - - try { - if (queueableFn.fn.length === 0) { - var maybeThenable = queueableFn.fn.call(self.userContext); - - if (maybeThenable && j$.isFunction_(maybeThenable.then)) { - maybeThenable.then(next, onPromiseRejection); - completedSynchronously = false; - return { completedSynchronously: false }; - } - } else { - queueableFn.fn.call(self.userContext, next); - completedSynchronously = false; - return { completedSynchronously: false }; - } - } catch (e) { - handleException(e, queueableFn); - errored = true; - } - - cleanup(); - return { completedSynchronously: true, errored: errored }; - - function onException(e) { - self.onException(e); - errored = true; - } - - function onPromiseRejection(e) { - onException(e); - next(); - } - - function handleException(e, queueableFn) { - onException(e); - if (!self.catchException(e)) { - //TODO: set a var when we catch an exception and - //use a finally block to close the loop in a nice way.. - throw e; - } - } - } - }; - - return QueueRunner; -}; - -getJasmineRequireObj().ReportDispatcher = function(j$) { - function ReportDispatcher(methods) { - - var dispatchedMethods = methods || []; - - for (var i = 0; i < dispatchedMethods.length; i++) { - var method = dispatchedMethods[i]; - this[method] = (function(m) { - return function() { - dispatch(m, arguments); - }; - }(method)); - } - - var reporters = []; - var fallbackReporter = null; - - this.addReporter = function(reporter) { - reporters.push(reporter); - }; - - this.provideFallbackReporter = function(reporter) { - fallbackReporter = reporter; - }; - - this.clearReporters = function() { - reporters = []; - }; - - return this; - - function dispatch(method, args) { - if (reporters.length === 0 && fallbackReporter !== null) { - reporters.push(fallbackReporter); - } - for (var i = 0; i < reporters.length; i++) { - var reporter = reporters[i]; - if (reporter[method]) { - reporter[method].apply(reporter, j$.util.cloneArgs(args)); - } - } - } - } - - return ReportDispatcher; -}; - - -getJasmineRequireObj().interface = function(jasmine, env) { - var jasmineInterface = { - /** - * Callback passed to parts of the Jasmine base interface. - * - * By default Jasmine assumes this function completes synchronously. - * If you have code that you need to test asynchronously, you can declare that you receive a `done` callback, return a Promise, or use the `async` keyword if it is supported in your environment. - * @callback implementationCallback - * @param {Function} [done] Used to specify to Jasmine that this callback is asynchronous and Jasmine should wait until it has been called before moving on. - * @returns {} Optionally return a Promise instead of using `done` to cause Jasmine to wait for completion. - */ - - /** - * Create a group of specs (often called a suite). - * - * Calls to `describe` can be nested within other calls to compose your suite as a tree. - * @name describe - * @function - * @global - * @param {String} description Textual description of the group - * @param {Function} specDefinitions Function for Jasmine to invoke that will define inner suites and specs - */ - describe: function(description, specDefinitions) { - return env.describe(description, specDefinitions); - }, - - /** - * A temporarily disabled [`describe`]{@link describe} - * - * Specs within an `xdescribe` will be marked pending and not executed - * @name xdescribe - * @function - * @global - * @param {String} description Textual description of the group - * @param {Function} specDefinitions Function for Jasmine to invoke that will define inner suites and specs - */ - xdescribe: function(description, specDefinitions) { - return env.xdescribe(description, specDefinitions); - }, - - /** - * A focused [`describe`]{@link describe} - * - * If suites or specs are focused, only those that are focused will be executed - * @see fit - * @name fdescribe - * @function - * @global - * @param {String} description Textual description of the group - * @param {Function} specDefinitions Function for Jasmine to invoke that will define inner suites and specs - */ - fdescribe: function(description, specDefinitions) { - return env.fdescribe(description, specDefinitions); - }, - - /** - * Define a single spec. A spec should contain one or more {@link expect|expectations} that test the state of the code. - * - * A spec whose expectations all succeed will be passing and a spec with any failures will fail. - * @name it - * @function - * @global - * @param {String} description Textual description of what this spec is checking - * @param {implementationCallback} [testFunction] Function that contains the code of your test. If not provided the test will be `pending`. - * @param {Int} [timeout={@link jasmine.DEFAULT_TIMEOUT_INTERVAL}] Custom timeout for an async spec. - */ - it: function() { - return env.it.apply(env, arguments); - }, - - /** - * A temporarily disabled [`it`]{@link it} - * - * The spec will report as `pending` and will not be executed. - * @name xit - * @function - * @global - * @param {String} description Textual description of what this spec is checking. - * @param {implementationCallback} [testFunction] Function that contains the code of your test. Will not be executed. - */ - xit: function() { - return env.xit.apply(env, arguments); - }, - - /** - * A focused [`it`]{@link it} - * - * If suites or specs are focused, only those that are focused will be executed. - * @name fit - * @function - * @global - * @param {String} description Textual description of what this spec is checking. - * @param {implementationCallback} testFunction Function that contains the code of your test. - * @param {Int} [timeout={@link jasmine.DEFAULT_TIMEOUT_INTERVAL}] Custom timeout for an async spec. - */ - fit: function() { - return env.fit.apply(env, arguments); - }, - - /** - * Run some shared setup before each of the specs in the {@link describe} in which it is called. - * @name beforeEach - * @function - * @global - * @param {implementationCallback} [function] Function that contains the code to setup your specs. - * @param {Int} [timeout={@link jasmine.DEFAULT_TIMEOUT_INTERVAL}] Custom timeout for an async beforeEach. - */ - beforeEach: function() { - return env.beforeEach.apply(env, arguments); - }, - - /** - * Run some shared teardown after each of the specs in the {@link describe} in which it is called. - * @name afterEach - * @function - * @global - * @param {implementationCallback} [function] Function that contains the code to teardown your specs. - * @param {Int} [timeout={@link jasmine.DEFAULT_TIMEOUT_INTERVAL}] Custom timeout for an async afterEach. - */ - afterEach: function() { - return env.afterEach.apply(env, arguments); - }, - - /** - * Run some shared setup once before all of the specs in the {@link describe} are run. - * - * _Note:_ Be careful, sharing the setup from a beforeAll makes it easy to accidentally leak state between your specs so that they erroneously pass or fail. - * @name beforeAll - * @function - * @global - * @param {implementationCallback} [function] Function that contains the code to setup your specs. - * @param {Int} [timeout={@link jasmine.DEFAULT_TIMEOUT_INTERVAL}] Custom timeout for an async beforeAll. - */ - beforeAll: function() { - return env.beforeAll.apply(env, arguments); - }, - - /** - * Run some shared teardown once after all of the specs in the {@link describe} are run. - * - * _Note:_ Be careful, sharing the teardown from a afterAll makes it easy to accidentally leak state between your specs so that they erroneously pass or fail. - * @name afterAll - * @function - * @global - * @param {implementationCallback} [function] Function that contains the code to teardown your specs. - * @param {Int} [timeout={@link jasmine.DEFAULT_TIMEOUT_INTERVAL}] Custom timeout for an async afterAll. - */ - afterAll: function() { - return env.afterAll.apply(env, arguments); - }, - - /** - * Create an expectation for a spec. - * @name expect - * @function - * @global - * @param {Object} actual - Actual computed value to test expectations against. - * @return {matchers} - */ - expect: function(actual) { - return env.expect(actual); - }, - - /** - * Mark a spec as pending, expectation results will be ignored. - * @name pending - * @function - * @global - * @param {String} [message] - Reason the spec is pending. - */ - pending: function() { - return env.pending.apply(env, arguments); - }, - - /** - * Explicitly mark a spec as failed. - * @name fail - * @function - * @global - * @param {String|Error} [error] - Reason for the failure. - */ - fail: function() { - return env.fail.apply(env, arguments); - }, - - /** - * Install a spy onto an existing object. - * @name spyOn - * @function - * @global - * @param {Object} obj - The object upon which to install the {@link Spy}. - * @param {String} methodName - The name of the method to replace with a {@link Spy}. - * @returns {Spy} - */ - spyOn: function(obj, methodName) { - return env.spyOn(obj, methodName); - }, - - /** - * Install a spy on a property installed with `Object.defineProperty` onto an existing object. - * @name spyOnProperty - * @function - * @global - * @param {Object} obj - The object upon which to install the {@link Spy} - * @param {String} propertyName - The name of the property to replace with a {@link Spy}. - * @param {String} [accessType=get] - The access type (get|set) of the property to {@link Spy} on. - * @returns {Spy} - */ - spyOnProperty: function(obj, methodName, accessType) { - return env.spyOnProperty(obj, methodName, accessType); - }, - - jsApiReporter: new jasmine.JsApiReporter({ - timer: new jasmine.Timer() - }), - - /** - * @namespace jasmine - */ - jasmine: jasmine - }; - - /** - * Add a custom equality tester for the current scope of specs. - * - * _Note:_ This is only callable from within a {@link beforeEach}, {@link it}, or {@link beforeAll}. - * @name jasmine.addCustomEqualityTester - * @function - * @param {Function} tester - A function which takes two arguments to compare and returns a `true` or `false` comparison result if it knows how to compare them, and `undefined` otherwise. - * @see custom_equality - */ - jasmine.addCustomEqualityTester = function(tester) { - env.addCustomEqualityTester(tester); - }; - - /** - * Add custom matchers for the current scope of specs. - * - * _Note:_ This is only callable from within a {@link beforeEach}, {@link it}, or {@link beforeAll}. - * @name jasmine.addMatchers - * @function - * @param {Object} matchers - Keys from this object will be the new matcher names. - * @see custom_matcher - */ - jasmine.addMatchers = function(matchers) { - return env.addMatchers(matchers); - }; - - /** - * Get the currently booted mock {Clock} for this Jasmine environment. - * @name jasmine.clock - * @function - * @returns {Clock} - */ - jasmine.clock = function() { - return env.clock; - }; - - return jasmineInterface; -}; - -getJasmineRequireObj().Spy = function (j$) { - - var nextOrder = (function() { - var order = 0; - - return function() { - return order++; - }; - })(); - - /** - * _Note:_ Do not construct this directly, use {@link spyOn}, {@link spyOnProperty}, {@link jasmine.createSpy}, or {@link jasmine.createSpyObj} - * @constructor - * @name Spy - */ - function Spy(name, originalFn) { - var numArgs = (typeof originalFn === 'function' ? originalFn.length : 0), - wrapper = makeFunc(numArgs, function () { - return spy.apply(this, Array.prototype.slice.call(arguments)); - }), - spyStrategy = new j$.SpyStrategy({ - name: name, - fn: originalFn, - getSpy: function () { - return wrapper; - } - }), - callTracker = new j$.CallTracker(), - spy = function () { - /** - * @name Spy.callData - * @property {object} object - `this` context for the invocation. - * @property {number} invocationOrder - Order of the invocation. - * @property {Array} args - The arguments passed for this invocation. - */ - var callData = { - object: this, - invocationOrder: nextOrder(), - args: Array.prototype.slice.apply(arguments) - }; - - callTracker.track(callData); - var returnValue = spyStrategy.exec.apply(this, arguments); - callData.returnValue = returnValue; - - return returnValue; - }; - - function makeFunc(length, fn) { - switch (length) { - case 1 : return function (a) { return fn.apply(this, arguments); }; - case 2 : return function (a,b) { return fn.apply(this, arguments); }; - case 3 : return function (a,b,c) { return fn.apply(this, arguments); }; - case 4 : return function (a,b,c,d) { return fn.apply(this, arguments); }; - case 5 : return function (a,b,c,d,e) { return fn.apply(this, arguments); }; - case 6 : return function (a,b,c,d,e,f) { return fn.apply(this, arguments); }; - case 7 : return function (a,b,c,d,e,f,g) { return fn.apply(this, arguments); }; - case 8 : return function (a,b,c,d,e,f,g,h) { return fn.apply(this, arguments); }; - case 9 : return function (a,b,c,d,e,f,g,h,i) { return fn.apply(this, arguments); }; - default : return function () { return fn.apply(this, arguments); }; - } - } - - for (var prop in originalFn) { - if (prop === 'and' || prop === 'calls') { - throw new Error('Jasmine spies would overwrite the \'and\' and \'calls\' properties on the object being spied upon'); - } - - wrapper[prop] = originalFn[prop]; - } - - wrapper.and = spyStrategy; - wrapper.calls = callTracker; - - return wrapper; - } - - return Spy; -}; - -getJasmineRequireObj().SpyRegistry = function(j$) { - - var getErrorMsg = j$.formatErrorMsg('', 'spyOn(, )'); - - function SpyRegistry(options) { - options = options || {}; - var global = options.global || j$.getGlobal(); - var currentSpies = options.currentSpies || function() { return []; }; - - this.allowRespy = function(allow){ - this.respy = allow; - }; - - this.spyOn = function(obj, methodName) { - - if (j$.util.isUndefined(obj) || obj === null) { - throw new Error(getErrorMsg('could not find an object to spy upon for ' + methodName + '()')); - } - - if (j$.util.isUndefined(methodName) || methodName === null) { - throw new Error(getErrorMsg('No method name supplied')); - } - - if (j$.util.isUndefined(obj[methodName])) { - throw new Error(getErrorMsg(methodName + '() method does not exist')); - } - - if (obj[methodName] && j$.isSpy(obj[methodName]) ) { - if ( !!this.respy ){ - return obj[methodName]; - }else { - throw new Error(getErrorMsg(methodName + ' has already been spied upon')); - } - } - - var descriptor; - try { - descriptor = Object.getOwnPropertyDescriptor(obj, methodName); - } catch(e) { - // IE 8 doesn't support `definePropery` on non-DOM nodes - } - - if (descriptor && !(descriptor.writable || descriptor.set)) { - throw new Error(getErrorMsg(methodName + ' is not declared writable or has no setter')); - } - - var originalMethod = obj[methodName], - spiedMethod = j$.createSpy(methodName, originalMethod), - restoreStrategy; - - if (Object.prototype.hasOwnProperty.call(obj, methodName) || (obj === global && methodName === 'onerror')) { - restoreStrategy = function() { - obj[methodName] = originalMethod; - }; - } else { - restoreStrategy = function() { - if (!delete obj[methodName]) { - obj[methodName] = originalMethod; - } - }; - } - - currentSpies().push({ - restoreObjectToOriginalState: restoreStrategy - }); - - obj[methodName] = spiedMethod; - - return spiedMethod; - }; - - this.spyOnProperty = function (obj, propertyName, accessType) { - accessType = accessType || 'get'; - - if (j$.util.isUndefined(obj)) { - throw new Error('spyOn could not find an object to spy upon for ' + propertyName + ''); - } - - if (j$.util.isUndefined(propertyName)) { - throw new Error('No property name supplied'); - } - - var descriptor; - try { - descriptor = j$.util.getPropertyDescriptor(obj, propertyName); - } catch(e) { - // IE 8 doesn't support `definePropery` on non-DOM nodes - } - - if (!descriptor) { - throw new Error(propertyName + ' property does not exist'); - } - - if (!descriptor.configurable) { - throw new Error(propertyName + ' is not declared configurable'); - } - - if(!descriptor[accessType]) { - throw new Error('Property ' + propertyName + ' does not have access type ' + accessType); - } - - if (j$.isSpy(descriptor[accessType])) { - //TODO?: should this return the current spy? Downside: may cause user confusion about spy state - throw new Error(propertyName + ' has already been spied upon'); - } - - var originalDescriptor = j$.util.clone(descriptor), - spy = j$.createSpy(propertyName, descriptor[accessType]), - restoreStrategy; - - if (Object.prototype.hasOwnProperty.call(obj, propertyName)) { - restoreStrategy = function() { - Object.defineProperty(obj, propertyName, originalDescriptor); - }; - } else { - restoreStrategy = function() { - delete obj[propertyName]; - }; - } - - currentSpies().push({ - restoreObjectToOriginalState: restoreStrategy - }); - - descriptor[accessType] = spy; - - Object.defineProperty(obj, propertyName, descriptor); - - return spy; - }; - - this.clearSpies = function() { - var spies = currentSpies(); - for (var i = spies.length - 1; i >= 0; i--) { - var spyEntry = spies[i]; - spyEntry.restoreObjectToOriginalState(); - } - }; - } - - return SpyRegistry; -}; - -getJasmineRequireObj().SpyStrategy = function(j$) { - - /** - * @namespace Spy#and - */ - function SpyStrategy(options) { - options = options || {}; - - var identity = options.name || 'unknown', - originalFn = options.fn || function() {}, - getSpy = options.getSpy || function() {}, - plan = function() {}; - - /** - * Return the identifying information for the spy. - * @name Spy#and#identity - * @function - * @returns {String} - */ - this.identity = function() { - return identity; - }; - - /** - * Execute the current spy strategy. - * @name Spy#and#exec - * @function - */ - this.exec = function() { - return plan.apply(this, arguments); - }; - - /** - * Tell the spy to call through to the real implementation when invoked. - * @name Spy#and#callThrough - * @function - */ - this.callThrough = function() { - plan = originalFn; - return getSpy(); - }; - - /** - * Tell the spy to return the value when invoked. - * @name Spy#and#returnValue - * @function - * @param {*} value The value to return. - */ - this.returnValue = function(value) { - plan = function() { - return value; - }; - return getSpy(); - }; - - /** - * Tell the spy to return one of the specified values (sequentially) each time the spy is invoked. - * @name Spy#and#returnValues - * @function - * @param {...*} values - Values to be returned on subsequent calls to the spy. - */ - this.returnValues = function() { - var values = Array.prototype.slice.call(arguments); - plan = function () { - return values.shift(); - }; - return getSpy(); - }; - - /** - * Tell the spy to throw an error when invoked. - * @name Spy#and#throwError - * @function - * @param {Error|String} something Thing to throw - */ - this.throwError = function(something) { - var error = (something instanceof Error) ? something : new Error(something); - plan = function() { - throw error; - }; - return getSpy(); - }; - - /** - * Tell the spy to call a fake implementation when invoked. - * @name Spy#and#callFake - * @function - * @param {Function} fn The function to invoke with the passed parameters. - */ - this.callFake = function(fn) { - if(!(j$.isFunction_(fn) || j$.isAsyncFunction_(fn))) { - throw new Error('Argument passed to callFake should be a function, got ' + fn); - } - plan = fn; - return getSpy(); - }; - - /** - * Tell the spy to do nothing when invoked. This is the default. - * @name Spy#and#stub - * @function - */ - this.stub = function(fn) { - plan = function() {}; - return getSpy(); - }; - } - - return SpyStrategy; -}; - -getJasmineRequireObj().Suite = function(j$) { - function Suite(attrs) { - this.env = attrs.env; - this.id = attrs.id; - this.parentSuite = attrs.parentSuite; - this.description = attrs.description; - this.expectationFactory = attrs.expectationFactory; - this.expectationResultFactory = attrs.expectationResultFactory; - this.throwOnExpectationFailure = !!attrs.throwOnExpectationFailure; - - this.beforeFns = []; - this.afterFns = []; - this.beforeAllFns = []; - this.afterAllFns = []; - - this.children = []; - - /** - * @typedef SuiteResult - * @property {Int} id - The unique id of this suite. - * @property {String} description - The description text passed to the {@link describe} that made this suite. - * @property {String} fullName - The full description including all ancestors of this suite. - * @property {Expectation[]} failedExpectations - The list of expectations that failed in an {@link afterAll} for this suite. - * @property {Expectation[]} deprecationWarnings - The list of deprecation warnings that occurred on this suite. - * @property {String} status - Once the suite has completed, this string represents the pass/fail status of this suite. - */ - this.result = { - id: this.id, - description: this.description, - fullName: this.getFullName(), - failedExpectations: [], - deprecationWarnings: [] - }; - } - - Suite.prototype.expect = function(actual) { - return this.expectationFactory(actual, this); - }; - - Suite.prototype.getFullName = function() { - var fullName = []; - for (var parentSuite = this; parentSuite; parentSuite = parentSuite.parentSuite) { - if (parentSuite.parentSuite) { - fullName.unshift(parentSuite.description); - } - } - return fullName.join(' '); - }; - - Suite.prototype.pend = function() { - this.markedPending = true; - }; - - Suite.prototype.beforeEach = function(fn) { - this.beforeFns.unshift(fn); - }; - - Suite.prototype.beforeAll = function(fn) { - this.beforeAllFns.push(fn); - }; - - Suite.prototype.afterEach = function(fn) { - this.afterFns.unshift(fn); - }; - - Suite.prototype.afterAll = function(fn) { - this.afterAllFns.unshift(fn); - }; - - Suite.prototype.addChild = function(child) { - this.children.push(child); - }; - - Suite.prototype.status = function() { - if (this.markedPending) { - return 'pending'; - } - - if (this.result.failedExpectations.length > 0) { - return 'failed'; - } else { - return 'finished'; - } - }; - - Suite.prototype.isExecutable = function() { - return !this.markedPending; - }; - - Suite.prototype.canBeReentered = function() { - return this.beforeAllFns.length === 0 && this.afterAllFns.length === 0; - }; - - Suite.prototype.getResult = function() { - this.result.status = this.status(); - return this.result; - }; - - Suite.prototype.sharedUserContext = function() { - if (!this.sharedContext) { - this.sharedContext = this.parentSuite ? this.parentSuite.clonedSharedUserContext() : new j$.UserContext(); - } - - return this.sharedContext; - }; - - Suite.prototype.clonedSharedUserContext = function() { - return j$.UserContext.fromExisting(this.sharedUserContext()); - }; - - Suite.prototype.onException = function() { - if (arguments[0] instanceof j$.errors.ExpectationFailed) { - return; - } - - if(isAfterAll(this.children)) { - var data = { - matcherName: '', - passed: false, - expected: '', - actual: '', - error: arguments[0] - }; - this.result.failedExpectations.push(this.expectationResultFactory(data)); - } else { - for (var i = 0; i < this.children.length; i++) { - var child = this.children[i]; - child.onException.apply(child, arguments); - } - } - }; - - Suite.prototype.addExpectationResult = function () { - if(isAfterAll(this.children) && isFailure(arguments)){ - var data = arguments[1]; - this.result.failedExpectations.push(this.expectationResultFactory(data)); - if(this.throwOnExpectationFailure) { - throw new j$.errors.ExpectationFailed(); - } - } else { - for (var i = 0; i < this.children.length; i++) { - var child = this.children[i]; - try { - child.addExpectationResult.apply(child, arguments); - } catch(e) { - // keep going - } - } - } - }; - - Suite.prototype.addDeprecationWarning = function(msg) { - this.result.deprecationWarnings.push(this.expectationResultFactory({ message: msg })); - }; - - function isAfterAll(children) { - return children && children[0].result.status; - } - - function isFailure(args) { - return !args[0]; - } - - return Suite; -}; - -if (typeof window == void 0 && typeof exports == 'object') { - exports.Suite = jasmineRequire.Suite; -} - -getJasmineRequireObj().Timer = function() { - var defaultNow = (function(Date) { - return function() { return new Date().getTime(); }; - })(Date); - - function Timer(options) { - options = options || {}; - - var now = options.now || defaultNow, - startTime; - - this.start = function() { - startTime = now(); - }; - - this.elapsed = function() { - return now() - startTime; - }; - } - - return Timer; -}; - -getJasmineRequireObj().TreeProcessor = function() { - function TreeProcessor(attrs) { - var tree = attrs.tree, - runnableIds = attrs.runnableIds, - queueRunnerFactory = attrs.queueRunnerFactory, - nodeStart = attrs.nodeStart || function() {}, - nodeComplete = attrs.nodeComplete || function() {}, - orderChildren = attrs.orderChildren || function(node) { return node.children; }, - stats = { valid: true }, - processed = false, - defaultMin = Infinity, - defaultMax = 1 - Infinity; - - this.processTree = function() { - processNode(tree, false); - processed = true; - return stats; - }; - - this.execute = function(done) { - if (!processed) { - this.processTree(); - } - - if (!stats.valid) { - throw 'invalid order'; - } - - var childFns = wrapChildren(tree, 0); - - queueRunnerFactory({ - queueableFns: childFns, - userContext: tree.sharedUserContext(), - onException: function() { - tree.onException.apply(tree, arguments); - }, - onComplete: done - }); - }; - - function runnableIndex(id) { - for (var i = 0; i < runnableIds.length; i++) { - if (runnableIds[i] === id) { - return i; - } - } - } - - function processNode(node, parentEnabled) { - var executableIndex = runnableIndex(node.id); - - if (executableIndex !== undefined) { - parentEnabled = true; - } - - parentEnabled = parentEnabled && node.isExecutable(); - - if (!node.children) { - stats[node.id] = { - executable: parentEnabled && node.isExecutable(), - segments: [{ - index: 0, - owner: node, - nodes: [node], - min: startingMin(executableIndex), - max: startingMax(executableIndex) - }] - }; - } else { - var hasExecutableChild = false; - - var orderedChildren = orderChildren(node); - - for (var i = 0; i < orderedChildren.length; i++) { - var child = orderedChildren[i]; - - processNode(child, parentEnabled); - - if (!stats.valid) { - return; - } - - var childStats = stats[child.id]; - - hasExecutableChild = hasExecutableChild || childStats.executable; - } - - stats[node.id] = { - executable: hasExecutableChild - }; - - segmentChildren(node, orderedChildren, stats[node.id], executableIndex); - - if (!node.canBeReentered() && stats[node.id].segments.length > 1) { - stats = { valid: false }; - } - } - } - - function startingMin(executableIndex) { - return executableIndex === undefined ? defaultMin : executableIndex; - } - - function startingMax(executableIndex) { - return executableIndex === undefined ? defaultMax : executableIndex; - } - - function segmentChildren(node, orderedChildren, nodeStats, executableIndex) { - var currentSegment = { index: 0, owner: node, nodes: [], min: startingMin(executableIndex), max: startingMax(executableIndex) }, - result = [currentSegment], - lastMax = defaultMax, - orderedChildSegments = orderChildSegments(orderedChildren); - - function isSegmentBoundary(minIndex) { - return lastMax !== defaultMax && minIndex !== defaultMin && lastMax < minIndex - 1; - } - - for (var i = 0; i < orderedChildSegments.length; i++) { - var childSegment = orderedChildSegments[i], - maxIndex = childSegment.max, - minIndex = childSegment.min; - - if (isSegmentBoundary(minIndex)) { - currentSegment = {index: result.length, owner: node, nodes: [], min: defaultMin, max: defaultMax}; - result.push(currentSegment); - } - - currentSegment.nodes.push(childSegment); - currentSegment.min = Math.min(currentSegment.min, minIndex); - currentSegment.max = Math.max(currentSegment.max, maxIndex); - lastMax = maxIndex; - } - - nodeStats.segments = result; - } - - function orderChildSegments(children) { - var specifiedOrder = [], - unspecifiedOrder = []; - - for (var i = 0; i < children.length; i++) { - var child = children[i], - segments = stats[child.id].segments; - - for (var j = 0; j < segments.length; j++) { - var seg = segments[j]; - - if (seg.min === defaultMin) { - unspecifiedOrder.push(seg); - } else { - specifiedOrder.push(seg); - } - } - } - - specifiedOrder.sort(function(a, b) { - return a.min - b.min; - }); - - return specifiedOrder.concat(unspecifiedOrder); - } - - function executeNode(node, segmentNumber) { - if (node.children) { - return { - fn: function(done) { - nodeStart(node); - - queueRunnerFactory({ - onComplete: function() { - nodeComplete(node, node.getResult()); - done(); - }, - queueableFns: wrapChildren(node, segmentNumber), - userContext: node.sharedUserContext(), - onException: function() { - node.onException.apply(node, arguments); - } - }); - } - }; - } else { - return { - fn: function(done) { node.execute(done, stats[node.id].executable); } - }; - } - } - - function wrapChildren(node, segmentNumber) { - var result = [], - segmentChildren = stats[node.id].segments[segmentNumber].nodes; - - for (var i = 0; i < segmentChildren.length; i++) { - result.push(executeNode(segmentChildren[i].owner, segmentChildren[i].index)); - } - - if (!stats[node.id].executable) { - return result; - } - - return node.beforeAllFns.concat(result).concat(node.afterAllFns); - } - } - - return TreeProcessor; -}; - -getJasmineRequireObj().UserContext = function(j$) { - function UserContext() { - } - - UserContext.fromExisting = function(oldContext) { - var context = new UserContext(); - - for (var prop in oldContext) { - if (oldContext.hasOwnProperty(prop)) { - context[prop] = oldContext[prop]; - } - } - - return context; - }; - - return UserContext; -}; - -getJasmineRequireObj().version = function() { - return '2.99.2'; -}; diff --git a/www/assets/jasmine/jasmine_favicon.png b/www/assets/jasmine/jasmine_favicon.png deleted file mode 100644 index 3b84583..0000000 Binary files a/www/assets/jasmine/jasmine_favicon.png and /dev/null differ diff --git a/www/assets/main-bootstrap.js b/www/assets/main-bootstrap.js index 8b5c7f1..ce87c9c 100644 --- a/www/assets/main-bootstrap.js +++ b/www/assets/main-bootstrap.js @@ -1,22 +1,20 @@ /* - * - * 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. - * + 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. */ document.addEventListener('deviceready', function () { diff --git a/www/assets/main.css b/www/assets/main.css index 25f5ab7..93c85d9 100644 --- a/www/assets/main.css +++ b/www/assets/main.css @@ -1,149 +1,211 @@ /* - * - * 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. - * + 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. */ *, *:before, *:after { - -webkit-box-sizing: border-box; - box-sizing: border-box; + -webkit-box-sizing: border-box; + box-sizing: border-box; } html, body { - height: 100%; - width: 100%; - margin: 0; - padding: 0; - -webkit-overflow-scrolling: touch; + height: 100vh; + width: 100vw; + + margin: 0; + padding: 0; + -webkit-overflow-scrolling: touch; + + display: flex; + flex-direction: column; } #title { - position: fixed; - height: 30px; - width: 100%; - top: 0; - z-index: 1000; - - background-color: #75B2F0; - font-size: 25px; - text-align: center; - font-weight: bold; - white-space: nowrap; + background-color: #75B2F0; + font-size: 25px; + text-align: center; + font-weight: bold; + white-space: nowrap; } #middle { - position: absolute; - top: 30px; - bottom: 20px; - padding-bottom: 40%; - width: 100%; - overflow-y: auto; - overflow-x: auto; + overflow-y: auto; + overflow-x: auto; +} + +#middle > div#test-controls > div#buttons { + display: flex; + justify-content: center; + margin-top: 10px; + gap: 5px; + flex-wrap: wrap; +} + +#middle div#test-list > label { + display: flex; + gap: 5px; + align-items: center; } #log { - position: fixed; - height: 20px; - width: 100%; - bottom: 0; - z-index: 1000; - border-top: 2px solid #777; - transition: 0.25s ease; + position: fixed; + height: 20px; + width: 100%; + bottom: 0; + z-index: 1000; + border-top: 2px solid #777; + transition: 0.25s ease; } body.expanded-log #middle { - margin-bottom: 40%; + margin-bottom: 40%; } body.expanded-log #log { - height: 40%; + height: 40%; } #log--title { - position: absolute; - top: 0; - height: 20px; - width: 100%; - background-color: #93AAC2; + position: absolute; + top: 0; + height: 20px; + width: 100%; + background-color: #93AAC2; } #log--content { - position: absolute; - top: 20px; - bottom: 0; - width: 100%; - overflow-x: none; - overflow-y: scroll; - background-color: white; + position: absolute; + top: 20px; + bottom: 0; + width: 100%; + overflow-x: none; + overflow-y: scroll; + background-color: white; } .log--content--line { - border-bottom: 1px solid #ccc; - white-space: pre; + border-bottom: 1px solid #ccc; + white-space: pre; } .log--content--line--log { - background-color: white; + background-color: white; } .log--content--line--warn { - background-color: #FCFFA6; + background-color: #FCFFA6; } .log--content--line--error { - background-color: #FFA6A6; + background-color: #FFA6A6; } #info{ - background:#ffa; - border: 1px solid #ffd324; - -webkit-border-radius: 5px; - border-radius: 5px; - clear:both; - margin:15px 6px 0; - min-width:295px; - max-width:97%; - padding:4px 0px 2px 10px; - word-wrap:break-word; - margin-bottom:10px; - display:inline-block; - min-height: 160px; - max-height: 300px; - overflow: auto; - -webkit-overflow-scrolling: touch; + background:#ffa; + border: 1px solid #ffd324; + -webkit-border-radius: 5px; + border-radius: 5px; + clear:both; + margin:15px 6px 0; + min-width:295px; + max-width:97%; + padding:4px 0px 2px 10px; + word-wrap:break-word; + margin-bottom:10px; + display:inline-block; + min-height: 160px; + max-height: 300px; + overflow: auto; + -webkit-overflow-scrolling: touch; } #test-enablers-container { - margin: 10px 5px; + margin: 10px 5px; } #test-expander { - text-decoration: underline; + text-decoration: underline; } #test-list { - display: none; + display: none; } #test-list.expanded { - display: inherit; + display: inherit; } #test-list label { - display: block; + display: block; +} + + +:root { + --button-background-color: #54738e; + --button-border-color: #4c6880; + --button-color: #ffffff; + --button-hover-background-color: #445f76; + --button-hover-border-color: #3e5569; + --button-hover-color: #ffffff; +} + +@media (max-width: 560px) { + .button-group { + flex-direction: column; + line-height: 1; + } +} + +.button-group { + display: flex; + flex-direction: row; + gap: 0; + width: 100%; +} + +.button-group .cdv-btn { + padding: 8px 12px; + line-height: 1; +} + +.button-group .cdv-btn:first-child { + border-radius: 8px 0 0 8px; +} + +.button-group .cdv-btn:last-child { + border-radius: 0 8px 8px 0; +} + +.cdv-btn { + color: var(--button-color); + background-color: var(--button-background-color); + padding: 8px; + font-size: 1rem; + line-height: 2.5; + border-radius: 8px; + cursor: pointer; + border: 1px solid var(--button-border-color); + text-decoration: none; + text-align: center; +} + +.cdv-btn:hover { + color: var(--button-hover-color); + background-color: var(--button-hover-background-color); + border-color: var(--button-hover-border-color); + text-decoration: none; } diff --git a/www/assets/topcoat-0.7.5/.gitignore b/www/assets/topcoat-0.7.5/.gitignore deleted file mode 100755 index f678651..0000000 --- a/www/assets/topcoat-0.7.5/.gitignore +++ /dev/null @@ -1,6 +0,0 @@ -node_modules -npm-debug.log -tmp -.DS_Store -src/ -.tern-port diff --git a/www/assets/topcoat-0.7.5/Gruntfile.js b/www/assets/topcoat-0.7.5/Gruntfile.js deleted file mode 100755 index 1952688..0000000 --- a/www/assets/topcoat-0.7.5/Gruntfile.js +++ /dev/null @@ -1,277 +0,0 @@ -/* -Copyright 2012 Adobe Systems Inc.; -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - -http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -/*global module:false, require:false, process:false*/ - -var path = require('path'), - os = require('os'), - chromiumSrc = process.env.CHROMIUM_SRC || ""; - - -module.exports = function(grunt) { - 'use strict'; - - grunt.initConfig({ - pkg: grunt.file.readJSON('package.json'), - - stylus: { - options: { - paths: grunt.file.expand(__dirname + '/node_modules/topcoat-*/src/') - /* FIXME: Utils is the last needing to be moved out of mixins - * folder - */ - .concat(grunt.file.expand(__dirname + '/node_modules/topcoat-utils/src/mixins/')), - compress: false - }, - - mobilelight: { - options: { - import: ['theme-topcoat-mobile-light', 'utils'] - }, - - files: [{ - src: 'node_modules/topcoat-*/src/**/*.styl', - dest: 'css/topcoat-mobile-light.css' - }] - }, - - mobiledark: { - options: { - import: ['theme-topcoat-mobile-dark', 'utils'] - }, - - files: [{ - src: 'node_modules/topcoat-*/src/**/*.styl', - dest: 'css/topcoat-mobile-dark.css' - }] - }, - - desktoplight: { - options: { - import: ['theme-topcoat-desktop-light', 'utils'] - }, - files: [{ - src: [ - 'node_modules/topcoat-*/src/**/*.styl', - '!node_modules/topcoat-navigation-bar/src/*.styl', - '!node_modules/topcoat-list/src/*.styl' - ], - dest: 'css/topcoat-desktop-light.css' - }] - }, - - desktopdark: { - options: { - import: ['theme-topcoat-desktop-dark', 'utils'] - }, - - files: [{ - src: [ - 'node_modules/topcoat-*/src/**/*.styl', - '!node_modules/topcoat-navigation-bar/src/*.styl', - '!node_modules/topcoat-list/src/*.styl' - ], - dest: 'css/topcoat-desktop-dark.css' - }] - } - }, - - topdoc: { - usageguides: { - options: { - source: 'css', - destination: 'demo', - template: 'node_modules/topdoc-theme/', - templateData: { - "title": "Topcoat", - "subtitle": "CSS for clean and fast web apps", - "download": { - "url": "https://github.com/topcoat/topcoat/archive/v0.7.0.zip", - "label": "Download" - }, - "homeURL": "http://topcoat.io", - "siteNav": [ - { - "url": "http://topcoat.io/topcoat", - "text": "Demo" - }, - { - "url": "http://bench.topcoat.io/", - "text": "Benchmarks" - }, - { - "url": "http://topcoat.io/blog", - "text": "Blog" - } - ] - } - } - } - }, - - autoprefixer: { - dist: { - options: { - /* - * Add target browsers here - * https://github.com/ai/autoprefixer#browsers - * browsers: ['android 4'] - */ - }, - files: [{ - src: 'css/topcoat-desktop-dark.css', - dest: 'css/topcoat-desktop-dark.css' - }, - { - src: 'css/topcoat-desktop-light.css', - dest: 'css/topcoat-desktop-light.css' - }, - { - src: 'css/topcoat-mobile-dark.css', - dest: 'css/topcoat-mobile-dark.css' - }, - { - src: 'css/topcoat-mobile-light.css', - dest: 'css/topcoat-mobile-light.css' - }] - } - - }, - - cssmin: { - minify: { - expand: true, - cwd: 'css', - src: ['*.css', '!*.min.css'], - dest: 'css', - ext: '.min.css' - } - }, - - htmlmin: { - telemetry: { - options: { - removeComments: true, - collapseWhitespace: true - }, - files: [{ - expand: true, - src: ['dev/test/**/topcoat/*.html'], - dest: '', - ext: '.test.html', - }], - }, - }, - - clean: { - release: ['css'] - }, - - copy: { - release: { - files: [{ - expand: true, - flatten: true, - src: 'node_modules/topcoat-theme/font/**', - dest: 'font' - }, { - expand: true, - flatten: true, - src: 'node_modules/topcoat-theme/img/*', - dest: 'img' - }] - }, - - telemetry: { - files: [{ - expand: true, - cwd: 'dev/test/perf/telemetry/perf/', - src: ['**'], - dest: path.join(chromiumSrc, 'tools/perf/') - }, { - expand: true, - flatten: true, - src: 'node_modules/topcoat-theme/font/**', - dest: path.join(chromiumSrc, 'tools/perf/page_sets/topcoat/release/font') - }, { - expand: true, - flatten: true, - src: 'node_modules/topcoat-theme/img/*', - dest: path.join(chromiumSrc, 'tools/perf/page_sets/topcoat/release/img') - }, { - src: ['css/**'], - dest: path.join(chromiumSrc, 'tools/perf/page_sets/topcoat/release/') - }] - } - }, - - jshint: { - options: { - curly: true, - eqeqeq: true, - immed: true, - latedef: true, - newcap: true, - noarg: true, - sub: true, - undef: true, - unused: true, - boss: true, - eqnull: true, - browser: true, - globals: { - jQuery: true - } - }, - gruntfile: { - src: 'Gruntfile.js' - }, - lib_test: { - src: ['dev/lib/**/*.js', 'dev/test/**/*.js'] - } - }, - - watch: { - files: ['src/**/*.styl'], - tasks: ['compile'] - } - - }); - - // These plugins provide necessary tasks. - grunt.loadNpmTasks('grunt-contrib-copy'); - grunt.loadNpmTasks('grunt-contrib-jade'); - grunt.loadNpmTasks('grunt-contrib-stylus'); - grunt.loadNpmTasks('grunt-contrib-clean'); - grunt.loadNpmTasks('grunt-exec'); - grunt.loadNpmTasks('grunt-contrib-watch'); - grunt.loadNpmTasks('grunt-topdoc'); - grunt.loadNpmTasks('grunt-contrib-cssmin'); - grunt.loadNpmTasks('grunt-contrib-htmlmin'); - grunt.loadNpmTasks('grunt-autoprefixer'); - - //Load local tasks - grunt.loadTasks('dev/tasks'); - - // Default task. - grunt.registerTask('default', ['clean', 'stylus', 'autoprefixer', 'cssmin', 'topdoc', 'copy:release']); - grunt.registerTask('release', ['default', 'clean:src']); - grunt.registerTask('compile', ['topcoat:compile', 'topdoc', 'copy:release']); - - grunt.registerTask('telemetry', '', function(platform, theme) { - if (chromiumSrc === "") grunt.fail.warn("Set CHROMIUM_SRC to point to the correct location\n"); - grunt.task.run('check_chromium_src', 'perf:'.concat(platform || 'mobile').concat(':').concat(theme || 'light'), 'htmlmin:telemetry', 'copy:telemetry'); - }); -}; diff --git a/www/assets/topcoat-0.7.5/LICENSE b/www/assets/topcoat-0.7.5/LICENSE deleted file mode 100755 index 242fd8a..0000000 --- a/www/assets/topcoat-0.7.5/LICENSE +++ /dev/null @@ -1,203 +0,0 @@ -Copyright (C) 2012 Adobe Systems Incorporated. All rights reserved. - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. \ No newline at end of file diff --git a/www/assets/topcoat-0.7.5/NOTICE b/www/assets/topcoat-0.7.5/NOTICE deleted file mode 100755 index 3c8ddfa..0000000 --- a/www/assets/topcoat-0.7.5/NOTICE +++ /dev/null @@ -1,193 +0,0 @@ -Topcoat is licensed under the Apache license version 2.0, January 2004 (see LICENSE file). - -Topcoat uses the following third party libraries that may have licenses -differing from that of Topcoat itself. You can find the libraries and their -respective licenses below. - - - Source Code Pro ./src/font/SourceCodePro - - https://github.com/adobe/source-code-pro - - Copyright 2010, 2012 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name 'Source'. All Rights Reserved. Source is a trademark of Adobe Systems Incorporated in the United States and/or other countries. - This Font Software is licensed under the SIL Open Font License, Version 1.1. - This license is available with a FAQ at: http://scripts.sil.org/OFL - -- Source Sans Pro ./src/font/SourceSansPro - - https://github.com/adobe/source-sans-pro - - Copyright 2010, 2012 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name 'Source'. All Rights Reserved. Source is a trademark of Adobe Systems Incorporated in the United States and/or other countries. - This Font Software is licensed under the SIL Open Font License, Version 1.1. - This license is available with a FAQ at: http://scripts.sil.org/OFL - -The following frameworks and libraries are provided just for testing and benchmarking and, as provided, should not be included as part of Topcoat output. - - - Bootstrap - ./test/third-party/bootstrap - - https://github.com/twitter/bootstrap - - Copyright 2012 Twitter, Inc - Licensed under the Apache License v2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - jQuery - ./test/third-party/jquery-1.8.2.js - - https://github.com/jquery/jquery - - Copyright 2011, John Resig - Dual licensed under the MIT or GPL Version 2 licenses. - http://jquery.org/license - - Includes Sizzle.js - http://sizzlejs.com/ - Copyright 2011, The Dojo Foundation - Released under the MIT, BSD, and GPL Licenses. - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - - - Modernizr - ./test/third-party/modernizr - - https://github.com/Modernizr/Modernizr - - Modernizr is available under the MIT license - - Copyright (c) 2009–2011 - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - THE SOFTWARE. - - - Benchmark.js - ./test/third-party/benchmarkjs - - https://github.com/alexanderbeletsky/benchmark-js - - Copyright 2010-2012 Mathias Bynens - Based on JSLitmus.js, copyright Robert Kieffer - Modified by John-David Dalton - Available under MIT license - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - - normalize.css - ./test/third-party/normalize - - Copyright (c) Nicolas Gallagher and Jonathan Neal - - Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - - Foundation - ./test/third-party/foundation - - Copyright (c) 2012 Mark Hayes - - MIT License - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - - ua-parser ./test/third-party/ua-parser - - https://github.com/faisalman/ua-parser-js - - Copyright © 2012 Faisalman - Dual licensed under GPLv2 & MIT - Copyright © 2012 Faisalman - - Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - - - HTML5 boilerplate - - https://github.com/h5bp/html5-boilerplate - - Copyright (c) HTML5 Boilerplate - - Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - - classList - ./test/third-party/classlist - - http://purl.eligrey.com/github/classList.js/blob/master/classList.js - - This software is dedicated to the public domain. No warranty is expressed or implied. - Use this software at your own risk. - - - fastclick - ./test/third-party/fastclick - - https://github.com/ftlabs/fastclick - - Copyright (C) 2012 The Financial Times Ltd. - - Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/www/assets/topcoat-0.7.5/README.md b/www/assets/topcoat-0.7.5/README.md deleted file mode 100755 index a89dad2..0000000 --- a/www/assets/topcoat-0.7.5/README.md +++ /dev/null @@ -1,89 +0,0 @@ -# Topcoat - -CSS for clean and fast web apps - ---- - -## Usage - -* [Download Topcoat](https://github.com/topcoat/topcoat/archive/0.7.0.zip) - -* Open index.html to view the usage guides. -* Copy your desired theme CSS from the `css/` folder into your project -* Copy the `img/` and `font/` folders into your project ( Feel free to only - copy the images and font weights you intend to use ) -* Link the CSS into your page - -```css - -``` - -_*Alternatively incorporate the css into your build process if you are so -inclined._ - ---- - -## Contributing - -Start by checking out our [Backlog](http://huboard.com/topcoat/topcoat/backlog). (Pls file issues against this repo.) - -* [Fill out the CLA here](http://topcoat.io/dev/topcoat-cla.html) -* [fork](https://help.github.com/articles/fork-a-repo) the repo -* Create a branch - - git checkout -b my_branch - -* Add your changes following the [coding guidelines](https://github.com/topcoat/topcoat/wiki/Coding-Guidelines) -* Commit your changes - - git commit -am "Added some awesome stuff" - -* Push your branch - - git push origin my_branch - -* make a [pull request](https://help.github.com/articles/using-pull-requests) - -For the details see our [Engineering Practices](https://github.com/topcoat/topcoat/wiki/Engineering-Practices). - -### Testing - -For performance tests, see [dev/test/perf/telemetry/](https://github.com/topcoat/topcoat/tree/master/dev/test/perf/telemetry). - -### Building - -Topcoat uses [Grunt](http://gruntjs.com/) to build - -* Open the terminal from the topcoat directory - - cd topcoat - -* Install [npm](http://nodejs.org/download/) -_*comes packaged with node._ -* Install its command line interface (CLI) globally - - npm install -g grunt-cli - -* Install dependencies with npm - - npm install - - -_*Topcoat uses Grunt 0.4.0. You might want to [read](http://gruntjs.com/getting-started) more on their website if you haven't upgraded since a lot has changed._ - -* Type `grunt` in the command line to build the css. -* The results will be built into the release folder. -* Alternatively type `grunt watch` to have the build run automatically when you make changes to -source files. - ---- - -## Release notes -See [Release Notes](https://github.com/topcoat/topcoat/releases/). - ---- - -## License - -[Apache license](https://raw.github.com/topcoat/topcoat/master/LICENSE) - diff --git a/www/assets/topcoat-0.7.5/contributors.txt b/www/assets/topcoat-0.7.5/contributors.txt deleted file mode 100755 index e4cd8b7..0000000 --- a/www/assets/topcoat-0.7.5/contributors.txt +++ /dev/null @@ -1,7 +0,0 @@ -# Github accounts of the people who signed the TopCoat CLA (http://topcoat.io/dev/topcoat-cla.html). -# CLA needs to be signed before accepting pull requests. -@yourpalsonja -@noformnocontent -@jrowny -@aparticulate -@jlembeck diff --git a/www/assets/topcoat-0.7.5/css/topcoat-desktop-dark.css b/www/assets/topcoat-0.7.5/css/topcoat-desktop-dark.css deleted file mode 100755 index e590e11..0000000 --- a/www/assets/topcoat-0.7.5/css/topcoat-desktop-dark.css +++ /dev/null @@ -1,3450 +0,0 @@ -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.button-bar { - display: table; - table-layout: fixed; - white-space: nowrap; - margin: 0; - padding: 0; -} - -.button-bar__item { - display: table-cell; - width: auto; - border-radius: 0; -} - -.button-bar__item > input { - position: absolute; - overflow: hidden; - padding: 0; - border: 0; - opacity: 0.001; - z-index: 1; - vertical-align: top; - outline: none; -} - -.button-bar__button { - border-radius: inherit; -} - -.button-bar__item:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.button, -.topcoat-button, -.topcoat-button--quiet, -.topcoat-button--large, -.topcoat-button--large--quiet, -.topcoat-button--cta, -.topcoat-button--large--cta, -.topcoat-button-bar__button, -.topcoat-button-bar__button--large { - position: relative; - display: inline-block; - vertical-align: top; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - text-overflow: ellipsis; - white-space: nowrap; - overflow: hidden; - text-decoration: none; -} - -.button--quiet { - background: transparent; - border: 1px solid transparent; - box-shadow: none; -} - -.button--disabled, -.topcoat-button:disabled, -.topcoat-button--quiet:disabled, -.topcoat-button--large:disabled, -.topcoat-button--large--quiet:disabled, -.topcoat-button--cta:disabled, -.topcoat-button--large--cta:disabled, -.topcoat-button-bar__button:disabled, -.topcoat-button-bar__button--large:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -.topcoat-button, -.topcoat-button--quiet, -.topcoat-button--large, -.topcoat-button--large--quiet, -.topcoat-button--cta, -.topcoat-button--large--cta, -.topcoat-button-bar__button, -.topcoat-button-bar__button--large { - padding: 0 0.563rem; - font-size: 12px; - line-height: 1.313rem; - letter-spacing: 0; - color: #c6c8c8; - text-shadow: 0 -1px rgba(0,0,0,0.69); - vertical-align: top; - background-color: #595b5b; - box-shadow: inset 0 1px #727373; - border: 1px solid #303233; - border-radius: 4px; -} - -.topcoat-button:hover, -.topcoat-button--quiet:hover, -.topcoat-button--large:hover, -.topcoat-button--large--quiet:hover, -.topcoat-button-bar__button:hover, -.topcoat-button-bar__button--large:hover { - background-color: #646666; -} - -.topcoat-button:active, -.topcoat-button--large:active, -.topcoat-button-bar__button:active, -.topcoat-button-bar__button--large:active, -:checked + .topcoat-button-bar__button { - background-color: #404141; - box-shadow: inset 0 1px rgba(0,0,0,0.18); -} - -.topcoat-button:focus, -.topcoat-button--quiet:focus, -.topcoat-button--large:focus, -.topcoat-button--large--quiet:focus, -.topcoat-button--cta:focus, -.topcoat-button--large--cta:focus, -.topcoat-button-bar__button:focus, -.topcoat-button-bar__button--large:focus { - border: 1px solid #0940fd; - box-shadow: 0 0 0 2px #6fb5f1; - outline: 0; -} - -.topcoat-button--quiet { - background: transparent; - border: 1px solid transparent; - box-shadow: none; -} - -.topcoat-button--quiet:hover, -.topcoat-button--large--quiet:hover { - text-shadow: 0 -1px rgba(0,0,0,0.69); - border: 1px solid #303233; - box-shadow: inset 0 1px #727373; -} - -.topcoat-button--quiet:active, -.topcoat-button--large--quiet:active { - color: #c6c8c8; - text-shadow: 0 -1px rgba(0,0,0,0.69); - background-color: #404141; - border: 1px solid #303233; - box-shadow: inset 0 1px rgba(0,0,0,0.18); -} - -.topcoat-button--large, -.topcoat-button--large--quiet, -.topcoat-button-bar__button--large { - font-size: 0.875rem; - font-weight: 600; - line-height: 1.688rem; - padding: 0 0.875rem; -} - -.topcoat-button--large--quiet { - background: transparent; - border: 1px solid transparent; - box-shadow: none; -} - -.topcoat-button--cta, -.topcoat-button--large--cta { - border: 1px solid #143250; - background-color: #288edf; - box-shadow: inset 0 1px rgba(255,255,255,0.36); - color: #fff; - font-weight: 500; - text-shadow: 0 -1px rgba(0,0,0,0.36); -} - -.topcoat-button--cta:hover, -.topcoat-button--large--cta:hover { - background-color: #509bef; -} - -.topcoat-button--cta:active, -.topcoat-button--large--cta:active { - background-color: #1976c3; - box-shadow: inset 0 1px rgba(0,0,0,0.12); -} - -.topcoat-button--large--cta { - font-size: 0.875rem; - font-weight: 600; - line-height: 1.688rem; - padding: 0 0.875rem; -} - -.button-bar, -.topcoat-button-bar { - display: table; - table-layout: fixed; - white-space: nowrap; - margin: 0; - padding: 0; -} - -.button-bar__item, -.topcoat-button-bar__item { - display: table-cell; - width: auto; - border-radius: 0; -} - -.button-bar__item > input, -.topcoat-button-bar__item > input { - position: absolute; - overflow: hidden; - padding: 0; - border: 0; - opacity: 0.001; - z-index: 1; - vertical-align: top; - outline: none; -} - -.button-bar__button { - border-radius: inherit; -} - -.button-bar__item:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/* topdoc - name: Button Bar - description: Component of grouped buttons - modifiers: - :disabled: Disabled state - markup: -
-
- -
-
- -
-
- -
-
- examples: - mobile button bar: http://codepen.io/Topcoat/pen/kdKyg - tags: - - desktop - - light - - dark - - mobile - - button - - group - - bar -*/ - -.topcoat-button-bar > .topcoat-button-bar__item:first-child { - border-top-left-radius: 4px; - border-bottom-left-radius: 4px; -} - -.topcoat-button-bar > .topcoat-button-bar__item:last-child { - border-top-right-radius: 4px; - border-bottom-right-radius: 4px; -} - -.topcoat-button-bar__item:first-child > .topcoat-button-bar__button, -.topcoat-button-bar__item:first-child > .topcoat-button-bar__button--large { - border-right: none; -} - -.topcoat-button-bar__item:last-child > .topcoat-button-bar__button, -.topcoat-button-bar__item:last-child > .topcoat-button-bar__button--large { - border-left: none; -} - -.topcoat-button-bar__button { - border-radius: inherit; -} - -.topcoat-button-bar__button:focus, -.topcoat-button-bar__button--large:focus { - z-index: 1; -} - -/* topdoc - name: Large Button Bar - description: A button bar, only larger - modifiers: - :disabled: Disabled state - markup: -
-
- -
-
- -
-
- -
-
- tags: - - desktop - - light - - dark - - mobile - - button - - group - - bar - - large -*/ - -.topcoat-button-bar__button--large { - border-radius: inherit; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.button { - position: relative; - display: inline-block; - vertical-align: top; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - text-overflow: ellipsis; - white-space: nowrap; - overflow: hidden; - text-decoration: none; -} - -.button--quiet { - background: transparent; - border: 1px solid transparent; - box-shadow: none; -} - -.button--disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.button, -.topcoat-button, -.topcoat-button--quiet, -.topcoat-button--large, -.topcoat-button--large--quiet, -.topcoat-button--cta, -.topcoat-button--large--cta { - position: relative; - display: inline-block; - vertical-align: top; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - text-overflow: ellipsis; - white-space: nowrap; - overflow: hidden; - text-decoration: none; -} - -.button--quiet { - background: transparent; - border: 1px solid transparent; - box-shadow: none; -} - -.button--disabled, -.topcoat-button:disabled, -.topcoat-button--quiet:disabled, -.topcoat-button--large:disabled, -.topcoat-button--large--quiet:disabled, -.topcoat-button--cta:disabled, -.topcoat-button--large--cta:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/* topdoc - name: Button - description: A simple button - modifiers: - :active: Active state - :disabled: Disabled state - :hover: Hover state - :focus: Focused - markup: - - - examples: - mobile button: http://codepen.io/Topcoat/pen/DpKtf - tags: - - desktop - - light - - mobile - - button -*/ - -.topcoat-button, -.topcoat-button--quiet, -.topcoat-button--large, -.topcoat-button--large--quiet, -.topcoat-button--cta, -.topcoat-button--large--cta { - padding: 0 0.563rem; - font-size: 12px; - line-height: 1.313rem; - letter-spacing: 0; - color: #c6c8c8; - text-shadow: 0 -1px rgba(0,0,0,0.69); - vertical-align: top; - background-color: #595b5b; - box-shadow: inset 0 1px #727373; - border: 1px solid #303233; - border-radius: 4px; -} - -.topcoat-button:hover, -.topcoat-button--quiet:hover, -.topcoat-button--large:hover, -.topcoat-button--large--quiet:hover { - background-color: #646666; -} - -.topcoat-button:active, -.topcoat-button--large:active { - background-color: #404141; - box-shadow: inset 0 1px rgba(0,0,0,0.18); -} - -.topcoat-button:focus, -.topcoat-button--quiet:focus, -.topcoat-button--large:focus, -.topcoat-button--large--quiet:focus, -.topcoat-button--cta:focus, -.topcoat-button--large--cta:focus { - border: 1px solid #0940fd; - box-shadow: 0 0 0 2px #6fb5f1; - outline: 0; -} - -/* topdoc - name: Quiet Button - description: A simple, yet quiet button - modifiers: - :active: Quiet button active state - :disabled: Disabled state - :hover: Hover state - :focus: Focused - markup: - - - tags: - - desktop - - light - - mobile - - button - - quiet -*/ - -.topcoat-button--quiet { - background: transparent; - border: 1px solid transparent; - box-shadow: none; -} - -.topcoat-button--quiet:hover, -.topcoat-button--large--quiet:hover { - text-shadow: 0 -1px rgba(0,0,0,0.69); - border: 1px solid #303233; - box-shadow: inset 0 1px #727373; -} - -.topcoat-button--quiet:active, -.topcoat-button--large--quiet:active { - color: #c6c8c8; - text-shadow: 0 -1px rgba(0,0,0,0.69); - background-color: #404141; - border: 1px solid #303233; - box-shadow: inset 0 1px rgba(0,0,0,0.18); -} - -/* topdoc - name: Large Button - description: A big ol button - modifiers: - :active: Active state - :disabled: Disabled state - :hover: Hover state - :focus: Focused - markup: - - - tags: - - desktop - - light - - mobile - - button - - large -*/ - -.topcoat-button--large, -.topcoat-button--large--quiet { - font-size: 0.875rem; - font-weight: 600; - line-height: 1.688rem; - padding: 0 0.875rem; -} - -/* topdoc - name: Large Quiet Button - description: A large, yet quiet button - modifiers: - :active: Active state - :disabled: Disabled state - :hover: Hover state - :focus: Focused - markup: - - - tags: - - desktop - - light - - mobile - - button - - large - - quiet -*/ - -.topcoat-button--large--quiet { - background: transparent; - border: 1px solid transparent; - box-shadow: none; -} - -/* topdoc - name: Call To Action Button - description: A CALL TO ARMS, er, ACTION! - modifiers: - :active: Active state - :disabled: Disabled state - :hover: Hover state - :focus: Focused - markup: - - - tags: - - desktop - - light - - mobile - - button - - call to action -*/ - -.topcoat-button--cta, -.topcoat-button--large--cta { - border: 1px solid #143250; - background-color: #288edf; - box-shadow: inset 0 1px rgba(255,255,255,0.36); - color: #fff; - font-weight: 500; - text-shadow: 0 -1px rgba(0,0,0,0.36); -} - -.topcoat-button--cta:hover, -.topcoat-button--large--cta:hover { - background-color: #509bef; -} - -.topcoat-button--cta:active, -.topcoat-button--large--cta:active { - background-color: #1976c3; - box-shadow: inset 0 1px rgba(0,0,0,0.12); -} - -/* topdoc - name: Large Call To Action Button - description: Like call to action, but bigger - modifiers: - :active: Active state - :disabled: Disabled state - :hover: Hover state - :focus: Focused - markup: - - - tags: - - desktop - - light - - mobile - - button - - large - - call to action -*/ - -.topcoat-button--large--cta { - font-size: 0.875rem; - font-weight: 600; - line-height: 1.688rem; - padding: 0 0.875rem; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -input[type="checkbox"] { - position: absolute; - overflow: hidden; - padding: 0; - border: 0; - opacity: 0.001; - z-index: 1; - vertical-align: top; - outline: none; -} - -.checkbox { - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - position: relative; - display: inline-block; - vertical-align: top; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.checkbox__label { - position: relative; - display: inline-block; - vertical-align: top; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.checkbox--disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -.checkbox:before, -.checkbox:after { - content: ''; - position: absolute; -} - -.checkbox:before { - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -input[type="checkbox"] { - position: absolute; - overflow: hidden; - padding: 0; - border: 0; - opacity: 0.001; - z-index: 1; - vertical-align: top; - outline: none; -} - -.checkbox, -.topcoat-checkbox__checkmark { - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - position: relative; - display: inline-block; - vertical-align: top; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.checkbox__label, -.topcoat-checkbox { - position: relative; - display: inline-block; - vertical-align: top; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.checkbox--disabled, -input[type="checkbox"]:disabled + .topcoat-checkbox__checkmark { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -.checkbox:before, -.checkbox:after, -.topcoat-checkbox__checkmark:before, -.topcoat-checkbox__checkmark:after { - content: ''; - position: absolute; -} - -.checkbox:before, -.topcoat-checkbox__checkmark:before { - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; -} - -/* topdoc - name: Checkbox - description: Default skin for Topcoat checkbox - modifiers: - :focus: Focus state - :disabled: Disabled state - markup: - -
-
- - examples: - mobile checkbox: http://codepen.io/Topcoat/pen/piHcs - tags: - - desktop - - light - - mobile - - checkbox -*/ - -.topcoat-checkbox__checkmark { - height: 1rem; -} - -input[type="checkbox"] { - height: 1rem; - width: 1rem; - margin-top: 0; - margin-right: -1rem; - margin-bottom: -1rem; - margin-left: 0; -} - -input[type="checkbox"]:checked + .topcoat-checkbox__checkmark:after { - opacity: 1; -} - -.topcoat-checkbox { - line-height: 1rem; -} - -.topcoat-checkbox__checkmark:before { - width: 1rem; - height: 1rem; - background: #595b5b; - border: 1px solid #303233; - border-radius: 3px; - box-shadow: inset 0 1px #727373; -} - -.topcoat-checkbox__checkmark { - width: 1rem; - height: 1rem; -} - -.topcoat-checkbox__checkmark:after { - top: 2px; - left: 1px; - opacity: 0; - width: 14px; - height: 4px; - background: transparent; - border: 7px solid #fff; - border-width: 3px; - border-top: none; - border-right: none; - border-radius: 1px; - -webkit-transform: rotate(-50deg); - -ms-transform: rotate(-50deg); - transform: rotate(-50deg); -} - -input[type="checkbox"]:focus + .topcoat-checkbox__checkmark:before { - border: 1px solid #0940fd; - box-shadow: 0 0 0 2px #6fb5f1; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.button, -.topcoat-icon-button, -.topcoat-icon-button--quiet, -.topcoat-icon-button--large, -.topcoat-icon-button--large--quiet { - position: relative; - display: inline-block; - vertical-align: top; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - text-overflow: ellipsis; - white-space: nowrap; - overflow: hidden; - text-decoration: none; -} - -.button--quiet { - background: transparent; - border: 1px solid transparent; - box-shadow: none; -} - -.button--disabled, -.topcoat-icon-button:disabled, -.topcoat-icon-button--quiet:disabled, -.topcoat-icon-button--large:disabled, -.topcoat-icon-button--large--quiet:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/* topdoc - name: Icon Button - description: Like button, but it has an icon. - modifiers: - :active: Active state - :disabled: Disabled state - :hover: Hover state - :focus: Focused - markup: - - - tags: - - desktop - - light - - mobile - - button - - icon -*/ - -.topcoat-icon-button, -.topcoat-icon-button--quiet, -.topcoat-icon-button--large, -.topcoat-icon-button--large--quiet { - padding: 0 0.25rem; - line-height: 1.313rem; - letter-spacing: 0; - color: #c6c8c8; - text-shadow: 0 -1px rgba(0,0,0,0.69); - vertical-align: baseline; - background-color: #595b5b; - box-shadow: inset 0 1px #727373; - border: 1px solid #303233; - border-radius: 4px; -} - -.topcoat-icon-button:hover, -.topcoat-icon-button--quiet:hover, -.topcoat-icon-button--large:hover, -.topcoat-icon-button--large--quiet:hover { - background-color: #646666; -} - -.topcoat-icon-button:active { - background-color: #404141; - box-shadow: inset 0 1px rgba(0,0,0,0.18); -} - -.topcoat-icon-button:focus, -.topcoat-icon-button--quiet:focus, -.topcoat-icon-button--quiet:hover:focus, -.topcoat-icon-button--large:focus, -.topcoat-icon-button--large--quiet:focus, -.topcoat-icon-button--large--quiet:hover:focus { - border: 1px solid #0940fd; - box-shadow: 0 0 0 2px #6fb5f1; - outline: 0; -} - -/* topdoc - name: Quiet Icon Button - description: Like quiet button, but it has an icon. - modifiers: - :active: Active state - :disabled: Disabled state - :hover: Hover state - :focus: Focused - markup: - - - tags: - - desktop - - light - - mobile - - button - - icon - - quiet -*/ - -.topcoat-icon-button--quiet { - background: transparent; - border: 1px solid transparent; - box-shadow: none; -} - -.topcoat-icon-button--quiet:hover, -.topcoat-icon-button--large--quiet:hover { - text-shadow: 0 -1px rgba(0,0,0,0.69); - border: 1px solid #303233; - box-shadow: inset 0 1px #727373; -} - -.topcoat-icon-button--quiet:active, -.topcoat-icon-button--large--quiet:active { - color: #c6c8c8; - text-shadow: 0 -1px rgba(0,0,0,0.69); - background-color: #404141; - border: 1px solid #303233; - box-shadow: inset 0 1px rgba(0,0,0,0.18); -} - -/* topdoc - name: Large Icon Button - description: Like large button, but it has an icon. - modifiers: - :active: Active state - :disabled: Disabled state - :hover: Hover state - :focus: Focused - markup: - - - tags: - - desktop - - light - - mobile - - button - - icon - - large -*/ - -.topcoat-icon-button--large, -.topcoat-icon-button--large--quiet { - width: 1.688rem; - height: 1.688rem; - line-height: 1.688rem; -} - -.topcoat-icon-button--large:active { - background-color: #404141; - box-shadow: inset 0 1px rgba(0,0,0,0.18); -} - -/* topdoc - name: Large Quiet Icon Button - description: Like large button, but it has an icon and this one is quiet. - modifiers: - :active: Active state - :disabled: Disabled state - :hover: Hover state - markup: - - - tags: - - desktop - - light - - mobile - - button - - icon - - large - - quiet -*/ - -.topcoat-icon-button--large--quiet { - background: transparent; - border: 1px solid transparent; - box-shadow: none; -} - -.topcoat-icon, -.topcoat-icon--large { - position: relative; - display: inline-block; - vertical-align: top; - overflow: hidden; - width: 0.81406rem; - height: 0.81406rem; - vertical-align: middle; - top: -1px; -} - -.topcoat-icon--large { - width: 1.06344rem; - height: 1.06344rem; - top: -2px; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.input { - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - vertical-align: top; - outline: none; -} - -.input:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.list { - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - overflow: auto; - -webkit-overflow-scrolling: touch; -} - -.list__header { - margin: 0; -} - -.list__container { - padding: 0; - margin: 0; - list-style-type: none; -} - -.list__item { - margin: 0; - padding: 0; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.navigation-bar { - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - white-space: nowrap; - overflow: hidden; - word-spacing: 0; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.navigation-bar__item { - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - position: relative; - display: inline-block; - vertical-align: top; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; -} - -.navigation-bar__title { - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - text-overflow: ellipsis; - white-space: nowrap; - overflow: hidden; -} - -/* -Copyright 2012 Adobe Systems Inc.; -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - -http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.notification { - position: relative; - display: inline-block; - vertical-align: top; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - text-overflow: ellipsis; - white-space: nowrap; - overflow: hidden; - text-decoration: none; -} - -/* -Copyright 2012 Adobe Systems Inc.; -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - -http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.notification, -.topcoat-notification { - position: relative; - display: inline-block; - vertical-align: top; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - text-overflow: ellipsis; - white-space: nowrap; - overflow: hidden; - text-decoration: none; -} - -/* topdoc - name: Notification - description: Notification badge - markup: - 1 - tags: - - desktop - - light - - mobile - - notification -*/ - -.topcoat-notification { - padding: 0.15em 0.5em 0.2em; - border-radius: 2px; - background-color: #ec514e; - color: #fff; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -input[type="radio"] { - position: absolute; - overflow: hidden; - padding: 0; - border: 0; - opacity: 0.001; - z-index: 1; - vertical-align: top; - outline: none; -} - -.radio-button { - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - position: relative; - display: inline-block; - vertical-align: top; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.radio-button__label { - position: relative; - display: inline-block; - vertical-align: top; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.radio-button:before, -.radio-button:after { - content: ''; - position: absolute; - border-radius: 100%; -} - -.radio-button:after { - top: 50%; - left: 50%; - -webkit-transform: translate(-50%, -50%); - -ms-transform: translate(-50%, -50%); - transform: translate(-50%, -50%); -} - -.radio-button:before { - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; -} - -.radio-button--disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -input[type="radio"] { - position: absolute; - overflow: hidden; - padding: 0; - border: 0; - opacity: 0.001; - z-index: 1; - vertical-align: top; - outline: none; -} - -.radio-button, -.topcoat-radio-button__checkmark { - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - position: relative; - display: inline-block; - vertical-align: top; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.radio-button__label, -.topcoat-radio-button { - position: relative; - display: inline-block; - vertical-align: top; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.radio-button:before, -.radio-button:after, -.topcoat-radio-button__checkmark:before, -.topcoat-radio-button__checkmark:after { - content: ''; - position: absolute; - border-radius: 100%; -} - -.radio-button:after, -.topcoat-radio-button__checkmark:after { - top: 50%; - left: 50%; - -webkit-transform: translate(-50%, -50%); - -ms-transform: translate(-50%, -50%); - transform: translate(-50%, -50%); -} - -.radio-button:before, -.topcoat-radio-button__checkmark:before { - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; -} - -.radio-button--disabled, -input[type="radio"]:disabled + .topcoat-radio-button__checkmark { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/* topdoc - name: Radio Button - description: A button that can play music, but usually just plays ads. - modifiers: - markup: - - -
-
- - -
-
- - -
-
- - - examples: - Mobile Radio Button: http://codepen.io/Topcoat/pen/HDcJj - tags: - - desktop - - light - - mobile - - Radio -*/ - -input[type="radio"] { - height: 1.063rem; - width: 1.063rem; - margin-top: 0; - margin-right: -1.063rem; - margin-bottom: -1.063rem; - margin-left: 0; -} - -input[type="radio"]:checked + .topcoat-radio-button__checkmark:after { - opacity: 1; -} - -.topcoat-radio-button { - color: #c6c8c8; - line-height: 1.063rem; -} - -.topcoat-radio-button__checkmark:before { - width: 1.063rem; - height: 1.063rem; - background: #595b5b; - border: 1px solid #303233; - box-shadow: inset 0 1px #727373; -} - -.topcoat-radio-button__checkmark { - position: relative; - width: 1.063rem; - height: 1.063rem; -} - -.topcoat-radio-button__checkmark:after { - opacity: 0; - width: 0.313rem; - height: 0.313rem; - background: #fff; - border: 1px solid rgba(255,255,255,0.1); - box-shadow: 0 1px rgba(255,255,255,0.5); - -webkit-transform: none; - -ms-transform: none; - transform: none; - top: 0.313rem; - left: 0.313rem; -} - -input[type="radio"]:focus + .topcoat-radio-button__checkmark:before { - border: 1px solid #0940fd; - box-shadow: 0 0 0 2px #6fb5f1; -} - -/* -Copyright 2012 Adobe Systems Inc.; -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - -http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -/* -Copyright 2012 Adobe Systems Inc.; -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - -http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -.range { - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - vertical-align: top; - outline: none; - -webkit-appearance: none; -} - -.range__thumb { - cursor: pointer; -} - -.range__thumb--webkit { - cursor: pointer; - -webkit-appearance: none; -} - -.range:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/* -Copyright 2012 Adobe Systems Inc.; -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - -http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -/* -Copyright 2012 Adobe Systems Inc.; -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - -http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -.range, -.topcoat-range { - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - vertical-align: top; - outline: none; - -webkit-appearance: none; -} - -.range__thumb, -.topcoat-range::-moz-range-thumb { - cursor: pointer; -} - -.range__thumb--webkit, -.topcoat-range::-webkit-slider-thumb { - cursor: pointer; - -webkit-appearance: none; -} - -.range:disabled, -.topcoat-range:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/* topdoc - name: Range - description: Range input - modifiers: - :active: Active state - :disabled: Disabled state - :hover: Hover state - :focus: Focused - markup: - - - examples: - mobile range: http://codepen.io/Topcoat/pen/BskEn - tags: - - desktop - - mobile - - range -*/ - -.topcoat-range { - border-radius: 4px; - border: 1px solid #303233; - background-color: #424546; - height: 0.5rem; - border-radius: 15px; -} - -.topcoat-range::-moz-range-track { - border-radius: 4px; - border: 1px solid #303233; - background-color: #424546; - height: 0.5rem; - border-radius: 15px; -} - -.topcoat-range::-webkit-slider-thumb { - height: 1.313rem; - width: 0.75rem; - background-color: #595b5b; - border: 1px solid #303233; - border-radius: 4px; - box-shadow: inset 0 1px #727373; -} - -.topcoat-range::-moz-range-thumb { - height: 1.313rem; - width: 0.75rem; - background-color: #595b5b; - border: 1px solid #303233; - border-radius: 4px; - box-shadow: inset 0 1px #727373; -} - -.topcoat-range:focus::-webkit-slider-thumb { - border: 1px solid #0940fd; - box-shadow: 0 0 0 2px #6fb5f1; -} - -.topcoat-range:focus::-moz-range-thumb { - border: 1px solid #0940fd; - box-shadow: 0 0 0 2px #6fb5f1; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.search-input { - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - vertical-align: top; - outline: none; - -webkit-appearance: none; -} - -input[type="search"]::-webkit-search-cancel-button { - -webkit-appearance: none; -} - -.search-input:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.search-input, -.topcoat-search-input, -.topcoat-search-input--large { - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - vertical-align: top; - outline: none; - -webkit-appearance: none; -} - -input[type="search"]::-webkit-search-cancel-button { - -webkit-appearance: none; -} - -.search-input:disabled, -.topcoat-search-input:disabled, -.topcoat-search-input--large:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/* topdoc - name: Search Input - description: A text input designed for searching. - modifiers: - :disabled: Disabled state - markup: - - - tags: - - desktop - - light - - mobile - - text - - input - - search - - form -*/ - -.topcoat-search-input, -.topcoat-search-input--large { - line-height: 1.313rem; - font-size: 12px; - border: 1px solid #303233; - background-color: #404141; - box-shadow: inset 0 1px rgba(0,0,0,0.18); - color: #c6c8c8; - padding: 0 0 0 1.3rem; - border-radius: 15px; - background-image: url("../img/search.svg"); - background-position: 1em center; - background-repeat: no-repeat; - background-size: 12px; -} - -.topcoat-search-input:focus, -.topcoat-search-input--large:focus { - background-image: url("../img/search_dark.svg"); - background-color: #646666; - color: #fff; - border: 1px solid #0940fd; - box-shadow: 0 0 0 2px #6fb5f1; -} - -.topcoat-search-input::-webkit-search-cancel-button, -.topcoat-search-input::-webkit-search-decoration, -.topcoat-search-input--large::-webkit-search-cancel-button, -.topcoat-search-input--large::-webkit-search-decoration { - margin-right: 5px; -} - -.topcoat-search-input:focus::-webkit-input-placeholder, -.topcoat-search-input:focus::-webkit-input-placeholder { - color: #c6c8c8; -} - -.topcoat-search-input:disabled::-webkit-input-placeholder { - color: #fff; -} - -.topcoat-search-input:disabled::-moz-placeholder { - color: #fff; -} - -.topcoat-search-input:disabled:-ms-input-placeholder { - color: #fff; -} - -/* topdoc - name: Large Search Input - description: A large text input designed for searching. - modifiers: - :disabled: Disabled state - markup: - - - tags: - - desktop - - light - - mobile - - text - - input - - search - - form - - large -*/ - -.topcoat-search-input--large { - line-height: 1.688rem; - font-size: 0.875rem; - font-weight: 400; - padding: 0 0 0 1.8rem; - border-radius: 25px; - background-position: 1.2em center; - background-size: 0.875rem; -} - -.topcoat-search-input--large:disabled { - color: #fff; -} - -.topcoat-search-input--large:disabled::-webkit-input-placeholder { - color: #fff; -} - -.topcoat-search-input--large:disabled::-moz-placeholder { - color: #fff; -} - -.topcoat-search-input--large:disabled:-ms-input-placeholder { - color: #fff; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.switch { - position: relative; - display: inline-block; - vertical-align: top; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; -} - -.switch__input { - position: absolute; - overflow: hidden; - padding: 0; - border: 0; - opacity: 0.001; - z-index: 1; - vertical-align: top; - outline: none; -} - -.switch__toggle { - position: relative; - display: inline-block; - vertical-align: top; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.switch__toggle:before, -.switch__toggle:after { - content: ''; - position: absolute; - z-index: -1; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; -} - -.switch--disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.switch, -.topcoat-switch { - position: relative; - display: inline-block; - vertical-align: top; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; -} - -.switch__input, -.topcoat-switch__input { - position: absolute; - overflow: hidden; - padding: 0; - border: 0; - opacity: 0.001; - z-index: 1; - vertical-align: top; - outline: none; -} - -.switch__toggle, -.topcoat-switch__toggle { - position: relative; - display: inline-block; - vertical-align: top; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.switch__toggle:before, -.switch__toggle:after, -.topcoat-switch__toggle:before, -.topcoat-switch__toggle:after { - content: ''; - position: absolute; - z-index: -1; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; -} - -.switch--disabled, -.topcoat-switch__input:disabled + .topcoat-switch__toggle { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/* topdoc - name: Switch - description: Default skin for Topcoat switch - modifiers: - :focus: Focus state - :disabled: Disabled state - markup: - -
-
- -
-
- - examples: - mobile switch: http://codepen.io/Topcoat/pen/upxds - tags: - - desktop - - light - - mobile - - switch -*/ - -.topcoat-switch { - font-size: 12px; - padding: 0 0.563rem; - border-radius: 4px; - border: 1px solid #303233; - overflow: hidden; - width: 3.5rem; -} - -.topcoat-switch__toggle:before, -.topcoat-switch__toggle:after { - top: -1px; - width: 2.6rem; -} - -.topcoat-switch__toggle:before { - content: 'ON'; - color: #5dc1ff; - background-color: #404141; - right: 0.8rem; - padding-left: 0.75rem; -} - -.topcoat-switch__toggle { - line-height: 1.313rem; - height: 1.313rem; - width: 1rem; - border-radius: 4px; - color: #c6c8c8; - text-shadow: 0 -1px rgba(0,0,0,0.69); - background-color: #595b5b; - border: 1px solid #303233; - margin-left: -0.6rem; - margin-bottom: -1px; - margin-top: -1px; - box-shadow: inset 0 1px #727373; - -webkit-transition: margin-left 0.05s ease-in-out; - transition: margin-left 0.05s ease-in-out; -} - -.topcoat-switch__toggle:after { - content: 'OFF'; - background-color: #404141; - left: 0.8rem; - padding-left: 0.6rem; -} - -.topcoat-switch__input:checked + .topcoat-switch__toggle { - margin-left: 1.85rem; -} - -.topcoat-switch__input:focus + .topcoat-switch__toggle { - border: 1px solid #0940fd; - box-shadow: 0 0 0 2px #6fb5f1; -} - -.topcoat-switch__input:disabled + .topcoat-switch__toggle:after, -.topcoat-switch__input:disabled + .topcoat-switch__toggle:before { - background: transparent; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.button, -.topcoat-tab-bar__button { - position: relative; - display: inline-block; - vertical-align: top; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - text-overflow: ellipsis; - white-space: nowrap; - overflow: hidden; - text-decoration: none; -} - -.button--quiet { - background: transparent; - border: 1px solid transparent; - box-shadow: none; -} - -.button--disabled, -.topcoat-tab-bar__button:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -.button-bar, -.topcoat-tab-bar { - display: table; - table-layout: fixed; - white-space: nowrap; - margin: 0; - padding: 0; -} - -.button-bar__item, -.topcoat-tab-bar__item { - display: table-cell; - width: auto; - border-radius: 0; -} - -.button-bar__item > input, -.topcoat-tab-bar__item > input { - position: absolute; - overflow: hidden; - padding: 0; - border: 0; - opacity: 0.001; - z-index: 1; - vertical-align: top; - outline: none; -} - -.button-bar__button { - border-radius: inherit; -} - -.button-bar__item:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/* topdoc - name: Tab Bar - description: Component of tab buttons - modifiers: - :disabled: Disabled state - markup: -
- - - -
- examples: - mobile tab bar: http://codepen.io/Topcoat/pen/rJICF - tags: - - desktop - - light - - dark - - mobile - - tab - - group - - bar -*/ - -.topcoat-tab-bar__button { - padding: 0 0.563rem; - height: 1.313rem; - line-height: 1.313rem; - letter-spacing: 0; - color: #c6c8c8; - text-shadow: 0 -1px rgba(0,0,0,0.69); - vertical-align: top; - background-color: #595b5b; - box-shadow: inset 0 1px #727373; - border-top: 1px solid #303233; -} - -.topcoat-tab-bar__button:active, -.topcoat-tab-bar__button--large:active, -:checked + .topcoat-tab-bar__button { - color: #5dc1ff; - background-color: #404141; - box-shadow: inset 0 0 2px #313231; -} - -.topcoat-tab-bar__button:focus, -.topcoat-tab-bar__button--large:focus { - z-index: 1; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.input, -.topcoat-text-input, -.topcoat-text-input--large { - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - vertical-align: top; - outline: none; -} - -.input:disabled, -.topcoat-text-input:disabled, -.topcoat-text-input--large:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/* topdoc - name: Text input - description: Topdoc text input - modifiers: - :disabled: Disabled state - :focus: Focused - :invalid: Hover state - markup: - -
-
- -
-
- - tags: - - desktop - - mobile - - text - - input -*/ - -.topcoat-text-input, -.topcoat-text-input--large { - line-height: 1.313rem; - font-size: 12px; - letter-spacing: 0; - padding: 0 0.563rem; - border: 1px solid #303233; - border-radius: 4px; - background-color: #404141; - box-shadow: inset 0 1px rgba(0,0,0,0.18); - color: #c6c8c8; - vertical-align: top; -} - -.topcoat-text-input:focus, -.topcoat-text-input--large:focus { - background-color: #646666; - color: #fff; - border: 1px solid #0940fd; - box-shadow: 0 0 0 2px #6fb5f1; -} - -.topcoat-text-input:disabled::-webkit-input-placeholder { - color: #fff; -} - -.topcoat-text-input:disabled::-moz-placeholder { - color: #fff; -} - -.topcoat-text-input:disabled:-ms-input-placeholder { - color: #fff; -} - -.topcoat-text-input:invalid { - border: 1px solid #d83b75; -} - -/* topdoc - name: Large Text Input - description: A bigger input, still for text. - modifiers: - :disabled: Disabled state - :focus: Focused - :invalid: Hover state - markup: - -
-
- -
-
- - tags: - - desktop - - light - - mobile - - form - - input - - large -*/ - -.topcoat-text-input--large { - line-height: 1.688rem; - font-size: 0.875rem; -} - -.topcoat-text-input--large:disabled { - color: #fff; -} - -.topcoat-text-input--large:disabled::-webkit-input-placeholder { - color: #fff; -} - -.topcoat-text-input--large:disabled::-moz-placeholder { - color: #fff; -} - -.topcoat-text-input--large:disabled:-ms-input-placeholder { - color: #fff; -} - -.topcoat-text-input--large:invalid { - border: 1px solid #d83b75; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.textarea { - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - vertical-align: top; - resize: none; - outline: none; -} - -.textarea:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.textarea, -.topcoat-textarea, -.topcoat-textarea--large { - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - vertical-align: top; - resize: none; - outline: none; -} - -.textarea:disabled, -.topcoat-textarea:disabled, -.topcoat-textarea--large:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/* topdoc - name: Textarea - description: A whole area, just for text. - modifiers: - :disabled: Disabled state - markup: - -
-
- - tags: - - desktop - - light - - mobile - - form - - input - - textarea -*/ - -.topcoat-textarea, -.topcoat-textarea--large { - padding: 1rem; - font-size: 1rem; - font-weight: 400; - border-radius: 4px; - line-height: 1.313rem; - border: 1px solid #303233; - background-color: #404141; - box-shadow: inset 0 1px rgba(0,0,0,0.18); - color: #c6c8c8; - letter-spacing: 0; -} - -.topcoat-textarea:focus, -.topcoat-textarea--large:focus { - background-color: #646666; - color: #fff; - border: 1px solid #0940fd; - box-shadow: 0 0 0 2px #6fb5f1; -} - -.topcoat-textarea:disabled::-webkit-input-placeholder { - color: #fff; -} - -.topcoat-textarea:disabled::-moz-placeholder { - color: #fff; -} - -.topcoat-textarea:disabled:-ms-input-placeholder { - color: #fff; -} - -/* topdoc - name: Large Textarea - description: A whole area, just for text; now available in large. - modifiers: - :disabled: Disabled state - markup: - -
-
- - tags: - - desktop - - light - - mobile - - form - - input - - textarea -*/ - -.topcoat-textarea--large { - font-size: 1.3rem; - line-height: 1.688rem; -} - -.topcoat-textarea--large:disabled { - color: #fff; -} - -.topcoat-textarea--large:disabled::-webkit-input-placeholder { - color: #fff; -} - -.topcoat-textarea--large:disabled::-moz-placeholder { - color: #fff; -} - -.topcoat-textarea--large:disabled:-ms-input-placeholder { - color: #fff; -} - -@font-face { - font-family: "Source Sans"; - src: url("../font/SourceSansPro-Regular.otf"); -} - -@font-face { - font-family: "Source Sans"; - src: url("../font/SourceSansPro-Light.otf"); - font-weight: 200; -} - -@font-face { - font-family: "Source Sans"; - src: url("../font/SourceSansPro-Semibold.otf"); - font-weight: 600; -} - -body { - margin: 0; - padding: 0; - background: #4b4d4e; - color: #000; - font: 16px "Source Sans", helvetica, arial, sans-serif; - font-weight: 200; -} - -:focus { - outline-color: transparent; - outline-style: none; -} - -.topcoat-icon--menu-stack { - background: url("../img/hamburger_light.svg") no-repeat; - background-size: cover; -} - -.quarter { - width: 25%; -} - -.half { - width: 50%; -} - -.three-quarters { - width: 75%; -} - -.third { - width: 33.333%; -} - -.two-thirds { - width: 66.666%; -} - -.full { - width: 100%; -} - -.left { - text-align: left; -} - -.center { - text-align: center; -} - -.right { - text-align: right; -} - -.reset-ui { - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - position: relative; - display: inline-block; - vertical-align: top; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - text-overflow: ellipsis; - white-space: nowrap; - overflow: hidden; -} - -/* This file should include color and image variables corresponding to the dark theme */ - -/* Call To Action */ - -/* Icons */ - -/* Navigation Bar */ - -/* Text Input */ - -/* Search Input */ - -/* List */ - -/* Checkbox */ - -/* Overlay */ - -/* Progress bar */ - -/* Checkbox */ - -/* Radio Button */ - -/* Tab bar */ - -/* Switch */ - -/* Icon Button */ - -/* Navigation bar */ - -/* List */ - -/* Search Input */ - -/* Textarea */ - -/* Checkbox */ - -/* Radio */ - -/* Range input */ - -/* Search Input */ - -/* Switch */ - -/* This file should include color and image variables corresponding to the light theme */ - -/* Call To Action */ - -/* Icons */ - -/* Navigation Bar */ - -/* Text Input */ - -/* List */ - -/* Overlay */ - -/* Progress bar */ - -/* Checkbox */ - -/* Range input */ - -/* Radio Button */ - -/* Tab bar */ - -/* Switch */ - -/* Containers */ - -/* Icon Button */ - -/* Navigation bar */ - -/* List */ - -/* Search Input */ - -/* Text Area */ - -/* Checkbox */ - -/* Radio */ - -/* Range input */ - -/* Search Input */ - -/* Switch */ - -/* Text Input */ - -/* Radio input */ - -/* Overlay */ - -/* Textarea */ - -/* Progress bar container */ - -/* Progress bar progress */ - -/* Search input */ - -/* Switch */ - -/* Notification */ \ No newline at end of file diff --git a/www/assets/topcoat-0.7.5/css/topcoat-desktop-dark.min.css b/www/assets/topcoat-0.7.5/css/topcoat-desktop-dark.min.css deleted file mode 100755 index 1623395..0000000 --- a/www/assets/topcoat-0.7.5/css/topcoat-desktop-dark.min.css +++ /dev/null @@ -1 +0,0 @@ -.button-bar{display:table;table-layout:fixed;white-space:nowrap;margin:0;padding:0}.button-bar__item{display:table-cell;width:auto;border-radius:0}.button-bar__item>input{position:absolute;overflow:hidden;padding:0;border:0;opacity:.001;z-index:1;vertical-align:top;outline:0}.button-bar__button{border-radius:inherit}.button-bar__item:disabled{opacity:.3;cursor:default;pointer-events:none}.button,.topcoat-button,.topcoat-button--quiet,.topcoat-button--large,.topcoat-button--large--quiet,.topcoat-button--cta,.topcoat-button--large--cta,.topcoat-button-bar__button,.topcoat-button-bar__button--large{position:relative;display:inline-block;vertical-align:top;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;text-decoration:none}.button--quiet{background:transparent;border:1px solid transparent;box-shadow:none}.button--disabled,.topcoat-button:disabled,.topcoat-button--quiet:disabled,.topcoat-button--large:disabled,.topcoat-button--large--quiet:disabled,.topcoat-button--cta:disabled,.topcoat-button--large--cta:disabled,.topcoat-button-bar__button:disabled,.topcoat-button-bar__button--large:disabled{opacity:.3;cursor:default;pointer-events:none}.topcoat-button,.topcoat-button--quiet,.topcoat-button--large,.topcoat-button--large--quiet,.topcoat-button--cta,.topcoat-button--large--cta,.topcoat-button-bar__button,.topcoat-button-bar__button--large{padding:0 .563rem;font-size:12px;line-height:1.313rem;letter-spacing:0;color:#c6c8c8;text-shadow:0 -1px rgba(0,0,0,.69);vertical-align:top;background-color:#595b5b;box-shadow:inset 0 1px #727373;border:1px solid #303233;border-radius:4px}.topcoat-button:hover,.topcoat-button--quiet:hover,.topcoat-button--large:hover,.topcoat-button--large--quiet:hover,.topcoat-button-bar__button:hover,.topcoat-button-bar__button--large:hover{background-color:#646666}.topcoat-button:active,.topcoat-button--large:active,.topcoat-button-bar__button:active,.topcoat-button-bar__button--large:active,:checked+.topcoat-button-bar__button{background-color:#404141;box-shadow:inset 0 1px rgba(0,0,0,.18)}.topcoat-button:focus,.topcoat-button--quiet:focus,.topcoat-button--large:focus,.topcoat-button--large--quiet:focus,.topcoat-button--cta:focus,.topcoat-button--large--cta:focus,.topcoat-button-bar__button:focus,.topcoat-button-bar__button--large:focus{border:1px solid #0940fd;box-shadow:0 0 0 2px #6fb5f1;outline:0}.topcoat-button--quiet{background:transparent;border:1px solid transparent;box-shadow:none}.topcoat-button--quiet:hover,.topcoat-button--large--quiet:hover{text-shadow:0 -1px rgba(0,0,0,.69);border:1px solid #303233;box-shadow:inset 0 1px #727373}.topcoat-button--quiet:active,.topcoat-button--large--quiet:active{color:#c6c8c8;text-shadow:0 -1px rgba(0,0,0,.69);background-color:#404141;border:1px solid #303233;box-shadow:inset 0 1px rgba(0,0,0,.18)}.topcoat-button--large,.topcoat-button--large--quiet,.topcoat-button-bar__button--large{font-size:.875rem;font-weight:600;line-height:1.688rem;padding:0 .875rem}.topcoat-button--large--quiet{background:transparent;border:1px solid transparent;box-shadow:none}.topcoat-button--cta,.topcoat-button--large--cta{border:1px solid #143250;background-color:#288edf;box-shadow:inset 0 1px rgba(255,255,255,.36);color:#fff;font-weight:500;text-shadow:0 -1px rgba(0,0,0,.36)}.topcoat-button--cta:hover,.topcoat-button--large--cta:hover{background-color:#509bef}.topcoat-button--cta:active,.topcoat-button--large--cta:active{background-color:#1976c3;box-shadow:inset 0 1px rgba(0,0,0,.12)}.topcoat-button--large--cta{font-size:.875rem;font-weight:600;line-height:1.688rem;padding:0 .875rem}.button-bar,.topcoat-button-bar{display:table;table-layout:fixed;white-space:nowrap;margin:0;padding:0}.button-bar__item,.topcoat-button-bar__item{display:table-cell;width:auto;border-radius:0}.button-bar__item>input,.topcoat-button-bar__item>input{position:absolute;overflow:hidden;padding:0;border:0;opacity:.001;z-index:1;vertical-align:top;outline:0}.button-bar__button{border-radius:inherit}.button-bar__item:disabled{opacity:.3;cursor:default;pointer-events:none}.topcoat-button-bar>.topcoat-button-bar__item:first-child{border-top-left-radius:4px;border-bottom-left-radius:4px}.topcoat-button-bar>.topcoat-button-bar__item:last-child{border-top-right-radius:4px;border-bottom-right-radius:4px}.topcoat-button-bar__item:first-child>.topcoat-button-bar__button,.topcoat-button-bar__item:first-child>.topcoat-button-bar__button--large{border-right:0}.topcoat-button-bar__item:last-child>.topcoat-button-bar__button,.topcoat-button-bar__item:last-child>.topcoat-button-bar__button--large{border-left:0}.topcoat-button-bar__button{border-radius:inherit}.topcoat-button-bar__button:focus,.topcoat-button-bar__button--large:focus{z-index:1}.topcoat-button-bar__button--large{border-radius:inherit}.button{position:relative;display:inline-block;vertical-align:top;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;text-decoration:none}.button--quiet{background:transparent;border:1px solid transparent;box-shadow:none}.button--disabled{opacity:.3;cursor:default;pointer-events:none}.button,.topcoat-button,.topcoat-button--quiet,.topcoat-button--large,.topcoat-button--large--quiet,.topcoat-button--cta,.topcoat-button--large--cta{position:relative;display:inline-block;vertical-align:top;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;text-decoration:none}.button--quiet{background:transparent;border:1px solid transparent;box-shadow:none}.button--disabled,.topcoat-button:disabled,.topcoat-button--quiet:disabled,.topcoat-button--large:disabled,.topcoat-button--large--quiet:disabled,.topcoat-button--cta:disabled,.topcoat-button--large--cta:disabled{opacity:.3;cursor:default;pointer-events:none}.topcoat-button,.topcoat-button--quiet,.topcoat-button--large,.topcoat-button--large--quiet,.topcoat-button--cta,.topcoat-button--large--cta{padding:0 .563rem;font-size:12px;line-height:1.313rem;letter-spacing:0;color:#c6c8c8;text-shadow:0 -1px rgba(0,0,0,.69);vertical-align:top;background-color:#595b5b;box-shadow:inset 0 1px #727373;border:1px solid #303233;border-radius:4px}.topcoat-button:hover,.topcoat-button--quiet:hover,.topcoat-button--large:hover,.topcoat-button--large--quiet:hover{background-color:#646666}.topcoat-button:active,.topcoat-button--large:active{background-color:#404141;box-shadow:inset 0 1px rgba(0,0,0,.18)}.topcoat-button:focus,.topcoat-button--quiet:focus,.topcoat-button--large:focus,.topcoat-button--large--quiet:focus,.topcoat-button--cta:focus,.topcoat-button--large--cta:focus{border:1px solid #0940fd;box-shadow:0 0 0 2px #6fb5f1;outline:0}.topcoat-button--quiet{background:transparent;border:1px solid transparent;box-shadow:none}.topcoat-button--quiet:hover,.topcoat-button--large--quiet:hover{text-shadow:0 -1px rgba(0,0,0,.69);border:1px solid #303233;box-shadow:inset 0 1px #727373}.topcoat-button--quiet:active,.topcoat-button--large--quiet:active{color:#c6c8c8;text-shadow:0 -1px rgba(0,0,0,.69);background-color:#404141;border:1px solid #303233;box-shadow:inset 0 1px rgba(0,0,0,.18)}.topcoat-button--large,.topcoat-button--large--quiet{font-size:.875rem;font-weight:600;line-height:1.688rem;padding:0 .875rem}.topcoat-button--large--quiet{background:transparent;border:1px solid transparent;box-shadow:none}.topcoat-button--cta,.topcoat-button--large--cta{border:1px solid #143250;background-color:#288edf;box-shadow:inset 0 1px rgba(255,255,255,.36);color:#fff;font-weight:500;text-shadow:0 -1px rgba(0,0,0,.36)}.topcoat-button--cta:hover,.topcoat-button--large--cta:hover{background-color:#509bef}.topcoat-button--cta:active,.topcoat-button--large--cta:active{background-color:#1976c3;box-shadow:inset 0 1px rgba(0,0,0,.12)}.topcoat-button--large--cta{font-size:.875rem;font-weight:600;line-height:1.688rem;padding:0 .875rem}input[type=checkbox]{position:absolute;overflow:hidden;padding:0;border:0;opacity:.001;z-index:1;vertical-align:top;outline:0}.checkbox{-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;position:relative;display:inline-block;vertical-align:top;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.checkbox__label{position:relative;display:inline-block;vertical-align:top;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.checkbox--disabled{opacity:.3;cursor:default;pointer-events:none}.checkbox:before,.checkbox:after{content:'';position:absolute}.checkbox:before{-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box}input[type=checkbox]{position:absolute;overflow:hidden;padding:0;border:0;opacity:.001;z-index:1;vertical-align:top;outline:0}.checkbox,.topcoat-checkbox__checkmark{-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;position:relative;display:inline-block;vertical-align:top;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.checkbox__label,.topcoat-checkbox{position:relative;display:inline-block;vertical-align:top;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.checkbox--disabled,input[type=checkbox]:disabled+.topcoat-checkbox__checkmark{opacity:.3;cursor:default;pointer-events:none}.checkbox:before,.checkbox:after,.topcoat-checkbox__checkmark:before,.topcoat-checkbox__checkmark:after{content:'';position:absolute}.checkbox:before,.topcoat-checkbox__checkmark:before{-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box}.topcoat-checkbox__checkmark{height:1rem}input[type=checkbox]{height:1rem;width:1rem;margin-top:0;margin-right:-1rem;margin-bottom:-1rem;margin-left:0}input[type=checkbox]:checked+.topcoat-checkbox__checkmark:after{opacity:1}.topcoat-checkbox{line-height:1rem}.topcoat-checkbox__checkmark:before{width:1rem;height:1rem;background:#595b5b;border:1px solid #303233;border-radius:3px;box-shadow:inset 0 1px #727373}.topcoat-checkbox__checkmark{width:1rem;height:1rem}.topcoat-checkbox__checkmark:after{top:2px;left:1px;opacity:0;width:14px;height:4px;background:transparent;border:7px solid #fff;border-width:3px;border-top:0;border-right:0;border-radius:1px;-webkit-transform:rotate(-50deg);-ms-transform:rotate(-50deg);transform:rotate(-50deg)}input[type=checkbox]:focus+.topcoat-checkbox__checkmark:before{border:1px solid #0940fd;box-shadow:0 0 0 2px #6fb5f1}.button,.topcoat-icon-button,.topcoat-icon-button--quiet,.topcoat-icon-button--large,.topcoat-icon-button--large--quiet{position:relative;display:inline-block;vertical-align:top;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;text-decoration:none}.button--quiet{background:transparent;border:1px solid transparent;box-shadow:none}.button--disabled,.topcoat-icon-button:disabled,.topcoat-icon-button--quiet:disabled,.topcoat-icon-button--large:disabled,.topcoat-icon-button--large--quiet:disabled{opacity:.3;cursor:default;pointer-events:none}.topcoat-icon-button,.topcoat-icon-button--quiet,.topcoat-icon-button--large,.topcoat-icon-button--large--quiet{padding:0 .25rem;line-height:1.313rem;letter-spacing:0;color:#c6c8c8;text-shadow:0 -1px rgba(0,0,0,.69);vertical-align:baseline;background-color:#595b5b;box-shadow:inset 0 1px #727373;border:1px solid #303233;border-radius:4px}.topcoat-icon-button:hover,.topcoat-icon-button--quiet:hover,.topcoat-icon-button--large:hover,.topcoat-icon-button--large--quiet:hover{background-color:#646666}.topcoat-icon-button:active{background-color:#404141;box-shadow:inset 0 1px rgba(0,0,0,.18)}.topcoat-icon-button:focus,.topcoat-icon-button--quiet:focus,.topcoat-icon-button--quiet:hover:focus,.topcoat-icon-button--large:focus,.topcoat-icon-button--large--quiet:focus,.topcoat-icon-button--large--quiet:hover:focus{border:1px solid #0940fd;box-shadow:0 0 0 2px #6fb5f1;outline:0}.topcoat-icon-button--quiet{background:transparent;border:1px solid transparent;box-shadow:none}.topcoat-icon-button--quiet:hover,.topcoat-icon-button--large--quiet:hover{text-shadow:0 -1px rgba(0,0,0,.69);border:1px solid #303233;box-shadow:inset 0 1px #727373}.topcoat-icon-button--quiet:active,.topcoat-icon-button--large--quiet:active{color:#c6c8c8;text-shadow:0 -1px rgba(0,0,0,.69);background-color:#404141;border:1px solid #303233;box-shadow:inset 0 1px rgba(0,0,0,.18)}.topcoat-icon-button--large,.topcoat-icon-button--large--quiet{width:1.688rem;height:1.688rem;line-height:1.688rem}.topcoat-icon-button--large:active{background-color:#404141;box-shadow:inset 0 1px rgba(0,0,0,.18)}.topcoat-icon-button--large--quiet{background:transparent;border:1px solid transparent;box-shadow:none}.topcoat-icon,.topcoat-icon--large{position:relative;display:inline-block;vertical-align:top;overflow:hidden;width:.81406rem;height:.81406rem;vertical-align:middle;top:-1px}.topcoat-icon--large{width:1.06344rem;height:1.06344rem;top:-2px}.input{padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;vertical-align:top;outline:0}.input:disabled{opacity:.3;cursor:default;pointer-events:none}.list{padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;overflow:auto;-webkit-overflow-scrolling:touch}.list__header{margin:0}.list__container{padding:0;margin:0;list-style-type:none}.list__item{margin:0;padding:0}.navigation-bar{-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;white-space:nowrap;overflow:hidden;word-spacing:0;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.navigation-bar__item{-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;position:relative;display:inline-block;vertical-align:top;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0}.navigation-bar__title{padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.notification{position:relative;display:inline-block;vertical-align:top;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;text-decoration:none}.notification,.topcoat-notification{position:relative;display:inline-block;vertical-align:top;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;text-decoration:none}.topcoat-notification{padding:.15em .5em .2em;border-radius:2px;background-color:#ec514e;color:#fff}input[type=radio]{position:absolute;overflow:hidden;padding:0;border:0;opacity:.001;z-index:1;vertical-align:top;outline:0}.radio-button{-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;position:relative;display:inline-block;vertical-align:top;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.radio-button__label{position:relative;display:inline-block;vertical-align:top;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.radio-button:before,.radio-button:after{content:'';position:absolute;border-radius:100%}.radio-button:after{top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.radio-button:before{-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box}.radio-button--disabled{opacity:.3;cursor:default;pointer-events:none}input[type=radio]{position:absolute;overflow:hidden;padding:0;border:0;opacity:.001;z-index:1;vertical-align:top;outline:0}.radio-button,.topcoat-radio-button__checkmark{-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;position:relative;display:inline-block;vertical-align:top;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.radio-button__label,.topcoat-radio-button{position:relative;display:inline-block;vertical-align:top;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.radio-button:before,.radio-button:after,.topcoat-radio-button__checkmark:before,.topcoat-radio-button__checkmark:after{content:'';position:absolute;border-radius:100%}.radio-button:after,.topcoat-radio-button__checkmark:after{top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.radio-button:before,.topcoat-radio-button__checkmark:before{-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box}.radio-button--disabled,input[type=radio]:disabled+.topcoat-radio-button__checkmark{opacity:.3;cursor:default;pointer-events:none}input[type=radio]{height:1.063rem;width:1.063rem;margin-top:0;margin-right:-1.063rem;margin-bottom:-1.063rem;margin-left:0}input[type=radio]:checked+.topcoat-radio-button__checkmark:after{opacity:1}.topcoat-radio-button{color:#c6c8c8;line-height:1.063rem}.topcoat-radio-button__checkmark:before{width:1.063rem;height:1.063rem;background:#595b5b;border:1px solid #303233;box-shadow:inset 0 1px #727373}.topcoat-radio-button__checkmark{position:relative;width:1.063rem;height:1.063rem}.topcoat-radio-button__checkmark:after{opacity:0;width:.313rem;height:.313rem;background:#fff;border:1px solid rgba(255,255,255,.1);box-shadow:0 1px rgba(255,255,255,.5);-webkit-transform:none;-ms-transform:none;transform:none;top:.313rem;left:.313rem}input[type=radio]:focus+.topcoat-radio-button__checkmark:before{border:1px solid #0940fd;box-shadow:0 0 0 2px #6fb5f1}.range{padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;vertical-align:top;outline:0;-webkit-appearance:none}.range__thumb{cursor:pointer}.range__thumb--webkit{cursor:pointer;-webkit-appearance:none}.range:disabled{opacity:.3;cursor:default;pointer-events:none}.range,.topcoat-range{padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;vertical-align:top;outline:0;-webkit-appearance:none}.range__thumb,.topcoat-range::-moz-range-thumb{cursor:pointer}.range__thumb--webkit,.topcoat-range::-webkit-slider-thumb{cursor:pointer;-webkit-appearance:none}.range:disabled,.topcoat-range:disabled{opacity:.3;cursor:default;pointer-events:none}.topcoat-range{border-radius:4px;border:1px solid #303233;background-color:#424546;height:.5rem;border-radius:15px}.topcoat-range::-moz-range-track{border-radius:4px;border:1px solid #303233;background-color:#424546;height:.5rem;border-radius:15px}.topcoat-range::-webkit-slider-thumb{height:1.313rem;width:.75rem;background-color:#595b5b;border:1px solid #303233;border-radius:4px;box-shadow:inset 0 1px #727373}.topcoat-range::-moz-range-thumb{height:1.313rem;width:.75rem;background-color:#595b5b;border:1px solid #303233;border-radius:4px;box-shadow:inset 0 1px #727373}.topcoat-range:focus::-webkit-slider-thumb{border:1px solid #0940fd;box-shadow:0 0 0 2px #6fb5f1}.topcoat-range:focus::-moz-range-thumb{border:1px solid #0940fd;box-shadow:0 0 0 2px #6fb5f1}.search-input{padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;vertical-align:top;outline:0;-webkit-appearance:none}input[type=search]::-webkit-search-cancel-button{-webkit-appearance:none}.search-input:disabled{opacity:.3;cursor:default;pointer-events:none}.search-input,.topcoat-search-input,.topcoat-search-input--large{padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;vertical-align:top;outline:0;-webkit-appearance:none}input[type=search]::-webkit-search-cancel-button{-webkit-appearance:none}.search-input:disabled,.topcoat-search-input:disabled,.topcoat-search-input--large:disabled{opacity:.3;cursor:default;pointer-events:none}.topcoat-search-input,.topcoat-search-input--large{line-height:1.313rem;font-size:12px;border:1px solid #303233;background-color:#404141;box-shadow:inset 0 1px rgba(0,0,0,.18);color:#c6c8c8;padding:0 0 0 1.3rem;border-radius:15px;background-image:url(../img/search.svg);background-position:1em center;background-repeat:no-repeat;background-size:12px}.topcoat-search-input:focus,.topcoat-search-input--large:focus{background-image:url(../img/search_dark.svg);background-color:#646666;color:#fff;border:1px solid #0940fd;box-shadow:0 0 0 2px #6fb5f1}.topcoat-search-input::-webkit-search-cancel-button,.topcoat-search-input::-webkit-search-decoration,.topcoat-search-input--large::-webkit-search-cancel-button,.topcoat-search-input--large::-webkit-search-decoration{margin-right:5px}.topcoat-search-input:focus::-webkit-input-placeholder,.topcoat-search-input:focus::-webkit-input-placeholder{color:#c6c8c8}.topcoat-search-input:disabled::-webkit-input-placeholder{color:#fff}.topcoat-search-input:disabled::-moz-placeholder{color:#fff}.topcoat-search-input:disabled:-ms-input-placeholder{color:#fff}.topcoat-search-input--large{line-height:1.688rem;font-size:.875rem;font-weight:400;padding:0 0 0 1.8rem;border-radius:25px;background-position:1.2em center;background-size:.875rem}.topcoat-search-input--large:disabled{color:#fff}.topcoat-search-input--large:disabled::-webkit-input-placeholder{color:#fff}.topcoat-search-input--large:disabled::-moz-placeholder{color:#fff}.topcoat-search-input--large:disabled:-ms-input-placeholder{color:#fff}.switch{position:relative;display:inline-block;vertical-align:top;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box}.switch__input{position:absolute;overflow:hidden;padding:0;border:0;opacity:.001;z-index:1;vertical-align:top;outline:0}.switch__toggle{position:relative;display:inline-block;vertical-align:top;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.switch__toggle:before,.switch__toggle:after{content:'';position:absolute;z-index:-1;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box}.switch--disabled{opacity:.3;cursor:default;pointer-events:none}.switch,.topcoat-switch{position:relative;display:inline-block;vertical-align:top;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box}.switch__input,.topcoat-switch__input{position:absolute;overflow:hidden;padding:0;border:0;opacity:.001;z-index:1;vertical-align:top;outline:0}.switch__toggle,.topcoat-switch__toggle{position:relative;display:inline-block;vertical-align:top;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.switch__toggle:before,.switch__toggle:after,.topcoat-switch__toggle:before,.topcoat-switch__toggle:after{content:'';position:absolute;z-index:-1;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box}.switch--disabled,.topcoat-switch__input:disabled+.topcoat-switch__toggle{opacity:.3;cursor:default;pointer-events:none}.topcoat-switch{font-size:12px;padding:0 .563rem;border-radius:4px;border:1px solid #303233;overflow:hidden;width:3.5rem}.topcoat-switch__toggle:before,.topcoat-switch__toggle:after{top:-1px;width:2.6rem}.topcoat-switch__toggle:before{content:'ON';color:#5dc1ff;background-color:#404141;right:.8rem;padding-left:.75rem}.topcoat-switch__toggle{line-height:1.313rem;height:1.313rem;width:1rem;border-radius:4px;color:#c6c8c8;text-shadow:0 -1px rgba(0,0,0,.69);background-color:#595b5b;border:1px solid #303233;margin-left:-.6rem;margin-bottom:-1px;margin-top:-1px;box-shadow:inset 0 1px #727373;-webkit-transition:margin-left .05s ease-in-out;transition:margin-left .05s ease-in-out}.topcoat-switch__toggle:after{content:'OFF';background-color:#404141;left:.8rem;padding-left:.6rem}.topcoat-switch__input:checked+.topcoat-switch__toggle{margin-left:1.85rem}.topcoat-switch__input:focus+.topcoat-switch__toggle{border:1px solid #0940fd;box-shadow:0 0 0 2px #6fb5f1}.topcoat-switch__input:disabled+.topcoat-switch__toggle:after,.topcoat-switch__input:disabled+.topcoat-switch__toggle:before{background:transparent}.button,.topcoat-tab-bar__button{position:relative;display:inline-block;vertical-align:top;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;text-decoration:none}.button--quiet{background:transparent;border:1px solid transparent;box-shadow:none}.button--disabled,.topcoat-tab-bar__button:disabled{opacity:.3;cursor:default;pointer-events:none}.button-bar,.topcoat-tab-bar{display:table;table-layout:fixed;white-space:nowrap;margin:0;padding:0}.button-bar__item,.topcoat-tab-bar__item{display:table-cell;width:auto;border-radius:0}.button-bar__item>input,.topcoat-tab-bar__item>input{position:absolute;overflow:hidden;padding:0;border:0;opacity:.001;z-index:1;vertical-align:top;outline:0}.button-bar__button{border-radius:inherit}.button-bar__item:disabled{opacity:.3;cursor:default;pointer-events:none}.topcoat-tab-bar__button{padding:0 .563rem;height:1.313rem;line-height:1.313rem;letter-spacing:0;color:#c6c8c8;text-shadow:0 -1px rgba(0,0,0,.69);vertical-align:top;background-color:#595b5b;box-shadow:inset 0 1px #727373;border-top:1px solid #303233}.topcoat-tab-bar__button:active,.topcoat-tab-bar__button--large:active,:checked+.topcoat-tab-bar__button{color:#5dc1ff;background-color:#404141;box-shadow:inset 0 0 2px #313231}.topcoat-tab-bar__button:focus,.topcoat-tab-bar__button--large:focus{z-index:1}.input,.topcoat-text-input,.topcoat-text-input--large{padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;vertical-align:top;outline:0}.input:disabled,.topcoat-text-input:disabled,.topcoat-text-input--large:disabled{opacity:.3;cursor:default;pointer-events:none}.topcoat-text-input,.topcoat-text-input--large{line-height:1.313rem;font-size:12px;letter-spacing:0;padding:0 .563rem;border:1px solid #303233;border-radius:4px;background-color:#404141;box-shadow:inset 0 1px rgba(0,0,0,.18);color:#c6c8c8;vertical-align:top}.topcoat-text-input:focus,.topcoat-text-input--large:focus{background-color:#646666;color:#fff;border:1px solid #0940fd;box-shadow:0 0 0 2px #6fb5f1}.topcoat-text-input:disabled::-webkit-input-placeholder{color:#fff}.topcoat-text-input:disabled::-moz-placeholder{color:#fff}.topcoat-text-input:disabled:-ms-input-placeholder{color:#fff}.topcoat-text-input:invalid{border:1px solid #d83b75}.topcoat-text-input--large{line-height:1.688rem;font-size:.875rem}.topcoat-text-input--large:disabled{color:#fff}.topcoat-text-input--large:disabled::-webkit-input-placeholder{color:#fff}.topcoat-text-input--large:disabled::-moz-placeholder{color:#fff}.topcoat-text-input--large:disabled:-ms-input-placeholder{color:#fff}.topcoat-text-input--large:invalid{border:1px solid #d83b75}.textarea{-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;vertical-align:top;resize:none;outline:0}.textarea:disabled{opacity:.3;cursor:default;pointer-events:none}.textarea,.topcoat-textarea,.topcoat-textarea--large{-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;vertical-align:top;resize:none;outline:0}.textarea:disabled,.topcoat-textarea:disabled,.topcoat-textarea--large:disabled{opacity:.3;cursor:default;pointer-events:none}.topcoat-textarea,.topcoat-textarea--large{padding:1rem;font-size:1rem;font-weight:400;border-radius:4px;line-height:1.313rem;border:1px solid #303233;background-color:#404141;box-shadow:inset 0 1px rgba(0,0,0,.18);color:#c6c8c8;letter-spacing:0}.topcoat-textarea:focus,.topcoat-textarea--large:focus{background-color:#646666;color:#fff;border:1px solid #0940fd;box-shadow:0 0 0 2px #6fb5f1}.topcoat-textarea:disabled::-webkit-input-placeholder{color:#fff}.topcoat-textarea:disabled::-moz-placeholder{color:#fff}.topcoat-textarea:disabled:-ms-input-placeholder{color:#fff}.topcoat-textarea--large{font-size:1.3rem;line-height:1.688rem}.topcoat-textarea--large:disabled{color:#fff}.topcoat-textarea--large:disabled::-webkit-input-placeholder{color:#fff}.topcoat-textarea--large:disabled::-moz-placeholder{color:#fff}.topcoat-textarea--large:disabled:-ms-input-placeholder{color:#fff}@font-face{font-family:"Source Sans";src:url(../font/SourceSansPro-Regular.otf)}@font-face{font-family:"Source Sans";src:url(../font/SourceSansPro-Light.otf);font-weight:200}@font-face{font-family:"Source Sans";src:url(../font/SourceSansPro-Semibold.otf);font-weight:600}body{margin:0;padding:0;background:#4b4d4e;color:#000;font:16px "Source Sans",helvetica,arial,sans-serif;font-weight:200}:focus{outline-color:transparent;outline-style:none}.topcoat-icon--menu-stack{background:url(../img/hamburger_light.svg) no-repeat;background-size:cover}.quarter{width:25%}.half{width:50%}.three-quarters{width:75%}.third{width:33.333%}.two-thirds{width:66.666%}.full{width:100%}.left{text-align:left}.center{text-align:center}.right{text-align:right}.reset-ui{-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;position:relative;display:inline-block;vertical-align:top;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;text-overflow:ellipsis;white-space:nowrap;overflow:hidden} \ No newline at end of file diff --git a/www/assets/topcoat-0.7.5/css/topcoat-desktop-light.css b/www/assets/topcoat-0.7.5/css/topcoat-desktop-light.css deleted file mode 100755 index 0da42ea..0000000 --- a/www/assets/topcoat-0.7.5/css/topcoat-desktop-light.css +++ /dev/null @@ -1,3450 +0,0 @@ -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.button-bar { - display: table; - table-layout: fixed; - white-space: nowrap; - margin: 0; - padding: 0; -} - -.button-bar__item { - display: table-cell; - width: auto; - border-radius: 0; -} - -.button-bar__item > input { - position: absolute; - overflow: hidden; - padding: 0; - border: 0; - opacity: 0.001; - z-index: 1; - vertical-align: top; - outline: none; -} - -.button-bar__button { - border-radius: inherit; -} - -.button-bar__item:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.button, -.topcoat-button, -.topcoat-button--quiet, -.topcoat-button--large, -.topcoat-button--large--quiet, -.topcoat-button--cta, -.topcoat-button--large--cta, -.topcoat-button-bar__button, -.topcoat-button-bar__button--large { - position: relative; - display: inline-block; - vertical-align: top; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - text-overflow: ellipsis; - white-space: nowrap; - overflow: hidden; - text-decoration: none; -} - -.button--quiet { - background: transparent; - border: 1px solid transparent; - box-shadow: none; -} - -.button--disabled, -.topcoat-button:disabled, -.topcoat-button--quiet:disabled, -.topcoat-button--large:disabled, -.topcoat-button--large--quiet:disabled, -.topcoat-button--cta:disabled, -.topcoat-button--large--cta:disabled, -.topcoat-button-bar__button:disabled, -.topcoat-button-bar__button--large:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -.topcoat-button, -.topcoat-button--quiet, -.topcoat-button--large, -.topcoat-button--large--quiet, -.topcoat-button--cta, -.topcoat-button--large--cta, -.topcoat-button-bar__button, -.topcoat-button-bar__button--large { - padding: 0 0.563rem; - font-size: 12px; - line-height: 1.313rem; - letter-spacing: 0; - color: #454545; - text-shadow: 0 1px #fff; - vertical-align: top; - background-color: #e5e9e8; - box-shadow: inset 0 1px #fff; - border: 1px solid #a5a8a8; - border-radius: 4px; -} - -.topcoat-button:hover, -.topcoat-button--quiet:hover, -.topcoat-button--large:hover, -.topcoat-button--large--quiet:hover, -.topcoat-button-bar__button:hover, -.topcoat-button-bar__button--large:hover { - background-color: #edf1f1; -} - -.topcoat-button:active, -.topcoat-button--large:active, -.topcoat-button-bar__button:active, -.topcoat-button-bar__button--large:active, -:checked + .topcoat-button-bar__button { - background-color: #d3d7d7; - box-shadow: inset 0 1px rgba(0,0,0,0.12); -} - -.topcoat-button:focus, -.topcoat-button--quiet:focus, -.topcoat-button--large:focus, -.topcoat-button--large--quiet:focus, -.topcoat-button--cta:focus, -.topcoat-button--large--cta:focus, -.topcoat-button-bar__button:focus, -.topcoat-button-bar__button--large:focus { - border: 1px solid #0940fd; - box-shadow: 0 0 0 2px #6fb5f1; - outline: 0; -} - -.topcoat-button--quiet { - background: transparent; - border: 1px solid transparent; - box-shadow: none; -} - -.topcoat-button--quiet:hover, -.topcoat-button--large--quiet:hover { - text-shadow: 0 1px #fff; - border: 1px solid #a5a8a8; - box-shadow: inset 0 1px #fff; -} - -.topcoat-button--quiet:active, -.topcoat-button--large--quiet:active { - color: #454545; - text-shadow: 0 1px #fff; - background-color: #d3d7d7; - border: 1px solid #a5a8a8; - box-shadow: inset 0 1px rgba(0,0,0,0.12); -} - -.topcoat-button--large, -.topcoat-button--large--quiet, -.topcoat-button-bar__button--large { - font-size: 0.875rem; - font-weight: 600; - line-height: 1.688rem; - padding: 0 0.875rem; -} - -.topcoat-button--large--quiet { - background: transparent; - border: 1px solid transparent; - box-shadow: none; -} - -.topcoat-button--cta, -.topcoat-button--large--cta { - border: 1px solid #143250; - background-color: #288edf; - box-shadow: inset 0 1px rgba(255,255,255,0.36); - color: #fff; - font-weight: 500; - text-shadow: 0 -1px rgba(0,0,0,0.36); -} - -.topcoat-button--cta:hover, -.topcoat-button--large--cta:hover { - background-color: #509bef; -} - -.topcoat-button--cta:active, -.topcoat-button--large--cta:active { - background-color: #0380e8; - box-shadow: inset 0 1px rgba(0,0,0,0.12); -} - -.topcoat-button--large--cta { - font-size: 0.875rem; - font-weight: 600; - line-height: 1.688rem; - padding: 0 0.875rem; -} - -.button-bar, -.topcoat-button-bar { - display: table; - table-layout: fixed; - white-space: nowrap; - margin: 0; - padding: 0; -} - -.button-bar__item, -.topcoat-button-bar__item { - display: table-cell; - width: auto; - border-radius: 0; -} - -.button-bar__item > input, -.topcoat-button-bar__item > input { - position: absolute; - overflow: hidden; - padding: 0; - border: 0; - opacity: 0.001; - z-index: 1; - vertical-align: top; - outline: none; -} - -.button-bar__button { - border-radius: inherit; -} - -.button-bar__item:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/* topdoc - name: Button Bar - description: Component of grouped buttons - modifiers: - :disabled: Disabled state - markup: -
-
- -
-
- -
-
- -
-
- examples: - mobile button bar: http://codepen.io/Topcoat/pen/kdKyg - tags: - - desktop - - light - - dark - - mobile - - button - - group - - bar -*/ - -.topcoat-button-bar > .topcoat-button-bar__item:first-child { - border-top-left-radius: 4px; - border-bottom-left-radius: 4px; -} - -.topcoat-button-bar > .topcoat-button-bar__item:last-child { - border-top-right-radius: 4px; - border-bottom-right-radius: 4px; -} - -.topcoat-button-bar__item:first-child > .topcoat-button-bar__button, -.topcoat-button-bar__item:first-child > .topcoat-button-bar__button--large { - border-right: none; -} - -.topcoat-button-bar__item:last-child > .topcoat-button-bar__button, -.topcoat-button-bar__item:last-child > .topcoat-button-bar__button--large { - border-left: none; -} - -.topcoat-button-bar__button { - border-radius: inherit; -} - -.topcoat-button-bar__button:focus, -.topcoat-button-bar__button--large:focus { - z-index: 1; -} - -/* topdoc - name: Large Button Bar - description: A button bar, only larger - modifiers: - :disabled: Disabled state - markup: -
-
- -
-
- -
-
- -
-
- tags: - - desktop - - light - - dark - - mobile - - button - - group - - bar - - large -*/ - -.topcoat-button-bar__button--large { - border-radius: inherit; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.button { - position: relative; - display: inline-block; - vertical-align: top; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - text-overflow: ellipsis; - white-space: nowrap; - overflow: hidden; - text-decoration: none; -} - -.button--quiet { - background: transparent; - border: 1px solid transparent; - box-shadow: none; -} - -.button--disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.button, -.topcoat-button, -.topcoat-button--quiet, -.topcoat-button--large, -.topcoat-button--large--quiet, -.topcoat-button--cta, -.topcoat-button--large--cta { - position: relative; - display: inline-block; - vertical-align: top; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - text-overflow: ellipsis; - white-space: nowrap; - overflow: hidden; - text-decoration: none; -} - -.button--quiet { - background: transparent; - border: 1px solid transparent; - box-shadow: none; -} - -.button--disabled, -.topcoat-button:disabled, -.topcoat-button--quiet:disabled, -.topcoat-button--large:disabled, -.topcoat-button--large--quiet:disabled, -.topcoat-button--cta:disabled, -.topcoat-button--large--cta:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/* topdoc - name: Button - description: A simple button - modifiers: - :active: Active state - :disabled: Disabled state - :hover: Hover state - :focus: Focused - markup: - - - examples: - mobile button: http://codepen.io/Topcoat/pen/DpKtf - tags: - - desktop - - light - - mobile - - button -*/ - -.topcoat-button, -.topcoat-button--quiet, -.topcoat-button--large, -.topcoat-button--large--quiet, -.topcoat-button--cta, -.topcoat-button--large--cta { - padding: 0 0.563rem; - font-size: 12px; - line-height: 1.313rem; - letter-spacing: 0; - color: #454545; - text-shadow: 0 1px #fff; - vertical-align: top; - background-color: #e5e9e8; - box-shadow: inset 0 1px #fff; - border: 1px solid #a5a8a8; - border-radius: 4px; -} - -.topcoat-button:hover, -.topcoat-button--quiet:hover, -.topcoat-button--large:hover, -.topcoat-button--large--quiet:hover { - background-color: #edf1f1; -} - -.topcoat-button:active, -.topcoat-button--large:active { - background-color: #d3d7d7; - box-shadow: inset 0 1px rgba(0,0,0,0.12); -} - -.topcoat-button:focus, -.topcoat-button--quiet:focus, -.topcoat-button--large:focus, -.topcoat-button--large--quiet:focus, -.topcoat-button--cta:focus, -.topcoat-button--large--cta:focus { - border: 1px solid #0940fd; - box-shadow: 0 0 0 2px #6fb5f1; - outline: 0; -} - -/* topdoc - name: Quiet Button - description: A simple, yet quiet button - modifiers: - :active: Quiet button active state - :disabled: Disabled state - :hover: Hover state - :focus: Focused - markup: - - - tags: - - desktop - - light - - mobile - - button - - quiet -*/ - -.topcoat-button--quiet { - background: transparent; - border: 1px solid transparent; - box-shadow: none; -} - -.topcoat-button--quiet:hover, -.topcoat-button--large--quiet:hover { - text-shadow: 0 1px #fff; - border: 1px solid #a5a8a8; - box-shadow: inset 0 1px #fff; -} - -.topcoat-button--quiet:active, -.topcoat-button--large--quiet:active { - color: #454545; - text-shadow: 0 1px #fff; - background-color: #d3d7d7; - border: 1px solid #a5a8a8; - box-shadow: inset 0 1px rgba(0,0,0,0.12); -} - -/* topdoc - name: Large Button - description: A big ol button - modifiers: - :active: Active state - :disabled: Disabled state - :hover: Hover state - :focus: Focused - markup: - - - tags: - - desktop - - light - - mobile - - button - - large -*/ - -.topcoat-button--large, -.topcoat-button--large--quiet { - font-size: 0.875rem; - font-weight: 600; - line-height: 1.688rem; - padding: 0 0.875rem; -} - -/* topdoc - name: Large Quiet Button - description: A large, yet quiet button - modifiers: - :active: Active state - :disabled: Disabled state - :hover: Hover state - :focus: Focused - markup: - - - tags: - - desktop - - light - - mobile - - button - - large - - quiet -*/ - -.topcoat-button--large--quiet { - background: transparent; - border: 1px solid transparent; - box-shadow: none; -} - -/* topdoc - name: Call To Action Button - description: A CALL TO ARMS, er, ACTION! - modifiers: - :active: Active state - :disabled: Disabled state - :hover: Hover state - :focus: Focused - markup: - - - tags: - - desktop - - light - - mobile - - button - - call to action -*/ - -.topcoat-button--cta, -.topcoat-button--large--cta { - border: 1px solid #143250; - background-color: #288edf; - box-shadow: inset 0 1px rgba(255,255,255,0.36); - color: #fff; - font-weight: 500; - text-shadow: 0 -1px rgba(0,0,0,0.36); -} - -.topcoat-button--cta:hover, -.topcoat-button--large--cta:hover { - background-color: #509bef; -} - -.topcoat-button--cta:active, -.topcoat-button--large--cta:active { - background-color: #0380e8; - box-shadow: inset 0 1px rgba(0,0,0,0.12); -} - -/* topdoc - name: Large Call To Action Button - description: Like call to action, but bigger - modifiers: - :active: Active state - :disabled: Disabled state - :hover: Hover state - :focus: Focused - markup: - - - tags: - - desktop - - light - - mobile - - button - - large - - call to action -*/ - -.topcoat-button--large--cta { - font-size: 0.875rem; - font-weight: 600; - line-height: 1.688rem; - padding: 0 0.875rem; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -input[type="checkbox"] { - position: absolute; - overflow: hidden; - padding: 0; - border: 0; - opacity: 0.001; - z-index: 1; - vertical-align: top; - outline: none; -} - -.checkbox { - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - position: relative; - display: inline-block; - vertical-align: top; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.checkbox__label { - position: relative; - display: inline-block; - vertical-align: top; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.checkbox--disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -.checkbox:before, -.checkbox:after { - content: ''; - position: absolute; -} - -.checkbox:before { - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -input[type="checkbox"] { - position: absolute; - overflow: hidden; - padding: 0; - border: 0; - opacity: 0.001; - z-index: 1; - vertical-align: top; - outline: none; -} - -.checkbox, -.topcoat-checkbox__checkmark { - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - position: relative; - display: inline-block; - vertical-align: top; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.checkbox__label, -.topcoat-checkbox { - position: relative; - display: inline-block; - vertical-align: top; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.checkbox--disabled, -input[type="checkbox"]:disabled + .topcoat-checkbox__checkmark { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -.checkbox:before, -.checkbox:after, -.topcoat-checkbox__checkmark:before, -.topcoat-checkbox__checkmark:after { - content: ''; - position: absolute; -} - -.checkbox:before, -.topcoat-checkbox__checkmark:before { - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; -} - -/* topdoc - name: Checkbox - description: Default skin for Topcoat checkbox - modifiers: - :focus: Focus state - :disabled: Disabled state - markup: - -
-
- - examples: - mobile checkbox: http://codepen.io/Topcoat/pen/piHcs - tags: - - desktop - - light - - mobile - - checkbox -*/ - -.topcoat-checkbox__checkmark { - height: 1rem; -} - -input[type="checkbox"] { - height: 1rem; - width: 1rem; - margin-top: 0; - margin-right: -1rem; - margin-bottom: -1rem; - margin-left: 0; -} - -input[type="checkbox"]:checked + .topcoat-checkbox__checkmark:after { - opacity: 1; -} - -.topcoat-checkbox { - line-height: 1rem; -} - -.topcoat-checkbox__checkmark:before { - width: 1rem; - height: 1rem; - background: #e5e9e8; - border: 1px solid #a5a8a8; - border-radius: 3px; - box-shadow: inset 0 1px #fff; -} - -.topcoat-checkbox__checkmark { - width: 1rem; - height: 1rem; -} - -.topcoat-checkbox__checkmark:after { - top: 2px; - left: 1px; - opacity: 0; - width: 14px; - height: 4px; - background: transparent; - border: 7px solid #666; - border-width: 3px; - border-top: none; - border-right: none; - border-radius: 1px; - -webkit-transform: rotate(-50deg); - -ms-transform: rotate(-50deg); - transform: rotate(-50deg); -} - -input[type="checkbox"]:focus + .topcoat-checkbox__checkmark:before { - border: 1px solid #0940fd; - box-shadow: 0 0 0 2px #6fb5f1; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.button, -.topcoat-icon-button, -.topcoat-icon-button--quiet, -.topcoat-icon-button--large, -.topcoat-icon-button--large--quiet { - position: relative; - display: inline-block; - vertical-align: top; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - text-overflow: ellipsis; - white-space: nowrap; - overflow: hidden; - text-decoration: none; -} - -.button--quiet { - background: transparent; - border: 1px solid transparent; - box-shadow: none; -} - -.button--disabled, -.topcoat-icon-button:disabled, -.topcoat-icon-button--quiet:disabled, -.topcoat-icon-button--large:disabled, -.topcoat-icon-button--large--quiet:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/* topdoc - name: Icon Button - description: Like button, but it has an icon. - modifiers: - :active: Active state - :disabled: Disabled state - :hover: Hover state - :focus: Focused - markup: - - - tags: - - desktop - - light - - mobile - - button - - icon -*/ - -.topcoat-icon-button, -.topcoat-icon-button--quiet, -.topcoat-icon-button--large, -.topcoat-icon-button--large--quiet { - padding: 0 0.25rem; - line-height: 1.313rem; - letter-spacing: 0; - color: #454545; - text-shadow: 0 1px #fff; - vertical-align: baseline; - background-color: #e5e9e8; - box-shadow: inset 0 1px #fff; - border: 1px solid #a5a8a8; - border-radius: 4px; -} - -.topcoat-icon-button:hover, -.topcoat-icon-button--quiet:hover, -.topcoat-icon-button--large:hover, -.topcoat-icon-button--large--quiet:hover { - background-color: #edf1f1; -} - -.topcoat-icon-button:active { - background-color: #d3d7d7; - box-shadow: inset 0 1px rgba(0,0,0,0.12); -} - -.topcoat-icon-button:focus, -.topcoat-icon-button--quiet:focus, -.topcoat-icon-button--quiet:hover:focus, -.topcoat-icon-button--large:focus, -.topcoat-icon-button--large--quiet:focus, -.topcoat-icon-button--large--quiet:hover:focus { - border: 1px solid #0940fd; - box-shadow: 0 0 0 2px #6fb5f1; - outline: 0; -} - -/* topdoc - name: Quiet Icon Button - description: Like quiet button, but it has an icon. - modifiers: - :active: Active state - :disabled: Disabled state - :hover: Hover state - :focus: Focused - markup: - - - tags: - - desktop - - light - - mobile - - button - - icon - - quiet -*/ - -.topcoat-icon-button--quiet { - background: transparent; - border: 1px solid transparent; - box-shadow: none; -} - -.topcoat-icon-button--quiet:hover, -.topcoat-icon-button--large--quiet:hover { - text-shadow: 0 1px #fff; - border: 1px solid #a5a8a8; - box-shadow: inset 0 1px #fff; -} - -.topcoat-icon-button--quiet:active, -.topcoat-icon-button--large--quiet:active { - color: #454545; - text-shadow: 0 1px #fff; - background-color: #d3d7d7; - border: 1px solid #a5a8a8; - box-shadow: inset 0 1px rgba(0,0,0,0.12); -} - -/* topdoc - name: Large Icon Button - description: Like large button, but it has an icon. - modifiers: - :active: Active state - :disabled: Disabled state - :hover: Hover state - :focus: Focused - markup: - - - tags: - - desktop - - light - - mobile - - button - - icon - - large -*/ - -.topcoat-icon-button--large, -.topcoat-icon-button--large--quiet { - width: 1.688rem; - height: 1.688rem; - line-height: 1.688rem; -} - -.topcoat-icon-button--large:active { - background-color: #d3d7d7; - box-shadow: inset 0 1px rgba(0,0,0,0.12); -} - -/* topdoc - name: Large Quiet Icon Button - description: Like large button, but it has an icon and this one is quiet. - modifiers: - :active: Active state - :disabled: Disabled state - :hover: Hover state - markup: - - - tags: - - desktop - - light - - mobile - - button - - icon - - large - - quiet -*/ - -.topcoat-icon-button--large--quiet { - background: transparent; - border: 1px solid transparent; - box-shadow: none; -} - -.topcoat-icon, -.topcoat-icon--large { - position: relative; - display: inline-block; - vertical-align: top; - overflow: hidden; - width: 0.81406rem; - height: 0.81406rem; - vertical-align: middle; - top: -1px; -} - -.topcoat-icon--large { - width: 1.06344rem; - height: 1.06344rem; - top: -2px; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.input { - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - vertical-align: top; - outline: none; -} - -.input:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.list { - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - overflow: auto; - -webkit-overflow-scrolling: touch; -} - -.list__header { - margin: 0; -} - -.list__container { - padding: 0; - margin: 0; - list-style-type: none; -} - -.list__item { - margin: 0; - padding: 0; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.navigation-bar { - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - white-space: nowrap; - overflow: hidden; - word-spacing: 0; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.navigation-bar__item { - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - position: relative; - display: inline-block; - vertical-align: top; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; -} - -.navigation-bar__title { - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - text-overflow: ellipsis; - white-space: nowrap; - overflow: hidden; -} - -/* -Copyright 2012 Adobe Systems Inc.; -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - -http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.notification { - position: relative; - display: inline-block; - vertical-align: top; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - text-overflow: ellipsis; - white-space: nowrap; - overflow: hidden; - text-decoration: none; -} - -/* -Copyright 2012 Adobe Systems Inc.; -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - -http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.notification, -.topcoat-notification { - position: relative; - display: inline-block; - vertical-align: top; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - text-overflow: ellipsis; - white-space: nowrap; - overflow: hidden; - text-decoration: none; -} - -/* topdoc - name: Notification - description: Notification badge - markup: - 1 - tags: - - desktop - - light - - mobile - - notification -*/ - -.topcoat-notification { - padding: 0.15em 0.5em 0.2em; - border-radius: 2px; - background-color: #ec514e; - color: #fff; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -input[type="radio"] { - position: absolute; - overflow: hidden; - padding: 0; - border: 0; - opacity: 0.001; - z-index: 1; - vertical-align: top; - outline: none; -} - -.radio-button { - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - position: relative; - display: inline-block; - vertical-align: top; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.radio-button__label { - position: relative; - display: inline-block; - vertical-align: top; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.radio-button:before, -.radio-button:after { - content: ''; - position: absolute; - border-radius: 100%; -} - -.radio-button:after { - top: 50%; - left: 50%; - -webkit-transform: translate(-50%, -50%); - -ms-transform: translate(-50%, -50%); - transform: translate(-50%, -50%); -} - -.radio-button:before { - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; -} - -.radio-button--disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -input[type="radio"] { - position: absolute; - overflow: hidden; - padding: 0; - border: 0; - opacity: 0.001; - z-index: 1; - vertical-align: top; - outline: none; -} - -.radio-button, -.topcoat-radio-button__checkmark { - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - position: relative; - display: inline-block; - vertical-align: top; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.radio-button__label, -.topcoat-radio-button { - position: relative; - display: inline-block; - vertical-align: top; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.radio-button:before, -.radio-button:after, -.topcoat-radio-button__checkmark:before, -.topcoat-radio-button__checkmark:after { - content: ''; - position: absolute; - border-radius: 100%; -} - -.radio-button:after, -.topcoat-radio-button__checkmark:after { - top: 50%; - left: 50%; - -webkit-transform: translate(-50%, -50%); - -ms-transform: translate(-50%, -50%); - transform: translate(-50%, -50%); -} - -.radio-button:before, -.topcoat-radio-button__checkmark:before { - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; -} - -.radio-button--disabled, -input[type="radio"]:disabled + .topcoat-radio-button__checkmark { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/* topdoc - name: Radio Button - description: A button that can play music, but usually just plays ads. - modifiers: - markup: - - -
-
- - -
-
- - -
-
- - - examples: - Mobile Radio Button: http://codepen.io/Topcoat/pen/HDcJj - tags: - - desktop - - light - - mobile - - Radio -*/ - -input[type="radio"] { - height: 1.063rem; - width: 1.063rem; - margin-top: 0; - margin-right: -1.063rem; - margin-bottom: -1.063rem; - margin-left: 0; -} - -input[type="radio"]:checked + .topcoat-radio-button__checkmark:after { - opacity: 1; -} - -.topcoat-radio-button { - color: #454545; - line-height: 1.063rem; -} - -.topcoat-radio-button__checkmark:before { - width: 1.063rem; - height: 1.063rem; - background: #e5e9e8; - border: 1px solid #a5a8a8; - box-shadow: inset 0 1px #fff; -} - -.topcoat-radio-button__checkmark { - position: relative; - width: 1.063rem; - height: 1.063rem; -} - -.topcoat-radio-button__checkmark:after { - opacity: 0; - width: 0.313rem; - height: 0.313rem; - background: #666; - border: 1px solid rgba(0,0,0,0.1); - box-shadow: 0 1px rgba(255,255,255,0.5); - -webkit-transform: none; - -ms-transform: none; - transform: none; - top: 0.313rem; - left: 0.313rem; -} - -input[type="radio"]:focus + .topcoat-radio-button__checkmark:before { - border: 1px solid #0940fd; - box-shadow: 0 0 0 2px #6fb5f1; -} - -/* -Copyright 2012 Adobe Systems Inc.; -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - -http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -/* -Copyright 2012 Adobe Systems Inc.; -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - -http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -.range { - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - vertical-align: top; - outline: none; - -webkit-appearance: none; -} - -.range__thumb { - cursor: pointer; -} - -.range__thumb--webkit { - cursor: pointer; - -webkit-appearance: none; -} - -.range:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/* -Copyright 2012 Adobe Systems Inc.; -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - -http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -/* -Copyright 2012 Adobe Systems Inc.; -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - -http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -.range, -.topcoat-range { - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - vertical-align: top; - outline: none; - -webkit-appearance: none; -} - -.range__thumb, -.topcoat-range::-moz-range-thumb { - cursor: pointer; -} - -.range__thumb--webkit, -.topcoat-range::-webkit-slider-thumb { - cursor: pointer; - -webkit-appearance: none; -} - -.range:disabled, -.topcoat-range:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/* topdoc - name: Range - description: Range input - modifiers: - :active: Active state - :disabled: Disabled state - :hover: Hover state - :focus: Focused - markup: - - - examples: - mobile range: http://codepen.io/Topcoat/pen/BskEn - tags: - - desktop - - mobile - - range -*/ - -.topcoat-range { - border-radius: 4px; - border: 1px solid #a5a8a8; - background-color: #d3d7d7; - height: 0.5rem; - border-radius: 15px; -} - -.topcoat-range::-moz-range-track { - border-radius: 4px; - border: 1px solid #a5a8a8; - background-color: #d3d7d7; - height: 0.5rem; - border-radius: 15px; -} - -.topcoat-range::-webkit-slider-thumb { - height: 1.313rem; - width: 0.75rem; - background-color: #e5e9e8; - border: 1px solid #a5a8a8; - border-radius: 4px; - box-shadow: inset 0 1px #fff; -} - -.topcoat-range::-moz-range-thumb { - height: 1.313rem; - width: 0.75rem; - background-color: #e5e9e8; - border: 1px solid #a5a8a8; - border-radius: 4px; - box-shadow: inset 0 1px #fff; -} - -.topcoat-range:focus::-webkit-slider-thumb { - border: 1px solid #0940fd; - box-shadow: 0 0 0 2px #6fb5f1; -} - -.topcoat-range:focus::-moz-range-thumb { - border: 1px solid #0940fd; - box-shadow: 0 0 0 2px #6fb5f1; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.search-input { - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - vertical-align: top; - outline: none; - -webkit-appearance: none; -} - -input[type="search"]::-webkit-search-cancel-button { - -webkit-appearance: none; -} - -.search-input:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.search-input, -.topcoat-search-input, -.topcoat-search-input--large { - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - vertical-align: top; - outline: none; - -webkit-appearance: none; -} - -input[type="search"]::-webkit-search-cancel-button { - -webkit-appearance: none; -} - -.search-input:disabled, -.topcoat-search-input:disabled, -.topcoat-search-input--large:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/* topdoc - name: Search Input - description: A text input designed for searching. - modifiers: - :disabled: Disabled state - markup: - - - tags: - - desktop - - light - - mobile - - text - - input - - search - - form -*/ - -.topcoat-search-input, -.topcoat-search-input--large { - line-height: 1.313rem; - font-size: 12px; - border: 1px solid #a5a8a8; - background-color: #d3d7d7; - box-shadow: inset 0 1px rgba(0,0,0,0.12); - color: #454545; - padding: 0 0 0 1.3rem; - border-radius: 15px; - background-image: url("../img/search.svg"); - background-position: 1em center; - background-repeat: no-repeat; - background-size: 12px; -} - -.topcoat-search-input:focus, -.topcoat-search-input--large:focus { - background-image: url("../img/search_dark.svg"); - background-color: #edf1f1; - color: #000; - border: 1px solid #0940fd; - box-shadow: 0 0 0 2px #6fb5f1; -} - -.topcoat-search-input::-webkit-search-cancel-button, -.topcoat-search-input::-webkit-search-decoration, -.topcoat-search-input--large::-webkit-search-cancel-button, -.topcoat-search-input--large::-webkit-search-decoration { - margin-right: 5px; -} - -.topcoat-search-input:focus::-webkit-input-placeholder, -.topcoat-search-input:focus::-webkit-input-placeholder { - color: #c6c8c8; -} - -.topcoat-search-input:disabled::-webkit-input-placeholder { - color: #000; -} - -.topcoat-search-input:disabled::-moz-placeholder { - color: #000; -} - -.topcoat-search-input:disabled:-ms-input-placeholder { - color: #000; -} - -/* topdoc - name: Large Search Input - description: A large text input designed for searching. - modifiers: - :disabled: Disabled state - markup: - - - tags: - - desktop - - light - - mobile - - text - - input - - search - - form - - large -*/ - -.topcoat-search-input--large { - line-height: 1.688rem; - font-size: 0.875rem; - font-weight: 400; - padding: 0 0 0 1.8rem; - border-radius: 25px; - background-position: 1.2em center; - background-size: 0.875rem; -} - -.topcoat-search-input--large:disabled { - color: #000; -} - -.topcoat-search-input--large:disabled::-webkit-input-placeholder { - color: #000; -} - -.topcoat-search-input--large:disabled::-moz-placeholder { - color: #000; -} - -.topcoat-search-input--large:disabled:-ms-input-placeholder { - color: #000; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.switch { - position: relative; - display: inline-block; - vertical-align: top; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; -} - -.switch__input { - position: absolute; - overflow: hidden; - padding: 0; - border: 0; - opacity: 0.001; - z-index: 1; - vertical-align: top; - outline: none; -} - -.switch__toggle { - position: relative; - display: inline-block; - vertical-align: top; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.switch__toggle:before, -.switch__toggle:after { - content: ''; - position: absolute; - z-index: -1; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; -} - -.switch--disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.switch, -.topcoat-switch { - position: relative; - display: inline-block; - vertical-align: top; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; -} - -.switch__input, -.topcoat-switch__input { - position: absolute; - overflow: hidden; - padding: 0; - border: 0; - opacity: 0.001; - z-index: 1; - vertical-align: top; - outline: none; -} - -.switch__toggle, -.topcoat-switch__toggle { - position: relative; - display: inline-block; - vertical-align: top; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.switch__toggle:before, -.switch__toggle:after, -.topcoat-switch__toggle:before, -.topcoat-switch__toggle:after { - content: ''; - position: absolute; - z-index: -1; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; -} - -.switch--disabled, -.topcoat-switch__input:disabled + .topcoat-switch__toggle { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/* topdoc - name: Switch - description: Default skin for Topcoat switch - modifiers: - :focus: Focus state - :disabled: Disabled state - markup: - -
-
- -
-
- - examples: - mobile switch: http://codepen.io/Topcoat/pen/upxds - tags: - - desktop - - light - - mobile - - switch -*/ - -.topcoat-switch { - font-size: 12px; - padding: 0 0.563rem; - border-radius: 4px; - border: 1px solid #a5a8a8; - overflow: hidden; - width: 3.5rem; -} - -.topcoat-switch__toggle:before, -.topcoat-switch__toggle:after { - top: -1px; - width: 2.6rem; -} - -.topcoat-switch__toggle:before { - content: 'ON'; - color: #0083e8; - background-color: #e0f0fa; - right: 0.8rem; - padding-left: 0.75rem; -} - -.topcoat-switch__toggle { - line-height: 1.313rem; - height: 1.313rem; - width: 1rem; - border-radius: 4px; - color: #454545; - text-shadow: 0 1px #fff; - background-color: #e5e9e8; - border: 1px solid #a5a8a8; - margin-left: -0.6rem; - margin-bottom: -1px; - margin-top: -1px; - box-shadow: inset 0 1px #fff; - -webkit-transition: margin-left 0.05s ease-in-out; - transition: margin-left 0.05s ease-in-out; -} - -.topcoat-switch__toggle:after { - content: 'OFF'; - background-color: #d3d7d7; - left: 0.8rem; - padding-left: 0.6rem; -} - -.topcoat-switch__input:checked + .topcoat-switch__toggle { - margin-left: 1.85rem; -} - -.topcoat-switch__input:focus + .topcoat-switch__toggle { - border: 1px solid #0940fd; - box-shadow: 0 0 0 2px #6fb5f1; -} - -.topcoat-switch__input:disabled + .topcoat-switch__toggle:after, -.topcoat-switch__input:disabled + .topcoat-switch__toggle:before { - background: transparent; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.button, -.topcoat-tab-bar__button { - position: relative; - display: inline-block; - vertical-align: top; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - text-overflow: ellipsis; - white-space: nowrap; - overflow: hidden; - text-decoration: none; -} - -.button--quiet { - background: transparent; - border: 1px solid transparent; - box-shadow: none; -} - -.button--disabled, -.topcoat-tab-bar__button:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -.button-bar, -.topcoat-tab-bar { - display: table; - table-layout: fixed; - white-space: nowrap; - margin: 0; - padding: 0; -} - -.button-bar__item, -.topcoat-tab-bar__item { - display: table-cell; - width: auto; - border-radius: 0; -} - -.button-bar__item > input, -.topcoat-tab-bar__item > input { - position: absolute; - overflow: hidden; - padding: 0; - border: 0; - opacity: 0.001; - z-index: 1; - vertical-align: top; - outline: none; -} - -.button-bar__button { - border-radius: inherit; -} - -.button-bar__item:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/* topdoc - name: Tab Bar - description: Component of tab buttons - modifiers: - :disabled: Disabled state - markup: -
- - - -
- examples: - mobile tab bar: http://codepen.io/Topcoat/pen/rJICF - tags: - - desktop - - light - - dark - - mobile - - tab - - group - - bar -*/ - -.topcoat-tab-bar__button { - padding: 0 0.563rem; - height: 1.313rem; - line-height: 1.313rem; - letter-spacing: 0; - color: #454545; - text-shadow: 0 1px #fff; - vertical-align: top; - background-color: #e5e9e8; - box-shadow: inset 0 1px #fff; - border-top: 1px solid #a5a8a8; -} - -.topcoat-tab-bar__button:active, -.topcoat-tab-bar__button--large:active, -:checked + .topcoat-tab-bar__button { - color: #0083e8; - background-color: #e0f0fa; - box-shadow: inset 0 0 2px #c0ced8; -} - -.topcoat-tab-bar__button:focus, -.topcoat-tab-bar__button--large:focus { - z-index: 1; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.input, -.topcoat-text-input, -.topcoat-text-input--large { - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - vertical-align: top; - outline: none; -} - -.input:disabled, -.topcoat-text-input:disabled, -.topcoat-text-input--large:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/* topdoc - name: Text input - description: Topdoc text input - modifiers: - :disabled: Disabled state - :focus: Focused - :invalid: Hover state - markup: - -
-
- -
-
- - tags: - - desktop - - mobile - - text - - input -*/ - -.topcoat-text-input, -.topcoat-text-input--large { - line-height: 1.313rem; - font-size: 12px; - letter-spacing: 0; - padding: 0 0.563rem; - border: 1px solid #a5a8a8; - border-radius: 4px; - background-color: #d3d7d7; - box-shadow: inset 0 1px rgba(0,0,0,0.12); - color: #454545; - vertical-align: top; -} - -.topcoat-text-input:focus, -.topcoat-text-input--large:focus { - background-color: #edf1f1; - color: #000; - border: 1px solid #0940fd; - box-shadow: 0 0 0 2px #6fb5f1; -} - -.topcoat-text-input:disabled::-webkit-input-placeholder { - color: #000; -} - -.topcoat-text-input:disabled::-moz-placeholder { - color: #000; -} - -.topcoat-text-input:disabled:-ms-input-placeholder { - color: #000; -} - -.topcoat-text-input:invalid { - border: 1px solid #d83b75; -} - -/* topdoc - name: Large Text Input - description: A bigger input, still for text. - modifiers: - :disabled: Disabled state - :focus: Focused - :invalid: Hover state - markup: - -
-
- -
-
- - tags: - - desktop - - light - - mobile - - form - - input - - large -*/ - -.topcoat-text-input--large { - line-height: 1.688rem; - font-size: 0.875rem; -} - -.topcoat-text-input--large:disabled { - color: #000; -} - -.topcoat-text-input--large:disabled::-webkit-input-placeholder { - color: #000; -} - -.topcoat-text-input--large:disabled::-moz-placeholder { - color: #000; -} - -.topcoat-text-input--large:disabled:-ms-input-placeholder { - color: #000; -} - -.topcoat-text-input--large:invalid { - border: 1px solid #d83b75; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.textarea { - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - vertical-align: top; - resize: none; - outline: none; -} - -.textarea:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.textarea, -.topcoat-textarea, -.topcoat-textarea--large { - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - vertical-align: top; - resize: none; - outline: none; -} - -.textarea:disabled, -.topcoat-textarea:disabled, -.topcoat-textarea--large:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/* topdoc - name: Textarea - description: A whole area, just for text. - modifiers: - :disabled: Disabled state - markup: - -
-
- - tags: - - desktop - - light - - mobile - - form - - input - - textarea -*/ - -.topcoat-textarea, -.topcoat-textarea--large { - padding: 1rem; - font-size: 1rem; - font-weight: 400; - border-radius: 4px; - line-height: 1.313rem; - border: 1px solid #a5a8a8; - background-color: #d3d7d7; - box-shadow: inset 0 1px rgba(0,0,0,0.12); - color: #454545; - letter-spacing: 0; -} - -.topcoat-textarea:focus, -.topcoat-textarea--large:focus { - background-color: #edf1f1; - color: #000; - border: 1px solid #0940fd; - box-shadow: 0 0 0 2px #6fb5f1; -} - -.topcoat-textarea:disabled::-webkit-input-placeholder { - color: #000; -} - -.topcoat-textarea:disabled::-moz-placeholder { - color: #000; -} - -.topcoat-textarea:disabled:-ms-input-placeholder { - color: #000; -} - -/* topdoc - name: Large Textarea - description: A whole area, just for text; now available in large. - modifiers: - :disabled: Disabled state - markup: - -
-
- - tags: - - desktop - - light - - mobile - - form - - input - - textarea -*/ - -.topcoat-textarea--large { - font-size: 1.3rem; - line-height: 1.688rem; -} - -.topcoat-textarea--large:disabled { - color: #000; -} - -.topcoat-textarea--large:disabled::-webkit-input-placeholder { - color: #000; -} - -.topcoat-textarea--large:disabled::-moz-placeholder { - color: #000; -} - -.topcoat-textarea--large:disabled:-ms-input-placeholder { - color: #000; -} - -@font-face { - font-family: "Source Sans"; - src: url("../font/SourceSansPro-Regular.otf"); -} - -@font-face { - font-family: "Source Sans"; - src: url("../font/SourceSansPro-Light.otf"); - font-weight: 200; -} - -@font-face { - font-family: "Source Sans"; - src: url("../font/SourceSansPro-Semibold.otf"); - font-weight: 600; -} - -body { - margin: 0; - padding: 0; - background: #dfe2e2; - color: #000; - font: 16px "Source Sans", helvetica, arial, sans-serif; - font-weight: 200; -} - -:focus { - outline-color: transparent; - outline-style: none; -} - -.topcoat-icon--menu-stack { - background: url("../img/hamburger_dark.svg") no-repeat; - background-size: cover; -} - -.quarter { - width: 25%; -} - -.half { - width: 50%; -} - -.three-quarters { - width: 75%; -} - -.third { - width: 33.333%; -} - -.two-thirds { - width: 66.666%; -} - -.full { - width: 100%; -} - -.left { - text-align: left; -} - -.center { - text-align: center; -} - -.right { - text-align: right; -} - -.reset-ui { - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - position: relative; - display: inline-block; - vertical-align: top; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - text-overflow: ellipsis; - white-space: nowrap; - overflow: hidden; -} - -/* This file should include color and image variables corresponding to the dark theme */ - -/* Call To Action */ - -/* Icons */ - -/* Navigation Bar */ - -/* Text Input */ - -/* Search Input */ - -/* List */ - -/* Checkbox */ - -/* Overlay */ - -/* Progress bar */ - -/* Checkbox */ - -/* Radio Button */ - -/* Tab bar */ - -/* Switch */ - -/* Icon Button */ - -/* Navigation bar */ - -/* List */ - -/* Search Input */ - -/* Textarea */ - -/* Checkbox */ - -/* Radio */ - -/* Range input */ - -/* Search Input */ - -/* Switch */ - -/* This file should include color and image variables corresponding to the light theme */ - -/* Call To Action */ - -/* Icons */ - -/* Navigation Bar */ - -/* Text Input */ - -/* List */ - -/* Overlay */ - -/* Progress bar */ - -/* Checkbox */ - -/* Range input */ - -/* Radio Button */ - -/* Tab bar */ - -/* Switch */ - -/* Containers */ - -/* Icon Button */ - -/* Navigation bar */ - -/* List */ - -/* Search Input */ - -/* Text Area */ - -/* Checkbox */ - -/* Radio */ - -/* Range input */ - -/* Search Input */ - -/* Switch */ - -/* Text Input */ - -/* Radio input */ - -/* Overlay */ - -/* Textarea */ - -/* Progress bar container */ - -/* Progress bar progress */ - -/* Search input */ - -/* Switch */ - -/* Notification */ \ No newline at end of file diff --git a/www/assets/topcoat-0.7.5/css/topcoat-desktop-light.min.css b/www/assets/topcoat-0.7.5/css/topcoat-desktop-light.min.css deleted file mode 100755 index e682662..0000000 --- a/www/assets/topcoat-0.7.5/css/topcoat-desktop-light.min.css +++ /dev/null @@ -1 +0,0 @@ -.button-bar{display:table;table-layout:fixed;white-space:nowrap;margin:0;padding:0}.button-bar__item{display:table-cell;width:auto;border-radius:0}.button-bar__item>input{position:absolute;overflow:hidden;padding:0;border:0;opacity:.001;z-index:1;vertical-align:top;outline:0}.button-bar__button{border-radius:inherit}.button-bar__item:disabled{opacity:.3;cursor:default;pointer-events:none}.button,.topcoat-button,.topcoat-button--quiet,.topcoat-button--large,.topcoat-button--large--quiet,.topcoat-button--cta,.topcoat-button--large--cta,.topcoat-button-bar__button,.topcoat-button-bar__button--large{position:relative;display:inline-block;vertical-align:top;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;text-decoration:none}.button--quiet{background:transparent;border:1px solid transparent;box-shadow:none}.button--disabled,.topcoat-button:disabled,.topcoat-button--quiet:disabled,.topcoat-button--large:disabled,.topcoat-button--large--quiet:disabled,.topcoat-button--cta:disabled,.topcoat-button--large--cta:disabled,.topcoat-button-bar__button:disabled,.topcoat-button-bar__button--large:disabled{opacity:.3;cursor:default;pointer-events:none}.topcoat-button,.topcoat-button--quiet,.topcoat-button--large,.topcoat-button--large--quiet,.topcoat-button--cta,.topcoat-button--large--cta,.topcoat-button-bar__button,.topcoat-button-bar__button--large{padding:0 .563rem;font-size:12px;line-height:1.313rem;letter-spacing:0;color:#454545;text-shadow:0 1px #fff;vertical-align:top;background-color:#e5e9e8;box-shadow:inset 0 1px #fff;border:1px solid #a5a8a8;border-radius:4px}.topcoat-button:hover,.topcoat-button--quiet:hover,.topcoat-button--large:hover,.topcoat-button--large--quiet:hover,.topcoat-button-bar__button:hover,.topcoat-button-bar__button--large:hover{background-color:#edf1f1}.topcoat-button:active,.topcoat-button--large:active,.topcoat-button-bar__button:active,.topcoat-button-bar__button--large:active,:checked+.topcoat-button-bar__button{background-color:#d3d7d7;box-shadow:inset 0 1px rgba(0,0,0,.12)}.topcoat-button:focus,.topcoat-button--quiet:focus,.topcoat-button--large:focus,.topcoat-button--large--quiet:focus,.topcoat-button--cta:focus,.topcoat-button--large--cta:focus,.topcoat-button-bar__button:focus,.topcoat-button-bar__button--large:focus{border:1px solid #0940fd;box-shadow:0 0 0 2px #6fb5f1;outline:0}.topcoat-button--quiet{background:transparent;border:1px solid transparent;box-shadow:none}.topcoat-button--quiet:hover,.topcoat-button--large--quiet:hover{text-shadow:0 1px #fff;border:1px solid #a5a8a8;box-shadow:inset 0 1px #fff}.topcoat-button--quiet:active,.topcoat-button--large--quiet:active{color:#454545;text-shadow:0 1px #fff;background-color:#d3d7d7;border:1px solid #a5a8a8;box-shadow:inset 0 1px rgba(0,0,0,.12)}.topcoat-button--large,.topcoat-button--large--quiet,.topcoat-button-bar__button--large{font-size:.875rem;font-weight:600;line-height:1.688rem;padding:0 .875rem}.topcoat-button--large--quiet{background:transparent;border:1px solid transparent;box-shadow:none}.topcoat-button--cta,.topcoat-button--large--cta{border:1px solid #143250;background-color:#288edf;box-shadow:inset 0 1px rgba(255,255,255,.36);color:#fff;font-weight:500;text-shadow:0 -1px rgba(0,0,0,.36)}.topcoat-button--cta:hover,.topcoat-button--large--cta:hover{background-color:#509bef}.topcoat-button--cta:active,.topcoat-button--large--cta:active{background-color:#0380e8;box-shadow:inset 0 1px rgba(0,0,0,.12)}.topcoat-button--large--cta{font-size:.875rem;font-weight:600;line-height:1.688rem;padding:0 .875rem}.button-bar,.topcoat-button-bar{display:table;table-layout:fixed;white-space:nowrap;margin:0;padding:0}.button-bar__item,.topcoat-button-bar__item{display:table-cell;width:auto;border-radius:0}.button-bar__item>input,.topcoat-button-bar__item>input{position:absolute;overflow:hidden;padding:0;border:0;opacity:.001;z-index:1;vertical-align:top;outline:0}.button-bar__button{border-radius:inherit}.button-bar__item:disabled{opacity:.3;cursor:default;pointer-events:none}.topcoat-button-bar>.topcoat-button-bar__item:first-child{border-top-left-radius:4px;border-bottom-left-radius:4px}.topcoat-button-bar>.topcoat-button-bar__item:last-child{border-top-right-radius:4px;border-bottom-right-radius:4px}.topcoat-button-bar__item:first-child>.topcoat-button-bar__button,.topcoat-button-bar__item:first-child>.topcoat-button-bar__button--large{border-right:0}.topcoat-button-bar__item:last-child>.topcoat-button-bar__button,.topcoat-button-bar__item:last-child>.topcoat-button-bar__button--large{border-left:0}.topcoat-button-bar__button{border-radius:inherit}.topcoat-button-bar__button:focus,.topcoat-button-bar__button--large:focus{z-index:1}.topcoat-button-bar__button--large{border-radius:inherit}.button{position:relative;display:inline-block;vertical-align:top;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;text-decoration:none}.button--quiet{background:transparent;border:1px solid transparent;box-shadow:none}.button--disabled{opacity:.3;cursor:default;pointer-events:none}.button,.topcoat-button,.topcoat-button--quiet,.topcoat-button--large,.topcoat-button--large--quiet,.topcoat-button--cta,.topcoat-button--large--cta{position:relative;display:inline-block;vertical-align:top;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;text-decoration:none}.button--quiet{background:transparent;border:1px solid transparent;box-shadow:none}.button--disabled,.topcoat-button:disabled,.topcoat-button--quiet:disabled,.topcoat-button--large:disabled,.topcoat-button--large--quiet:disabled,.topcoat-button--cta:disabled,.topcoat-button--large--cta:disabled{opacity:.3;cursor:default;pointer-events:none}.topcoat-button,.topcoat-button--quiet,.topcoat-button--large,.topcoat-button--large--quiet,.topcoat-button--cta,.topcoat-button--large--cta{padding:0 .563rem;font-size:12px;line-height:1.313rem;letter-spacing:0;color:#454545;text-shadow:0 1px #fff;vertical-align:top;background-color:#e5e9e8;box-shadow:inset 0 1px #fff;border:1px solid #a5a8a8;border-radius:4px}.topcoat-button:hover,.topcoat-button--quiet:hover,.topcoat-button--large:hover,.topcoat-button--large--quiet:hover{background-color:#edf1f1}.topcoat-button:active,.topcoat-button--large:active{background-color:#d3d7d7;box-shadow:inset 0 1px rgba(0,0,0,.12)}.topcoat-button:focus,.topcoat-button--quiet:focus,.topcoat-button--large:focus,.topcoat-button--large--quiet:focus,.topcoat-button--cta:focus,.topcoat-button--large--cta:focus{border:1px solid #0940fd;box-shadow:0 0 0 2px #6fb5f1;outline:0}.topcoat-button--quiet{background:transparent;border:1px solid transparent;box-shadow:none}.topcoat-button--quiet:hover,.topcoat-button--large--quiet:hover{text-shadow:0 1px #fff;border:1px solid #a5a8a8;box-shadow:inset 0 1px #fff}.topcoat-button--quiet:active,.topcoat-button--large--quiet:active{color:#454545;text-shadow:0 1px #fff;background-color:#d3d7d7;border:1px solid #a5a8a8;box-shadow:inset 0 1px rgba(0,0,0,.12)}.topcoat-button--large,.topcoat-button--large--quiet{font-size:.875rem;font-weight:600;line-height:1.688rem;padding:0 .875rem}.topcoat-button--large--quiet{background:transparent;border:1px solid transparent;box-shadow:none}.topcoat-button--cta,.topcoat-button--large--cta{border:1px solid #143250;background-color:#288edf;box-shadow:inset 0 1px rgba(255,255,255,.36);color:#fff;font-weight:500;text-shadow:0 -1px rgba(0,0,0,.36)}.topcoat-button--cta:hover,.topcoat-button--large--cta:hover{background-color:#509bef}.topcoat-button--cta:active,.topcoat-button--large--cta:active{background-color:#0380e8;box-shadow:inset 0 1px rgba(0,0,0,.12)}.topcoat-button--large--cta{font-size:.875rem;font-weight:600;line-height:1.688rem;padding:0 .875rem}input[type=checkbox]{position:absolute;overflow:hidden;padding:0;border:0;opacity:.001;z-index:1;vertical-align:top;outline:0}.checkbox{-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;position:relative;display:inline-block;vertical-align:top;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.checkbox__label{position:relative;display:inline-block;vertical-align:top;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.checkbox--disabled{opacity:.3;cursor:default;pointer-events:none}.checkbox:before,.checkbox:after{content:'';position:absolute}.checkbox:before{-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box}input[type=checkbox]{position:absolute;overflow:hidden;padding:0;border:0;opacity:.001;z-index:1;vertical-align:top;outline:0}.checkbox,.topcoat-checkbox__checkmark{-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;position:relative;display:inline-block;vertical-align:top;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.checkbox__label,.topcoat-checkbox{position:relative;display:inline-block;vertical-align:top;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.checkbox--disabled,input[type=checkbox]:disabled+.topcoat-checkbox__checkmark{opacity:.3;cursor:default;pointer-events:none}.checkbox:before,.checkbox:after,.topcoat-checkbox__checkmark:before,.topcoat-checkbox__checkmark:after{content:'';position:absolute}.checkbox:before,.topcoat-checkbox__checkmark:before{-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box}.topcoat-checkbox__checkmark{height:1rem}input[type=checkbox]{height:1rem;width:1rem;margin-top:0;margin-right:-1rem;margin-bottom:-1rem;margin-left:0}input[type=checkbox]:checked+.topcoat-checkbox__checkmark:after{opacity:1}.topcoat-checkbox{line-height:1rem}.topcoat-checkbox__checkmark:before{width:1rem;height:1rem;background:#e5e9e8;border:1px solid #a5a8a8;border-radius:3px;box-shadow:inset 0 1px #fff}.topcoat-checkbox__checkmark{width:1rem;height:1rem}.topcoat-checkbox__checkmark:after{top:2px;left:1px;opacity:0;width:14px;height:4px;background:transparent;border:7px solid #666;border-width:3px;border-top:0;border-right:0;border-radius:1px;-webkit-transform:rotate(-50deg);-ms-transform:rotate(-50deg);transform:rotate(-50deg)}input[type=checkbox]:focus+.topcoat-checkbox__checkmark:before{border:1px solid #0940fd;box-shadow:0 0 0 2px #6fb5f1}.button,.topcoat-icon-button,.topcoat-icon-button--quiet,.topcoat-icon-button--large,.topcoat-icon-button--large--quiet{position:relative;display:inline-block;vertical-align:top;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;text-decoration:none}.button--quiet{background:transparent;border:1px solid transparent;box-shadow:none}.button--disabled,.topcoat-icon-button:disabled,.topcoat-icon-button--quiet:disabled,.topcoat-icon-button--large:disabled,.topcoat-icon-button--large--quiet:disabled{opacity:.3;cursor:default;pointer-events:none}.topcoat-icon-button,.topcoat-icon-button--quiet,.topcoat-icon-button--large,.topcoat-icon-button--large--quiet{padding:0 .25rem;line-height:1.313rem;letter-spacing:0;color:#454545;text-shadow:0 1px #fff;vertical-align:baseline;background-color:#e5e9e8;box-shadow:inset 0 1px #fff;border:1px solid #a5a8a8;border-radius:4px}.topcoat-icon-button:hover,.topcoat-icon-button--quiet:hover,.topcoat-icon-button--large:hover,.topcoat-icon-button--large--quiet:hover{background-color:#edf1f1}.topcoat-icon-button:active{background-color:#d3d7d7;box-shadow:inset 0 1px rgba(0,0,0,.12)}.topcoat-icon-button:focus,.topcoat-icon-button--quiet:focus,.topcoat-icon-button--quiet:hover:focus,.topcoat-icon-button--large:focus,.topcoat-icon-button--large--quiet:focus,.topcoat-icon-button--large--quiet:hover:focus{border:1px solid #0940fd;box-shadow:0 0 0 2px #6fb5f1;outline:0}.topcoat-icon-button--quiet{background:transparent;border:1px solid transparent;box-shadow:none}.topcoat-icon-button--quiet:hover,.topcoat-icon-button--large--quiet:hover{text-shadow:0 1px #fff;border:1px solid #a5a8a8;box-shadow:inset 0 1px #fff}.topcoat-icon-button--quiet:active,.topcoat-icon-button--large--quiet:active{color:#454545;text-shadow:0 1px #fff;background-color:#d3d7d7;border:1px solid #a5a8a8;box-shadow:inset 0 1px rgba(0,0,0,.12)}.topcoat-icon-button--large,.topcoat-icon-button--large--quiet{width:1.688rem;height:1.688rem;line-height:1.688rem}.topcoat-icon-button--large:active{background-color:#d3d7d7;box-shadow:inset 0 1px rgba(0,0,0,.12)}.topcoat-icon-button--large--quiet{background:transparent;border:1px solid transparent;box-shadow:none}.topcoat-icon,.topcoat-icon--large{position:relative;display:inline-block;vertical-align:top;overflow:hidden;width:.81406rem;height:.81406rem;vertical-align:middle;top:-1px}.topcoat-icon--large{width:1.06344rem;height:1.06344rem;top:-2px}.input{padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;vertical-align:top;outline:0}.input:disabled{opacity:.3;cursor:default;pointer-events:none}.list{padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;overflow:auto;-webkit-overflow-scrolling:touch}.list__header{margin:0}.list__container{padding:0;margin:0;list-style-type:none}.list__item{margin:0;padding:0}.navigation-bar{-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;white-space:nowrap;overflow:hidden;word-spacing:0;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.navigation-bar__item{-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;position:relative;display:inline-block;vertical-align:top;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0}.navigation-bar__title{padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.notification{position:relative;display:inline-block;vertical-align:top;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;text-decoration:none}.notification,.topcoat-notification{position:relative;display:inline-block;vertical-align:top;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;text-decoration:none}.topcoat-notification{padding:.15em .5em .2em;border-radius:2px;background-color:#ec514e;color:#fff}input[type=radio]{position:absolute;overflow:hidden;padding:0;border:0;opacity:.001;z-index:1;vertical-align:top;outline:0}.radio-button{-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;position:relative;display:inline-block;vertical-align:top;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.radio-button__label{position:relative;display:inline-block;vertical-align:top;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.radio-button:before,.radio-button:after{content:'';position:absolute;border-radius:100%}.radio-button:after{top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.radio-button:before{-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box}.radio-button--disabled{opacity:.3;cursor:default;pointer-events:none}input[type=radio]{position:absolute;overflow:hidden;padding:0;border:0;opacity:.001;z-index:1;vertical-align:top;outline:0}.radio-button,.topcoat-radio-button__checkmark{-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;position:relative;display:inline-block;vertical-align:top;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.radio-button__label,.topcoat-radio-button{position:relative;display:inline-block;vertical-align:top;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.radio-button:before,.radio-button:after,.topcoat-radio-button__checkmark:before,.topcoat-radio-button__checkmark:after{content:'';position:absolute;border-radius:100%}.radio-button:after,.topcoat-radio-button__checkmark:after{top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.radio-button:before,.topcoat-radio-button__checkmark:before{-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box}.radio-button--disabled,input[type=radio]:disabled+.topcoat-radio-button__checkmark{opacity:.3;cursor:default;pointer-events:none}input[type=radio]{height:1.063rem;width:1.063rem;margin-top:0;margin-right:-1.063rem;margin-bottom:-1.063rem;margin-left:0}input[type=radio]:checked+.topcoat-radio-button__checkmark:after{opacity:1}.topcoat-radio-button{color:#454545;line-height:1.063rem}.topcoat-radio-button__checkmark:before{width:1.063rem;height:1.063rem;background:#e5e9e8;border:1px solid #a5a8a8;box-shadow:inset 0 1px #fff}.topcoat-radio-button__checkmark{position:relative;width:1.063rem;height:1.063rem}.topcoat-radio-button__checkmark:after{opacity:0;width:.313rem;height:.313rem;background:#666;border:1px solid rgba(0,0,0,.1);box-shadow:0 1px rgba(255,255,255,.5);-webkit-transform:none;-ms-transform:none;transform:none;top:.313rem;left:.313rem}input[type=radio]:focus+.topcoat-radio-button__checkmark:before{border:1px solid #0940fd;box-shadow:0 0 0 2px #6fb5f1}.range{padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;vertical-align:top;outline:0;-webkit-appearance:none}.range__thumb{cursor:pointer}.range__thumb--webkit{cursor:pointer;-webkit-appearance:none}.range:disabled{opacity:.3;cursor:default;pointer-events:none}.range,.topcoat-range{padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;vertical-align:top;outline:0;-webkit-appearance:none}.range__thumb,.topcoat-range::-moz-range-thumb{cursor:pointer}.range__thumb--webkit,.topcoat-range::-webkit-slider-thumb{cursor:pointer;-webkit-appearance:none}.range:disabled,.topcoat-range:disabled{opacity:.3;cursor:default;pointer-events:none}.topcoat-range{border-radius:4px;border:1px solid #a5a8a8;background-color:#d3d7d7;height:.5rem;border-radius:15px}.topcoat-range::-moz-range-track{border-radius:4px;border:1px solid #a5a8a8;background-color:#d3d7d7;height:.5rem;border-radius:15px}.topcoat-range::-webkit-slider-thumb{height:1.313rem;width:.75rem;background-color:#e5e9e8;border:1px solid #a5a8a8;border-radius:4px;box-shadow:inset 0 1px #fff}.topcoat-range::-moz-range-thumb{height:1.313rem;width:.75rem;background-color:#e5e9e8;border:1px solid #a5a8a8;border-radius:4px;box-shadow:inset 0 1px #fff}.topcoat-range:focus::-webkit-slider-thumb{border:1px solid #0940fd;box-shadow:0 0 0 2px #6fb5f1}.topcoat-range:focus::-moz-range-thumb{border:1px solid #0940fd;box-shadow:0 0 0 2px #6fb5f1}.search-input{padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;vertical-align:top;outline:0;-webkit-appearance:none}input[type=search]::-webkit-search-cancel-button{-webkit-appearance:none}.search-input:disabled{opacity:.3;cursor:default;pointer-events:none}.search-input,.topcoat-search-input,.topcoat-search-input--large{padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;vertical-align:top;outline:0;-webkit-appearance:none}input[type=search]::-webkit-search-cancel-button{-webkit-appearance:none}.search-input:disabled,.topcoat-search-input:disabled,.topcoat-search-input--large:disabled{opacity:.3;cursor:default;pointer-events:none}.topcoat-search-input,.topcoat-search-input--large{line-height:1.313rem;font-size:12px;border:1px solid #a5a8a8;background-color:#d3d7d7;box-shadow:inset 0 1px rgba(0,0,0,.12);color:#454545;padding:0 0 0 1.3rem;border-radius:15px;background-image:url(../img/search.svg);background-position:1em center;background-repeat:no-repeat;background-size:12px}.topcoat-search-input:focus,.topcoat-search-input--large:focus{background-image:url(../img/search_dark.svg);background-color:#edf1f1;color:#000;border:1px solid #0940fd;box-shadow:0 0 0 2px #6fb5f1}.topcoat-search-input::-webkit-search-cancel-button,.topcoat-search-input::-webkit-search-decoration,.topcoat-search-input--large::-webkit-search-cancel-button,.topcoat-search-input--large::-webkit-search-decoration{margin-right:5px}.topcoat-search-input:focus::-webkit-input-placeholder,.topcoat-search-input:focus::-webkit-input-placeholder{color:#c6c8c8}.topcoat-search-input:disabled::-webkit-input-placeholder{color:#000}.topcoat-search-input:disabled::-moz-placeholder{color:#000}.topcoat-search-input:disabled:-ms-input-placeholder{color:#000}.topcoat-search-input--large{line-height:1.688rem;font-size:.875rem;font-weight:400;padding:0 0 0 1.8rem;border-radius:25px;background-position:1.2em center;background-size:.875rem}.topcoat-search-input--large:disabled{color:#000}.topcoat-search-input--large:disabled::-webkit-input-placeholder{color:#000}.topcoat-search-input--large:disabled::-moz-placeholder{color:#000}.topcoat-search-input--large:disabled:-ms-input-placeholder{color:#000}.switch{position:relative;display:inline-block;vertical-align:top;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box}.switch__input{position:absolute;overflow:hidden;padding:0;border:0;opacity:.001;z-index:1;vertical-align:top;outline:0}.switch__toggle{position:relative;display:inline-block;vertical-align:top;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.switch__toggle:before,.switch__toggle:after{content:'';position:absolute;z-index:-1;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box}.switch--disabled{opacity:.3;cursor:default;pointer-events:none}.switch,.topcoat-switch{position:relative;display:inline-block;vertical-align:top;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box}.switch__input,.topcoat-switch__input{position:absolute;overflow:hidden;padding:0;border:0;opacity:.001;z-index:1;vertical-align:top;outline:0}.switch__toggle,.topcoat-switch__toggle{position:relative;display:inline-block;vertical-align:top;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.switch__toggle:before,.switch__toggle:after,.topcoat-switch__toggle:before,.topcoat-switch__toggle:after{content:'';position:absolute;z-index:-1;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box}.switch--disabled,.topcoat-switch__input:disabled+.topcoat-switch__toggle{opacity:.3;cursor:default;pointer-events:none}.topcoat-switch{font-size:12px;padding:0 .563rem;border-radius:4px;border:1px solid #a5a8a8;overflow:hidden;width:3.5rem}.topcoat-switch__toggle:before,.topcoat-switch__toggle:after{top:-1px;width:2.6rem}.topcoat-switch__toggle:before{content:'ON';color:#0083e8;background-color:#e0f0fa;right:.8rem;padding-left:.75rem}.topcoat-switch__toggle{line-height:1.313rem;height:1.313rem;width:1rem;border-radius:4px;color:#454545;text-shadow:0 1px #fff;background-color:#e5e9e8;border:1px solid #a5a8a8;margin-left:-.6rem;margin-bottom:-1px;margin-top:-1px;box-shadow:inset 0 1px #fff;-webkit-transition:margin-left .05s ease-in-out;transition:margin-left .05s ease-in-out}.topcoat-switch__toggle:after{content:'OFF';background-color:#d3d7d7;left:.8rem;padding-left:.6rem}.topcoat-switch__input:checked+.topcoat-switch__toggle{margin-left:1.85rem}.topcoat-switch__input:focus+.topcoat-switch__toggle{border:1px solid #0940fd;box-shadow:0 0 0 2px #6fb5f1}.topcoat-switch__input:disabled+.topcoat-switch__toggle:after,.topcoat-switch__input:disabled+.topcoat-switch__toggle:before{background:transparent}.button,.topcoat-tab-bar__button{position:relative;display:inline-block;vertical-align:top;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;text-decoration:none}.button--quiet{background:transparent;border:1px solid transparent;box-shadow:none}.button--disabled,.topcoat-tab-bar__button:disabled{opacity:.3;cursor:default;pointer-events:none}.button-bar,.topcoat-tab-bar{display:table;table-layout:fixed;white-space:nowrap;margin:0;padding:0}.button-bar__item,.topcoat-tab-bar__item{display:table-cell;width:auto;border-radius:0}.button-bar__item>input,.topcoat-tab-bar__item>input{position:absolute;overflow:hidden;padding:0;border:0;opacity:.001;z-index:1;vertical-align:top;outline:0}.button-bar__button{border-radius:inherit}.button-bar__item:disabled{opacity:.3;cursor:default;pointer-events:none}.topcoat-tab-bar__button{padding:0 .563rem;height:1.313rem;line-height:1.313rem;letter-spacing:0;color:#454545;text-shadow:0 1px #fff;vertical-align:top;background-color:#e5e9e8;box-shadow:inset 0 1px #fff;border-top:1px solid #a5a8a8}.topcoat-tab-bar__button:active,.topcoat-tab-bar__button--large:active,:checked+.topcoat-tab-bar__button{color:#0083e8;background-color:#e0f0fa;box-shadow:inset 0 0 2px #c0ced8}.topcoat-tab-bar__button:focus,.topcoat-tab-bar__button--large:focus{z-index:1}.input,.topcoat-text-input,.topcoat-text-input--large{padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;vertical-align:top;outline:0}.input:disabled,.topcoat-text-input:disabled,.topcoat-text-input--large:disabled{opacity:.3;cursor:default;pointer-events:none}.topcoat-text-input,.topcoat-text-input--large{line-height:1.313rem;font-size:12px;letter-spacing:0;padding:0 .563rem;border:1px solid #a5a8a8;border-radius:4px;background-color:#d3d7d7;box-shadow:inset 0 1px rgba(0,0,0,.12);color:#454545;vertical-align:top}.topcoat-text-input:focus,.topcoat-text-input--large:focus{background-color:#edf1f1;color:#000;border:1px solid #0940fd;box-shadow:0 0 0 2px #6fb5f1}.topcoat-text-input:disabled::-webkit-input-placeholder{color:#000}.topcoat-text-input:disabled::-moz-placeholder{color:#000}.topcoat-text-input:disabled:-ms-input-placeholder{color:#000}.topcoat-text-input:invalid{border:1px solid #d83b75}.topcoat-text-input--large{line-height:1.688rem;font-size:.875rem}.topcoat-text-input--large:disabled{color:#000}.topcoat-text-input--large:disabled::-webkit-input-placeholder{color:#000}.topcoat-text-input--large:disabled::-moz-placeholder{color:#000}.topcoat-text-input--large:disabled:-ms-input-placeholder{color:#000}.topcoat-text-input--large:invalid{border:1px solid #d83b75}.textarea{-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;vertical-align:top;resize:none;outline:0}.textarea:disabled{opacity:.3;cursor:default;pointer-events:none}.textarea,.topcoat-textarea,.topcoat-textarea--large{-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;vertical-align:top;resize:none;outline:0}.textarea:disabled,.topcoat-textarea:disabled,.topcoat-textarea--large:disabled{opacity:.3;cursor:default;pointer-events:none}.topcoat-textarea,.topcoat-textarea--large{padding:1rem;font-size:1rem;font-weight:400;border-radius:4px;line-height:1.313rem;border:1px solid #a5a8a8;background-color:#d3d7d7;box-shadow:inset 0 1px rgba(0,0,0,.12);color:#454545;letter-spacing:0}.topcoat-textarea:focus,.topcoat-textarea--large:focus{background-color:#edf1f1;color:#000;border:1px solid #0940fd;box-shadow:0 0 0 2px #6fb5f1}.topcoat-textarea:disabled::-webkit-input-placeholder{color:#000}.topcoat-textarea:disabled::-moz-placeholder{color:#000}.topcoat-textarea:disabled:-ms-input-placeholder{color:#000}.topcoat-textarea--large{font-size:1.3rem;line-height:1.688rem}.topcoat-textarea--large:disabled{color:#000}.topcoat-textarea--large:disabled::-webkit-input-placeholder{color:#000}.topcoat-textarea--large:disabled::-moz-placeholder{color:#000}.topcoat-textarea--large:disabled:-ms-input-placeholder{color:#000}@font-face{font-family:"Source Sans";src:url(../font/SourceSansPro-Regular.otf)}@font-face{font-family:"Source Sans";src:url(../font/SourceSansPro-Light.otf);font-weight:200}@font-face{font-family:"Source Sans";src:url(../font/SourceSansPro-Semibold.otf);font-weight:600}body{margin:0;padding:0;background:#dfe2e2;color:#000;font:16px "Source Sans",helvetica,arial,sans-serif;font-weight:200}:focus{outline-color:transparent;outline-style:none}.topcoat-icon--menu-stack{background:url(../img/hamburger_dark.svg) no-repeat;background-size:cover}.quarter{width:25%}.half{width:50%}.three-quarters{width:75%}.third{width:33.333%}.two-thirds{width:66.666%}.full{width:100%}.left{text-align:left}.center{text-align:center}.right{text-align:right}.reset-ui{-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;position:relative;display:inline-block;vertical-align:top;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;text-overflow:ellipsis;white-space:nowrap;overflow:hidden} \ No newline at end of file diff --git a/www/assets/topcoat-0.7.5/css/topcoat-mobile-dark.css b/www/assets/topcoat-0.7.5/css/topcoat-mobile-dark.css deleted file mode 100755 index 0d3aa5f..0000000 --- a/www/assets/topcoat-0.7.5/css/topcoat-mobile-dark.css +++ /dev/null @@ -1,3700 +0,0 @@ -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.button-bar { - display: table; - table-layout: fixed; - white-space: nowrap; - margin: 0; - padding: 0; -} - -.button-bar__item { - display: table-cell; - width: auto; - border-radius: 0; -} - -.button-bar__item > input { - position: absolute; - overflow: hidden; - padding: 0; - border: 0; - opacity: 0.001; - z-index: 1; - vertical-align: top; - outline: none; -} - -.button-bar__button { - border-radius: inherit; -} - -.button-bar__item:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.button, -.topcoat-button, -.topcoat-button--quiet, -.topcoat-button--large, -.topcoat-button--large--quiet, -.topcoat-button--cta, -.topcoat-button--large--cta, -.topcoat-button-bar__button, -.topcoat-button-bar__button--large { - position: relative; - display: inline-block; - vertical-align: top; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - text-overflow: ellipsis; - white-space: nowrap; - overflow: hidden; - text-decoration: none; -} - -.button--quiet { - background: transparent; - border: 1px solid transparent; - box-shadow: none; -} - -.button--disabled, -.topcoat-button:disabled, -.topcoat-button--quiet:disabled, -.topcoat-button--large:disabled, -.topcoat-button--large--quiet:disabled, -.topcoat-button--cta:disabled, -.topcoat-button--large--cta:disabled, -.topcoat-button-bar__button:disabled, -.topcoat-button-bar__button--large:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -.topcoat-button, -.topcoat-button--quiet, -.topcoat-button--large, -.topcoat-button--large--quiet, -.topcoat-button--cta, -.topcoat-button--large--cta, -.topcoat-button-bar__button, -.topcoat-button-bar__button--large { - padding: 0 1.25rem; - font-size: 16px; - line-height: 3rem; - letter-spacing: 1px; - color: #c6c8c8; - text-shadow: 0 -1px rgba(0,0,0,0.69); - vertical-align: top; - background-color: #595b5b; - box-shadow: inset 0 1px #727373; - border: 1px solid #303233; - border-radius: 6px; -} - -.topcoat-button:hover, -.topcoat-button--quiet:hover, -.topcoat-button--large:hover, -.topcoat-button--large--quiet:hover, -.topcoat-button-bar__button:hover, -.topcoat-button-bar__button--large:hover { - background-color: #646666; -} - -.topcoat-button:active, -.topcoat-button--large:active, -.topcoat-button-bar__button:active, -.topcoat-button-bar__button--large:active, -:checked + .topcoat-button-bar__button { - background-color: #404141; - box-shadow: inset 0 1px rgba(0,0,0,0.18); -} - -.topcoat-button:focus, -.topcoat-button--quiet:focus, -.topcoat-button--large:focus, -.topcoat-button--large--quiet:focus, -.topcoat-button--cta:focus, -.topcoat-button--large--cta:focus, -.topcoat-button-bar__button:focus, -.topcoat-button-bar__button--large:focus { - border: 1px solid #0940fd; - box-shadow: 0 0 0 2px #6fb5f1; - outline: 0; -} - -.topcoat-button--quiet { - background: transparent; - border: 1px solid transparent; - box-shadow: none; -} - -.topcoat-button--quiet:hover, -.topcoat-button--large--quiet:hover { - text-shadow: 0 -1px rgba(0,0,0,0.69); - border: 1px solid #303233; - box-shadow: inset 0 1px #727373; -} - -.topcoat-button--quiet:active, -.topcoat-button--large--quiet:active { - color: #c6c8c8; - text-shadow: 0 -1px rgba(0,0,0,0.69); - background-color: #404141; - border: 1px solid #303233; - box-shadow: inset 0 1px rgba(0,0,0,0.18); -} - -.topcoat-button--large, -.topcoat-button--large--quiet, -.topcoat-button-bar__button--large { - font-size: 1.3rem; - font-weight: 400; - line-height: 4.375rem; - padding: 0 1.25rem; -} - -.topcoat-button--large--quiet { - background: transparent; - border: 1px solid transparent; - box-shadow: none; -} - -.topcoat-button--cta, -.topcoat-button--large--cta { - border: 1px solid #143250; - background-color: #288edf; - box-shadow: inset 0 1px rgba(255,255,255,0.36); - color: #fff; - font-weight: 500; - text-shadow: 0 -1px rgba(0,0,0,0.36); -} - -.topcoat-button--cta:hover, -.topcoat-button--large--cta:hover { - background-color: #509bef; -} - -.topcoat-button--cta:active, -.topcoat-button--large--cta:active { - background-color: #1976c3; - box-shadow: inset 0 1px rgba(0,0,0,0.12); -} - -.topcoat-button--large--cta { - font-size: 1.3rem; - font-weight: 400; - line-height: 4.375rem; - padding: 0 1.25rem; -} - -.button-bar, -.topcoat-button-bar { - display: table; - table-layout: fixed; - white-space: nowrap; - margin: 0; - padding: 0; -} - -.button-bar__item, -.topcoat-button-bar__item { - display: table-cell; - width: auto; - border-radius: 0; -} - -.button-bar__item > input, -.topcoat-button-bar__item > input { - position: absolute; - overflow: hidden; - padding: 0; - border: 0; - opacity: 0.001; - z-index: 1; - vertical-align: top; - outline: none; -} - -.button-bar__button { - border-radius: inherit; -} - -.button-bar__item:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/* topdoc - name: Button Bar - description: Component of grouped buttons - modifiers: - :disabled: Disabled state - markup: -
-
- -
-
- -
-
- -
-
- examples: - mobile button bar: http://codepen.io/Topcoat/pen/kdKyg - tags: - - desktop - - light - - dark - - mobile - - button - - group - - bar -*/ - -.topcoat-button-bar > .topcoat-button-bar__item:first-child { - border-top-left-radius: 6px; - border-bottom-left-radius: 6px; -} - -.topcoat-button-bar > .topcoat-button-bar__item:last-child { - border-top-right-radius: 6px; - border-bottom-right-radius: 6px; -} - -.topcoat-button-bar__item:first-child > .topcoat-button-bar__button, -.topcoat-button-bar__item:first-child > .topcoat-button-bar__button--large { - border-right: none; -} - -.topcoat-button-bar__item:last-child > .topcoat-button-bar__button, -.topcoat-button-bar__item:last-child > .topcoat-button-bar__button--large { - border-left: none; -} - -.topcoat-button-bar__button { - border-radius: inherit; -} - -.topcoat-button-bar__button:focus, -.topcoat-button-bar__button--large:focus { - z-index: 1; -} - -/* topdoc - name: Large Button Bar - description: A button bar, only larger - modifiers: - :disabled: Disabled state - markup: -
-
- -
-
- -
-
- -
-
- tags: - - desktop - - light - - dark - - mobile - - button - - group - - bar - - large -*/ - -.topcoat-button-bar__button--large { - border-radius: inherit; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.button { - position: relative; - display: inline-block; - vertical-align: top; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - text-overflow: ellipsis; - white-space: nowrap; - overflow: hidden; - text-decoration: none; -} - -.button--quiet { - background: transparent; - border: 1px solid transparent; - box-shadow: none; -} - -.button--disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.button, -.topcoat-button, -.topcoat-button--quiet, -.topcoat-button--large, -.topcoat-button--large--quiet, -.topcoat-button--cta, -.topcoat-button--large--cta { - position: relative; - display: inline-block; - vertical-align: top; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - text-overflow: ellipsis; - white-space: nowrap; - overflow: hidden; - text-decoration: none; -} - -.button--quiet { - background: transparent; - border: 1px solid transparent; - box-shadow: none; -} - -.button--disabled, -.topcoat-button:disabled, -.topcoat-button--quiet:disabled, -.topcoat-button--large:disabled, -.topcoat-button--large--quiet:disabled, -.topcoat-button--cta:disabled, -.topcoat-button--large--cta:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/* topdoc - name: Button - description: A simple button - modifiers: - :active: Active state - :disabled: Disabled state - :hover: Hover state - :focus: Focused - markup: - - - examples: - mobile button: http://codepen.io/Topcoat/pen/DpKtf - tags: - - desktop - - light - - mobile - - button -*/ - -.topcoat-button, -.topcoat-button--quiet, -.topcoat-button--large, -.topcoat-button--large--quiet, -.topcoat-button--cta, -.topcoat-button--large--cta { - padding: 0 1.25rem; - font-size: 16px; - line-height: 3rem; - letter-spacing: 1px; - color: #c6c8c8; - text-shadow: 0 -1px rgba(0,0,0,0.69); - vertical-align: top; - background-color: #595b5b; - box-shadow: inset 0 1px #727373; - border: 1px solid #303233; - border-radius: 6px; -} - -.topcoat-button:hover, -.topcoat-button--quiet:hover, -.topcoat-button--large:hover, -.topcoat-button--large--quiet:hover { - background-color: #646666; -} - -.topcoat-button:active, -.topcoat-button--large:active { - background-color: #404141; - box-shadow: inset 0 1px rgba(0,0,0,0.18); -} - -.topcoat-button:focus, -.topcoat-button--quiet:focus, -.topcoat-button--large:focus, -.topcoat-button--large--quiet:focus, -.topcoat-button--cta:focus, -.topcoat-button--large--cta:focus { - border: 1px solid #0940fd; - box-shadow: 0 0 0 2px #6fb5f1; - outline: 0; -} - -/* topdoc - name: Quiet Button - description: A simple, yet quiet button - modifiers: - :active: Quiet button active state - :disabled: Disabled state - :hover: Hover state - :focus: Focused - markup: - - - tags: - - desktop - - light - - mobile - - button - - quiet -*/ - -.topcoat-button--quiet { - background: transparent; - border: 1px solid transparent; - box-shadow: none; -} - -.topcoat-button--quiet:hover, -.topcoat-button--large--quiet:hover { - text-shadow: 0 -1px rgba(0,0,0,0.69); - border: 1px solid #303233; - box-shadow: inset 0 1px #727373; -} - -.topcoat-button--quiet:active, -.topcoat-button--large--quiet:active { - color: #c6c8c8; - text-shadow: 0 -1px rgba(0,0,0,0.69); - background-color: #404141; - border: 1px solid #303233; - box-shadow: inset 0 1px rgba(0,0,0,0.18); -} - -/* topdoc - name: Large Button - description: A big ol button - modifiers: - :active: Active state - :disabled: Disabled state - :hover: Hover state - :focus: Focused - markup: - - - tags: - - desktop - - light - - mobile - - button - - large -*/ - -.topcoat-button--large, -.topcoat-button--large--quiet { - font-size: 1.3rem; - font-weight: 400; - line-height: 4.375rem; - padding: 0 1.25rem; -} - -/* topdoc - name: Large Quiet Button - description: A large, yet quiet button - modifiers: - :active: Active state - :disabled: Disabled state - :hover: Hover state - :focus: Focused - markup: - - - tags: - - desktop - - light - - mobile - - button - - large - - quiet -*/ - -.topcoat-button--large--quiet { - background: transparent; - border: 1px solid transparent; - box-shadow: none; -} - -/* topdoc - name: Call To Action Button - description: A CALL TO ARMS, er, ACTION! - modifiers: - :active: Active state - :disabled: Disabled state - :hover: Hover state - :focus: Focused - markup: - - - tags: - - desktop - - light - - mobile - - button - - call to action -*/ - -.topcoat-button--cta, -.topcoat-button--large--cta { - border: 1px solid #143250; - background-color: #288edf; - box-shadow: inset 0 1px rgba(255,255,255,0.36); - color: #fff; - font-weight: 500; - text-shadow: 0 -1px rgba(0,0,0,0.36); -} - -.topcoat-button--cta:hover, -.topcoat-button--large--cta:hover { - background-color: #509bef; -} - -.topcoat-button--cta:active, -.topcoat-button--large--cta:active { - background-color: #1976c3; - box-shadow: inset 0 1px rgba(0,0,0,0.12); -} - -/* topdoc - name: Large Call To Action Button - description: Like call to action, but bigger - modifiers: - :active: Active state - :disabled: Disabled state - :hover: Hover state - :focus: Focused - markup: - - - tags: - - desktop - - light - - mobile - - button - - large - - call to action -*/ - -.topcoat-button--large--cta { - font-size: 1.3rem; - font-weight: 400; - line-height: 4.375rem; - padding: 0 1.25rem; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -input[type="checkbox"] { - position: absolute; - overflow: hidden; - padding: 0; - border: 0; - opacity: 0.001; - z-index: 1; - vertical-align: top; - outline: none; -} - -.checkbox { - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - position: relative; - display: inline-block; - vertical-align: top; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.checkbox__label { - position: relative; - display: inline-block; - vertical-align: top; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.checkbox--disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -.checkbox:before, -.checkbox:after { - content: ''; - position: absolute; -} - -.checkbox:before { - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -input[type="checkbox"] { - position: absolute; - overflow: hidden; - padding: 0; - border: 0; - opacity: 0.001; - z-index: 1; - vertical-align: top; - outline: none; -} - -.checkbox, -.topcoat-checkbox__checkmark { - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - position: relative; - display: inline-block; - vertical-align: top; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.checkbox__label, -.topcoat-checkbox { - position: relative; - display: inline-block; - vertical-align: top; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.checkbox--disabled, -input[type="checkbox"]:disabled + .topcoat-checkbox__checkmark { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -.checkbox:before, -.checkbox:after, -.topcoat-checkbox__checkmark:before, -.topcoat-checkbox__checkmark:after { - content: ''; - position: absolute; -} - -.checkbox:before, -.topcoat-checkbox__checkmark:before { - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; -} - -/* topdoc - name: Checkbox - description: Default skin for Topcoat checkbox - modifiers: - :focus: Focus state - :disabled: Disabled state - markup: - -
-
- - examples: - mobile checkbox: http://codepen.io/Topcoat/pen/piHcs - tags: - - desktop - - light - - mobile - - checkbox -*/ - -.topcoat-checkbox__checkmark { - height: 2rem; -} - -input[type="checkbox"] { - height: 2rem; - width: 2rem; - margin-top: 0; - margin-right: -2rem; - margin-bottom: -2rem; - margin-left: 0; -} - -input[type="checkbox"]:checked + .topcoat-checkbox__checkmark:after { - opacity: 1; -} - -.topcoat-checkbox { - line-height: 2rem; -} - -.topcoat-checkbox__checkmark:before { - width: 2rem; - height: 2rem; - background: #595b5b; - border: 1px solid #303233; - border-radius: 3px; - box-shadow: inset 0 1px #727373; -} - -.topcoat-checkbox__checkmark { - width: 2rem; - height: 2rem; -} - -.topcoat-checkbox__checkmark:after { - top: 1px; - left: 2px; - opacity: 0; - width: 28px; - height: 11px; - background: transparent; - border: 7px solid #fff; - border-width: 7px; - border-top: none; - border-right: none; - border-radius: 2px; - -webkit-transform: rotate(-50deg); - -ms-transform: rotate(-50deg); - transform: rotate(-50deg); -} - -input[type="checkbox"]:focus + .topcoat-checkbox__checkmark:before { - border: 1px solid #0940fd; - box-shadow: 0 0 0 2px #6fb5f1; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.button, -.topcoat-icon-button, -.topcoat-icon-button--quiet, -.topcoat-icon-button--large, -.topcoat-icon-button--large--quiet { - position: relative; - display: inline-block; - vertical-align: top; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - text-overflow: ellipsis; - white-space: nowrap; - overflow: hidden; - text-decoration: none; -} - -.button--quiet { - background: transparent; - border: 1px solid transparent; - box-shadow: none; -} - -.button--disabled, -.topcoat-icon-button:disabled, -.topcoat-icon-button--quiet:disabled, -.topcoat-icon-button--large:disabled, -.topcoat-icon-button--large--quiet:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/* topdoc - name: Icon Button - description: Like button, but it has an icon. - modifiers: - :active: Active state - :disabled: Disabled state - :hover: Hover state - :focus: Focused - markup: - - - tags: - - desktop - - light - - mobile - - button - - icon -*/ - -.topcoat-icon-button, -.topcoat-icon-button--quiet, -.topcoat-icon-button--large, -.topcoat-icon-button--large--quiet { - padding: 0 0.75rem; - line-height: 3rem; - letter-spacing: 1px; - color: #c6c8c8; - text-shadow: 0 -1px rgba(0,0,0,0.69); - vertical-align: baseline; - background-color: #595b5b; - box-shadow: inset 0 1px #727373; - border: 1px solid #303233; - border-radius: 6px; -} - -.topcoat-icon-button:hover, -.topcoat-icon-button--quiet:hover, -.topcoat-icon-button--large:hover, -.topcoat-icon-button--large--quiet:hover { - background-color: #646666; -} - -.topcoat-icon-button:active { - background-color: #404141; - box-shadow: inset 0 1px rgba(0,0,0,0.18); -} - -.topcoat-icon-button:focus, -.topcoat-icon-button--quiet:focus, -.topcoat-icon-button--quiet:hover:focus, -.topcoat-icon-button--large:focus, -.topcoat-icon-button--large--quiet:focus, -.topcoat-icon-button--large--quiet:hover:focus { - border: 1px solid #0940fd; - box-shadow: 0 0 0 2px #6fb5f1; - outline: 0; -} - -/* topdoc - name: Quiet Icon Button - description: Like quiet button, but it has an icon. - modifiers: - :active: Active state - :disabled: Disabled state - :hover: Hover state - :focus: Focused - markup: - - - tags: - - desktop - - light - - mobile - - button - - icon - - quiet -*/ - -.topcoat-icon-button--quiet { - background: transparent; - border: 1px solid transparent; - box-shadow: none; -} - -.topcoat-icon-button--quiet:hover, -.topcoat-icon-button--large--quiet:hover { - text-shadow: 0 -1px rgba(0,0,0,0.69); - border: 1px solid #303233; - box-shadow: inset 0 1px #727373; -} - -.topcoat-icon-button--quiet:active, -.topcoat-icon-button--large--quiet:active { - color: #c6c8c8; - text-shadow: 0 -1px rgba(0,0,0,0.69); - background-color: #404141; - border: 1px solid #303233; - box-shadow: inset 0 1px rgba(0,0,0,0.18); -} - -/* topdoc - name: Large Icon Button - description: Like large button, but it has an icon. - modifiers: - :active: Active state - :disabled: Disabled state - :hover: Hover state - :focus: Focused - markup: - - - tags: - - desktop - - light - - mobile - - button - - icon - - large -*/ - -.topcoat-icon-button--large, -.topcoat-icon-button--large--quiet { - width: 4.375rem; - height: 4.375rem; - line-height: 4.375rem; -} - -.topcoat-icon-button--large:active { - background-color: #404141; - box-shadow: inset 0 1px rgba(0,0,0,0.18); -} - -/* topdoc - name: Large Quiet Icon Button - description: Like large button, but it has an icon and this one is quiet. - modifiers: - :active: Active state - :disabled: Disabled state - :hover: Hover state - markup: - - - tags: - - desktop - - light - - mobile - - button - - icon - - large - - quiet -*/ - -.topcoat-icon-button--large--quiet { - background: transparent; - border: 1px solid transparent; - box-shadow: none; -} - -.topcoat-icon, -.topcoat-icon--large { - position: relative; - display: inline-block; - vertical-align: top; - overflow: hidden; - width: 1.62rem; - height: 1.62rem; - vertical-align: middle; - top: -1px; -} - -.topcoat-icon--large { - width: 2.499999998125rem; - height: 2.499999998125rem; - top: -2px; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.input { - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - vertical-align: top; - outline: none; -} - -.input:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.list { - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - overflow: auto; - -webkit-overflow-scrolling: touch; -} - -.list__header { - margin: 0; -} - -.list__container { - padding: 0; - margin: 0; - list-style-type: none; -} - -.list__item { - margin: 0; - padding: 0; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.list, -.topcoat-list { - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - overflow: auto; - -webkit-overflow-scrolling: touch; -} - -.list__header, -.topcoat-list__header { - margin: 0; -} - -.list__container, -.topcoat-list__container { - padding: 0; - margin: 0; - list-style-type: none; -} - -.list__item, -.topcoat-list__item { - margin: 0; - padding: 0; -} - -/* topdoc - name: List - description: Topcoat default list skin - markup: -
-

Category

-
    -
  • - Item -
  • -
  • - Item -
  • -
  • - Item -
  • -
-
- tags: - - mobile - - list -*/ - -.topcoat-list { - border-top: 1px solid #2f3234; - border-bottom: 1px solid #5e6061; - background-color: #444849; -} - -.topcoat-list__header { - padding: 4px 20px; - font-size: 0.9em; - font-weight: 400; - background-color: #3b3e40; - color: #868888; - text-shadow: 0 -1px 0 rgba(0,0,0,0.3); - border-top: solid 1px rgba(255,255,255,0.1); - border-bottom: solid 1px rgba(255,255,255,0.05); -} - -.topcoat-list__container { - border-top: 1px solid #2f3234; - color: #c6c8c8; -} - -.topcoat-list__item { - padding: 1.25rem; - border-top: 1px solid #5e6061; - border-bottom: 1px solid #2f3234; -} - -.topcoat-list__item:first-child { - border-top: 1px solid rgba(0,0,0,0.05); -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.navigation-bar { - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - white-space: nowrap; - overflow: hidden; - word-spacing: 0; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.navigation-bar__item { - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - position: relative; - display: inline-block; - vertical-align: top; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; -} - -.navigation-bar__title { - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - text-overflow: ellipsis; - white-space: nowrap; - overflow: hidden; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.navigation-bar, -.topcoat-navigation-bar { - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - white-space: nowrap; - overflow: hidden; - word-spacing: 0; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.navigation-bar__item, -.topcoat-navigation-bar__item { - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - position: relative; - display: inline-block; - vertical-align: top; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; -} - -.navigation-bar__title, -.topcoat-navigation-bar__title { - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - text-overflow: ellipsis; - white-space: nowrap; - overflow: hidden; -} - -/* topdoc - name: Navigation Bar - description: A place where navigation goes to drink - markup: -
-
-

Header

-
-
- tags: - - desktop - - light - - mobile - - navigation - - bar -*/ - -.topcoat-navigation-bar { - height: 4.375rem; - padding-left: 1rem; - padding-right: 1rem; - background: #595b5b; - color: #fff; - box-shadow: inset 0 -1px #333434, 0 1px rgba(0,0,0,0.15); -} - -.topcoat-navigation-bar__item { - margin: 0; - line-height: 4.375rem; - vertical-align: top; -} - -.topcoat-navigation-bar__title { - font-size: 1.3rem; - font-weight: 400; - color: #fff; -} - -/* -Copyright 2012 Adobe Systems Inc.; -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - -http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.notification { - position: relative; - display: inline-block; - vertical-align: top; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - text-overflow: ellipsis; - white-space: nowrap; - overflow: hidden; - text-decoration: none; -} - -/* -Copyright 2012 Adobe Systems Inc.; -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - -http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.notification, -.topcoat-notification { - position: relative; - display: inline-block; - vertical-align: top; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - text-overflow: ellipsis; - white-space: nowrap; - overflow: hidden; - text-decoration: none; -} - -/* topdoc - name: Notification - description: Notification badge - markup: - 1 - tags: - - desktop - - light - - mobile - - notification -*/ - -.topcoat-notification { - padding: 0.15em 0.5em 0.2em; - border-radius: 2px; - background-color: #ec514e; - color: #fff; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -input[type="radio"] { - position: absolute; - overflow: hidden; - padding: 0; - border: 0; - opacity: 0.001; - z-index: 1; - vertical-align: top; - outline: none; -} - -.radio-button { - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - position: relative; - display: inline-block; - vertical-align: top; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.radio-button__label { - position: relative; - display: inline-block; - vertical-align: top; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.radio-button:before, -.radio-button:after { - content: ''; - position: absolute; - border-radius: 100%; -} - -.radio-button:after { - top: 50%; - left: 50%; - -webkit-transform: translate(-50%, -50%); - -ms-transform: translate(-50%, -50%); - transform: translate(-50%, -50%); -} - -.radio-button:before { - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; -} - -.radio-button--disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -input[type="radio"] { - position: absolute; - overflow: hidden; - padding: 0; - border: 0; - opacity: 0.001; - z-index: 1; - vertical-align: top; - outline: none; -} - -.radio-button, -.topcoat-radio-button__checkmark { - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - position: relative; - display: inline-block; - vertical-align: top; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.radio-button__label, -.topcoat-radio-button { - position: relative; - display: inline-block; - vertical-align: top; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.radio-button:before, -.radio-button:after, -.topcoat-radio-button__checkmark:before, -.topcoat-radio-button__checkmark:after { - content: ''; - position: absolute; - border-radius: 100%; -} - -.radio-button:after, -.topcoat-radio-button__checkmark:after { - top: 50%; - left: 50%; - -webkit-transform: translate(-50%, -50%); - -ms-transform: translate(-50%, -50%); - transform: translate(-50%, -50%); -} - -.radio-button:before, -.topcoat-radio-button__checkmark:before { - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; -} - -.radio-button--disabled, -input[type="radio"]:disabled + .topcoat-radio-button__checkmark { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/* topdoc - name: Radio Button - description: A button that can play music, but usually just plays ads. - modifiers: - markup: - - -
-
- - -
-
- - -
-
- - - examples: - Mobile Radio Button: http://codepen.io/Topcoat/pen/HDcJj - tags: - - desktop - - light - - mobile - - Radio -*/ - -input[type="radio"] { - height: 1.875rem; - width: 1.875rem; - margin-top: 0; - margin-right: -1.875rem; - margin-bottom: -1.875rem; - margin-left: 0; -} - -input[type="radio"]:checked + .topcoat-radio-button__checkmark:after { - opacity: 1; -} - -.topcoat-radio-button { - color: #c6c8c8; - line-height: 1.875rem; -} - -.topcoat-radio-button__checkmark:before { - width: 1.875rem; - height: 1.875rem; - background: #595b5b; - border: 1px solid #303233; - box-shadow: inset 0 1px #727373; -} - -.topcoat-radio-button__checkmark { - position: relative; - width: 1.875rem; - height: 1.875rem; -} - -.topcoat-radio-button__checkmark:after { - opacity: 0; - width: 0.875rem; - height: 0.875rem; - background: #fff; - border: 1px solid rgba(255,255,255,0.1); - box-shadow: 0 1px rgba(255,255,255,0.5); - -webkit-transform: none; - -ms-transform: none; - transform: none; - top: 7px; - left: 7px; -} - -input[type="radio"]:focus + .topcoat-radio-button__checkmark:before { - border: 1px solid #0940fd; - box-shadow: 0 0 0 2px #6fb5f1; -} - -/* -Copyright 2012 Adobe Systems Inc.; -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - -http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -/* -Copyright 2012 Adobe Systems Inc.; -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - -http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -.range { - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - vertical-align: top; - outline: none; - -webkit-appearance: none; -} - -.range__thumb { - cursor: pointer; -} - -.range__thumb--webkit { - cursor: pointer; - -webkit-appearance: none; -} - -.range:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/* -Copyright 2012 Adobe Systems Inc.; -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - -http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -/* -Copyright 2012 Adobe Systems Inc.; -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - -http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -.range, -.topcoat-range { - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - vertical-align: top; - outline: none; - -webkit-appearance: none; -} - -.range__thumb, -.topcoat-range::-moz-range-thumb { - cursor: pointer; -} - -.range__thumb--webkit, -.topcoat-range::-webkit-slider-thumb { - cursor: pointer; - -webkit-appearance: none; -} - -.range:disabled, -.topcoat-range:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/* topdoc - name: Range - description: Range input - modifiers: - :active: Active state - :disabled: Disabled state - :hover: Hover state - :focus: Focused - markup: - - - examples: - mobile range: http://codepen.io/Topcoat/pen/BskEn - tags: - - desktop - - mobile - - range -*/ - -.topcoat-range { - border-radius: 6px; - border: 1px solid #303233; - background-color: #424546; - height: 1rem; - border-radius: 30px; -} - -.topcoat-range::-moz-range-track { - border-radius: 6px; - border: 1px solid #303233; - background-color: #424546; - height: 1rem; - border-radius: 30px; -} - -.topcoat-range::-webkit-slider-thumb { - height: 3rem; - width: 2rem; - background-color: #595b5b; - border: 1px solid #303233; - border-radius: 6px; - box-shadow: inset 0 1px #727373; -} - -.topcoat-range::-moz-range-thumb { - height: 3rem; - width: 2rem; - background-color: #595b5b; - border: 1px solid #303233; - border-radius: 6px; - box-shadow: inset 0 1px #727373; -} - -.topcoat-range:focus::-webkit-slider-thumb { - border: 1px solid #0940fd; - box-shadow: 0 0 0 2px #6fb5f1; -} - -.topcoat-range:focus::-moz-range-thumb { - border: 1px solid #0940fd; - box-shadow: 0 0 0 2px #6fb5f1; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.search-input { - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - vertical-align: top; - outline: none; - -webkit-appearance: none; -} - -input[type="search"]::-webkit-search-cancel-button { - -webkit-appearance: none; -} - -.search-input:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.search-input, -.topcoat-search-input, -.topcoat-search-input--large { - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - vertical-align: top; - outline: none; - -webkit-appearance: none; -} - -input[type="search"]::-webkit-search-cancel-button { - -webkit-appearance: none; -} - -.search-input:disabled, -.topcoat-search-input:disabled, -.topcoat-search-input--large:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/* topdoc - name: Search Input - description: A text input designed for searching. - modifiers: - :disabled: Disabled state - markup: - - - tags: - - desktop - - light - - mobile - - text - - input - - search - - form -*/ - -.topcoat-search-input, -.topcoat-search-input--large { - line-height: 3rem; - font-size: 16px; - border: 1px solid #303233; - background-color: #404141; - box-shadow: inset 0 1px rgba(0,0,0,0.18); - color: #c6c8c8; - padding: 0 0 0 2rem; - border-radius: 30px; - background-image: url("../img/search.svg"); - background-position: 1em center; - background-repeat: no-repeat; - background-size: 16px; -} - -.topcoat-search-input:focus, -.topcoat-search-input--large:focus { - background-image: url("../img/search_dark.svg"); - background-color: #646666; - color: #fff; - border: 1px solid #0940fd; - box-shadow: 0 0 0 2px #6fb5f1; -} - -.topcoat-search-input::-webkit-search-cancel-button, -.topcoat-search-input::-webkit-search-decoration, -.topcoat-search-input--large::-webkit-search-cancel-button, -.topcoat-search-input--large::-webkit-search-decoration { - margin-right: 5px; -} - -.topcoat-search-input:focus::-webkit-input-placeholder, -.topcoat-search-input:focus::-webkit-input-placeholder { - color: #c6c8c8; -} - -.topcoat-search-input:disabled::-webkit-input-placeholder { - color: #fff; -} - -.topcoat-search-input:disabled::-moz-placeholder { - color: #fff; -} - -.topcoat-search-input:disabled:-ms-input-placeholder { - color: #fff; -} - -/* topdoc - name: Large Search Input - description: A large text input designed for searching. - modifiers: - :disabled: Disabled state - markup: - - - tags: - - desktop - - light - - mobile - - text - - input - - search - - form - - large -*/ - -.topcoat-search-input--large { - line-height: 4.375rem; - font-size: 1.3rem; - font-weight: 200; - padding: 0 0 0 2.9rem; - border-radius: 40px; - background-position: 1.2em center; - background-size: 1.3rem; -} - -.topcoat-search-input--large:disabled { - color: #fff; -} - -.topcoat-search-input--large:disabled::-webkit-input-placeholder { - color: #fff; -} - -.topcoat-search-input--large:disabled::-moz-placeholder { - color: #fff; -} - -.topcoat-search-input--large:disabled:-ms-input-placeholder { - color: #fff; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.switch { - position: relative; - display: inline-block; - vertical-align: top; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; -} - -.switch__input { - position: absolute; - overflow: hidden; - padding: 0; - border: 0; - opacity: 0.001; - z-index: 1; - vertical-align: top; - outline: none; -} - -.switch__toggle { - position: relative; - display: inline-block; - vertical-align: top; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.switch__toggle:before, -.switch__toggle:after { - content: ''; - position: absolute; - z-index: -1; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; -} - -.switch--disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.switch, -.topcoat-switch { - position: relative; - display: inline-block; - vertical-align: top; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; -} - -.switch__input, -.topcoat-switch__input { - position: absolute; - overflow: hidden; - padding: 0; - border: 0; - opacity: 0.001; - z-index: 1; - vertical-align: top; - outline: none; -} - -.switch__toggle, -.topcoat-switch__toggle { - position: relative; - display: inline-block; - vertical-align: top; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.switch__toggle:before, -.switch__toggle:after, -.topcoat-switch__toggle:before, -.topcoat-switch__toggle:after { - content: ''; - position: absolute; - z-index: -1; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; -} - -.switch--disabled, -.topcoat-switch__input:disabled + .topcoat-switch__toggle { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/* topdoc - name: Switch - description: Default skin for Topcoat switch - modifiers: - :focus: Focus state - :disabled: Disabled state - markup: - -
-
- -
-
- - examples: - mobile switch: http://codepen.io/Topcoat/pen/upxds - tags: - - desktop - - light - - mobile - - switch -*/ - -.topcoat-switch { - font-size: 16px; - padding: 0 1.25rem; - border-radius: 6px; - border: 1px solid #303233; - overflow: hidden; - width: 6rem; -} - -.topcoat-switch__toggle:before, -.topcoat-switch__toggle:after { - top: -1px; - width: 5rem; -} - -.topcoat-switch__toggle:before { - content: 'ON'; - color: #5dc1ff; - background-color: #404141; - right: 1rem; - padding-left: 1.5rem; -} - -.topcoat-switch__toggle { - line-height: 3rem; - height: 3rem; - width: 2rem; - border-radius: 6px; - color: #c6c8c8; - text-shadow: 0 -1px rgba(0,0,0,0.69); - background-color: #595b5b; - border: 1px solid #303233; - margin-left: -1.3rem; - margin-bottom: -1px; - margin-top: -1px; - box-shadow: inset 0 1px #727373; - -webkit-transition: margin-left 0.05s ease-in-out; - transition: margin-left 0.05s ease-in-out; -} - -.topcoat-switch__toggle:after { - content: 'OFF'; - background-color: #404141; - left: 1rem; - padding-left: 2rem; -} - -.topcoat-switch__input:checked + .topcoat-switch__toggle { - margin-left: 2.7rem; -} - -.topcoat-switch__input:focus + .topcoat-switch__toggle { - border: 1px solid #0940fd; - box-shadow: 0 0 0 2px #6fb5f1; -} - -.topcoat-switch__input:disabled + .topcoat-switch__toggle:after, -.topcoat-switch__input:disabled + .topcoat-switch__toggle:before { - background: transparent; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.button, -.topcoat-tab-bar__button { - position: relative; - display: inline-block; - vertical-align: top; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - text-overflow: ellipsis; - white-space: nowrap; - overflow: hidden; - text-decoration: none; -} - -.button--quiet { - background: transparent; - border: 1px solid transparent; - box-shadow: none; -} - -.button--disabled, -.topcoat-tab-bar__button:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -.button-bar, -.topcoat-tab-bar { - display: table; - table-layout: fixed; - white-space: nowrap; - margin: 0; - padding: 0; -} - -.button-bar__item, -.topcoat-tab-bar__item { - display: table-cell; - width: auto; - border-radius: 0; -} - -.button-bar__item > input, -.topcoat-tab-bar__item > input { - position: absolute; - overflow: hidden; - padding: 0; - border: 0; - opacity: 0.001; - z-index: 1; - vertical-align: top; - outline: none; -} - -.button-bar__button { - border-radius: inherit; -} - -.button-bar__item:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/* topdoc - name: Tab Bar - description: Component of tab buttons - modifiers: - :disabled: Disabled state - markup: -
- - - -
- examples: - mobile tab bar: http://codepen.io/Topcoat/pen/rJICF - tags: - - desktop - - light - - dark - - mobile - - tab - - group - - bar -*/ - -.topcoat-tab-bar__button { - padding: 0 1.25rem; - height: 3rem; - line-height: 3rem; - letter-spacing: 1px; - color: #c6c8c8; - text-shadow: 0 -1px rgba(0,0,0,0.69); - vertical-align: top; - background-color: #595b5b; - box-shadow: inset 0 1px #727373; - border-top: 1px solid #303233; -} - -.topcoat-tab-bar__button:active, -.topcoat-tab-bar__button--large:active, -:checked + .topcoat-tab-bar__button { - color: #5dc1ff; - background-color: #404141; - box-shadow: inset 0 0 2px #313231; -} - -.topcoat-tab-bar__button:focus, -.topcoat-tab-bar__button--large:focus { - z-index: 1; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.input, -.topcoat-text-input, -.topcoat-text-input--large { - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - vertical-align: top; - outline: none; -} - -.input:disabled, -.topcoat-text-input:disabled, -.topcoat-text-input--large:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/* topdoc - name: Text input - description: Topdoc text input - modifiers: - :disabled: Disabled state - :focus: Focused - :invalid: Hover state - markup: - -
-
- -
-
- - tags: - - desktop - - mobile - - text - - input -*/ - -.topcoat-text-input, -.topcoat-text-input--large { - line-height: 3rem; - font-size: 16px; - letter-spacing: 1px; - padding: 0 1.25rem; - border: 1px solid #303233; - border-radius: 6px; - background-color: #404141; - box-shadow: inset 0 1px rgba(0,0,0,0.18); - color: #c6c8c8; - vertical-align: top; -} - -.topcoat-text-input:focus, -.topcoat-text-input--large:focus { - background-color: #646666; - color: #fff; - border: 1px solid #0940fd; - box-shadow: 0 0 0 2px #6fb5f1; -} - -.topcoat-text-input:disabled::-webkit-input-placeholder { - color: #fff; -} - -.topcoat-text-input:disabled::-moz-placeholder { - color: #fff; -} - -.topcoat-text-input:disabled:-ms-input-placeholder { - color: #fff; -} - -.topcoat-text-input:invalid { - border: 1px solid #d83b75; -} - -/* topdoc - name: Large Text Input - description: A bigger input, still for text. - modifiers: - :disabled: Disabled state - :focus: Focused - :invalid: Hover state - markup: - -
-
- -
-
- - tags: - - desktop - - light - - mobile - - form - - input - - large -*/ - -.topcoat-text-input--large { - line-height: 4.375rem; - font-size: 1.3rem; -} - -.topcoat-text-input--large:disabled { - color: #fff; -} - -.topcoat-text-input--large:disabled::-webkit-input-placeholder { - color: #fff; -} - -.topcoat-text-input--large:disabled::-moz-placeholder { - color: #fff; -} - -.topcoat-text-input--large:disabled:-ms-input-placeholder { - color: #fff; -} - -.topcoat-text-input--large:invalid { - border: 1px solid #d83b75; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.textarea { - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - vertical-align: top; - resize: none; - outline: none; -} - -.textarea:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.textarea, -.topcoat-textarea, -.topcoat-textarea--large { - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - vertical-align: top; - resize: none; - outline: none; -} - -.textarea:disabled, -.topcoat-textarea:disabled, -.topcoat-textarea--large:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/* topdoc - name: Textarea - description: A whole area, just for text. - modifiers: - :disabled: Disabled state - markup: - -
-
- - tags: - - desktop - - light - - mobile - - form - - input - - textarea -*/ - -.topcoat-textarea, -.topcoat-textarea--large { - padding: 2rem; - font-size: 2.5rem; - font-weight: 200; - border-radius: 6px; - line-height: 3rem; - border: 1px solid #303233; - background-color: #404141; - box-shadow: inset 0 1px rgba(0,0,0,0.18); - color: #c6c8c8; - letter-spacing: 1px; -} - -.topcoat-textarea:focus, -.topcoat-textarea--large:focus { - background-color: #646666; - color: #fff; - border: 1px solid #0940fd; - box-shadow: 0 0 0 2px #6fb5f1; -} - -.topcoat-textarea:disabled::-webkit-input-placeholder { - color: #fff; -} - -.topcoat-textarea:disabled::-moz-placeholder { - color: #fff; -} - -.topcoat-textarea:disabled:-ms-input-placeholder { - color: #fff; -} - -/* topdoc - name: Large Textarea - description: A whole area, just for text; now available in large. - modifiers: - :disabled: Disabled state - markup: - -
-
- - tags: - - desktop - - light - - mobile - - form - - input - - textarea -*/ - -.topcoat-textarea--large { - font-size: 3rem; - line-height: 4.375rem; -} - -.topcoat-textarea--large:disabled { - color: #fff; -} - -.topcoat-textarea--large:disabled::-webkit-input-placeholder { - color: #fff; -} - -.topcoat-textarea--large:disabled::-moz-placeholder { - color: #fff; -} - -.topcoat-textarea--large:disabled:-ms-input-placeholder { - color: #fff; -} - -@font-face { - font-family: "Source Sans"; - src: url("../font/SourceSansPro-Regular.otf"); -} - -@font-face { - font-family: "Source Sans"; - src: url("../font/SourceSansPro-Light.otf"); - font-weight: 200; -} - -@font-face { - font-family: "Source Sans"; - src: url("../font/SourceSansPro-Semibold.otf"); - font-weight: 600; -} - -body { - margin: 0; - padding: 0; - background: #4b4d4e; - color: #000; - font: 16px "Source Sans", helvetica, arial, sans-serif; - font-weight: 200; -} - -:focus { - outline-color: transparent; - outline-style: none; -} - -.topcoat-icon--menu-stack { - background: url("../img/hamburger_light.svg") no-repeat; - background-size: cover; -} - -.quarter { - width: 25%; -} - -.half { - width: 50%; -} - -.three-quarters { - width: 75%; -} - -.third { - width: 33.333%; -} - -.two-thirds { - width: 66.666%; -} - -.full { - width: 100%; -} - -.left { - text-align: left; -} - -.center { - text-align: center; -} - -.right { - text-align: right; -} - -.reset-ui { - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - position: relative; - display: inline-block; - vertical-align: top; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - text-overflow: ellipsis; - white-space: nowrap; - overflow: hidden; -} - -/* This file should include color and image variables corresponding to the dark theme */ - -/* Call To Action */ - -/* Icons */ - -/* Navigation Bar */ - -/* Text Input */ - -/* Search Input */ - -/* List */ - -/* Checkbox */ - -/* Overlay */ - -/* Progress bar */ - -/* Checkbox */ - -/* Radio Button */ - -/* Tab bar */ - -/* Switch */ - -/* Icon Button */ - -/* Navigation bar */ - -/* List */ - -/* Search Input */ - -/* Textarea */ - -/* Checkbox */ - -/* Radio */ - -/* Range input */ - -/* Search Input */ - -/* Switch */ - -/* This file should include color and image variables corresponding to the light theme */ - -/* Call To Action */ - -/* Icons */ - -/* Navigation Bar */ - -/* Text Input */ - -/* List */ - -/* Overlay */ - -/* Progress bar */ - -/* Checkbox */ - -/* Range input */ - -/* Radio Button */ - -/* Tab bar */ - -/* Switch */ - -/* Containers */ - -/* Icon Button */ - -/* Navigation bar */ - -/* List */ - -/* Search Input */ - -/* Text Area */ - -/* Checkbox */ - -/* Radio */ - -/* Range input */ - -/* Search Input */ - -/* Switch */ - -/* Text Input */ - -/* Radio input */ - -/* Overlay */ - -/* Textarea */ - -/* Progress bar container */ - -/* Progress bar progress */ - -/* Search input */ - -/* Switch */ - -/* Notification */ \ No newline at end of file diff --git a/www/assets/topcoat-0.7.5/css/topcoat-mobile-dark.min.css b/www/assets/topcoat-0.7.5/css/topcoat-mobile-dark.min.css deleted file mode 100755 index 2ce6f11..0000000 --- a/www/assets/topcoat-0.7.5/css/topcoat-mobile-dark.min.css +++ /dev/null @@ -1 +0,0 @@ -.button-bar{display:table;table-layout:fixed;white-space:nowrap;margin:0;padding:0}.button-bar__item{display:table-cell;width:auto;border-radius:0}.button-bar__item>input{position:absolute;overflow:hidden;padding:0;border:0;opacity:.001;z-index:1;vertical-align:top;outline:0}.button-bar__button{border-radius:inherit}.button-bar__item:disabled{opacity:.3;cursor:default;pointer-events:none}.button,.topcoat-button,.topcoat-button--quiet,.topcoat-button--large,.topcoat-button--large--quiet,.topcoat-button--cta,.topcoat-button--large--cta,.topcoat-button-bar__button,.topcoat-button-bar__button--large{position:relative;display:inline-block;vertical-align:top;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;text-decoration:none}.button--quiet{background:transparent;border:1px solid transparent;box-shadow:none}.button--disabled,.topcoat-button:disabled,.topcoat-button--quiet:disabled,.topcoat-button--large:disabled,.topcoat-button--large--quiet:disabled,.topcoat-button--cta:disabled,.topcoat-button--large--cta:disabled,.topcoat-button-bar__button:disabled,.topcoat-button-bar__button--large:disabled{opacity:.3;cursor:default;pointer-events:none}.topcoat-button,.topcoat-button--quiet,.topcoat-button--large,.topcoat-button--large--quiet,.topcoat-button--cta,.topcoat-button--large--cta,.topcoat-button-bar__button,.topcoat-button-bar__button--large{padding:0 1.25rem;font-size:16px;line-height:3rem;letter-spacing:1px;color:#c6c8c8;text-shadow:0 -1px rgba(0,0,0,.69);vertical-align:top;background-color:#595b5b;box-shadow:inset 0 1px #727373;border:1px solid #303233;border-radius:6px}.topcoat-button:hover,.topcoat-button--quiet:hover,.topcoat-button--large:hover,.topcoat-button--large--quiet:hover,.topcoat-button-bar__button:hover,.topcoat-button-bar__button--large:hover{background-color:#646666}.topcoat-button:active,.topcoat-button--large:active,.topcoat-button-bar__button:active,.topcoat-button-bar__button--large:active,:checked+.topcoat-button-bar__button{background-color:#404141;box-shadow:inset 0 1px rgba(0,0,0,.18)}.topcoat-button:focus,.topcoat-button--quiet:focus,.topcoat-button--large:focus,.topcoat-button--large--quiet:focus,.topcoat-button--cta:focus,.topcoat-button--large--cta:focus,.topcoat-button-bar__button:focus,.topcoat-button-bar__button--large:focus{border:1px solid #0940fd;box-shadow:0 0 0 2px #6fb5f1;outline:0}.topcoat-button--quiet{background:transparent;border:1px solid transparent;box-shadow:none}.topcoat-button--quiet:hover,.topcoat-button--large--quiet:hover{text-shadow:0 -1px rgba(0,0,0,.69);border:1px solid #303233;box-shadow:inset 0 1px #727373}.topcoat-button--quiet:active,.topcoat-button--large--quiet:active{color:#c6c8c8;text-shadow:0 -1px rgba(0,0,0,.69);background-color:#404141;border:1px solid #303233;box-shadow:inset 0 1px rgba(0,0,0,.18)}.topcoat-button--large,.topcoat-button--large--quiet,.topcoat-button-bar__button--large{font-size:1.3rem;font-weight:400;line-height:4.375rem;padding:0 1.25rem}.topcoat-button--large--quiet{background:transparent;border:1px solid transparent;box-shadow:none}.topcoat-button--cta,.topcoat-button--large--cta{border:1px solid #143250;background-color:#288edf;box-shadow:inset 0 1px rgba(255,255,255,.36);color:#fff;font-weight:500;text-shadow:0 -1px rgba(0,0,0,.36)}.topcoat-button--cta:hover,.topcoat-button--large--cta:hover{background-color:#509bef}.topcoat-button--cta:active,.topcoat-button--large--cta:active{background-color:#1976c3;box-shadow:inset 0 1px rgba(0,0,0,.12)}.topcoat-button--large--cta{font-size:1.3rem;font-weight:400;line-height:4.375rem;padding:0 1.25rem}.button-bar,.topcoat-button-bar{display:table;table-layout:fixed;white-space:nowrap;margin:0;padding:0}.button-bar__item,.topcoat-button-bar__item{display:table-cell;width:auto;border-radius:0}.button-bar__item>input,.topcoat-button-bar__item>input{position:absolute;overflow:hidden;padding:0;border:0;opacity:.001;z-index:1;vertical-align:top;outline:0}.button-bar__button{border-radius:inherit}.button-bar__item:disabled{opacity:.3;cursor:default;pointer-events:none}.topcoat-button-bar>.topcoat-button-bar__item:first-child{border-top-left-radius:6px;border-bottom-left-radius:6px}.topcoat-button-bar>.topcoat-button-bar__item:last-child{border-top-right-radius:6px;border-bottom-right-radius:6px}.topcoat-button-bar__item:first-child>.topcoat-button-bar__button,.topcoat-button-bar__item:first-child>.topcoat-button-bar__button--large{border-right:0}.topcoat-button-bar__item:last-child>.topcoat-button-bar__button,.topcoat-button-bar__item:last-child>.topcoat-button-bar__button--large{border-left:0}.topcoat-button-bar__button{border-radius:inherit}.topcoat-button-bar__button:focus,.topcoat-button-bar__button--large:focus{z-index:1}.topcoat-button-bar__button--large{border-radius:inherit}.button{position:relative;display:inline-block;vertical-align:top;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;text-decoration:none}.button--quiet{background:transparent;border:1px solid transparent;box-shadow:none}.button--disabled{opacity:.3;cursor:default;pointer-events:none}.button,.topcoat-button,.topcoat-button--quiet,.topcoat-button--large,.topcoat-button--large--quiet,.topcoat-button--cta,.topcoat-button--large--cta{position:relative;display:inline-block;vertical-align:top;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;text-decoration:none}.button--quiet{background:transparent;border:1px solid transparent;box-shadow:none}.button--disabled,.topcoat-button:disabled,.topcoat-button--quiet:disabled,.topcoat-button--large:disabled,.topcoat-button--large--quiet:disabled,.topcoat-button--cta:disabled,.topcoat-button--large--cta:disabled{opacity:.3;cursor:default;pointer-events:none}.topcoat-button,.topcoat-button--quiet,.topcoat-button--large,.topcoat-button--large--quiet,.topcoat-button--cta,.topcoat-button--large--cta{padding:0 1.25rem;font-size:16px;line-height:3rem;letter-spacing:1px;color:#c6c8c8;text-shadow:0 -1px rgba(0,0,0,.69);vertical-align:top;background-color:#595b5b;box-shadow:inset 0 1px #727373;border:1px solid #303233;border-radius:6px}.topcoat-button:hover,.topcoat-button--quiet:hover,.topcoat-button--large:hover,.topcoat-button--large--quiet:hover{background-color:#646666}.topcoat-button:active,.topcoat-button--large:active{background-color:#404141;box-shadow:inset 0 1px rgba(0,0,0,.18)}.topcoat-button:focus,.topcoat-button--quiet:focus,.topcoat-button--large:focus,.topcoat-button--large--quiet:focus,.topcoat-button--cta:focus,.topcoat-button--large--cta:focus{border:1px solid #0940fd;box-shadow:0 0 0 2px #6fb5f1;outline:0}.topcoat-button--quiet{background:transparent;border:1px solid transparent;box-shadow:none}.topcoat-button--quiet:hover,.topcoat-button--large--quiet:hover{text-shadow:0 -1px rgba(0,0,0,.69);border:1px solid #303233;box-shadow:inset 0 1px #727373}.topcoat-button--quiet:active,.topcoat-button--large--quiet:active{color:#c6c8c8;text-shadow:0 -1px rgba(0,0,0,.69);background-color:#404141;border:1px solid #303233;box-shadow:inset 0 1px rgba(0,0,0,.18)}.topcoat-button--large,.topcoat-button--large--quiet{font-size:1.3rem;font-weight:400;line-height:4.375rem;padding:0 1.25rem}.topcoat-button--large--quiet{background:transparent;border:1px solid transparent;box-shadow:none}.topcoat-button--cta,.topcoat-button--large--cta{border:1px solid #143250;background-color:#288edf;box-shadow:inset 0 1px rgba(255,255,255,.36);color:#fff;font-weight:500;text-shadow:0 -1px rgba(0,0,0,.36)}.topcoat-button--cta:hover,.topcoat-button--large--cta:hover{background-color:#509bef}.topcoat-button--cta:active,.topcoat-button--large--cta:active{background-color:#1976c3;box-shadow:inset 0 1px rgba(0,0,0,.12)}.topcoat-button--large--cta{font-size:1.3rem;font-weight:400;line-height:4.375rem;padding:0 1.25rem}input[type=checkbox]{position:absolute;overflow:hidden;padding:0;border:0;opacity:.001;z-index:1;vertical-align:top;outline:0}.checkbox{-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;position:relative;display:inline-block;vertical-align:top;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.checkbox__label{position:relative;display:inline-block;vertical-align:top;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.checkbox--disabled{opacity:.3;cursor:default;pointer-events:none}.checkbox:before,.checkbox:after{content:'';position:absolute}.checkbox:before{-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box}input[type=checkbox]{position:absolute;overflow:hidden;padding:0;border:0;opacity:.001;z-index:1;vertical-align:top;outline:0}.checkbox,.topcoat-checkbox__checkmark{-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;position:relative;display:inline-block;vertical-align:top;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.checkbox__label,.topcoat-checkbox{position:relative;display:inline-block;vertical-align:top;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.checkbox--disabled,input[type=checkbox]:disabled+.topcoat-checkbox__checkmark{opacity:.3;cursor:default;pointer-events:none}.checkbox:before,.checkbox:after,.topcoat-checkbox__checkmark:before,.topcoat-checkbox__checkmark:after{content:'';position:absolute}.checkbox:before,.topcoat-checkbox__checkmark:before{-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box}.topcoat-checkbox__checkmark{height:2rem}input[type=checkbox]{height:2rem;width:2rem;margin-top:0;margin-right:-2rem;margin-bottom:-2rem;margin-left:0}input[type=checkbox]:checked+.topcoat-checkbox__checkmark:after{opacity:1}.topcoat-checkbox{line-height:2rem}.topcoat-checkbox__checkmark:before{width:2rem;height:2rem;background:#595b5b;border:1px solid #303233;border-radius:3px;box-shadow:inset 0 1px #727373}.topcoat-checkbox__checkmark{width:2rem;height:2rem}.topcoat-checkbox__checkmark:after{top:1px;left:2px;opacity:0;width:28px;height:11px;background:transparent;border:7px solid #fff;border-width:7px;border-top:0;border-right:0;border-radius:2px;-webkit-transform:rotate(-50deg);-ms-transform:rotate(-50deg);transform:rotate(-50deg)}input[type=checkbox]:focus+.topcoat-checkbox__checkmark:before{border:1px solid #0940fd;box-shadow:0 0 0 2px #6fb5f1}.button,.topcoat-icon-button,.topcoat-icon-button--quiet,.topcoat-icon-button--large,.topcoat-icon-button--large--quiet{position:relative;display:inline-block;vertical-align:top;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;text-decoration:none}.button--quiet{background:transparent;border:1px solid transparent;box-shadow:none}.button--disabled,.topcoat-icon-button:disabled,.topcoat-icon-button--quiet:disabled,.topcoat-icon-button--large:disabled,.topcoat-icon-button--large--quiet:disabled{opacity:.3;cursor:default;pointer-events:none}.topcoat-icon-button,.topcoat-icon-button--quiet,.topcoat-icon-button--large,.topcoat-icon-button--large--quiet{padding:0 .75rem;line-height:3rem;letter-spacing:1px;color:#c6c8c8;text-shadow:0 -1px rgba(0,0,0,.69);vertical-align:baseline;background-color:#595b5b;box-shadow:inset 0 1px #727373;border:1px solid #303233;border-radius:6px}.topcoat-icon-button:hover,.topcoat-icon-button--quiet:hover,.topcoat-icon-button--large:hover,.topcoat-icon-button--large--quiet:hover{background-color:#646666}.topcoat-icon-button:active{background-color:#404141;box-shadow:inset 0 1px rgba(0,0,0,.18)}.topcoat-icon-button:focus,.topcoat-icon-button--quiet:focus,.topcoat-icon-button--quiet:hover:focus,.topcoat-icon-button--large:focus,.topcoat-icon-button--large--quiet:focus,.topcoat-icon-button--large--quiet:hover:focus{border:1px solid #0940fd;box-shadow:0 0 0 2px #6fb5f1;outline:0}.topcoat-icon-button--quiet{background:transparent;border:1px solid transparent;box-shadow:none}.topcoat-icon-button--quiet:hover,.topcoat-icon-button--large--quiet:hover{text-shadow:0 -1px rgba(0,0,0,.69);border:1px solid #303233;box-shadow:inset 0 1px #727373}.topcoat-icon-button--quiet:active,.topcoat-icon-button--large--quiet:active{color:#c6c8c8;text-shadow:0 -1px rgba(0,0,0,.69);background-color:#404141;border:1px solid #303233;box-shadow:inset 0 1px rgba(0,0,0,.18)}.topcoat-icon-button--large,.topcoat-icon-button--large--quiet{width:4.375rem;height:4.375rem;line-height:4.375rem}.topcoat-icon-button--large:active{background-color:#404141;box-shadow:inset 0 1px rgba(0,0,0,.18)}.topcoat-icon-button--large--quiet{background:transparent;border:1px solid transparent;box-shadow:none}.topcoat-icon,.topcoat-icon--large{position:relative;display:inline-block;vertical-align:top;overflow:hidden;width:1.62rem;height:1.62rem;vertical-align:middle;top:-1px}.topcoat-icon--large{width:2.499999998125rem;height:2.499999998125rem;top:-2px}.input{padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;vertical-align:top;outline:0}.input:disabled{opacity:.3;cursor:default;pointer-events:none}.list{padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;overflow:auto;-webkit-overflow-scrolling:touch}.list__header{margin:0}.list__container{padding:0;margin:0;list-style-type:none}.list__item{margin:0;padding:0}.list,.topcoat-list{padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;overflow:auto;-webkit-overflow-scrolling:touch}.list__header,.topcoat-list__header{margin:0}.list__container,.topcoat-list__container{padding:0;margin:0;list-style-type:none}.list__item,.topcoat-list__item{margin:0;padding:0}.topcoat-list{border-top:1px solid #2f3234;border-bottom:1px solid #5e6061;background-color:#444849}.topcoat-list__header{padding:4px 20px;font-size:.9em;font-weight:400;background-color:#3b3e40;color:#868888;text-shadow:0 -1px 0 rgba(0,0,0,.3);border-top:solid 1px rgba(255,255,255,.1);border-bottom:solid 1px rgba(255,255,255,.05)}.topcoat-list__container{border-top:1px solid #2f3234;color:#c6c8c8}.topcoat-list__item{padding:1.25rem;border-top:1px solid #5e6061;border-bottom:1px solid #2f3234}.topcoat-list__item:first-child{border-top:1px solid rgba(0,0,0,.05)}.navigation-bar{-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;white-space:nowrap;overflow:hidden;word-spacing:0;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.navigation-bar__item{-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;position:relative;display:inline-block;vertical-align:top;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0}.navigation-bar__title{padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.navigation-bar,.topcoat-navigation-bar{-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;white-space:nowrap;overflow:hidden;word-spacing:0;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.navigation-bar__item,.topcoat-navigation-bar__item{-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;position:relative;display:inline-block;vertical-align:top;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0}.navigation-bar__title,.topcoat-navigation-bar__title{padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.topcoat-navigation-bar{height:4.375rem;padding-left:1rem;padding-right:1rem;background:#595b5b;color:#fff;box-shadow:inset 0 -1px #333434,0 1px rgba(0,0,0,.15)}.topcoat-navigation-bar__item{margin:0;line-height:4.375rem;vertical-align:top}.topcoat-navigation-bar__title{font-size:1.3rem;font-weight:400;color:#fff}.notification{position:relative;display:inline-block;vertical-align:top;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;text-decoration:none}.notification,.topcoat-notification{position:relative;display:inline-block;vertical-align:top;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;text-decoration:none}.topcoat-notification{padding:.15em .5em .2em;border-radius:2px;background-color:#ec514e;color:#fff}input[type=radio]{position:absolute;overflow:hidden;padding:0;border:0;opacity:.001;z-index:1;vertical-align:top;outline:0}.radio-button{-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;position:relative;display:inline-block;vertical-align:top;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.radio-button__label{position:relative;display:inline-block;vertical-align:top;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.radio-button:before,.radio-button:after{content:'';position:absolute;border-radius:100%}.radio-button:after{top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.radio-button:before{-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box}.radio-button--disabled{opacity:.3;cursor:default;pointer-events:none}input[type=radio]{position:absolute;overflow:hidden;padding:0;border:0;opacity:.001;z-index:1;vertical-align:top;outline:0}.radio-button,.topcoat-radio-button__checkmark{-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;position:relative;display:inline-block;vertical-align:top;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.radio-button__label,.topcoat-radio-button{position:relative;display:inline-block;vertical-align:top;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.radio-button:before,.radio-button:after,.topcoat-radio-button__checkmark:before,.topcoat-radio-button__checkmark:after{content:'';position:absolute;border-radius:100%}.radio-button:after,.topcoat-radio-button__checkmark:after{top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.radio-button:before,.topcoat-radio-button__checkmark:before{-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box}.radio-button--disabled,input[type=radio]:disabled+.topcoat-radio-button__checkmark{opacity:.3;cursor:default;pointer-events:none}input[type=radio]{height:1.875rem;width:1.875rem;margin-top:0;margin-right:-1.875rem;margin-bottom:-1.875rem;margin-left:0}input[type=radio]:checked+.topcoat-radio-button__checkmark:after{opacity:1}.topcoat-radio-button{color:#c6c8c8;line-height:1.875rem}.topcoat-radio-button__checkmark:before{width:1.875rem;height:1.875rem;background:#595b5b;border:1px solid #303233;box-shadow:inset 0 1px #727373}.topcoat-radio-button__checkmark{position:relative;width:1.875rem;height:1.875rem}.topcoat-radio-button__checkmark:after{opacity:0;width:.875rem;height:.875rem;background:#fff;border:1px solid rgba(255,255,255,.1);box-shadow:0 1px rgba(255,255,255,.5);-webkit-transform:none;-ms-transform:none;transform:none;top:7px;left:7px}input[type=radio]:focus+.topcoat-radio-button__checkmark:before{border:1px solid #0940fd;box-shadow:0 0 0 2px #6fb5f1}.range{padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;vertical-align:top;outline:0;-webkit-appearance:none}.range__thumb{cursor:pointer}.range__thumb--webkit{cursor:pointer;-webkit-appearance:none}.range:disabled{opacity:.3;cursor:default;pointer-events:none}.range,.topcoat-range{padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;vertical-align:top;outline:0;-webkit-appearance:none}.range__thumb,.topcoat-range::-moz-range-thumb{cursor:pointer}.range__thumb--webkit,.topcoat-range::-webkit-slider-thumb{cursor:pointer;-webkit-appearance:none}.range:disabled,.topcoat-range:disabled{opacity:.3;cursor:default;pointer-events:none}.topcoat-range{border-radius:6px;border:1px solid #303233;background-color:#424546;height:1rem;border-radius:30px}.topcoat-range::-moz-range-track{border-radius:6px;border:1px solid #303233;background-color:#424546;height:1rem;border-radius:30px}.topcoat-range::-webkit-slider-thumb{height:3rem;width:2rem;background-color:#595b5b;border:1px solid #303233;border-radius:6px;box-shadow:inset 0 1px #727373}.topcoat-range::-moz-range-thumb{height:3rem;width:2rem;background-color:#595b5b;border:1px solid #303233;border-radius:6px;box-shadow:inset 0 1px #727373}.topcoat-range:focus::-webkit-slider-thumb{border:1px solid #0940fd;box-shadow:0 0 0 2px #6fb5f1}.topcoat-range:focus::-moz-range-thumb{border:1px solid #0940fd;box-shadow:0 0 0 2px #6fb5f1}.search-input{padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;vertical-align:top;outline:0;-webkit-appearance:none}input[type=search]::-webkit-search-cancel-button{-webkit-appearance:none}.search-input:disabled{opacity:.3;cursor:default;pointer-events:none}.search-input,.topcoat-search-input,.topcoat-search-input--large{padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;vertical-align:top;outline:0;-webkit-appearance:none}input[type=search]::-webkit-search-cancel-button{-webkit-appearance:none}.search-input:disabled,.topcoat-search-input:disabled,.topcoat-search-input--large:disabled{opacity:.3;cursor:default;pointer-events:none}.topcoat-search-input,.topcoat-search-input--large{line-height:3rem;font-size:16px;border:1px solid #303233;background-color:#404141;box-shadow:inset 0 1px rgba(0,0,0,.18);color:#c6c8c8;padding:0 0 0 2rem;border-radius:30px;background-image:url(../img/search.svg);background-position:1em center;background-repeat:no-repeat;background-size:16px}.topcoat-search-input:focus,.topcoat-search-input--large:focus{background-image:url(../img/search_dark.svg);background-color:#646666;color:#fff;border:1px solid #0940fd;box-shadow:0 0 0 2px #6fb5f1}.topcoat-search-input::-webkit-search-cancel-button,.topcoat-search-input::-webkit-search-decoration,.topcoat-search-input--large::-webkit-search-cancel-button,.topcoat-search-input--large::-webkit-search-decoration{margin-right:5px}.topcoat-search-input:focus::-webkit-input-placeholder,.topcoat-search-input:focus::-webkit-input-placeholder{color:#c6c8c8}.topcoat-search-input:disabled::-webkit-input-placeholder{color:#fff}.topcoat-search-input:disabled::-moz-placeholder{color:#fff}.topcoat-search-input:disabled:-ms-input-placeholder{color:#fff}.topcoat-search-input--large{line-height:4.375rem;font-size:1.3rem;font-weight:200;padding:0 0 0 2.9rem;border-radius:40px;background-position:1.2em center;background-size:1.3rem}.topcoat-search-input--large:disabled{color:#fff}.topcoat-search-input--large:disabled::-webkit-input-placeholder{color:#fff}.topcoat-search-input--large:disabled::-moz-placeholder{color:#fff}.topcoat-search-input--large:disabled:-ms-input-placeholder{color:#fff}.switch{position:relative;display:inline-block;vertical-align:top;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box}.switch__input{position:absolute;overflow:hidden;padding:0;border:0;opacity:.001;z-index:1;vertical-align:top;outline:0}.switch__toggle{position:relative;display:inline-block;vertical-align:top;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.switch__toggle:before,.switch__toggle:after{content:'';position:absolute;z-index:-1;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box}.switch--disabled{opacity:.3;cursor:default;pointer-events:none}.switch,.topcoat-switch{position:relative;display:inline-block;vertical-align:top;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box}.switch__input,.topcoat-switch__input{position:absolute;overflow:hidden;padding:0;border:0;opacity:.001;z-index:1;vertical-align:top;outline:0}.switch__toggle,.topcoat-switch__toggle{position:relative;display:inline-block;vertical-align:top;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.switch__toggle:before,.switch__toggle:after,.topcoat-switch__toggle:before,.topcoat-switch__toggle:after{content:'';position:absolute;z-index:-1;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box}.switch--disabled,.topcoat-switch__input:disabled+.topcoat-switch__toggle{opacity:.3;cursor:default;pointer-events:none}.topcoat-switch{font-size:16px;padding:0 1.25rem;border-radius:6px;border:1px solid #303233;overflow:hidden;width:6rem}.topcoat-switch__toggle:before,.topcoat-switch__toggle:after{top:-1px;width:5rem}.topcoat-switch__toggle:before{content:'ON';color:#5dc1ff;background-color:#404141;right:1rem;padding-left:1.5rem}.topcoat-switch__toggle{line-height:3rem;height:3rem;width:2rem;border-radius:6px;color:#c6c8c8;text-shadow:0 -1px rgba(0,0,0,.69);background-color:#595b5b;border:1px solid #303233;margin-left:-1.3rem;margin-bottom:-1px;margin-top:-1px;box-shadow:inset 0 1px #727373;-webkit-transition:margin-left .05s ease-in-out;transition:margin-left .05s ease-in-out}.topcoat-switch__toggle:after{content:'OFF';background-color:#404141;left:1rem;padding-left:2rem}.topcoat-switch__input:checked+.topcoat-switch__toggle{margin-left:2.7rem}.topcoat-switch__input:focus+.topcoat-switch__toggle{border:1px solid #0940fd;box-shadow:0 0 0 2px #6fb5f1}.topcoat-switch__input:disabled+.topcoat-switch__toggle:after,.topcoat-switch__input:disabled+.topcoat-switch__toggle:before{background:transparent}.button,.topcoat-tab-bar__button{position:relative;display:inline-block;vertical-align:top;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;text-decoration:none}.button--quiet{background:transparent;border:1px solid transparent;box-shadow:none}.button--disabled,.topcoat-tab-bar__button:disabled{opacity:.3;cursor:default;pointer-events:none}.button-bar,.topcoat-tab-bar{display:table;table-layout:fixed;white-space:nowrap;margin:0;padding:0}.button-bar__item,.topcoat-tab-bar__item{display:table-cell;width:auto;border-radius:0}.button-bar__item>input,.topcoat-tab-bar__item>input{position:absolute;overflow:hidden;padding:0;border:0;opacity:.001;z-index:1;vertical-align:top;outline:0}.button-bar__button{border-radius:inherit}.button-bar__item:disabled{opacity:.3;cursor:default;pointer-events:none}.topcoat-tab-bar__button{padding:0 1.25rem;height:3rem;line-height:3rem;letter-spacing:1px;color:#c6c8c8;text-shadow:0 -1px rgba(0,0,0,.69);vertical-align:top;background-color:#595b5b;box-shadow:inset 0 1px #727373;border-top:1px solid #303233}.topcoat-tab-bar__button:active,.topcoat-tab-bar__button--large:active,:checked+.topcoat-tab-bar__button{color:#5dc1ff;background-color:#404141;box-shadow:inset 0 0 2px #313231}.topcoat-tab-bar__button:focus,.topcoat-tab-bar__button--large:focus{z-index:1}.input,.topcoat-text-input,.topcoat-text-input--large{padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;vertical-align:top;outline:0}.input:disabled,.topcoat-text-input:disabled,.topcoat-text-input--large:disabled{opacity:.3;cursor:default;pointer-events:none}.topcoat-text-input,.topcoat-text-input--large{line-height:3rem;font-size:16px;letter-spacing:1px;padding:0 1.25rem;border:1px solid #303233;border-radius:6px;background-color:#404141;box-shadow:inset 0 1px rgba(0,0,0,.18);color:#c6c8c8;vertical-align:top}.topcoat-text-input:focus,.topcoat-text-input--large:focus{background-color:#646666;color:#fff;border:1px solid #0940fd;box-shadow:0 0 0 2px #6fb5f1}.topcoat-text-input:disabled::-webkit-input-placeholder{color:#fff}.topcoat-text-input:disabled::-moz-placeholder{color:#fff}.topcoat-text-input:disabled:-ms-input-placeholder{color:#fff}.topcoat-text-input:invalid{border:1px solid #d83b75}.topcoat-text-input--large{line-height:4.375rem;font-size:1.3rem}.topcoat-text-input--large:disabled{color:#fff}.topcoat-text-input--large:disabled::-webkit-input-placeholder{color:#fff}.topcoat-text-input--large:disabled::-moz-placeholder{color:#fff}.topcoat-text-input--large:disabled:-ms-input-placeholder{color:#fff}.topcoat-text-input--large:invalid{border:1px solid #d83b75}.textarea{-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;vertical-align:top;resize:none;outline:0}.textarea:disabled{opacity:.3;cursor:default;pointer-events:none}.textarea,.topcoat-textarea,.topcoat-textarea--large{-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;vertical-align:top;resize:none;outline:0}.textarea:disabled,.topcoat-textarea:disabled,.topcoat-textarea--large:disabled{opacity:.3;cursor:default;pointer-events:none}.topcoat-textarea,.topcoat-textarea--large{padding:2rem;font-size:2.5rem;font-weight:200;border-radius:6px;line-height:3rem;border:1px solid #303233;background-color:#404141;box-shadow:inset 0 1px rgba(0,0,0,.18);color:#c6c8c8;letter-spacing:1px}.topcoat-textarea:focus,.topcoat-textarea--large:focus{background-color:#646666;color:#fff;border:1px solid #0940fd;box-shadow:0 0 0 2px #6fb5f1}.topcoat-textarea:disabled::-webkit-input-placeholder{color:#fff}.topcoat-textarea:disabled::-moz-placeholder{color:#fff}.topcoat-textarea:disabled:-ms-input-placeholder{color:#fff}.topcoat-textarea--large{font-size:3rem;line-height:4.375rem}.topcoat-textarea--large:disabled{color:#fff}.topcoat-textarea--large:disabled::-webkit-input-placeholder{color:#fff}.topcoat-textarea--large:disabled::-moz-placeholder{color:#fff}.topcoat-textarea--large:disabled:-ms-input-placeholder{color:#fff}@font-face{font-family:"Source Sans";src:url(../font/SourceSansPro-Regular.otf)}@font-face{font-family:"Source Sans";src:url(../font/SourceSansPro-Light.otf);font-weight:200}@font-face{font-family:"Source Sans";src:url(../font/SourceSansPro-Semibold.otf);font-weight:600}body{margin:0;padding:0;background:#4b4d4e;color:#000;font:16px "Source Sans",helvetica,arial,sans-serif;font-weight:200}:focus{outline-color:transparent;outline-style:none}.topcoat-icon--menu-stack{background:url(../img/hamburger_light.svg) no-repeat;background-size:cover}.quarter{width:25%}.half{width:50%}.three-quarters{width:75%}.third{width:33.333%}.two-thirds{width:66.666%}.full{width:100%}.left{text-align:left}.center{text-align:center}.right{text-align:right}.reset-ui{-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;position:relative;display:inline-block;vertical-align:top;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;text-overflow:ellipsis;white-space:nowrap;overflow:hidden} \ No newline at end of file diff --git a/www/assets/topcoat-0.7.5/css/topcoat-mobile-light.css b/www/assets/topcoat-0.7.5/css/topcoat-mobile-light.css deleted file mode 100755 index 6735055..0000000 --- a/www/assets/topcoat-0.7.5/css/topcoat-mobile-light.css +++ /dev/null @@ -1,3700 +0,0 @@ -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.button-bar { - display: table; - table-layout: fixed; - white-space: nowrap; - margin: 0; - padding: 0; -} - -.button-bar__item { - display: table-cell; - width: auto; - border-radius: 0; -} - -.button-bar__item > input { - position: absolute; - overflow: hidden; - padding: 0; - border: 0; - opacity: 0.001; - z-index: 1; - vertical-align: top; - outline: none; -} - -.button-bar__button { - border-radius: inherit; -} - -.button-bar__item:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.button, -.topcoat-button, -.topcoat-button--quiet, -.topcoat-button--large, -.topcoat-button--large--quiet, -.topcoat-button--cta, -.topcoat-button--large--cta, -.topcoat-button-bar__button, -.topcoat-button-bar__button--large { - position: relative; - display: inline-block; - vertical-align: top; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - text-overflow: ellipsis; - white-space: nowrap; - overflow: hidden; - text-decoration: none; -} - -.button--quiet { - background: transparent; - border: 1px solid transparent; - box-shadow: none; -} - -.button--disabled, -.topcoat-button:disabled, -.topcoat-button--quiet:disabled, -.topcoat-button--large:disabled, -.topcoat-button--large--quiet:disabled, -.topcoat-button--cta:disabled, -.topcoat-button--large--cta:disabled, -.topcoat-button-bar__button:disabled, -.topcoat-button-bar__button--large:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -.topcoat-button, -.topcoat-button--quiet, -.topcoat-button--large, -.topcoat-button--large--quiet, -.topcoat-button--cta, -.topcoat-button--large--cta, -.topcoat-button-bar__button, -.topcoat-button-bar__button--large { - padding: 0 1.25rem; - font-size: 16px; - line-height: 3rem; - letter-spacing: 1px; - color: #454545; - text-shadow: 0 1px #fff; - vertical-align: top; - background-color: #e5e9e8; - box-shadow: inset 0 1px #fff; - border: 1px solid #a5a8a8; - border-radius: 6px; -} - -.topcoat-button:hover, -.topcoat-button--quiet:hover, -.topcoat-button--large:hover, -.topcoat-button--large--quiet:hover, -.topcoat-button-bar__button:hover, -.topcoat-button-bar__button--large:hover { - background-color: #edf1f1; -} - -.topcoat-button:active, -.topcoat-button--large:active, -.topcoat-button-bar__button:active, -.topcoat-button-bar__button--large:active, -:checked + .topcoat-button-bar__button { - background-color: #d3d7d7; - box-shadow: inset 0 1px rgba(0,0,0,0.12); -} - -.topcoat-button:focus, -.topcoat-button--quiet:focus, -.topcoat-button--large:focus, -.topcoat-button--large--quiet:focus, -.topcoat-button--cta:focus, -.topcoat-button--large--cta:focus, -.topcoat-button-bar__button:focus, -.topcoat-button-bar__button--large:focus { - border: 1px solid #0940fd; - box-shadow: 0 0 0 2px #6fb5f1; - outline: 0; -} - -.topcoat-button--quiet { - background: transparent; - border: 1px solid transparent; - box-shadow: none; -} - -.topcoat-button--quiet:hover, -.topcoat-button--large--quiet:hover { - text-shadow: 0 1px #fff; - border: 1px solid #a5a8a8; - box-shadow: inset 0 1px #fff; -} - -.topcoat-button--quiet:active, -.topcoat-button--large--quiet:active { - color: #454545; - text-shadow: 0 1px #fff; - background-color: #d3d7d7; - border: 1px solid #a5a8a8; - box-shadow: inset 0 1px rgba(0,0,0,0.12); -} - -.topcoat-button--large, -.topcoat-button--large--quiet, -.topcoat-button-bar__button--large { - font-size: 1.3rem; - font-weight: 400; - line-height: 4.375rem; - padding: 0 1.25rem; -} - -.topcoat-button--large--quiet { - background: transparent; - border: 1px solid transparent; - box-shadow: none; -} - -.topcoat-button--cta, -.topcoat-button--large--cta { - border: 1px solid #143250; - background-color: #288edf; - box-shadow: inset 0 1px rgba(255,255,255,0.36); - color: #fff; - font-weight: 500; - text-shadow: 0 -1px rgba(0,0,0,0.36); -} - -.topcoat-button--cta:hover, -.topcoat-button--large--cta:hover { - background-color: #509bef; -} - -.topcoat-button--cta:active, -.topcoat-button--large--cta:active { - background-color: #0380e8; - box-shadow: inset 0 1px rgba(0,0,0,0.12); -} - -.topcoat-button--large--cta { - font-size: 1.3rem; - font-weight: 400; - line-height: 4.375rem; - padding: 0 1.25rem; -} - -.button-bar, -.topcoat-button-bar { - display: table; - table-layout: fixed; - white-space: nowrap; - margin: 0; - padding: 0; -} - -.button-bar__item, -.topcoat-button-bar__item { - display: table-cell; - width: auto; - border-radius: 0; -} - -.button-bar__item > input, -.topcoat-button-bar__item > input { - position: absolute; - overflow: hidden; - padding: 0; - border: 0; - opacity: 0.001; - z-index: 1; - vertical-align: top; - outline: none; -} - -.button-bar__button { - border-radius: inherit; -} - -.button-bar__item:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/* topdoc - name: Button Bar - description: Component of grouped buttons - modifiers: - :disabled: Disabled state - markup: -
-
- -
-
- -
-
- -
-
- examples: - mobile button bar: http://codepen.io/Topcoat/pen/kdKyg - tags: - - desktop - - light - - dark - - mobile - - button - - group - - bar -*/ - -.topcoat-button-bar > .topcoat-button-bar__item:first-child { - border-top-left-radius: 6px; - border-bottom-left-radius: 6px; -} - -.topcoat-button-bar > .topcoat-button-bar__item:last-child { - border-top-right-radius: 6px; - border-bottom-right-radius: 6px; -} - -.topcoat-button-bar__item:first-child > .topcoat-button-bar__button, -.topcoat-button-bar__item:first-child > .topcoat-button-bar__button--large { - border-right: none; -} - -.topcoat-button-bar__item:last-child > .topcoat-button-bar__button, -.topcoat-button-bar__item:last-child > .topcoat-button-bar__button--large { - border-left: none; -} - -.topcoat-button-bar__button { - border-radius: inherit; -} - -.topcoat-button-bar__button:focus, -.topcoat-button-bar__button--large:focus { - z-index: 1; -} - -/* topdoc - name: Large Button Bar - description: A button bar, only larger - modifiers: - :disabled: Disabled state - markup: -
-
- -
-
- -
-
- -
-
- tags: - - desktop - - light - - dark - - mobile - - button - - group - - bar - - large -*/ - -.topcoat-button-bar__button--large { - border-radius: inherit; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.button { - position: relative; - display: inline-block; - vertical-align: top; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - text-overflow: ellipsis; - white-space: nowrap; - overflow: hidden; - text-decoration: none; -} - -.button--quiet { - background: transparent; - border: 1px solid transparent; - box-shadow: none; -} - -.button--disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.button, -.topcoat-button, -.topcoat-button--quiet, -.topcoat-button--large, -.topcoat-button--large--quiet, -.topcoat-button--cta, -.topcoat-button--large--cta { - position: relative; - display: inline-block; - vertical-align: top; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - text-overflow: ellipsis; - white-space: nowrap; - overflow: hidden; - text-decoration: none; -} - -.button--quiet { - background: transparent; - border: 1px solid transparent; - box-shadow: none; -} - -.button--disabled, -.topcoat-button:disabled, -.topcoat-button--quiet:disabled, -.topcoat-button--large:disabled, -.topcoat-button--large--quiet:disabled, -.topcoat-button--cta:disabled, -.topcoat-button--large--cta:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/* topdoc - name: Button - description: A simple button - modifiers: - :active: Active state - :disabled: Disabled state - :hover: Hover state - :focus: Focused - markup: - - - examples: - mobile button: http://codepen.io/Topcoat/pen/DpKtf - tags: - - desktop - - light - - mobile - - button -*/ - -.topcoat-button, -.topcoat-button--quiet, -.topcoat-button--large, -.topcoat-button--large--quiet, -.topcoat-button--cta, -.topcoat-button--large--cta { - padding: 0 1.25rem; - font-size: 16px; - line-height: 3rem; - letter-spacing: 1px; - color: #454545; - text-shadow: 0 1px #fff; - vertical-align: top; - background-color: #e5e9e8; - box-shadow: inset 0 1px #fff; - border: 1px solid #a5a8a8; - border-radius: 6px; -} - -.topcoat-button:hover, -.topcoat-button--quiet:hover, -.topcoat-button--large:hover, -.topcoat-button--large--quiet:hover { - background-color: #edf1f1; -} - -.topcoat-button:active, -.topcoat-button--large:active { - background-color: #d3d7d7; - box-shadow: inset 0 1px rgba(0,0,0,0.12); -} - -.topcoat-button:focus, -.topcoat-button--quiet:focus, -.topcoat-button--large:focus, -.topcoat-button--large--quiet:focus, -.topcoat-button--cta:focus, -.topcoat-button--large--cta:focus { - border: 1px solid #0940fd; - box-shadow: 0 0 0 2px #6fb5f1; - outline: 0; -} - -/* topdoc - name: Quiet Button - description: A simple, yet quiet button - modifiers: - :active: Quiet button active state - :disabled: Disabled state - :hover: Hover state - :focus: Focused - markup: - - - tags: - - desktop - - light - - mobile - - button - - quiet -*/ - -.topcoat-button--quiet { - background: transparent; - border: 1px solid transparent; - box-shadow: none; -} - -.topcoat-button--quiet:hover, -.topcoat-button--large--quiet:hover { - text-shadow: 0 1px #fff; - border: 1px solid #a5a8a8; - box-shadow: inset 0 1px #fff; -} - -.topcoat-button--quiet:active, -.topcoat-button--large--quiet:active { - color: #454545; - text-shadow: 0 1px #fff; - background-color: #d3d7d7; - border: 1px solid #a5a8a8; - box-shadow: inset 0 1px rgba(0,0,0,0.12); -} - -/* topdoc - name: Large Button - description: A big ol button - modifiers: - :active: Active state - :disabled: Disabled state - :hover: Hover state - :focus: Focused - markup: - - - tags: - - desktop - - light - - mobile - - button - - large -*/ - -.topcoat-button--large, -.topcoat-button--large--quiet { - font-size: 1.3rem; - font-weight: 400; - line-height: 4.375rem; - padding: 0 1.25rem; -} - -/* topdoc - name: Large Quiet Button - description: A large, yet quiet button - modifiers: - :active: Active state - :disabled: Disabled state - :hover: Hover state - :focus: Focused - markup: - - - tags: - - desktop - - light - - mobile - - button - - large - - quiet -*/ - -.topcoat-button--large--quiet { - background: transparent; - border: 1px solid transparent; - box-shadow: none; -} - -/* topdoc - name: Call To Action Button - description: A CALL TO ARMS, er, ACTION! - modifiers: - :active: Active state - :disabled: Disabled state - :hover: Hover state - :focus: Focused - markup: - - - tags: - - desktop - - light - - mobile - - button - - call to action -*/ - -.topcoat-button--cta, -.topcoat-button--large--cta { - border: 1px solid #143250; - background-color: #288edf; - box-shadow: inset 0 1px rgba(255,255,255,0.36); - color: #fff; - font-weight: 500; - text-shadow: 0 -1px rgba(0,0,0,0.36); -} - -.topcoat-button--cta:hover, -.topcoat-button--large--cta:hover { - background-color: #509bef; -} - -.topcoat-button--cta:active, -.topcoat-button--large--cta:active { - background-color: #0380e8; - box-shadow: inset 0 1px rgba(0,0,0,0.12); -} - -/* topdoc - name: Large Call To Action Button - description: Like call to action, but bigger - modifiers: - :active: Active state - :disabled: Disabled state - :hover: Hover state - :focus: Focused - markup: - - - tags: - - desktop - - light - - mobile - - button - - large - - call to action -*/ - -.topcoat-button--large--cta { - font-size: 1.3rem; - font-weight: 400; - line-height: 4.375rem; - padding: 0 1.25rem; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -input[type="checkbox"] { - position: absolute; - overflow: hidden; - padding: 0; - border: 0; - opacity: 0.001; - z-index: 1; - vertical-align: top; - outline: none; -} - -.checkbox { - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - position: relative; - display: inline-block; - vertical-align: top; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.checkbox__label { - position: relative; - display: inline-block; - vertical-align: top; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.checkbox--disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -.checkbox:before, -.checkbox:after { - content: ''; - position: absolute; -} - -.checkbox:before { - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -input[type="checkbox"] { - position: absolute; - overflow: hidden; - padding: 0; - border: 0; - opacity: 0.001; - z-index: 1; - vertical-align: top; - outline: none; -} - -.checkbox, -.topcoat-checkbox__checkmark { - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - position: relative; - display: inline-block; - vertical-align: top; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.checkbox__label, -.topcoat-checkbox { - position: relative; - display: inline-block; - vertical-align: top; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.checkbox--disabled, -input[type="checkbox"]:disabled + .topcoat-checkbox__checkmark { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -.checkbox:before, -.checkbox:after, -.topcoat-checkbox__checkmark:before, -.topcoat-checkbox__checkmark:after { - content: ''; - position: absolute; -} - -.checkbox:before, -.topcoat-checkbox__checkmark:before { - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; -} - -/* topdoc - name: Checkbox - description: Default skin for Topcoat checkbox - modifiers: - :focus: Focus state - :disabled: Disabled state - markup: - -
-
- - examples: - mobile checkbox: http://codepen.io/Topcoat/pen/piHcs - tags: - - desktop - - light - - mobile - - checkbox -*/ - -.topcoat-checkbox__checkmark { - height: 2rem; -} - -input[type="checkbox"] { - height: 2rem; - width: 2rem; - margin-top: 0; - margin-right: -2rem; - margin-bottom: -2rem; - margin-left: 0; -} - -input[type="checkbox"]:checked + .topcoat-checkbox__checkmark:after { - opacity: 1; -} - -.topcoat-checkbox { - line-height: 2rem; -} - -.topcoat-checkbox__checkmark:before { - width: 2rem; - height: 2rem; - background: #e5e9e8; - border: 1px solid #a5a8a8; - border-radius: 3px; - box-shadow: inset 0 1px #fff; -} - -.topcoat-checkbox__checkmark { - width: 2rem; - height: 2rem; -} - -.topcoat-checkbox__checkmark:after { - top: 1px; - left: 2px; - opacity: 0; - width: 28px; - height: 11px; - background: transparent; - border: 7px solid #666; - border-width: 7px; - border-top: none; - border-right: none; - border-radius: 2px; - -webkit-transform: rotate(-50deg); - -ms-transform: rotate(-50deg); - transform: rotate(-50deg); -} - -input[type="checkbox"]:focus + .topcoat-checkbox__checkmark:before { - border: 1px solid #0940fd; - box-shadow: 0 0 0 2px #6fb5f1; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.button, -.topcoat-icon-button, -.topcoat-icon-button--quiet, -.topcoat-icon-button--large, -.topcoat-icon-button--large--quiet { - position: relative; - display: inline-block; - vertical-align: top; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - text-overflow: ellipsis; - white-space: nowrap; - overflow: hidden; - text-decoration: none; -} - -.button--quiet { - background: transparent; - border: 1px solid transparent; - box-shadow: none; -} - -.button--disabled, -.topcoat-icon-button:disabled, -.topcoat-icon-button--quiet:disabled, -.topcoat-icon-button--large:disabled, -.topcoat-icon-button--large--quiet:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/* topdoc - name: Icon Button - description: Like button, but it has an icon. - modifiers: - :active: Active state - :disabled: Disabled state - :hover: Hover state - :focus: Focused - markup: - - - tags: - - desktop - - light - - mobile - - button - - icon -*/ - -.topcoat-icon-button, -.topcoat-icon-button--quiet, -.topcoat-icon-button--large, -.topcoat-icon-button--large--quiet { - padding: 0 0.75rem; - line-height: 3rem; - letter-spacing: 1px; - color: #454545; - text-shadow: 0 1px #fff; - vertical-align: baseline; - background-color: #e5e9e8; - box-shadow: inset 0 1px #fff; - border: 1px solid #a5a8a8; - border-radius: 6px; -} - -.topcoat-icon-button:hover, -.topcoat-icon-button--quiet:hover, -.topcoat-icon-button--large:hover, -.topcoat-icon-button--large--quiet:hover { - background-color: #edf1f1; -} - -.topcoat-icon-button:active { - background-color: #d3d7d7; - box-shadow: inset 0 1px rgba(0,0,0,0.12); -} - -.topcoat-icon-button:focus, -.topcoat-icon-button--quiet:focus, -.topcoat-icon-button--quiet:hover:focus, -.topcoat-icon-button--large:focus, -.topcoat-icon-button--large--quiet:focus, -.topcoat-icon-button--large--quiet:hover:focus { - border: 1px solid #0940fd; - box-shadow: 0 0 0 2px #6fb5f1; - outline: 0; -} - -/* topdoc - name: Quiet Icon Button - description: Like quiet button, but it has an icon. - modifiers: - :active: Active state - :disabled: Disabled state - :hover: Hover state - :focus: Focused - markup: - - - tags: - - desktop - - light - - mobile - - button - - icon - - quiet -*/ - -.topcoat-icon-button--quiet { - background: transparent; - border: 1px solid transparent; - box-shadow: none; -} - -.topcoat-icon-button--quiet:hover, -.topcoat-icon-button--large--quiet:hover { - text-shadow: 0 1px #fff; - border: 1px solid #a5a8a8; - box-shadow: inset 0 1px #fff; -} - -.topcoat-icon-button--quiet:active, -.topcoat-icon-button--large--quiet:active { - color: #454545; - text-shadow: 0 1px #fff; - background-color: #d3d7d7; - border: 1px solid #a5a8a8; - box-shadow: inset 0 1px rgba(0,0,0,0.12); -} - -/* topdoc - name: Large Icon Button - description: Like large button, but it has an icon. - modifiers: - :active: Active state - :disabled: Disabled state - :hover: Hover state - :focus: Focused - markup: - - - tags: - - desktop - - light - - mobile - - button - - icon - - large -*/ - -.topcoat-icon-button--large, -.topcoat-icon-button--large--quiet { - width: 4.375rem; - height: 4.375rem; - line-height: 4.375rem; -} - -.topcoat-icon-button--large:active { - background-color: #d3d7d7; - box-shadow: inset 0 1px rgba(0,0,0,0.12); -} - -/* topdoc - name: Large Quiet Icon Button - description: Like large button, but it has an icon and this one is quiet. - modifiers: - :active: Active state - :disabled: Disabled state - :hover: Hover state - markup: - - - tags: - - desktop - - light - - mobile - - button - - icon - - large - - quiet -*/ - -.topcoat-icon-button--large--quiet { - background: transparent; - border: 1px solid transparent; - box-shadow: none; -} - -.topcoat-icon, -.topcoat-icon--large { - position: relative; - display: inline-block; - vertical-align: top; - overflow: hidden; - width: 1.62rem; - height: 1.62rem; - vertical-align: middle; - top: -1px; -} - -.topcoat-icon--large { - width: 2.499999998125rem; - height: 2.499999998125rem; - top: -2px; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.input { - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - vertical-align: top; - outline: none; -} - -.input:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.list { - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - overflow: auto; - -webkit-overflow-scrolling: touch; -} - -.list__header { - margin: 0; -} - -.list__container { - padding: 0; - margin: 0; - list-style-type: none; -} - -.list__item { - margin: 0; - padding: 0; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.list, -.topcoat-list { - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - overflow: auto; - -webkit-overflow-scrolling: touch; -} - -.list__header, -.topcoat-list__header { - margin: 0; -} - -.list__container, -.topcoat-list__container { - padding: 0; - margin: 0; - list-style-type: none; -} - -.list__item, -.topcoat-list__item { - margin: 0; - padding: 0; -} - -/* topdoc - name: List - description: Topcoat default list skin - markup: -
-

Category

-
    -
  • - Item -
  • -
  • - Item -
  • -
  • - Item -
  • -
-
- tags: - - mobile - - list -*/ - -.topcoat-list { - border-top: 1px solid #bcbfbf; - border-bottom: 1px solid #eff1f1; - background-color: #dfe2e2; -} - -.topcoat-list__header { - padding: 4px 20px; - font-size: 0.9em; - font-weight: 400; - background-color: #cccfcf; - color: #656565; - text-shadow: 0 1px 0 rgba(255,255,255,0.5); - border-top: 1px solid rgba(255,255,255,0.5); - border-bottom: 1px solid rgba(255,255,255,0.23); -} - -.topcoat-list__container { - border-top: 1px solid #bcbfbf; - color: #454545; -} - -.topcoat-list__item { - padding: 1.25rem; - border-top: 1px solid #eff1f1; - border-bottom: 1px solid #bcbfbf; -} - -.topcoat-list__item:first-child { - border-top: 1px solid rgba(0,0,0,0.05); -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.navigation-bar { - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - white-space: nowrap; - overflow: hidden; - word-spacing: 0; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.navigation-bar__item { - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - position: relative; - display: inline-block; - vertical-align: top; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; -} - -.navigation-bar__title { - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - text-overflow: ellipsis; - white-space: nowrap; - overflow: hidden; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.navigation-bar, -.topcoat-navigation-bar { - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - white-space: nowrap; - overflow: hidden; - word-spacing: 0; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.navigation-bar__item, -.topcoat-navigation-bar__item { - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - position: relative; - display: inline-block; - vertical-align: top; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; -} - -.navigation-bar__title, -.topcoat-navigation-bar__title { - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - text-overflow: ellipsis; - white-space: nowrap; - overflow: hidden; -} - -/* topdoc - name: Navigation Bar - description: A place where navigation goes to drink - markup: -
-
-

Header

-
-
- tags: - - desktop - - light - - mobile - - navigation - - bar -*/ - -.topcoat-navigation-bar { - height: 4.375rem; - padding-left: 1rem; - padding-right: 1rem; - background: #e5e9e8; - color: #000; - box-shadow: inset 0 -1px #b9bcbc, 0 1px #d4d6d6; -} - -.topcoat-navigation-bar__item { - margin: 0; - line-height: 4.375rem; - vertical-align: top; -} - -.topcoat-navigation-bar__title { - font-size: 1.3rem; - font-weight: 400; - color: #000; -} - -/* -Copyright 2012 Adobe Systems Inc.; -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - -http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.notification { - position: relative; - display: inline-block; - vertical-align: top; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - text-overflow: ellipsis; - white-space: nowrap; - overflow: hidden; - text-decoration: none; -} - -/* -Copyright 2012 Adobe Systems Inc.; -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - -http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.notification, -.topcoat-notification { - position: relative; - display: inline-block; - vertical-align: top; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - text-overflow: ellipsis; - white-space: nowrap; - overflow: hidden; - text-decoration: none; -} - -/* topdoc - name: Notification - description: Notification badge - markup: - 1 - tags: - - desktop - - light - - mobile - - notification -*/ - -.topcoat-notification { - padding: 0.15em 0.5em 0.2em; - border-radius: 2px; - background-color: #ec514e; - color: #fff; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -input[type="radio"] { - position: absolute; - overflow: hidden; - padding: 0; - border: 0; - opacity: 0.001; - z-index: 1; - vertical-align: top; - outline: none; -} - -.radio-button { - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - position: relative; - display: inline-block; - vertical-align: top; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.radio-button__label { - position: relative; - display: inline-block; - vertical-align: top; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.radio-button:before, -.radio-button:after { - content: ''; - position: absolute; - border-radius: 100%; -} - -.radio-button:after { - top: 50%; - left: 50%; - -webkit-transform: translate(-50%, -50%); - -ms-transform: translate(-50%, -50%); - transform: translate(-50%, -50%); -} - -.radio-button:before { - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; -} - -.radio-button--disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -input[type="radio"] { - position: absolute; - overflow: hidden; - padding: 0; - border: 0; - opacity: 0.001; - z-index: 1; - vertical-align: top; - outline: none; -} - -.radio-button, -.topcoat-radio-button__checkmark { - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - position: relative; - display: inline-block; - vertical-align: top; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.radio-button__label, -.topcoat-radio-button { - position: relative; - display: inline-block; - vertical-align: top; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.radio-button:before, -.radio-button:after, -.topcoat-radio-button__checkmark:before, -.topcoat-radio-button__checkmark:after { - content: ''; - position: absolute; - border-radius: 100%; -} - -.radio-button:after, -.topcoat-radio-button__checkmark:after { - top: 50%; - left: 50%; - -webkit-transform: translate(-50%, -50%); - -ms-transform: translate(-50%, -50%); - transform: translate(-50%, -50%); -} - -.radio-button:before, -.topcoat-radio-button__checkmark:before { - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; -} - -.radio-button--disabled, -input[type="radio"]:disabled + .topcoat-radio-button__checkmark { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/* topdoc - name: Radio Button - description: A button that can play music, but usually just plays ads. - modifiers: - markup: - - -
-
- - -
-
- - -
-
- - - examples: - Mobile Radio Button: http://codepen.io/Topcoat/pen/HDcJj - tags: - - desktop - - light - - mobile - - Radio -*/ - -input[type="radio"] { - height: 1.875rem; - width: 1.875rem; - margin-top: 0; - margin-right: -1.875rem; - margin-bottom: -1.875rem; - margin-left: 0; -} - -input[type="radio"]:checked + .topcoat-radio-button__checkmark:after { - opacity: 1; -} - -.topcoat-radio-button { - color: #454545; - line-height: 1.875rem; -} - -.topcoat-radio-button__checkmark:before { - width: 1.875rem; - height: 1.875rem; - background: #e5e9e8; - border: 1px solid #a5a8a8; - box-shadow: inset 0 1px #fff; -} - -.topcoat-radio-button__checkmark { - position: relative; - width: 1.875rem; - height: 1.875rem; -} - -.topcoat-radio-button__checkmark:after { - opacity: 0; - width: 0.875rem; - height: 0.875rem; - background: #666; - border: 1px solid rgba(0,0,0,0.1); - box-shadow: 0 1px rgba(255,255,255,0.5); - -webkit-transform: none; - -ms-transform: none; - transform: none; - top: 7px; - left: 7px; -} - -input[type="radio"]:focus + .topcoat-radio-button__checkmark:before { - border: 1px solid #0940fd; - box-shadow: 0 0 0 2px #6fb5f1; -} - -/* -Copyright 2012 Adobe Systems Inc.; -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - -http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -/* -Copyright 2012 Adobe Systems Inc.; -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - -http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -.range { - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - vertical-align: top; - outline: none; - -webkit-appearance: none; -} - -.range__thumb { - cursor: pointer; -} - -.range__thumb--webkit { - cursor: pointer; - -webkit-appearance: none; -} - -.range:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/* -Copyright 2012 Adobe Systems Inc.; -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - -http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -/* -Copyright 2012 Adobe Systems Inc.; -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - -http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -.range, -.topcoat-range { - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - vertical-align: top; - outline: none; - -webkit-appearance: none; -} - -.range__thumb, -.topcoat-range::-moz-range-thumb { - cursor: pointer; -} - -.range__thumb--webkit, -.topcoat-range::-webkit-slider-thumb { - cursor: pointer; - -webkit-appearance: none; -} - -.range:disabled, -.topcoat-range:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/* topdoc - name: Range - description: Range input - modifiers: - :active: Active state - :disabled: Disabled state - :hover: Hover state - :focus: Focused - markup: - - - examples: - mobile range: http://codepen.io/Topcoat/pen/BskEn - tags: - - desktop - - mobile - - range -*/ - -.topcoat-range { - border-radius: 6px; - border: 1px solid #a5a8a8; - background-color: #d3d7d7; - height: 1rem; - border-radius: 30px; -} - -.topcoat-range::-moz-range-track { - border-radius: 6px; - border: 1px solid #a5a8a8; - background-color: #d3d7d7; - height: 1rem; - border-radius: 30px; -} - -.topcoat-range::-webkit-slider-thumb { - height: 3rem; - width: 2rem; - background-color: #e5e9e8; - border: 1px solid #a5a8a8; - border-radius: 6px; - box-shadow: inset 0 1px #fff; -} - -.topcoat-range::-moz-range-thumb { - height: 3rem; - width: 2rem; - background-color: #e5e9e8; - border: 1px solid #a5a8a8; - border-radius: 6px; - box-shadow: inset 0 1px #fff; -} - -.topcoat-range:focus::-webkit-slider-thumb { - border: 1px solid #0940fd; - box-shadow: 0 0 0 2px #6fb5f1; -} - -.topcoat-range:focus::-moz-range-thumb { - border: 1px solid #0940fd; - box-shadow: 0 0 0 2px #6fb5f1; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.search-input { - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - vertical-align: top; - outline: none; - -webkit-appearance: none; -} - -input[type="search"]::-webkit-search-cancel-button { - -webkit-appearance: none; -} - -.search-input:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.search-input, -.topcoat-search-input, -.topcoat-search-input--large { - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - vertical-align: top; - outline: none; - -webkit-appearance: none; -} - -input[type="search"]::-webkit-search-cancel-button { - -webkit-appearance: none; -} - -.search-input:disabled, -.topcoat-search-input:disabled, -.topcoat-search-input--large:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/* topdoc - name: Search Input - description: A text input designed for searching. - modifiers: - :disabled: Disabled state - markup: - - - tags: - - desktop - - light - - mobile - - text - - input - - search - - form -*/ - -.topcoat-search-input, -.topcoat-search-input--large { - line-height: 3rem; - font-size: 16px; - border: 1px solid #a5a8a8; - background-color: #d3d7d7; - box-shadow: inset 0 1px rgba(0,0,0,0.12); - color: #454545; - padding: 0 0 0 2rem; - border-radius: 30px; - background-image: url("../img/search.svg"); - background-position: 1em center; - background-repeat: no-repeat; - background-size: 16px; -} - -.topcoat-search-input:focus, -.topcoat-search-input--large:focus { - background-image: url("../img/search_dark.svg"); - background-color: #edf1f1; - color: #000; - border: 1px solid #0940fd; - box-shadow: 0 0 0 2px #6fb5f1; -} - -.topcoat-search-input::-webkit-search-cancel-button, -.topcoat-search-input::-webkit-search-decoration, -.topcoat-search-input--large::-webkit-search-cancel-button, -.topcoat-search-input--large::-webkit-search-decoration { - margin-right: 5px; -} - -.topcoat-search-input:focus::-webkit-input-placeholder, -.topcoat-search-input:focus::-webkit-input-placeholder { - color: #c6c8c8; -} - -.topcoat-search-input:disabled::-webkit-input-placeholder { - color: #000; -} - -.topcoat-search-input:disabled::-moz-placeholder { - color: #000; -} - -.topcoat-search-input:disabled:-ms-input-placeholder { - color: #000; -} - -/* topdoc - name: Large Search Input - description: A large text input designed for searching. - modifiers: - :disabled: Disabled state - markup: - - - tags: - - desktop - - light - - mobile - - text - - input - - search - - form - - large -*/ - -.topcoat-search-input--large { - line-height: 4.375rem; - font-size: 1.3rem; - font-weight: 200; - padding: 0 0 0 2.9rem; - border-radius: 40px; - background-position: 1.2em center; - background-size: 1.3rem; -} - -.topcoat-search-input--large:disabled { - color: #000; -} - -.topcoat-search-input--large:disabled::-webkit-input-placeholder { - color: #000; -} - -.topcoat-search-input--large:disabled::-moz-placeholder { - color: #000; -} - -.topcoat-search-input--large:disabled:-ms-input-placeholder { - color: #000; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.switch { - position: relative; - display: inline-block; - vertical-align: top; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; -} - -.switch__input { - position: absolute; - overflow: hidden; - padding: 0; - border: 0; - opacity: 0.001; - z-index: 1; - vertical-align: top; - outline: none; -} - -.switch__toggle { - position: relative; - display: inline-block; - vertical-align: top; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.switch__toggle:before, -.switch__toggle:after { - content: ''; - position: absolute; - z-index: -1; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; -} - -.switch--disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.switch, -.topcoat-switch { - position: relative; - display: inline-block; - vertical-align: top; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; -} - -.switch__input, -.topcoat-switch__input { - position: absolute; - overflow: hidden; - padding: 0; - border: 0; - opacity: 0.001; - z-index: 1; - vertical-align: top; - outline: none; -} - -.switch__toggle, -.topcoat-switch__toggle { - position: relative; - display: inline-block; - vertical-align: top; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.switch__toggle:before, -.switch__toggle:after, -.topcoat-switch__toggle:before, -.topcoat-switch__toggle:after { - content: ''; - position: absolute; - z-index: -1; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; -} - -.switch--disabled, -.topcoat-switch__input:disabled + .topcoat-switch__toggle { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/* topdoc - name: Switch - description: Default skin for Topcoat switch - modifiers: - :focus: Focus state - :disabled: Disabled state - markup: - -
-
- -
-
- - examples: - mobile switch: http://codepen.io/Topcoat/pen/upxds - tags: - - desktop - - light - - mobile - - switch -*/ - -.topcoat-switch { - font-size: 16px; - padding: 0 1.25rem; - border-radius: 6px; - border: 1px solid #a5a8a8; - overflow: hidden; - width: 6rem; -} - -.topcoat-switch__toggle:before, -.topcoat-switch__toggle:after { - top: -1px; - width: 5rem; -} - -.topcoat-switch__toggle:before { - content: 'ON'; - color: #0083e8; - background-color: #e0f0fa; - right: 1rem; - padding-left: 1.5rem; -} - -.topcoat-switch__toggle { - line-height: 3rem; - height: 3rem; - width: 2rem; - border-radius: 6px; - color: #454545; - text-shadow: 0 1px #fff; - background-color: #e5e9e8; - border: 1px solid #a5a8a8; - margin-left: -1.3rem; - margin-bottom: -1px; - margin-top: -1px; - box-shadow: inset 0 1px #fff; - -webkit-transition: margin-left 0.05s ease-in-out; - transition: margin-left 0.05s ease-in-out; -} - -.topcoat-switch__toggle:after { - content: 'OFF'; - background-color: #d3d7d7; - left: 1rem; - padding-left: 2rem; -} - -.topcoat-switch__input:checked + .topcoat-switch__toggle { - margin-left: 2.7rem; -} - -.topcoat-switch__input:focus + .topcoat-switch__toggle { - border: 1px solid #0940fd; - box-shadow: 0 0 0 2px #6fb5f1; -} - -.topcoat-switch__input:disabled + .topcoat-switch__toggle:after, -.topcoat-switch__input:disabled + .topcoat-switch__toggle:before { - background: transparent; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.button, -.topcoat-tab-bar__button { - position: relative; - display: inline-block; - vertical-align: top; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - text-overflow: ellipsis; - white-space: nowrap; - overflow: hidden; - text-decoration: none; -} - -.button--quiet { - background: transparent; - border: 1px solid transparent; - box-shadow: none; -} - -.button--disabled, -.topcoat-tab-bar__button:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -.button-bar, -.topcoat-tab-bar { - display: table; - table-layout: fixed; - white-space: nowrap; - margin: 0; - padding: 0; -} - -.button-bar__item, -.topcoat-tab-bar__item { - display: table-cell; - width: auto; - border-radius: 0; -} - -.button-bar__item > input, -.topcoat-tab-bar__item > input { - position: absolute; - overflow: hidden; - padding: 0; - border: 0; - opacity: 0.001; - z-index: 1; - vertical-align: top; - outline: none; -} - -.button-bar__button { - border-radius: inherit; -} - -.button-bar__item:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/* topdoc - name: Tab Bar - description: Component of tab buttons - modifiers: - :disabled: Disabled state - markup: -
- - - -
- examples: - mobile tab bar: http://codepen.io/Topcoat/pen/rJICF - tags: - - desktop - - light - - dark - - mobile - - tab - - group - - bar -*/ - -.topcoat-tab-bar__button { - padding: 0 1.25rem; - height: 3rem; - line-height: 3rem; - letter-spacing: 1px; - color: #454545; - text-shadow: 0 1px #fff; - vertical-align: top; - background-color: #e5e9e8; - box-shadow: inset 0 1px #fff; - border-top: 1px solid #a5a8a8; -} - -.topcoat-tab-bar__button:active, -.topcoat-tab-bar__button--large:active, -:checked + .topcoat-tab-bar__button { - color: #0083e8; - background-color: #e0f0fa; - box-shadow: inset 0 0 2px #c0ced8; -} - -.topcoat-tab-bar__button:focus, -.topcoat-tab-bar__button--large:focus { - z-index: 1; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.input, -.topcoat-text-input, -.topcoat-text-input--large { - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - vertical-align: top; - outline: none; -} - -.input:disabled, -.topcoat-text-input:disabled, -.topcoat-text-input--large:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/* topdoc - name: Text input - description: Topdoc text input - modifiers: - :disabled: Disabled state - :focus: Focused - :invalid: Hover state - markup: - -
-
- -
-
- - tags: - - desktop - - mobile - - text - - input -*/ - -.topcoat-text-input, -.topcoat-text-input--large { - line-height: 3rem; - font-size: 16px; - letter-spacing: 1px; - padding: 0 1.25rem; - border: 1px solid #a5a8a8; - border-radius: 6px; - background-color: #d3d7d7; - box-shadow: inset 0 1px rgba(0,0,0,0.12); - color: #454545; - vertical-align: top; -} - -.topcoat-text-input:focus, -.topcoat-text-input--large:focus { - background-color: #edf1f1; - color: #000; - border: 1px solid #0940fd; - box-shadow: 0 0 0 2px #6fb5f1; -} - -.topcoat-text-input:disabled::-webkit-input-placeholder { - color: #000; -} - -.topcoat-text-input:disabled::-moz-placeholder { - color: #000; -} - -.topcoat-text-input:disabled:-ms-input-placeholder { - color: #000; -} - -.topcoat-text-input:invalid { - border: 1px solid #d83b75; -} - -/* topdoc - name: Large Text Input - description: A bigger input, still for text. - modifiers: - :disabled: Disabled state - :focus: Focused - :invalid: Hover state - markup: - -
-
- -
-
- - tags: - - desktop - - light - - mobile - - form - - input - - large -*/ - -.topcoat-text-input--large { - line-height: 4.375rem; - font-size: 1.3rem; -} - -.topcoat-text-input--large:disabled { - color: #000; -} - -.topcoat-text-input--large:disabled::-webkit-input-placeholder { - color: #000; -} - -.topcoat-text-input--large:disabled::-moz-placeholder { - color: #000; -} - -.topcoat-text-input--large:disabled:-ms-input-placeholder { - color: #000; -} - -.topcoat-text-input--large:invalid { - border: 1px solid #d83b75; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.textarea { - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - vertical-align: top; - resize: none; - outline: none; -} - -.textarea:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -/** -* -* Copyright 2012 Adobe Systems Inc.; -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -.textarea, -.topcoat-textarea, -.topcoat-textarea--large { - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - vertical-align: top; - resize: none; - outline: none; -} - -.textarea:disabled, -.topcoat-textarea:disabled, -.topcoat-textarea--large:disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} - -/* topdoc - name: Textarea - description: A whole area, just for text. - modifiers: - :disabled: Disabled state - markup: - -
-
- - tags: - - desktop - - light - - mobile - - form - - input - - textarea -*/ - -.topcoat-textarea, -.topcoat-textarea--large { - padding: 2rem; - font-size: 2.5rem; - font-weight: 200; - border-radius: 6px; - line-height: 3rem; - border: 1px solid #a5a8a8; - background-color: #d3d7d7; - box-shadow: inset 0 1px rgba(0,0,0,0.12); - color: #454545; - letter-spacing: 1px; -} - -.topcoat-textarea:focus, -.topcoat-textarea--large:focus { - background-color: #edf1f1; - color: #000; - border: 1px solid #0940fd; - box-shadow: 0 0 0 2px #6fb5f1; -} - -.topcoat-textarea:disabled::-webkit-input-placeholder { - color: #000; -} - -.topcoat-textarea:disabled::-moz-placeholder { - color: #000; -} - -.topcoat-textarea:disabled:-ms-input-placeholder { - color: #000; -} - -/* topdoc - name: Large Textarea - description: A whole area, just for text; now available in large. - modifiers: - :disabled: Disabled state - markup: - -
-
- - tags: - - desktop - - light - - mobile - - form - - input - - textarea -*/ - -.topcoat-textarea--large { - font-size: 3rem; - line-height: 4.375rem; -} - -.topcoat-textarea--large:disabled { - color: #000; -} - -.topcoat-textarea--large:disabled::-webkit-input-placeholder { - color: #000; -} - -.topcoat-textarea--large:disabled::-moz-placeholder { - color: #000; -} - -.topcoat-textarea--large:disabled:-ms-input-placeholder { - color: #000; -} - -@font-face { - font-family: "Source Sans"; - src: url("../font/SourceSansPro-Regular.otf"); -} - -@font-face { - font-family: "Source Sans"; - src: url("../font/SourceSansPro-Light.otf"); - font-weight: 200; -} - -@font-face { - font-family: "Source Sans"; - src: url("../font/SourceSansPro-Semibold.otf"); - font-weight: 600; -} - -body { - margin: 0; - padding: 0; - background: #dfe2e2; - color: #000; - font: 16px "Source Sans", helvetica, arial, sans-serif; - font-weight: 200; -} - -:focus { - outline-color: transparent; - outline-style: none; -} - -.topcoat-icon--menu-stack { - background: url("../img/hamburger_dark.svg") no-repeat; - background-size: cover; -} - -.quarter { - width: 25%; -} - -.half { - width: 50%; -} - -.three-quarters { - width: 75%; -} - -.third { - width: 33.333%; -} - -.two-thirds { - width: 66.666%; -} - -.full { - width: 100%; -} - -.left { - text-align: left; -} - -.center { - text-align: center; -} - -.right { - text-align: right; -} - -.reset-ui { - -moz-box-sizing: border-box; - box-sizing: border-box; - background-clip: padding-box; - position: relative; - display: inline-block; - vertical-align: top; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - border: none; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - text-overflow: ellipsis; - white-space: nowrap; - overflow: hidden; -} - -/* This file should include color and image variables corresponding to the dark theme */ - -/* Call To Action */ - -/* Icons */ - -/* Navigation Bar */ - -/* Text Input */ - -/* Search Input */ - -/* List */ - -/* Checkbox */ - -/* Overlay */ - -/* Progress bar */ - -/* Checkbox */ - -/* Radio Button */ - -/* Tab bar */ - -/* Switch */ - -/* Icon Button */ - -/* Navigation bar */ - -/* List */ - -/* Search Input */ - -/* Textarea */ - -/* Checkbox */ - -/* Radio */ - -/* Range input */ - -/* Search Input */ - -/* Switch */ - -/* This file should include color and image variables corresponding to the light theme */ - -/* Call To Action */ - -/* Icons */ - -/* Navigation Bar */ - -/* Text Input */ - -/* List */ - -/* Overlay */ - -/* Progress bar */ - -/* Checkbox */ - -/* Range input */ - -/* Radio Button */ - -/* Tab bar */ - -/* Switch */ - -/* Containers */ - -/* Icon Button */ - -/* Navigation bar */ - -/* List */ - -/* Search Input */ - -/* Text Area */ - -/* Checkbox */ - -/* Radio */ - -/* Range input */ - -/* Search Input */ - -/* Switch */ - -/* Text Input */ - -/* Radio input */ - -/* Overlay */ - -/* Textarea */ - -/* Progress bar container */ - -/* Progress bar progress */ - -/* Search input */ - -/* Switch */ - -/* Notification */ \ No newline at end of file diff --git a/www/assets/topcoat-0.7.5/css/topcoat-mobile-light.min.css b/www/assets/topcoat-0.7.5/css/topcoat-mobile-light.min.css deleted file mode 100755 index 7692377..0000000 --- a/www/assets/topcoat-0.7.5/css/topcoat-mobile-light.min.css +++ /dev/null @@ -1 +0,0 @@ -.button-bar{display:table;table-layout:fixed;white-space:nowrap;margin:0;padding:0}.button-bar__item{display:table-cell;width:auto;border-radius:0}.button-bar__item>input{position:absolute;overflow:hidden;padding:0;border:0;opacity:.001;z-index:1;vertical-align:top;outline:0}.button-bar__button{border-radius:inherit}.button-bar__item:disabled{opacity:.3;cursor:default;pointer-events:none}.button,.topcoat-button,.topcoat-button--quiet,.topcoat-button--large,.topcoat-button--large--quiet,.topcoat-button--cta,.topcoat-button--large--cta,.topcoat-button-bar__button,.topcoat-button-bar__button--large{position:relative;display:inline-block;vertical-align:top;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;text-decoration:none}.button--quiet{background:transparent;border:1px solid transparent;box-shadow:none}.button--disabled,.topcoat-button:disabled,.topcoat-button--quiet:disabled,.topcoat-button--large:disabled,.topcoat-button--large--quiet:disabled,.topcoat-button--cta:disabled,.topcoat-button--large--cta:disabled,.topcoat-button-bar__button:disabled,.topcoat-button-bar__button--large:disabled{opacity:.3;cursor:default;pointer-events:none}.topcoat-button,.topcoat-button--quiet,.topcoat-button--large,.topcoat-button--large--quiet,.topcoat-button--cta,.topcoat-button--large--cta,.topcoat-button-bar__button,.topcoat-button-bar__button--large{padding:0 1.25rem;font-size:16px;line-height:3rem;letter-spacing:1px;color:#454545;text-shadow:0 1px #fff;vertical-align:top;background-color:#e5e9e8;box-shadow:inset 0 1px #fff;border:1px solid #a5a8a8;border-radius:6px}.topcoat-button:hover,.topcoat-button--quiet:hover,.topcoat-button--large:hover,.topcoat-button--large--quiet:hover,.topcoat-button-bar__button:hover,.topcoat-button-bar__button--large:hover{background-color:#edf1f1}.topcoat-button:active,.topcoat-button--large:active,.topcoat-button-bar__button:active,.topcoat-button-bar__button--large:active,:checked+.topcoat-button-bar__button{background-color:#d3d7d7;box-shadow:inset 0 1px rgba(0,0,0,.12)}.topcoat-button:focus,.topcoat-button--quiet:focus,.topcoat-button--large:focus,.topcoat-button--large--quiet:focus,.topcoat-button--cta:focus,.topcoat-button--large--cta:focus,.topcoat-button-bar__button:focus,.topcoat-button-bar__button--large:focus{border:1px solid #0940fd;box-shadow:0 0 0 2px #6fb5f1;outline:0}.topcoat-button--quiet{background:transparent;border:1px solid transparent;box-shadow:none}.topcoat-button--quiet:hover,.topcoat-button--large--quiet:hover{text-shadow:0 1px #fff;border:1px solid #a5a8a8;box-shadow:inset 0 1px #fff}.topcoat-button--quiet:active,.topcoat-button--large--quiet:active{color:#454545;text-shadow:0 1px #fff;background-color:#d3d7d7;border:1px solid #a5a8a8;box-shadow:inset 0 1px rgba(0,0,0,.12)}.topcoat-button--large,.topcoat-button--large--quiet,.topcoat-button-bar__button--large{font-size:1.3rem;font-weight:400;line-height:4.375rem;padding:0 1.25rem}.topcoat-button--large--quiet{background:transparent;border:1px solid transparent;box-shadow:none}.topcoat-button--cta,.topcoat-button--large--cta{border:1px solid #143250;background-color:#288edf;box-shadow:inset 0 1px rgba(255,255,255,.36);color:#fff;font-weight:500;text-shadow:0 -1px rgba(0,0,0,.36)}.topcoat-button--cta:hover,.topcoat-button--large--cta:hover{background-color:#509bef}.topcoat-button--cta:active,.topcoat-button--large--cta:active{background-color:#0380e8;box-shadow:inset 0 1px rgba(0,0,0,.12)}.topcoat-button--large--cta{font-size:1.3rem;font-weight:400;line-height:4.375rem;padding:0 1.25rem}.button-bar,.topcoat-button-bar{display:table;table-layout:fixed;white-space:nowrap;margin:0;padding:0}.button-bar__item,.topcoat-button-bar__item{display:table-cell;width:auto;border-radius:0}.button-bar__item>input,.topcoat-button-bar__item>input{position:absolute;overflow:hidden;padding:0;border:0;opacity:.001;z-index:1;vertical-align:top;outline:0}.button-bar__button{border-radius:inherit}.button-bar__item:disabled{opacity:.3;cursor:default;pointer-events:none}.topcoat-button-bar>.topcoat-button-bar__item:first-child{border-top-left-radius:6px;border-bottom-left-radius:6px}.topcoat-button-bar>.topcoat-button-bar__item:last-child{border-top-right-radius:6px;border-bottom-right-radius:6px}.topcoat-button-bar__item:first-child>.topcoat-button-bar__button,.topcoat-button-bar__item:first-child>.topcoat-button-bar__button--large{border-right:0}.topcoat-button-bar__item:last-child>.topcoat-button-bar__button,.topcoat-button-bar__item:last-child>.topcoat-button-bar__button--large{border-left:0}.topcoat-button-bar__button{border-radius:inherit}.topcoat-button-bar__button:focus,.topcoat-button-bar__button--large:focus{z-index:1}.topcoat-button-bar__button--large{border-radius:inherit}.button{position:relative;display:inline-block;vertical-align:top;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;text-decoration:none}.button--quiet{background:transparent;border:1px solid transparent;box-shadow:none}.button--disabled{opacity:.3;cursor:default;pointer-events:none}.button,.topcoat-button,.topcoat-button--quiet,.topcoat-button--large,.topcoat-button--large--quiet,.topcoat-button--cta,.topcoat-button--large--cta{position:relative;display:inline-block;vertical-align:top;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;text-decoration:none}.button--quiet{background:transparent;border:1px solid transparent;box-shadow:none}.button--disabled,.topcoat-button:disabled,.topcoat-button--quiet:disabled,.topcoat-button--large:disabled,.topcoat-button--large--quiet:disabled,.topcoat-button--cta:disabled,.topcoat-button--large--cta:disabled{opacity:.3;cursor:default;pointer-events:none}.topcoat-button,.topcoat-button--quiet,.topcoat-button--large,.topcoat-button--large--quiet,.topcoat-button--cta,.topcoat-button--large--cta{padding:0 1.25rem;font-size:16px;line-height:3rem;letter-spacing:1px;color:#454545;text-shadow:0 1px #fff;vertical-align:top;background-color:#e5e9e8;box-shadow:inset 0 1px #fff;border:1px solid #a5a8a8;border-radius:6px}.topcoat-button:hover,.topcoat-button--quiet:hover,.topcoat-button--large:hover,.topcoat-button--large--quiet:hover{background-color:#edf1f1}.topcoat-button:active,.topcoat-button--large:active{background-color:#d3d7d7;box-shadow:inset 0 1px rgba(0,0,0,.12)}.topcoat-button:focus,.topcoat-button--quiet:focus,.topcoat-button--large:focus,.topcoat-button--large--quiet:focus,.topcoat-button--cta:focus,.topcoat-button--large--cta:focus{border:1px solid #0940fd;box-shadow:0 0 0 2px #6fb5f1;outline:0}.topcoat-button--quiet{background:transparent;border:1px solid transparent;box-shadow:none}.topcoat-button--quiet:hover,.topcoat-button--large--quiet:hover{text-shadow:0 1px #fff;border:1px solid #a5a8a8;box-shadow:inset 0 1px #fff}.topcoat-button--quiet:active,.topcoat-button--large--quiet:active{color:#454545;text-shadow:0 1px #fff;background-color:#d3d7d7;border:1px solid #a5a8a8;box-shadow:inset 0 1px rgba(0,0,0,.12)}.topcoat-button--large,.topcoat-button--large--quiet{font-size:1.3rem;font-weight:400;line-height:4.375rem;padding:0 1.25rem}.topcoat-button--large--quiet{background:transparent;border:1px solid transparent;box-shadow:none}.topcoat-button--cta,.topcoat-button--large--cta{border:1px solid #143250;background-color:#288edf;box-shadow:inset 0 1px rgba(255,255,255,.36);color:#fff;font-weight:500;text-shadow:0 -1px rgba(0,0,0,.36)}.topcoat-button--cta:hover,.topcoat-button--large--cta:hover{background-color:#509bef}.topcoat-button--cta:active,.topcoat-button--large--cta:active{background-color:#0380e8;box-shadow:inset 0 1px rgba(0,0,0,.12)}.topcoat-button--large--cta{font-size:1.3rem;font-weight:400;line-height:4.375rem;padding:0 1.25rem}input[type=checkbox]{position:absolute;overflow:hidden;padding:0;border:0;opacity:.001;z-index:1;vertical-align:top;outline:0}.checkbox{-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;position:relative;display:inline-block;vertical-align:top;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.checkbox__label{position:relative;display:inline-block;vertical-align:top;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.checkbox--disabled{opacity:.3;cursor:default;pointer-events:none}.checkbox:before,.checkbox:after{content:'';position:absolute}.checkbox:before{-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box}input[type=checkbox]{position:absolute;overflow:hidden;padding:0;border:0;opacity:.001;z-index:1;vertical-align:top;outline:0}.checkbox,.topcoat-checkbox__checkmark{-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;position:relative;display:inline-block;vertical-align:top;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.checkbox__label,.topcoat-checkbox{position:relative;display:inline-block;vertical-align:top;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.checkbox--disabled,input[type=checkbox]:disabled+.topcoat-checkbox__checkmark{opacity:.3;cursor:default;pointer-events:none}.checkbox:before,.checkbox:after,.topcoat-checkbox__checkmark:before,.topcoat-checkbox__checkmark:after{content:'';position:absolute}.checkbox:before,.topcoat-checkbox__checkmark:before{-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box}.topcoat-checkbox__checkmark{height:2rem}input[type=checkbox]{height:2rem;width:2rem;margin-top:0;margin-right:-2rem;margin-bottom:-2rem;margin-left:0}input[type=checkbox]:checked+.topcoat-checkbox__checkmark:after{opacity:1}.topcoat-checkbox{line-height:2rem}.topcoat-checkbox__checkmark:before{width:2rem;height:2rem;background:#e5e9e8;border:1px solid #a5a8a8;border-radius:3px;box-shadow:inset 0 1px #fff}.topcoat-checkbox__checkmark{width:2rem;height:2rem}.topcoat-checkbox__checkmark:after{top:1px;left:2px;opacity:0;width:28px;height:11px;background:transparent;border:7px solid #666;border-width:7px;border-top:0;border-right:0;border-radius:2px;-webkit-transform:rotate(-50deg);-ms-transform:rotate(-50deg);transform:rotate(-50deg)}input[type=checkbox]:focus+.topcoat-checkbox__checkmark:before{border:1px solid #0940fd;box-shadow:0 0 0 2px #6fb5f1}.button,.topcoat-icon-button,.topcoat-icon-button--quiet,.topcoat-icon-button--large,.topcoat-icon-button--large--quiet{position:relative;display:inline-block;vertical-align:top;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;text-decoration:none}.button--quiet{background:transparent;border:1px solid transparent;box-shadow:none}.button--disabled,.topcoat-icon-button:disabled,.topcoat-icon-button--quiet:disabled,.topcoat-icon-button--large:disabled,.topcoat-icon-button--large--quiet:disabled{opacity:.3;cursor:default;pointer-events:none}.topcoat-icon-button,.topcoat-icon-button--quiet,.topcoat-icon-button--large,.topcoat-icon-button--large--quiet{padding:0 .75rem;line-height:3rem;letter-spacing:1px;color:#454545;text-shadow:0 1px #fff;vertical-align:baseline;background-color:#e5e9e8;box-shadow:inset 0 1px #fff;border:1px solid #a5a8a8;border-radius:6px}.topcoat-icon-button:hover,.topcoat-icon-button--quiet:hover,.topcoat-icon-button--large:hover,.topcoat-icon-button--large--quiet:hover{background-color:#edf1f1}.topcoat-icon-button:active{background-color:#d3d7d7;box-shadow:inset 0 1px rgba(0,0,0,.12)}.topcoat-icon-button:focus,.topcoat-icon-button--quiet:focus,.topcoat-icon-button--quiet:hover:focus,.topcoat-icon-button--large:focus,.topcoat-icon-button--large--quiet:focus,.topcoat-icon-button--large--quiet:hover:focus{border:1px solid #0940fd;box-shadow:0 0 0 2px #6fb5f1;outline:0}.topcoat-icon-button--quiet{background:transparent;border:1px solid transparent;box-shadow:none}.topcoat-icon-button--quiet:hover,.topcoat-icon-button--large--quiet:hover{text-shadow:0 1px #fff;border:1px solid #a5a8a8;box-shadow:inset 0 1px #fff}.topcoat-icon-button--quiet:active,.topcoat-icon-button--large--quiet:active{color:#454545;text-shadow:0 1px #fff;background-color:#d3d7d7;border:1px solid #a5a8a8;box-shadow:inset 0 1px rgba(0,0,0,.12)}.topcoat-icon-button--large,.topcoat-icon-button--large--quiet{width:4.375rem;height:4.375rem;line-height:4.375rem}.topcoat-icon-button--large:active{background-color:#d3d7d7;box-shadow:inset 0 1px rgba(0,0,0,.12)}.topcoat-icon-button--large--quiet{background:transparent;border:1px solid transparent;box-shadow:none}.topcoat-icon,.topcoat-icon--large{position:relative;display:inline-block;vertical-align:top;overflow:hidden;width:1.62rem;height:1.62rem;vertical-align:middle;top:-1px}.topcoat-icon--large{width:2.499999998125rem;height:2.499999998125rem;top:-2px}.input{padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;vertical-align:top;outline:0}.input:disabled{opacity:.3;cursor:default;pointer-events:none}.list{padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;overflow:auto;-webkit-overflow-scrolling:touch}.list__header{margin:0}.list__container{padding:0;margin:0;list-style-type:none}.list__item{margin:0;padding:0}.list,.topcoat-list{padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;overflow:auto;-webkit-overflow-scrolling:touch}.list__header,.topcoat-list__header{margin:0}.list__container,.topcoat-list__container{padding:0;margin:0;list-style-type:none}.list__item,.topcoat-list__item{margin:0;padding:0}.topcoat-list{border-top:1px solid #bcbfbf;border-bottom:1px solid #eff1f1;background-color:#dfe2e2}.topcoat-list__header{padding:4px 20px;font-size:.9em;font-weight:400;background-color:#cccfcf;color:#656565;text-shadow:0 1px 0 rgba(255,255,255,.5);border-top:1px solid rgba(255,255,255,.5);border-bottom:1px solid rgba(255,255,255,.23)}.topcoat-list__container{border-top:1px solid #bcbfbf;color:#454545}.topcoat-list__item{padding:1.25rem;border-top:1px solid #eff1f1;border-bottom:1px solid #bcbfbf}.topcoat-list__item:first-child{border-top:1px solid rgba(0,0,0,.05)}.navigation-bar{-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;white-space:nowrap;overflow:hidden;word-spacing:0;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.navigation-bar__item{-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;position:relative;display:inline-block;vertical-align:top;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0}.navigation-bar__title{padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.navigation-bar,.topcoat-navigation-bar{-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;white-space:nowrap;overflow:hidden;word-spacing:0;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.navigation-bar__item,.topcoat-navigation-bar__item{-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;position:relative;display:inline-block;vertical-align:top;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0}.navigation-bar__title,.topcoat-navigation-bar__title{padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.topcoat-navigation-bar{height:4.375rem;padding-left:1rem;padding-right:1rem;background:#e5e9e8;color:#000;box-shadow:inset 0 -1px #b9bcbc,0 1px #d4d6d6}.topcoat-navigation-bar__item{margin:0;line-height:4.375rem;vertical-align:top}.topcoat-navigation-bar__title{font-size:1.3rem;font-weight:400;color:#000}.notification{position:relative;display:inline-block;vertical-align:top;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;text-decoration:none}.notification,.topcoat-notification{position:relative;display:inline-block;vertical-align:top;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;text-decoration:none}.topcoat-notification{padding:.15em .5em .2em;border-radius:2px;background-color:#ec514e;color:#fff}input[type=radio]{position:absolute;overflow:hidden;padding:0;border:0;opacity:.001;z-index:1;vertical-align:top;outline:0}.radio-button{-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;position:relative;display:inline-block;vertical-align:top;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.radio-button__label{position:relative;display:inline-block;vertical-align:top;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.radio-button:before,.radio-button:after{content:'';position:absolute;border-radius:100%}.radio-button:after{top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.radio-button:before{-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box}.radio-button--disabled{opacity:.3;cursor:default;pointer-events:none}input[type=radio]{position:absolute;overflow:hidden;padding:0;border:0;opacity:.001;z-index:1;vertical-align:top;outline:0}.radio-button,.topcoat-radio-button__checkmark{-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;position:relative;display:inline-block;vertical-align:top;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.radio-button__label,.topcoat-radio-button{position:relative;display:inline-block;vertical-align:top;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.radio-button:before,.radio-button:after,.topcoat-radio-button__checkmark:before,.topcoat-radio-button__checkmark:after{content:'';position:absolute;border-radius:100%}.radio-button:after,.topcoat-radio-button__checkmark:after{top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.radio-button:before,.topcoat-radio-button__checkmark:before{-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box}.radio-button--disabled,input[type=radio]:disabled+.topcoat-radio-button__checkmark{opacity:.3;cursor:default;pointer-events:none}input[type=radio]{height:1.875rem;width:1.875rem;margin-top:0;margin-right:-1.875rem;margin-bottom:-1.875rem;margin-left:0}input[type=radio]:checked+.topcoat-radio-button__checkmark:after{opacity:1}.topcoat-radio-button{color:#454545;line-height:1.875rem}.topcoat-radio-button__checkmark:before{width:1.875rem;height:1.875rem;background:#e5e9e8;border:1px solid #a5a8a8;box-shadow:inset 0 1px #fff}.topcoat-radio-button__checkmark{position:relative;width:1.875rem;height:1.875rem}.topcoat-radio-button__checkmark:after{opacity:0;width:.875rem;height:.875rem;background:#666;border:1px solid rgba(0,0,0,.1);box-shadow:0 1px rgba(255,255,255,.5);-webkit-transform:none;-ms-transform:none;transform:none;top:7px;left:7px}input[type=radio]:focus+.topcoat-radio-button__checkmark:before{border:1px solid #0940fd;box-shadow:0 0 0 2px #6fb5f1}.range{padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;vertical-align:top;outline:0;-webkit-appearance:none}.range__thumb{cursor:pointer}.range__thumb--webkit{cursor:pointer;-webkit-appearance:none}.range:disabled{opacity:.3;cursor:default;pointer-events:none}.range,.topcoat-range{padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;vertical-align:top;outline:0;-webkit-appearance:none}.range__thumb,.topcoat-range::-moz-range-thumb{cursor:pointer}.range__thumb--webkit,.topcoat-range::-webkit-slider-thumb{cursor:pointer;-webkit-appearance:none}.range:disabled,.topcoat-range:disabled{opacity:.3;cursor:default;pointer-events:none}.topcoat-range{border-radius:6px;border:1px solid #a5a8a8;background-color:#d3d7d7;height:1rem;border-radius:30px}.topcoat-range::-moz-range-track{border-radius:6px;border:1px solid #a5a8a8;background-color:#d3d7d7;height:1rem;border-radius:30px}.topcoat-range::-webkit-slider-thumb{height:3rem;width:2rem;background-color:#e5e9e8;border:1px solid #a5a8a8;border-radius:6px;box-shadow:inset 0 1px #fff}.topcoat-range::-moz-range-thumb{height:3rem;width:2rem;background-color:#e5e9e8;border:1px solid #a5a8a8;border-radius:6px;box-shadow:inset 0 1px #fff}.topcoat-range:focus::-webkit-slider-thumb{border:1px solid #0940fd;box-shadow:0 0 0 2px #6fb5f1}.topcoat-range:focus::-moz-range-thumb{border:1px solid #0940fd;box-shadow:0 0 0 2px #6fb5f1}.search-input{padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;vertical-align:top;outline:0;-webkit-appearance:none}input[type=search]::-webkit-search-cancel-button{-webkit-appearance:none}.search-input:disabled{opacity:.3;cursor:default;pointer-events:none}.search-input,.topcoat-search-input,.topcoat-search-input--large{padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;vertical-align:top;outline:0;-webkit-appearance:none}input[type=search]::-webkit-search-cancel-button{-webkit-appearance:none}.search-input:disabled,.topcoat-search-input:disabled,.topcoat-search-input--large:disabled{opacity:.3;cursor:default;pointer-events:none}.topcoat-search-input,.topcoat-search-input--large{line-height:3rem;font-size:16px;border:1px solid #a5a8a8;background-color:#d3d7d7;box-shadow:inset 0 1px rgba(0,0,0,.12);color:#454545;padding:0 0 0 2rem;border-radius:30px;background-image:url(../img/search.svg);background-position:1em center;background-repeat:no-repeat;background-size:16px}.topcoat-search-input:focus,.topcoat-search-input--large:focus{background-image:url(../img/search_dark.svg);background-color:#edf1f1;color:#000;border:1px solid #0940fd;box-shadow:0 0 0 2px #6fb5f1}.topcoat-search-input::-webkit-search-cancel-button,.topcoat-search-input::-webkit-search-decoration,.topcoat-search-input--large::-webkit-search-cancel-button,.topcoat-search-input--large::-webkit-search-decoration{margin-right:5px}.topcoat-search-input:focus::-webkit-input-placeholder,.topcoat-search-input:focus::-webkit-input-placeholder{color:#c6c8c8}.topcoat-search-input:disabled::-webkit-input-placeholder{color:#000}.topcoat-search-input:disabled::-moz-placeholder{color:#000}.topcoat-search-input:disabled:-ms-input-placeholder{color:#000}.topcoat-search-input--large{line-height:4.375rem;font-size:1.3rem;font-weight:200;padding:0 0 0 2.9rem;border-radius:40px;background-position:1.2em center;background-size:1.3rem}.topcoat-search-input--large:disabled{color:#000}.topcoat-search-input--large:disabled::-webkit-input-placeholder{color:#000}.topcoat-search-input--large:disabled::-moz-placeholder{color:#000}.topcoat-search-input--large:disabled:-ms-input-placeholder{color:#000}.switch{position:relative;display:inline-block;vertical-align:top;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box}.switch__input{position:absolute;overflow:hidden;padding:0;border:0;opacity:.001;z-index:1;vertical-align:top;outline:0}.switch__toggle{position:relative;display:inline-block;vertical-align:top;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.switch__toggle:before,.switch__toggle:after{content:'';position:absolute;z-index:-1;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box}.switch--disabled{opacity:.3;cursor:default;pointer-events:none}.switch,.topcoat-switch{position:relative;display:inline-block;vertical-align:top;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box}.switch__input,.topcoat-switch__input{position:absolute;overflow:hidden;padding:0;border:0;opacity:.001;z-index:1;vertical-align:top;outline:0}.switch__toggle,.topcoat-switch__toggle{position:relative;display:inline-block;vertical-align:top;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.switch__toggle:before,.switch__toggle:after,.topcoat-switch__toggle:before,.topcoat-switch__toggle:after{content:'';position:absolute;z-index:-1;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box}.switch--disabled,.topcoat-switch__input:disabled+.topcoat-switch__toggle{opacity:.3;cursor:default;pointer-events:none}.topcoat-switch{font-size:16px;padding:0 1.25rem;border-radius:6px;border:1px solid #a5a8a8;overflow:hidden;width:6rem}.topcoat-switch__toggle:before,.topcoat-switch__toggle:after{top:-1px;width:5rem}.topcoat-switch__toggle:before{content:'ON';color:#0083e8;background-color:#e0f0fa;right:1rem;padding-left:1.5rem}.topcoat-switch__toggle{line-height:3rem;height:3rem;width:2rem;border-radius:6px;color:#454545;text-shadow:0 1px #fff;background-color:#e5e9e8;border:1px solid #a5a8a8;margin-left:-1.3rem;margin-bottom:-1px;margin-top:-1px;box-shadow:inset 0 1px #fff;-webkit-transition:margin-left .05s ease-in-out;transition:margin-left .05s ease-in-out}.topcoat-switch__toggle:after{content:'OFF';background-color:#d3d7d7;left:1rem;padding-left:2rem}.topcoat-switch__input:checked+.topcoat-switch__toggle{margin-left:2.7rem}.topcoat-switch__input:focus+.topcoat-switch__toggle{border:1px solid #0940fd;box-shadow:0 0 0 2px #6fb5f1}.topcoat-switch__input:disabled+.topcoat-switch__toggle:after,.topcoat-switch__input:disabled+.topcoat-switch__toggle:before{background:transparent}.button,.topcoat-tab-bar__button{position:relative;display:inline-block;vertical-align:top;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;text-decoration:none}.button--quiet{background:transparent;border:1px solid transparent;box-shadow:none}.button--disabled,.topcoat-tab-bar__button:disabled{opacity:.3;cursor:default;pointer-events:none}.button-bar,.topcoat-tab-bar{display:table;table-layout:fixed;white-space:nowrap;margin:0;padding:0}.button-bar__item,.topcoat-tab-bar__item{display:table-cell;width:auto;border-radius:0}.button-bar__item>input,.topcoat-tab-bar__item>input{position:absolute;overflow:hidden;padding:0;border:0;opacity:.001;z-index:1;vertical-align:top;outline:0}.button-bar__button{border-radius:inherit}.button-bar__item:disabled{opacity:.3;cursor:default;pointer-events:none}.topcoat-tab-bar__button{padding:0 1.25rem;height:3rem;line-height:3rem;letter-spacing:1px;color:#454545;text-shadow:0 1px #fff;vertical-align:top;background-color:#e5e9e8;box-shadow:inset 0 1px #fff;border-top:1px solid #a5a8a8}.topcoat-tab-bar__button:active,.topcoat-tab-bar__button--large:active,:checked+.topcoat-tab-bar__button{color:#0083e8;background-color:#e0f0fa;box-shadow:inset 0 0 2px #c0ced8}.topcoat-tab-bar__button:focus,.topcoat-tab-bar__button--large:focus{z-index:1}.input,.topcoat-text-input,.topcoat-text-input--large{padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;vertical-align:top;outline:0}.input:disabled,.topcoat-text-input:disabled,.topcoat-text-input--large:disabled{opacity:.3;cursor:default;pointer-events:none}.topcoat-text-input,.topcoat-text-input--large{line-height:3rem;font-size:16px;letter-spacing:1px;padding:0 1.25rem;border:1px solid #a5a8a8;border-radius:6px;background-color:#d3d7d7;box-shadow:inset 0 1px rgba(0,0,0,.12);color:#454545;vertical-align:top}.topcoat-text-input:focus,.topcoat-text-input--large:focus{background-color:#edf1f1;color:#000;border:1px solid #0940fd;box-shadow:0 0 0 2px #6fb5f1}.topcoat-text-input:disabled::-webkit-input-placeholder{color:#000}.topcoat-text-input:disabled::-moz-placeholder{color:#000}.topcoat-text-input:disabled:-ms-input-placeholder{color:#000}.topcoat-text-input:invalid{border:1px solid #d83b75}.topcoat-text-input--large{line-height:4.375rem;font-size:1.3rem}.topcoat-text-input--large:disabled{color:#000}.topcoat-text-input--large:disabled::-webkit-input-placeholder{color:#000}.topcoat-text-input--large:disabled::-moz-placeholder{color:#000}.topcoat-text-input--large:disabled:-ms-input-placeholder{color:#000}.topcoat-text-input--large:invalid{border:1px solid #d83b75}.textarea{-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;vertical-align:top;resize:none;outline:0}.textarea:disabled{opacity:.3;cursor:default;pointer-events:none}.textarea,.topcoat-textarea,.topcoat-textarea--large{-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;vertical-align:top;resize:none;outline:0}.textarea:disabled,.topcoat-textarea:disabled,.topcoat-textarea--large:disabled{opacity:.3;cursor:default;pointer-events:none}.topcoat-textarea,.topcoat-textarea--large{padding:2rem;font-size:2.5rem;font-weight:200;border-radius:6px;line-height:3rem;border:1px solid #a5a8a8;background-color:#d3d7d7;box-shadow:inset 0 1px rgba(0,0,0,.12);color:#454545;letter-spacing:1px}.topcoat-textarea:focus,.topcoat-textarea--large:focus{background-color:#edf1f1;color:#000;border:1px solid #0940fd;box-shadow:0 0 0 2px #6fb5f1}.topcoat-textarea:disabled::-webkit-input-placeholder{color:#000}.topcoat-textarea:disabled::-moz-placeholder{color:#000}.topcoat-textarea:disabled:-ms-input-placeholder{color:#000}.topcoat-textarea--large{font-size:3rem;line-height:4.375rem}.topcoat-textarea--large:disabled{color:#000}.topcoat-textarea--large:disabled::-webkit-input-placeholder{color:#000}.topcoat-textarea--large:disabled::-moz-placeholder{color:#000}.topcoat-textarea--large:disabled:-ms-input-placeholder{color:#000}@font-face{font-family:"Source Sans";src:url(../font/SourceSansPro-Regular.otf)}@font-face{font-family:"Source Sans";src:url(../font/SourceSansPro-Light.otf);font-weight:200}@font-face{font-family:"Source Sans";src:url(../font/SourceSansPro-Semibold.otf);font-weight:600}body{margin:0;padding:0;background:#dfe2e2;color:#000;font:16px "Source Sans",helvetica,arial,sans-serif;font-weight:200}:focus{outline-color:transparent;outline-style:none}.topcoat-icon--menu-stack{background:url(../img/hamburger_dark.svg) no-repeat;background-size:cover}.quarter{width:25%}.half{width:50%}.three-quarters{width:75%}.third{width:33.333%}.two-thirds{width:66.666%}.full{width:100%}.left{text-align:left}.center{text-align:center}.right{text-align:right}.reset-ui{-moz-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;position:relative;display:inline-block;vertical-align:top;padding:0;margin:0;font:inherit;color:inherit;background:transparent;border:0;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;text-overflow:ellipsis;white-space:nowrap;overflow:hidden} \ No newline at end of file diff --git a/www/assets/topcoat-0.7.5/demo/css/brackets.css b/www/assets/topcoat-0.7.5/demo/css/brackets.css deleted file mode 100755 index 8e32479..0000000 --- a/www/assets/topcoat-0.7.5/demo/css/brackets.css +++ /dev/null @@ -1,69 +0,0 @@ -/** - * Brackets theme - * - * @author Garth Braithwaite - * @version 0.0.1 - */ -pre { - word-wrap: break-word; - padding: 6px 10px; - line-height: 19px; - margin-bottom: 20px; -} - -pre, code { - font-family: source-code-pro, 'Source Code Pro', Courier, monospace; - color: #535353; -} - -pre, pre code { - font-size: 13px; -} - -pre .comment { - color: #A2A2A2; -} - -pre .support { - color: #0086B3; -} - -pre .tag, pre .tag-name { - color: #446FBD; -} - -pre .css-property { - color: #8757AD; -} - -pre .css-value, pre .support.namespace { - color: #F18900; -} -pre .vendor-prefix { - color: #535353; -} -pre .constant.numeric, pre .keyword.unit { - color: #738D00; -} -pre .hex-color { - color: #F18900; -} -pre .entity.class { - color: #5585C4; -} - -pre .entity.id, pre .entity.function { - color: #900; -} - -pre .attribute, pre .variable { - color: #738D00; -} - -pre .string, pre .support.value { - color: #8757AD; -} - -pre .regexp { - color: #535353; -} \ No newline at end of file diff --git a/www/assets/topcoat-0.7.5/demo/css/main.css b/www/assets/topcoat-0.7.5/demo/css/main.css deleted file mode 100755 index 2d0bda3..0000000 --- a/www/assets/topcoat-0.7.5/demo/css/main.css +++ /dev/null @@ -1,508 +0,0 @@ -html,body{ - margin:0; - padding:0; - height: 100%; -} -body { - font-family: source-sans-pro, sans-serif; - position: relative; - -webkit-font-smoothing: antialiased; -} -body.light { - background: #F4F4F4; -} -body.dark { - color: #F0F1F1; - background: #4A4D4E; -} -body.light { - color: #181919; -} - -h1 { - font-weight: 600; -} -#wrapper { - width: 100%; - overflow-x: hidden; - background: inherit; - position: relative; -} -#site { - width: 100%; - position: relative; - z-index: 10; - background: inherit; - left: 0; - transition: all 0.2s ease-out; - -webkit-transition: all 0.2s ease-out; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); -} -#site:before{ - position: absolute; - content: ''; - left: -4px; - height: 100%; - width: 4px; - background: #3B3E3E; -} -#site.open { - transform: translate3d(250px, 0, 0); - -webkit-transform: translate3d(250px, 0, 0); -} -pre { - font-family: source-code-pro, sans-serif; - font-size: 12px; -} -/* Main Header */ -#main-header { - color: #373435; - background: #fff; - height: 98px; - -moz-box-sizing: border-box; - box-sizing: border-box; - padding: 10px 20px; - position: relative; -} -#main-header hgroup { - text-align: center; -} -#main-header hgroup h1 { - font-size: 40px; - margin: 5px 0 0; - letter-spacing: -.065em; - line-height: 1.1em; -} -#main-header hgroup a { - color: #464646; - text-decoration: none; -} -#main-header hgroup a:hover { - color: #000; -} -#main-header hgroup p { - font-size: 13px; - color: #999; - margin: 0; -} -#main-header nav { - display: none; -} -#slide-menu-button { - position: absolute; - top: 20px; - left: 20px; - display: inline-block; - vertical-align: top; - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - -webkit-background-clip: padding; - -moz-background-clip: padding; - background-clip: padding-box; - padding: 0; - margin: 0; - font: inherit; - color: inherit; - background: transparent; - cursor: default; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - -o-text-overflow: ellipsis; - text-overflow: ellipsis; - white-space: nowrap; - overflow: hidden; - padding: 0 0.5rem; - line-height: 2rem; - letter-spacing: 1px; - color: #454545; - text-shadow: 0 1px #fff; - vertical-align: baseline; - -webkit-box-shadow: inset 0 1px #fff; - box-shadow: inset 0 1px #fff; - -webkit-border-radius: 3px; - border-radius: 3px; - width: 2.6rem; - height: 2.6rem; - line-height: 2.6rem; - border: 1px solid transparent; - -webkit-box-shadow: none; - box-shadow: none; -} -#slide-menu:disabled, -#slide-menu.is-disabled { - opacity: 0.3; - cursor: default; - pointer-events: none; -} -#slide-menu-button:active, -#slide-menu-button.is-active { - color: #454545; - text-shadow: 0 1px #fff; - background-color: #d3d7d7; - border: 1px solid #a5a8a8; - -webkit-box-shadow: inset 0 1px rgba(0,0,0,0.12); - box-shadow: inset 0 1px rgba(0,0,0,0.12); -} -#slide-menu-button span { - background-repeat: no-repeat; - background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNi4wLjMsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCIgWw0KCTwhRU5USVRZIG5zX2V4dGVuZCAiaHR0cDovL25zLmFkb2JlLmNvbS9FeHRlbnNpYmlsaXR5LzEuMC8iPg0KCTwhRU5USVRZIG5zX2FpICJodHRwOi8vbnMuYWRvYmUuY29tL0Fkb2JlSWxsdXN0cmF0b3IvMTAuMC8iPg0KCTwhRU5USVRZIG5zX2dyYXBocyAiaHR0cDovL25zLmFkb2JlLmNvbS9HcmFwaHMvMS4wLyI+DQoJPCFFTlRJVFkgbnNfdmFycyAiaHR0cDovL25zLmFkb2JlLmNvbS9WYXJpYWJsZXMvMS4wLyI+DQoJPCFFTlRJVFkgbnNfaW1yZXAgImh0dHA6Ly9ucy5hZG9iZS5jb20vSW1hZ2VSZXBsYWNlbWVudC8xLjAvIj4NCgk8IUVOVElUWSBuc19zZncgImh0dHA6Ly9ucy5hZG9iZS5jb20vU2F2ZUZvcldlYi8xLjAvIj4NCgk8IUVOVElUWSBuc19jdXN0b20gImh0dHA6Ly9ucy5hZG9iZS5jb20vR2VuZXJpY0N1c3RvbU5hbWVzcGFjZS8xLjAvIj4NCgk8IUVOVElUWSBuc19hZG9iZV94cGF0aCAiaHR0cDovL25zLmFkb2JlLmNvbS9YUGF0aC8xLjAvIj4NCl0+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zOng9IiZuc19leHRlbmQ7IiB4bWxuczppPSImbnNfYWk7IiB4bWxuczpncmFwaD0iJm5zX2dyYXBoczsiDQoJIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iNDBweCIgaGVpZ2h0PSI0MHB4Ig0KCSB2aWV3Qm94PSIwIDAgNDAgNDAiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDQwIDQwIiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxzd2l0Y2g+DQoJPGZvcmVpZ25PYmplY3QgcmVxdWlyZWRFeHRlbnNpb25zPSImbnNfYWk7IiB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIj4NCgkJPGk6cGdmUmVmICB4bGluazpocmVmPSIjYWRvYmVfaWxsdXN0cmF0b3JfcGdmIj4NCgkJPC9pOnBnZlJlZj4NCgk8L2ZvcmVpZ25PYmplY3Q+DQoJPGcgaTpleHRyYW5lb3VzPSJzZWxmIj4NCgkJPGcgb3BhY2l0eT0iMC43Ij4NCgkJCTxnIG9wYWNpdHk9IjAuNzUiPg0KCQkJCTxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBmaWxsPSIjRkZGRkZGIiBkPSJNMzksMTF2LTFjMC0xLjQ3LTAuNDgtMi0yLTJIM2MtMS41MywwLTIsMC41Mi0yLDJ2MQ0KCQkJCQljMCwxLjU1LDAuNTIsMiwyLDJoMzRDMzguNSwxMywzOSwxMi41MiwzOSwxMXoiLz4NCgkJCTwvZz4NCgkJCTxnPg0KCQkJCTxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzksMTBWOWMwLTEuNDctMC40OC0yLTItMkgzQzEuNDcsNywxLDcuNTIsMSw5djFjMCwxLjU1LDAuNTIsMiwyLDJoMzQNCgkJCQkJQzM4LjUsMTIsMzksMTEuNTIsMzksMTB6Ii8+DQoJCQk8L2c+DQoJCTwvZz4NCgkJPGcgb3BhY2l0eT0iMC43Ij4NCgkJCTxnIG9wYWNpdHk9IjAuNzUiPg0KCQkJCTxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBmaWxsPSIjRkZGRkZGIiBkPSJNMzksMjJ2LTFjMC0xLjQ3LTAuNDgtMi0yLTJIM2MtMS41MywwLTIsMC41Mi0yLDJ2MQ0KCQkJCQljMCwxLjU1LDAuNTIsMiwyLDJoMzRDMzguNSwyNCwzOSwyMy41MiwzOSwyMnoiLz4NCgkJCTwvZz4NCgkJCTxnPg0KCQkJCTxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzksMjF2LTFjMC0xLjQ3LTAuNDgtMi0yLTJIM2MtMS41MywwLTIsMC41Mi0yLDJ2MWMwLDEuNTUsMC41MiwyLDIsMmgzNA0KCQkJCQlDMzguNSwyMywzOSwyMi41MiwzOSwyMXoiLz4NCgkJCTwvZz4NCgkJPC9nPg0KCQk8ZyBvcGFjaXR5PSIwLjciPg0KCQkJPGcgb3BhY2l0eT0iMC43NSI+DQoJCQkJPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGZpbGw9IiNGRkZGRkYiIGQ9Ik0zOSwzM3YtMWMwLTEuNDcxLTAuNDgtMi0yLTJIM2MtMS41MywwLTIsMC41Mi0yLDJ2MQ0KCQkJCQljMCwxLjU1LDAuNTIsMiwyLDJoMzRDMzguNSwzNSwzOSwzNC41MiwzOSwzM3oiLz4NCgkJCTwvZz4NCgkJCTxnPg0KCQkJCTxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzksMzJ2LTFjMC0xLjQ3MS0wLjQ4LTItMi0ySDNjLTEuNTMsMC0yLDAuNTItMiwydjFjMCwxLjU1LDAuNTIsMiwyLDJoMzQNCgkJCQkJQzM4LjUsMzQsMzksMzMuNTIsMzksMzJ6Ii8+DQoJCQk8L2c+DQoJCTwvZz4NCgk8L2c+DQo8L3N3aXRjaD4NCjxpOnBnZiAgaWQ9ImFkb2JlX2lsbHVzdHJhdG9yX3BnZiI+DQoJPCFbQ0RBVEFbDQoJZUp6c3ZlbVNKTG1SSnZnRTlnNitQMXFFSEprS0dnQ0RBY1lkV1pId09IbzRRM2FYa094anBXV2tKSmtWVGVaMEhpVlpXZVJ5bjM3MQorMVFWZ0xsN1pFVWVSVksySzFDVkVhNE9nNW5oVU9qeHFlTHYvbzh2Zi9QRjlkZHZmdmZ3UmJxYUQ5UGYvZDNOMjRkbjc5NjgvZm1CCjFNTXZYcjc4N3R0M2IwSDZ5YTkvZWdqcjFTeVZybjlSdjdLSy8venc5dHNYYjE3L25GOWRKZm55SGxmLzVCZmZQdnZkdzh1WEQ0ZGYKUG52OTlicy9QSHY1OFBhbmg1LzhWTDcvN1l0M0x4K2t4aCtldmZyZGQyOS8vL0QyNnRzLy92Nm5mbXRwNi9iWk8vbCsrVm44V1VpSAorUE01SHI3OEZiNSs5dnFQejc3OTlzWC8rNENicFlwN0hkOTg5L3JyRjY5L2Yzenovd2p4OEVYS2g3UWR2aWp5MVg5LzhldUhiOS96Ci9lMmI1OSs5ZW5qOTdzdTNiNTQvZlB2dHpadVhiOTUrKy9QRHpaK2Z2VDc4NnRudjVadG5oLzliM3VETm53N0hsOCtlLzhja2I1Mi8KdW4veDhrRmU4Tld6ZDRjUTBSZlh2d2p4cStOM0wxNSsvUS9mdmZyZGc3ejZ1cEdjdm1LVC8vU3R0Q1hONG0rUXkxZS9lQ1dVM3p5OApleWZQSlRkRWYvNzY3NC9qWXdpUjVTZi85dXVIMzc5ZzkwdTMvSytmV3JOdjMzeno2dG5iLzhDMWh5K1crU0QvMlIxLysvRHFtNWZTCmUzemRPRi9sd3hmOHQvOXA5ZVF0V09lTHVGYnBsYkllMGx3UEtWZjl2dmZOd3g5ZlBQenA1NGQvZVBQNlFUdmcrdTI3MytnUUxNczgKNjcvNnphKy9rekgrcDljdjNzbURyU0J0MmdPL2V2UDF3MHVwMzY2L2YvbU1MODRTK3I5YTRiZlBaRTY4azdGNzgvSzdkNXhaMWU4ZwpQZnpMWjM5K3dEQUZ2Y0UvZnZQdytyZHYvcG5QK0VVTTBrN2NyclpEWE9TTlF0eVdRNmhzUCtKUnQ3bmRNL1IvdFdrMGhHYThmY3lRCkwyV2Mvdkh0aTkrL2VQM3pMMUtWdms1eDFpSDgrN2N2dnU0akdBN1YvcGZHcitydy8rYi82OVBLaTc5NzkvRGFubDdtemMydmhua3cKWC8zcU4zTFh1OWRmMzd4NWhkNy9GaE5jSnNCcm1Sc3YzL3hldjJ0Lzh4dTUvTHR2OUEzNCtTc1pxQy9mdm5pTk5xZC80RGYxcXk5ZgpmaWRmL2YzYk45OTk4NHZYLy81bStva3U3WDkrZUM3clY4Ynk2OE0vL3U1L3l3ZFpuNXliaDkrK2ZmWmNHcERQcmM3VnN4ZmYvUFM5Cnpjbkx2WDA0NkpkeUpULzY3KysvK3ZiaDMyVlY5Y3VWZXZmNmp3OHYzM3d6Tk5zb3dsVU8vL0xzN1RmZjMvU1hMNSs5ZnZiMlFIcHIKK1pjdi9pamZQSk9lNm0xMzJoTWFsVm55alhRT0wyR1ZreHU4cDhMdzFSTnU5T3pkSDRRQlBieisrdHZXdG43Y1A3alN2cis5M3p6SApISHg3T0w3OTd0cy9ISDc3NXMzTDF1eitxOWE2a1VsRi9iK05lM3pKQzE3LzQydnRvUE03V1lYVE93bi8rWnU3aTlSKy9BN3k1ZDl5CjZ6ZlBYcjU4OGZ1M3o3NzV3NHZubDI1dzRmdDJKLzN1UXliV24xLzk3czNMRjkrKzZ2TnBvSHo1N08yN0Y4OWZQdnptejkrK2UzajEKNU1FOTNIMzlRcGpjSTh2NHZYVis4NmRuNzU3LzRaY3ZmdmYyMmRzWEQrOWRmUmlBZjMveCttdVorNy81N3NXN2g5NUJiMTU5QXlubAo4SnMvUFB2bWdhL3g3Zy8zclBtYjFtRCtTbGoveU55LytPSTlYRCtzaCtQcjRmdS9mL3ZzNnhleW9ZalE5ZmR2WG43OThQcndhN0QzCmFmZEp0cTl5T0g0OS9kczBXd2tzeStIdnZqcStuZjdiTkovK2hKTVNoNUtzTEZZeS8vZXk0djlKZm8ybHRGTG5iVmV1aDNLVWNtUGwKZGloMzgvMDAzM3ZaUGRqNEU0ZVNockxzU3RZeThWY0pxNVRDMzNVbzI2NWNoMk1yTjYwY3c2MFUvM1E3eVljN2ttN0QvVmpHcnVQRAorVThheWpLVUhGZVVTWC9GTXBRYU55bjY3L1ZRamxxbS8rdlNXRDQybW1rM25zc3dxbjFzcFV4dGVKZGhrSFZVeDlHdFV2QWJvMXAzCjQ3c05JeXovVGpiVVB0akhOc3o2RzZOOE40NjIvS3MvODhXeGp0TnVvSk9NSzM1alpESEdLMHZsS0plVEViNjJzaDliR1V2OHVtTzUKUFJsRnYybmlHUFl4UTlGQjhpSGJiTEJrZ0NZYkk0elZqWlZibGpzcjl5aStzdkF5NDFnR2p0SmlIVi9ab1VjdWtudjJUZVRMcjN5OQpqYTl5eXljTzlvUXJwNHc4d3NUNzRqNHhwYlNrTlJWUnRyWjBsSEtiN21XMHc1S1daY2xMV2VxeUxkZkxjYmxkN3BaNzZjaVlVMTd5Cm1rdmU4blUrNXB0OGwrOG5lYUFnczNSWjg3cXVkZDNXNi9XNDNxeTM2NzNNaFNEZHNKUmMxbExMVm83bHB0eVdlNWtub2NhNjFGelgKV3VwV3IrdXgzdGE3ZWkvekpVNWIycFpOMnRucXRtM0g3V2E3Mis1bDBvVHJkTDFjNSt2MXVsNXYxOWZYUnlrMzE3ZlhkNXhKVVY1ZwpPZVpqT2RiakpsOGRqemZIdStPOXpLNHdzYmZUelhLVGIrUUJicmFiNjV2anpjM043YzI5VExiQVVWaHU4KzE2S3c5M1cyKzMyK1B0CnplM2Q3ZjNkTE9PUzdwYTc5YTdjMWJ2dFR1NTFkM04zTzkzZDNkMWpSdHhMaDkzbmUzblRlM24yKzJzcGNzdDd1ZkwrNUVmR2NwYlIKYkovdmhuSTdsSnVoSEhmbGVpaWJsMG4rcVVNcFExbDNKUTlsR1VvYWlrekE2VDYyTXJLd3puem44ZEh2eHAvYlhiblJNdkhYY1NqWApROWwycFE2bERHVWRTcDd1Y2l2THJxU2h4S0dFb2N4ajBTNmZyTy9IcHg5L2JvWnkxTUtWdVJ2SC9lanR4OHhIYXo5RSsyR1JvWmlHCjBkZ1B3YjdqOTkxdDNYelN0K3pQcVhYcHZpUDN2YmZ2c1pOKzJuZk5kTklqMmh2WFZqYVdhcVZZV1ZteWxZVWxXWWtUMTU1dG1jcjYKMi9UM045TjcrYytSNWRyS3hsS3R5TnFlNUovVlNyYXlzQ1FyeW5xZDBRc0g5Ykc4NC9nZE9WNlY0NU01SUJpRW1kMSt5MjYrWnE4Vwo5dVBDZmd2c3B6dDJ6SkVkVVNlK2VlYTc0Z1ZudnRBdFgrQ2FqMXo0aEF1ZlNKNURac3VkZE9hTjhLMXI0VjlWK05ncTNHd1JyaGFGCm04K1RUS1E3NmVVYllYclh3djdxZFJGR21JVWhKdGxSZ3V5dzl6TGl0OUlkeCsxYTJHYmRpakRRTEl3MHlSWVVaRCsrbDRsd0s5MTAKRkc2NzFUb0o0MTJGQVM4MUNTc09zbkhmeXd5NWxUNDhsbXRoMWJVVVlkcFptSGNTRmg1a283K1h1WE1ySFhzVUJyOEpveS9DN3JPdwovU1RNUDZ6ekpOUDRUc2I0UmphR2E5a2dxbXdUYTg2eVlTVFpPSUxJRHZjeTNXNWxMSTZ5cVd5eXVaUmxsVzFta2UwbXlxWXp5N3kvCmsxbHhJeHZSdFd4SWRaS2RhVTFaOXFna2UxVVFXZVZlWnVpdERCOTJVV3lyMkdpemJHN1lpRU9jQTdoc0UyaXRGdXA1TGRhVEJhV2IKT3VRMzdQd2JKUU9WRkVSMjRIeDQ1SFpzaGczNDVmMWlpQjJ4TTRiN2dkVXJTOWhrVW1XWlVFRW0wNldwRkcyUDRPNkRIOTJCQXRjbApkcUhNMWVzN2tlMUYySXBrdHhFaGdQZkdmdGMydTFWbVdiMnczYVcyM1dHenU4WU5lWEdUR0pMSm9NV2xCZ29OZHhRYmdna091WWtPCjEyTzNveGNncDgzMzJxUjhvREIzeTQ5WUxicFdmRU5zdXlpLzU1dnpyWFVZcmltVjNLWGR5RklrREUzb1VRbFBCUitWNUc0b2lOOUoKMDhHRWJIMGRsNXBOU3FaYXdhYThvZDRNRzJGdjZNVVhlMElmZVJ3b0hhU2RzRUJKSWNuSUY1a0JSODZGRStuQXV5TGJCdUFjWitRNQpmYXAwdmpOeUh2SWU3ZUlMN0dqUGpiNlBGMm5YbjZ6R1QxNk14eWIrZXVtS1ROMnBPTVhVSGkxNXB4bVp0alRaSC82akF2bE9SOTJyCllMN0hOQVd0U2Zvc3gybW4yTjFRZ25hbEFMKzNrMUpQU2xjaTlhOTFjald6bGVXc3BMTVNMeFQ3bVhhYTdwbENoeFUzQ21udDkrM0YKSW54aWFwcjJqU2xqUjlYT0xwYnQwVkpkNzVzR0pWL0wrc1RTVmNvOGxtbi9zUmtiK3QvbkpUMVNPQ21tT1Q2eFhPcmdDMlY2WXNVbgovMXpTM1QvcDU3TTE2UHRpYUQycU1xcUwyYmRXVk1KeW80UWJLYXJwd203RXNKVSttZHJzeTl2TkluMzZuNjVtbDFCOTlZNEw5cWpyCjJGWDY4OVZhbWdsZ3RaS2JnYURiaHRLNFFLZnZYNW55VnpOTGRQUFV5WEwwQlhrN0RVYXQwY2gxdkxnY2p6dlQyUG1DTkdQSzZmcXMKT3l0YnQ4NjRoZWJTRW0yZnA3T1ZlYm9JenhmbGU4dDBaakM4dEZMZnQzNVBsdWMwMkNBL2VRMi9ieDMvOVpmZFoyL3drb2c2YWovbgorby9LSStmNmowc2hNM1RvTzBvYm0ybCtxOGtic1drLzk0UEVVWFlTUnh3MG9CdlJnYWdCVGFJQ1FRbFNGUWhLMEV3TlNIV2dHeHAvClZBK3FUUTlLcGdkQkU3b1JMZWhJUGFqU2xMUk1WSVVDRjhjOXRlSmIzRUd1cjZJSnFTNEViU2lxTmtSOTZOYjBvU1Axb1VwOUNCb1IKT0ZlWVRDbTZwNFlMdFVnVkk2aEdsYW9SbEtPRnlsSGdVcnFuaG5SRERRazZFclNrSW5kRlZWR0VKbEdVRXRsaG9Hbm1qdXJTcmFoTApVSmlnTWtGcGd0cFVsa3pGQ2FwVElxZWFxVDdkbTJKOTFES0ozQWJKRGJKYm9meTJvbjdDVDZEODFMazRaRm9kaXk2bHFXUldxVUNoCkxGUGoxR2RTMXlCanVTVlZmNDhNZUJTUktBOU5neEMwWTZwbmpITW51ZXg0NUk0alRqdVpCT1dFdDExa2ErK1JJTTRsaHFleGlVZloKeCtkY3g2WXRhaG5OVk9QUDNpdzNtQnIzdGpEZlZ5ZjdJKzVLMnBXOTJTMmZsSFZYeXJRejVaV2RrYTlTVWRxWDY1TnlQQzFUczNsNQp1VDByNXovMzU4WG4yRFR1MVBmaFFva1hTN3BZekpKM1h2SWpaWDIwTkZ2dXREUHNGcHFiMzFlMjd5blgwODZjZkxrY24xakkzS2VkCjVmcDk1ZlpwWmJwQXZEU0lUeTdUbzE5OTVNLzVKdnF4RFpuaFptN3FaelNQaFpiRmlwb3ozYnhackxqMWM3Tml0dEhKVEtYKzQ3eWgKTHhzZkQrZXNyaUs3Sk85V1dyWFpMaE9OUmxyV1Z0ek1XMXZackZ5M2NyekFvK1JuT21OUWwxaFROOTFmNWtZREg1b2VZVUtQY1ovSAp1TTdBYVk2MDRUek9hOTdEWTNaTXhSakw5RjZlY29HVGZCOExtZDdQTjU3QU1rNVl3elJ5aVk5bURjTjZmNHd4UEpFTm5LLzh4OWZ4Cis4dGZhQjEva0ExMVowVVZrZTFHaloxMHdrTE9Tc3N5aWFTM0RyN1lvM0FDOWNmTzVwR0ZUemJUSzF0Rm9IVFA3QzE4czdLNXFITTIKVVJTRmc3Wk1sRS9kU3dzLzdSMDl0ZXFyVFpBdTZhL0ZEM3kyMXhTQTRiZkZBbExmTGJ5M0VDenB3WjNveEsyUXRPbklQUW8zdW0zdQozRm5FUDBpUzhPa3U4bmlRa0F2RjhrMUU5R3Y2ZDIrRVg5eVpsM2UrRHBQSThaSHlQTnk5Y1BpdTE0V1Mvalk0ZnVuNmxZTHBDRUV3CjBNQ1k2QWFHSXhnQ2VhRTd1RTdIalQ1aDlRcmZrQmRoYWQvVFB6dzNsdXZNMXRtc3M5Zk9WbzJqVG8yVmRoYnFyTE16emM0ck80L3MKdkhIa2lMZFQ0NE1qLyt0OGI4L3JSaFkzc3JXQm1VMERIOXV6cmhObWRVSHlPZWRIZzB4eldXNTVqTXVjaUIxam1kN0hOYjZYVFR4eApnLy9ZZFd5RzYzK2JSbEJ4T0VUNWF6M1UrV3FSNVhJbzZVb1dTRVRWMzB4Lzk5VlRxaDYvUFcveEtrdkZQQjlxdUJJOWNIMjB1ZE42CmFPc3FyR1ZiZ253Wm9OMUdSeW5uV3VNaWY1UWM3ZXNZOHJvZFVFRWJpVmRwemt1NzJTYzN4S2VaUlRQTnE5U2FaWkd2dUU2VWExRysKMmRhMjVIa2pkbHFZNHBMbGo0amZZV2dyWGMzQ1Z2cERmYWIyOU5uV1dSZ3Eyc3Boem9YWFZXSEUycGFvaUZYYmo4SlIwWmFNVzk1MgpiZVY1M29abit6enRmZndveG5KVlU5clFVczFsKzhTaFBHM3R3a3kxSjkrMksrSG5qMDNUZlNWcDVYamJJSTZPVkx3TVh2ekh0OC8vCjhPTHJuMDcrQjREOURiSjR0YTVCOWttTVk0cWxyQVF3eXVKaTkrSnJqUHh1MmRvVkI3OUM0eERzaW9OZFljdFVIbGlVOWVHVlB1SmkKN2JDblhvaHVXdGFybERDOVArTEcrK3MvcEp0Lzh4OS9sajdHdjNMaG9oMzgzM3ovdWJkZEo5cCtrODJmV1d4M3ViWU41WFowUE50bQpzUmdXU25ZRFNrS3lGd1REZVMwVUVZRDBPbEkwdUtkVlNFV0NsY0xBTmNXQU8rNFNBSHBoMzljOS81cld2dHRUWUtPQ0dOMGpwUFp0Ck5aTmpMNTROQUtvdVhVZHcwaXZjUUhINU1hemtwWi9IMGJDajhUcWJVWVpXUWtWT0VEdlIwQk9uaHNKaUtBckZVUT09DQoJXV0+DQoJPCFbQ0RBVEFbDQoJR0pLQ3BzSTdBMVBjWkhYcnZoOGVNcUJEbm9RTkdYMnpUUkFLQmgwWXdRTWRQbkNqMHM0QUlWaWFkTE01ak9CV3h3bGlyQ0VKSWIxVwpSeEZTWmxVTVlhV2NDdmtVMG1tV2ZvQkllaU9UYmFZWW1nMHdlRnZVUDQ1dU5keEZSMTdzZ0J0bU81eWIxL09HMWtFMUJ4WXoreTNtCk1RaG1DSDh5WU9aSmFCa0ZCSFR6dHpyY28yS2JETk4wMjNCTTE0WmVjbk40TnBpU3dwTm1Da1YzT3kvNkFCUnRVRkUxbjZvL1BEV3QKSWxPeldLbGRGR29ZbGRiZ2Erb1pSeG9XYmllS2xmZFVPTHJLb2VoUGpKdnFIYXA1ZE4yRDJvZmhRUlVSQ3YwREdzZzZVUW1wVkVKYwpEYm5kcVNJbnlvanBJaGg2UjQxU0gzR05aRHBSU1RBbk5nT1MzbENxdm10dzBraUZ4RUdsbzBaeVE0M2tEZ0xwWkFwSkdoU1NZc3JJCmtjcklMWlVSQlp4MlBXUVo5QkRvSUUwTG1Xamo2R3JJdVNLU1RSR2hLdEwwa0NOMUVXb2l5b2NNY0dmNDV3R2tTRS9oK2Q5MzdlODkKMWF6bWs4R281WVA1SXUrNlY5TC9Hbjgza1BVSXFsZUR2RUdzUTdQUXA0YXc3Ny9UN3ZkaTdOZmgyTG5oN3RYNEwxeHgyaUh2SFg5Zgo3Ri8xR3VpLzZzenQvMTd2ZkF5M0J0VTIvRDJCUDNBVUQxanRqdFJPNXNKWURhdTltaTlhUFIwZFZFOC95RFRncy91UzYwc3RFUkJ6CnVzdzRZd2lja2RYLy9qMW05QkdjK2dzZTh5Nll0M0owTVlUbWxoZ2RGT2NPMFhPZjZ1SmVqbE5IN1BtbjhmZnAzeU10ZThSQUR3MVoKSHNWdVBJN3NTTHUvMHpSOFdFNWNOcU1qNTdMUHVuL2ZQTmpUbWE5SCs2NjdsSHV2OWg3dWc5QTlNRHRrNnZFQ01yVVlLTFhEVVIySQphaEJVNWZUYzRXV1BuOGdicnJuUjYxWmZhTXpJNUNmSnRuemQ5UGN1MGV2bUVpMWtWdVlXblNnRmROL29MUjlPdHozZCtIenJhNXRmCjIvNThBeVJtbEp1Z2JJT1Q3WVBqVGpqdWhTTjJkSThlM2VOSEc0SjBVc0hIUEtTbkdOTEhVS1R2d1pGT0EzVHRvOEJyUWJueU9WcDgKS044UEdPK1diN09GVHcwbmZZNlVMczJvdmtkTEQzaHBLd05jZWpwRFROL3VFTk9QejhwcS9vTjFQemVuQVMwOVlxWG5ObEh2emE2awpiNmJ0SDl1YzFWbTdjYS9qM0oxcytxN2NDdnNrVGdZSlZGNnVybHlmMEhmV1hUZURyMThudDVUSlpuaXhXYjVTV2FDSW9xeVhIRnczCkN2VUw2N1MvNDlUbjVGY014Q1VuM1dsSXhHbTU3QW1NcDhiOXM2Q0ppOEVUZXp6L1dTREZkQjVOY1FMM3Z4eFVjUjVZWVhFQTA4WG8KaW5MaXNWMVAvTG1QQjFtazZkRTRpL0NlbGZQWXVwR1ZNMTFjUE1mQm1kVFh6N2lHaHBXMHM5NWRiU0prcGt6RkdlSTdyQjdDS0NwMAo2amtJczhxMGpZZ1dYVmVvMTNtTElaZWRHVU5xZHhQZjUycVBWcCs2cmx1Z2RyK0pJRnpOa0NJZm02VkdMVnpkWnJSZWlmeFUrOU44CmRBdThmMW1Tc0Q3WXBsSVIxbS9YaGxCRTdzY2I0aSs4YWwyRVp3NHZrVmU1TkhSRDVTYzNwRGF3T3FmRWZzeHBxelQ2eVQ1YlUwKzcKVUhBOWpHdmF1OWJNZHBYelBCcFJQcjJsRHpLbmZQZnExY05iV0ZUMER4ckJ6R28xU0g0dWtJMVMxUmhHV1Jwa3o3Rit4eFlFZStlaQp1NEtBSWRHNmVKMmJERjJhcE53akdUMFVkUlNGZTlncDFiMXBpRnFzRGFYWkEwb1YwYW40enNkMXpreXRrNEx3TkVqQ3FuSnVnMFI4CnRLM3N6alZQMFQySlhqSUFLTnVoOW9rTm5YcmlSTUJUSWZ4SkZWRlhSbysrUHhwdmNnK0ZDbnZSY05lbURHZHJOZWVKMmlxaFhMUkQKVkZOWnRkZ3U1Y0ZEdVczR3piUHNJS0tHSVowYVdEMjFrbHZwUDZXVjJzcDFLOGRlcHZWbUtOM2J2bmU1akRET3NDdHBLT3k3cVN5dAo1RjA1LzZrblpidFFycWR5ZlZadUhpbTM3eW5OYlRSZDlsbFR1Zi9Rd29rODFmZzV5bmtNYm8vQ0xTME85OWhYYWRqSGsxUXV5bU9QCkpzWlNuRXdkM2NXa2NKbmREL3BsZHcxdkZnZHpPMWhxRmw4ZnNNOU10aVp1NkIyY1c3QnV0bkRkU25QYnRVM25POXBpTUlFVHpZN1oKNWlZc01VZk94RnZNUUhjTFI4Nmo3aEsrcGt2WXhvOVl5VUJ0SU5FKzVyYVhTbU12YkM4UU9HaDNtYzN1a21sMVVSZncxaHpBdDJiOQpCUU9NRk9LNjFRWGkzdGJzTHZUOVR0L2ovdTBPNEcyd3Vkd3dLaGdHenp2REVUYmY3M1RpL0YwcEczZUVqVHVCVmVMdFVKb09vZW5nCkdZN1ZkT0lFWG5kUW1lME1LTE56Q0EvSW1JYUpVVzFrRDRKeHNld1U2M0tPY1RuSDA5MU1GMUF0RjlFc285eDZqbXJwWmJvZ0dWOUUKeUQwQklMZGNSdEk5aHFKN2I2R21Ic2FZWFkvVzlTaGRqOC90c2JuK0RGM3FONUYrRU5vcG91K2piM3NjczB2V1hZcnVnYlpOUUI0RQo0bHNGUmUwRGE3dVlleDVPMjFYREU3VncxQWVuQytyZ1pSUEZtU3A0b2dlYUpqaGRVQVgzeXVCZUhkd3JoTlZNb2FWdGRubHFhbUZYCkRWMDVqQzN0eGp5b2lQZURvbmpYRklNV0ZUejVqYS83ejlaS2JhWHZYWDBienEwc3ZVeW1WM2J0TWc0NlpoaDF6VUhqN0dYVXhEaWUKMDZERDNPeks4YXhjbjVSTFAzVWlPOTJYaXpzM1RUMlBseVlHVGYzUGs3SjhjT0VPTm0zcGM1UVBqOVorZjd3MlF5U25reGpKODVqdApmYVRrUG01N2pOdzI1OXpVREhhanNlN09wbWszMU8zTWRPcXJhOTQ2OTlkZCsvZ1dHeC90MEhnU3kzRFRQRlhiU1VSRDZyWTZzOWJkCmxkdUpLLzdJNmIrWkE2dFFPSFhYcFJydXV2Tnk3Nzdza1E2RnNtMmVMTnhCdlpoeEYvSndSMzYxRDN6WUtKU1VadURMSnA2M0dJZ0oKMWo3YSsrNXRrN3VsM2UvR09NVVlFcUZCRVNvT2VXaUVCa2VvV2tFM3hOU2lKTzVOLzFEdXFVenVTR3ZodFZrTVBYQmlESjFZVFpNdwpKU1dsaWJxUGg2U0dDN0Z4ajBYSGVaekZQaUoybTB6OTJnWUI5TEdnMkY2V1N3R3lIaVo3L25NZXgvWlkrTlFGSVB4MFJycjdtUEkrCmhCWEJLSFVIaXJqOHZRRXU4bHhGdVNQbVJnVGF6UUFUR2JhSDBLMFF6ZVp3Z3ZQNGlLcy94RHJ3VDY5ZlAzdjE4UFhoOTBZNmhKOU8KbDRnZDYzSWg0MDl1dXNhUTlTYzhIcmV1NGUvM0hyMCtHUXoxRklLNkQrTGZnMC9WQjZ6KzMrc2Q1bFRVaXFrQlRyZTllNnViT0pZegpKY2tmM0lQdSsrT2Z2c0J4MGpjd284VlRzeEc4QjBrNzlmZDUrZ01mN1lGN2pvQ3h0M2Y5UFZtSGg5M2pqcHJkWThrVExnTi8wOVM3CnZ5Y08ra0VTbEh5bTlDVFg5MU5QVC9LRFpsVDU4WUgxZ1FjYmQxcEtucEdJTmhhMU9rTVhMelREWHFuaDZjSWZGeG5pWjJoS3VLT20KM3lXbE5iMmpmUm9IbmVlTFBGVEkwblRlY2RGbzREQ3M1eHZDR3hLeEJ4dlhMVGhNSWhaZ282WHpUaGFvbWwwcWw2UkNtRFFWMnZYVQpFRXlSN0svUVZuZzdKRDl6QkpNRDZudnFzMkl3ZW9Mb0hhMHlOYmpLSHFwaVFKVWRjRDZieldRUG5COHRKM2ZiL2RUTUp3cGNpYWF2CkxHWkljU2o5YWtxUHEwRmR0L0FmVTU4bXM3VW8xdjdXZ0M1ajZRRWh1NUQxbml0eFg2YW0xZldTTHBibGtaTDNaVG9ockU4cTVmRXkKUGZwVi9iZ3lmVURsQzhyZmVabWVWdTNwNWNjR0wxUm9Vb0pMWVd2aklpcDdSVW9DWlpkck1SSmRWTGpwcXpHM0MxazFYVStheTZqSgpWOWpleCt5S2lRYmIxZUJ6RnNQVFFITWRNTmRDZDZhR2xmUEluWDNjVG1NNUFNbWRSZTRvVUc1dHhscmhQNVBOeEJ0enFONVpFTWRzCmNUekIxQk9IenVVV3orUEZiUS82Y3owWlovRis3WFlPdDM1MHcwaVBFdW1HbEhCYXBqRi8wTTRxazNiYzdyemtzMEplT0EyMm45TnkKd2NmeFNPazJwVHFOSDU1VXppdzgreko5WDRVUExVOXQ4TWsvMDlPci9xZHA4REVPQXAzaXp1RHBtVnJFdGZxR1dxNngxWlFHVDlJSwovbUVxMmdTaGhCN1QyREswUWplN2I3anF2TXZPcXE0ZWg5eU9icDZMSE1SNWlFTnRMMFQvWGVRaXprY0tzZ29xTTduZWNSSTFpSi95CmtzNVBvcGxjT2xmSlpvOHMwOEJZL0tmUDBUMWYyU0ZEVGdFd3ptR21NeWJ6R0xPSmo1UVRqak05a1FGOUh6dHFaWHJmbHg5UjNzdmoKUHFyODJPQmZvTUVQaVU1NThzLzdHdHpqaHRPWldhVHM3RGhtdzVtYVZXU1hPWEVNczZIZFJzMGdMaFc1ZTNzMTB4TUJJU29ZVFJaNwpVTGxPWUhlNmI5TFJRbHZ4Nk1xK3AzU1VMSUtra0dsQXhpZGFRckVRRTUzWGluUUFLNEhkVzEya3dBb2t1cTJ6Z1IzQVp0UWpCdGVwCnNxclVmTlpaZWRGa2JPakdRcGJnVzUzTmJhM0ZGN21QcGZNcmQwdDFNQnVWcDRrYVZOZVRSa1ZvMUc3MkNzbXAwRHI4S0lMNDlrSTUKejZhaW51RDV2U1ZPTi9ISlpYbEttWjVXN1daOWFwbWVYdlUvVFlOdTFybzlTejU3bERsYjdySXNPbVJqdmJYRVhTc1RkczFNMVhXawpqV3FsZlNwWWFxNmp6REs2dG1DVWdra0s5aWc0cytESVVpZVdnc3h2bVg1TG9lWFo4MjdSVTlYU0Q5ZmkwVlJUQTVFL0pmWHdhZkxoCmxuNjRZOGNuOHpLNWg4bTlTOGtnNUtFNWxXNEhJUG4xa0YycnU1SG9RcHJNZytUdW83M3J5QjFIM1duVVhVYWp3eWgxYjlFME9vdDIKanFKVE45R3BrK2dSLzlCMDRpQjZ6RDIwY3c2OXp6TTBQZVlZdXVRVWVvSWZpTEU1VHkwM1R5blQwNm85WW9tNlVLYW5WLzFQMCtDUApIT1JIRHZJakIvbmJYWjkvK3czK3lFRis1Q0EvY3BDLzNmWDV0OTlnOTNWZlBMbnU2VVM0eWt0Y2F0am91bDYyd29RcVdlWVlLS1ZrCmRYMkhHZEZURi83Z24rc0ZyL2xuYmRVYzZNZ3NFOUloaDZ0WmVOam9Sai81eHV2TFBlV0xOVndoYnYrUWxxczE5UHhPNzZteHY3NUkKcXptdU9GTTR4YTFjdVA2MFJydStsQXMrLzVIOGlXNy9lTm50SCtIMlQrNzJiOW5FN2s2Z3liY25FT1ZIQzNlczY5dXpjdk5oUlpzNQpoU0hqNTMwK2x6UHZrRVloZDZESmJIRHgyNFlUUHo5NnFaN0gyYmd4Y1R4R3JneWdzdkhreGZIVXhaUHlOOWRNVDJKejB6TDdkVHVYCnpRVWRpdjM0N01aV0sxeENRaGdXd3ZPNnRPTnk3SlNhZGk2UHAvRG9TV2Zxa0c3R2s4MThhb1dSa2FXMUtxY3BLZU1ZYk9FOTg4SmMKYVhVSmlYblI1cnhzYzd6d3gyWHN6K2RyVXFOTDh4d0RXeE5aU1p1Rml4eFF5em1zaTZFNkRjK1poSWZXaXV2NzQzemM5WHJ2ei9JcQpuNzF2UHBFRlhtU0E4Y094bzNlR1o3eHc0bEhEalJxTWNYTFk1ZmZoSnNzWmJ2SVMyUE1FcmFwN1AwN2JmRS9ybDkvaU1vaDA5ejZUCnY5TEhRQ2kvRjk0blBOWGpCVDUzVEFMdk1IbEV3dnRhL3dCNDRyNzlGdkd3NXlwMWdPbnRlTVBwRno4NHlpOWRtdXRwTjljTlp4WlAKTXI2T1NaWjBTN2hyYVY1N2t0YzhISSttR2M2T0U3TmtNNlJ2Q09mcnFWelhsc0wxMnVMMGRON1NQYVh4eHBFcVhxYTZWd3pLczlGWgpkYlJnNGp0enlYZFlUeHJpaE9IQXF0T3F3Y0F3NFNQbTk4N2llNVBoQ1RNZFdXTWNwbWRJd3l4djJWMU84N3VNR1Y0aW5lOHpYZktlCjVXWE04eklFa0V5UFJaQzBzekU4Z0tSNkFNbm5ndE5lWG0xUGg5T2V6TzBQelpXd1h3QWZjelgzSXJsdW5wSDlJSVdRbU5CUnJ4UnUKdGRaMXpKazUzTzVETHZxMGRWWXZMclM2U3c3Wk1xQjVEclF4RzdQRFJVMnE0dUNmWlg1MitHb0hjalFJcTE1dzExQ3Y4d0FONlpmNgp4ZkxEQzNaNUJHL01FNXk0Z0k3bSswMjJVdlFPajV4RGVUbDcwRi9pZ2k2Nm9oL0cyTWpUYkRtWDh1V0VDL2x5TEZmTzFBTE1YS1B3CkVFY1BhOVFkYTFmbEF4THFXRURqN1k3VENLK1o3TGdkanpMMFdMWFlZOVgwdnYwZStlS2Q0bnRTOTdTN2RjNDJuY1RGUlp0QWMyTncKT2o2MEpFWmhEWGM4WkdqajZVTHBHS1FQYjVrM2M1V25pSEpQbkI2MDBXeVlwSWs3Sm4vTXdnSm4yZ2MzbVZSWkpsZVllUFRQVVdaYwpFZmFkWkduZU04cnRta2Y2WURMb0FaR1hKYXNubks3NS9jRWhsaFArTkNQODhwL3d2bTA1RGFrY1cxNzVob3QzL05aajdHelAwQWg0Cm4zWnBCanEyZllTdmorRDBFV1BlY04zSzVOSU9kSHNoWC81NytPWXA1MFFXcTQ3OUg0RC9sNkgvYTN2VnNvT2RLZz09DQoJXV0+DQoJPCFbQ0RBVEFbDQoJVUhISW5abDNHUno2OHozR29FOVpkTVA5NmhDTVdMd091K3Z3dXZNUWhRN05aU2JaUElLRVRuTEtFaDMweUU2UXovWUNRSC91Sm1KKwpNckUrTjhUNEpPSjZBT2U1STRSbklXQUhJQjFnY2hKeE54dmhOSURKQU4raVR6YWVmZnhwUngvclVhdlRwNXkxNmljUy8vaGtIL1ZrCmc1aTR5dFNQVlBERHZGSEJYK2Q1Z2NSM0pjc2paUVpIYVI2cjh6OTZucThxa3R1UXkvOHpONnVDNVRKSDVnVFBhd2pNUUNiZEoxMUwKcWJHbzhTUWgxWHU4OEVkcmNvMVhtNmpRdzVOKzFtYlZIUE5wOW5Gdk1seGg4LzFzWnZlVFpyVlBaeVFleFRzTFYrR0w1VENuamFNegpyMVZmbnNuOUwveHhVWkQvVEExK2twQy9YSkx4bDUzZG5HbVRrTDJuV3BMMmV5Wm9kK2FJOU96M2xwZ0g3Rm1USU9zZWVXZWJZaklsCkhOdmVOcG4rZmR2MDczRGpCNU12N1hnVnp5L2VEbFlaejFVWkRxV1NoVHp0VDZNNk9ZaHFmd2pWaUFQZkgwQTFIRVUxcGhwOC81bDUKVHl2MzA0Y2RhZlQ5NWEvZm9OcmxOQlh2UHY0Sk5qZFkydlNjZEpYeVhNSTd0a1JXaVZuaENwTWkzOWdHem1oczNjRWh6MW5TcXBaUApmTEhzYkc0NHVlRXVjVzlJMzBpVHlkTFNxUkh2T3pWemlhWkFtaTF0VmFUQkJJNXdUN3hXTGNkWmoxanFnTnJCWFhLU2pPejByRy9tCnU3cGM4c1d5VEhXNVdOYVBMZFBIWC9xWkd0U3AwYk91ZVNvNlQ3V3Y1MjE2WXNOaS8yOEQzVk0xdzhDYlBNdHpwTHRqVE1vOC9vdmYKWTVMcmVVaDNQUUxabjRSMy82aWZIeHQ4d2dWMkNNWXNxL0ZHQkhtY2hvdHpjR2VlZm52a3FiY1E5Q0tGUEloNEVQQWczaTA4em5ibQpRYmFRN0VhNWpvaVZ4OFM2UWJCcm90MnRJUyt1TFl1OG56M3J4MFdrYVRqRTIxUGo5NHo2NHltejQ0bmIyOW1VYnhraDkrZlZ2LzlVCitpY2RXdjE5eDh2LzhHUDUyUnRVVTh5Tm5RT2RhWklad1YzVjBoNW8wb09XOGVEOWg1cE03UUNQZFc5MDJsbTRqME9DSkxkd2U1S2sKMGNnZDZqeVpwZnZlOHVuZG1yMzd4bXpleHhiNzZSdEpUNWpaZjRhTW45TkozczNscktSSFNyeGNwa2UrQ0I5YnBvKy85RE0xcUZpSAo3aE1ZdlFMdUZ3aG5DQWpIUDR3SGovZmNlQ0kzeGwxYXZKNGsvU2taOGZZNThaajV5ME5YVWl0ajlNc2UrWFVTU0hQeHNNeTc2YkdvCm5EUHN5dFBLemZUOUlKY1BLMy85QmtjRDMxOWRLdjRoR255dmJqRTk4c1hsUXdmT3M2ZVBXZFNwRlUwWGp5Qll6N0pMN2pOTWhyT0YKNU12b09Oa2EybXp0ck9hTlczYkhHZGtCRnhkUzNJUVRiczhrLzJEM2lSYjVld1B6cWswK3lXNStMNDk5SkNkZmhYZkhxdnZLWDEwcQovcFFHTDZzSXl5TTZoV2tjMDVrS2NxYXNuR1JVSG1GaFhmdHBHdEhVMGtENzNxVlpwSFYzVVhsSGM4M2VHQmo2U0Myc1dDTEFoYUplCnBLQUZoTUx0UktudnhwTCtGUU5DTThXZlpmYURpVStCenpEd3didzNFOTE4STFxanluOXExVlBoN3pnMXVZOFNuOGw1a084ZzFVR00KZy9CMlRWMERjbGo2aTBmUy90amcyYzllUDdOQTQ2bDk4TE4zNG9uQ3QxY0VIUlNVMmxFK2UwMXptd1pWczU2b21tV25wRm94VmVVVApPK2JzNXkvUzRQdFZnOGVPSzdReVhUd1M2dlJNcDFHZGFWck9XUzlTSzVvTXVUa2VYbkF6NERidkcyQXJ0R1I2eVE0Rlc0ZVVlcFlEClVKUHF1UmR4OUNPK3o1TjRudEN3cHpQa1FRSmI4eHJ0ODNqZE1OTk9wR1VKU2ZsNURxR2VZdm5YbG9vL3BjRkhkSWRIaW1rYzA1a0sKY3E2czdKV1pRYys1ZEpEQTFNOE5zSEswckNMOWVJQzdJYi9JM0hLTXZDZkx5R1BlMDlGMzZtZU5iK1l4N1FmN1JUdGNYQS8wdTU1MgpwdXhvaHV4S3Y5OE43ZGVCbnI4c0R3eDd0VUpLL3VwUzhRL1I0SHQxaSttUkx4NVhZTzR1NlR4ZEk1cUdMUHk5akFwVlY3TThKMERYCnhWWnpJNVNlcG44eUphNGYxMzQwUmU4OFkvOTRZbnNIK2EzbVNqRG53ZVJZdjdQemNmVWs5blYzTnU3TjNlMEo2cXdJUndJK1ROZ1cKVHU1dHVERjM4VUhEejlsY1BhVmU0YURmUTFtdVFpNkRVKzdUbXFGcks4OXhJNDU2RG5IbGNUekNNMFBXM0k1TDJtSWdtaG40NnRHWApGOUpoS1ZmQ2x2dkRmSEpMZXZyUkI3MVNMWWU0WEpYZGMzeDBDNS9rVE11WG5HbDVoMHk5aUhzNTNhK2VuQXgyV1U0Uk1LY1ltRENjCnc0cjhUME9XV3o4bzBrOGc4bi83QVlmNzR5RzdpSlZPUDA4NzBXQTgyZkZVU0lEQUpjSldPN2ZYTVp3ZkR1RTBkZkVrSCtwMDNCOTUKM0pPcFAyWWZKQ0oxUEwvaGZqaG83ZndBaDIwNEpHMS9oTVBTam5DSTA2T25PSFFOL0hvd1QwSFlEUHU4clpFbmlNMnhsdUtuWnEyegpMS0RJdUFJZUdCOGV6ZFQ2NFJmck9WdXlKT2gybGpteHhHSlhWbzlaMkJUSGVobVcraEhYZnRwYXV3Z0R6ei9pd0gvRWdmK0lBLytzCk9QQjF1N1RTaEhvV1hSU2VFRjMwZUc1NjArZytzMG1tN1RSUG5HMVBTT0h0azdjZkYzUnI1Nno2a1VIOTBLRGFEZzFhaDhPTCtvR2gKT0JucGhQZC9NQ2ZkemNLUHVsclBTemc3UzJFMzRSNzcvcFBtVnJrb01wWDh2c2kxUjZPKzNuUHl3UTUzZkRta3JNc3U2NldwT3pUdgpGb3E4QzFoN05FNnROMWhQWXRST1R3NDRlOXJMNFdtUFQ5N0htZVZ1Q2ovT2ZaL0tmOSt6S3A3RzBwK1VKLy8weE5ZZ214SzFDNW16CkVOWkJtZGR0c3lsdWJMYk45ZE16UlUvV3lTZTM5YmtqM2Y3bER5L2VQZnpYdy9IbHMrZi9JY3RpOS9FdmNRckl1ZG5zSTg4Qm1jNFMKem5xNmFrODNPNmFhdlczSENlNXpWWHVPMlJ1Z3J1NHN2V3djOE9oN3JQemo2ZkhINVBqSGpvLy9GUGovelpEeG52ai82ZU1EQUt5MApGSkNlcVBIVTdISmlOZmtoejFjNXM2eCs5QWtyazZxcGo4d1V6OTJaN1NoS25TdzlQN0dMd0QxSHNZaStHME1BWFBpOXN3TlBuNURuCi9DUS9zVmtOMzJjeGZGcTh4ZmxoQ3g4YmNiRlBMZEFQV3poTklYRjdJVW5CazZiQ1I1eGNNMyt1czJ1bUN4TmhGNnBELzk4NEVjWXoKU1gwYURNbXEzemNWdmk5aDlUNWR0Wm1ScC9wcEFTNm5rK0oyK3ZnUWwyR0tEQk5sZXVSWWpuMDZpczhuUFpzTS9aZHI4SkpuNnRMQgoyR1hQM2FZTHpPMkNmbkV4OC9BKzc3QUZGRTJmR0ZGVU5LYW9oeFJOSHg5VFpKNkZveG9mYUhaSXQ4c2thMk9mZHVUdVF1S1JIK3JvCm9vOHgxVjA4dkdqNkVHTmR3L0k1a3M4VHQ5MzIxRzJUbVNXWXZhMGxiN3Q5VXZxMmZmSTJpMGFhUGkwY1NhTjZEYlhLZUtUcDR3T1MKaUZnRm5tRTFwQ3BBcXJLYzdrL1N3NVFMR1dSK25Bby9Ub1VmcDhLUFUrR3h0RkVma0ZUcExEL1VoMS83UTVtY2hQRFZQN3g1L2VYYgpGNi9mdlhqOSt5KytHSFR0OFl2cEg3N0JOMG0vK2ZMWnUzY1BiMStMRW43OThzL2ZmdnRNMUcvNzQ3QnRWOXVhRm5oT2wzVk5oN2dzClY3S055eDlodlpLNXRQSkpyL252di81SmZuM0hQOTNuK0s5LzVzZi9JWC8rYnlIK1NWNys4S3ZEdi8yditmQzFYdkpyK2VYMzhDWVAKcjRSNGRxUERMMGVxUDg4dmgrc3YwWFpYdjViL2YzYjk5dDN0aStmdlhyeDUvZXp0bnc4L3A4bmlaOGMzYjE3SzIvL0NldUtydTY5Zgp2SHZ6OXF2anMrZi9JYjMxMVc5ZnZIejQ2dGNQejkvOTlQQmY1WUwvVS82M1YvMHYzN0dCVzc3TlAzSTZSQndWcURiSUVETW54aUlUCm9sclNQenRBdGZwWmdjdFc1N1FkL3ZVWkc5cDFYQXJoYWs2cmpIdTlTaUxaYThmSXEwVVJ1QTU1dTFwRnBEcklpcitTcHZJaEZ4elcKS3U5Y3BYcU42WkR6VlpDMWRYaU95MnEra3NWYkR6bGVyUWdCRmNuL2FwRlZkVmkyS3hINmNYYnNlaFZrQVI2V2RDVnJMZHBsMjlVcwpYT0dRNU12Q3hvdmVMZGFySEdIUXIvTlYzamFab3VVcXdmakt5OHB5SlNxSTFGb1JtQ3QzVytVdTg3SWVVdFJuQWlIbHVoMlN2SVpJCnQzcVpFRU9vNVNERFhJT00vVnF1SUcvQ1A3NGhTbFMwSUJuT1hFQ0lxZHFycmZNVmxKTERzbDdoN0o5RGxLNEpzaFlQUzdoS290OGMKV28yVXJ4YS9LRnlKb0xxMng0NXJScTQwVFptRzVHVHJlcldFYlRtRUxFTXFnNkJYclZkYlNPc0JOd2gxNHdOSmk5SldYWEFlYms1WAp4Z1NFeWZoRjhqYnNzaS9DbGJBb2RIV3FWM091NGJCSUh3cjdFNEk4QmVaRElEdkplcDMwT1NDZWgxRHNOUlpoS1J1ZVdVWWNuU3VmCkY0VERZcnczRzdDRW1TLzlLYS9LMFVRclhCWnl6N3pLZTZaRngydkpWL0trTmw0cFhNbmZNb2RXNmRjZzd5V1hWMUVuRHVzaTQ1YmwKbGt1VW0waTdxOXhNaGxZdmt5a1hwT01PWlVXMGRtVW5DbmRlY0puc1NFS1FSWmx5a0haV21XV2h0RWtscTJSRlc0ajZQYVJaWG1pVApjYStMakxNTWsweDh6bUNaa3NMdmRjVGtzYTdXV2ZwY1ppQ2NUREtWY0RONXN5cFhaNWxUU1dZYnAzU0pPdXQ0bVF5d0tEYVJrZGRGCk9pQ2g5K1JlOHV4elR2Rnd0c3B3MWI5elFkOXl5Q3RUMmFFKzE4bXJrU2dUQy9rSU9WczJCRjNMdE1JYlJIYkEzRDdyNUpISGtxMjYKMTVHVkkwcmQwSWdSL0ZZK3U1VW9jM2RiVWN1YWtibkdGMnYzY2tLYnFYaWdYc3ZmbzdWejhtTCszaW1nSTJSWVNwSTFML1BxMVk2NAo2THhLTWl0bFA5NUFrTzFWT0lTdzJpeWoyQWc2YURMTGdxeU1YbXZSdS9aMm5HQjMwOHVjR0s5RVk1VkJhKzJFcTBWR2Y3aWJFZlF5CmY2Wld5NSs2dFhQeWJ2N1MvK1dmNUo5L2V2SUc4WXR2di9yVk05bFRiOTU4OCtldjN2dzdONHkvZi92bXUyOTBoN2g4eGE4ZnZubDQKOXU3aDY2L2tGcnVkWkR2ODVLZUhmLzJYQzN1S1RJeTh6c1FVQ1YvWjZQR2NTNUdld1c0aXJLakVQTzRtUmMvbDF0MWtxVmRseTdJeApZc0VzT25NN0Via0o0Q3FWQ1NKNnYweGxtU2hWZUt6MHN0WkFRbHdSOXRoRlFkaEtCRkVtaTE0bXF4RlJCNGVTdGZGRzJLd0dMM05pCm1EZTdMbUtYbHAwNWhOVW93dnZXdUEwVVhybllEdDdyeWNUVmVuUFZCMnVVcmVvbXp3dWRLRXlHODd5OWNRWEQydzVuM2JKZjcyRkIKZndnVHFWRzZWYmpLcXgxUjVBOXdyQ0RzY0JHaDF6bFd3RllqbzJJZjlRMlF2M2p0VmRDRlNYYWwxa1lqMkoxYVI1TVlaREFyN3VUTgp6THBNMjYzbXZtejc0N1JLL3NDdG1aUFgyazM4M1pSTGFhNExrR3F6N0E5MERzMjVoTlV5SGMvTTZWblZ6eTUvYkl2czJEcmhvdXlkCjdORzh3QUdibFZWaTVRSjBsNE9JRmNKdjR5emY1aXdNR1ZNSzIvVXNlNDNzQjNqV09SaXZuSVU3cjdLU3VWV0FXd1ZoMzlqc3RrVzIKMWlxYm42emtUVGFmd3lhN2dFZ1NlaGwyQUhtNVRaaURNUDREOXpYWmZUWVJla1M3a00vQ0I0S0lNYktIYkZ1MDdVaUlKVmZkUjRUcgpIQ0prRzlHWTBKc2l6SUVnMWF1SUc4STE1clRZWlVKYzVJME9zdWZCOXNtYnJWVkVCOWxFNndLSjZMUS9UbllXTEE3c3JYTGZQTXY5ClgrMkllRi9zeFBLZWVVbWNScGcxVVhoY1FKZmI1K2ZleDZYR1hrZjJlT1FvNlkwNHdXNmxWemxSUmxpMHYwTnJwcUJybDdYZnl3bDYKbVQxUXIrV1AzTm81ZWJIZFhBdUg2MjgrbWJVRlNJK3laVUx3a0wxZkYya2paaGtsR1Z4NThxdFFaYTdJc0ZYTVlQQVNVVlJySXlpUApFc2xZNXNCUVMzcHhGY21vdCtNRXU1dGU1c1J5QlFYODBOc1JrVG5MOFBlN0dVRXY4MmRxdGZ5cFd6c243OVo2VDNVcjl0NG5yOVVnClV5VkQzc1dVRWE3SURvU09nRTEzbGJFUmVUTUlLeGZobFk4V1NzUktGVFlqUTRTbHUyRmg2SHlRU1FaR0s0dzNZNWFMNUhzVnNaNWsKK3ErekxJeFE0VUplWXlPd0l5RHJ6MnV2Skt1R2ZEc2w1L2RHRUkxbDRPNUdGT0ZsWFdYMUJ3aVc1T2FMWFNiU1VDM1lGSVR0T25zUAowQnVLek5sQVhzUFdSWW9xM0hXeUNyU2RFbVg2TG41bG80cEVEQ01JZDUwTjR3S1dDbmZJQWExdklsWjJDcStVSFhhck12eTluanhqCnljdkNMWS9xeTBBUmpXRUwyYTUwS2htSWFGL29yTVRueDVyTkFUckJDaTgrbmovb0lQRktXWEdKYzFqMnlCWHlqUT09DQoJXV0+DQoJPCFbQ0RBVEFbDQoJak8xVldyRGJ5R3ljWlorUVVmVjlOSlRlUTNHV01STEd5dWxIaFV3K3lBVTFzRjdCcXA2dEorYXRiNXdjZll4am1JRytBcGg0aGxKUQpPQUJsa1hVZFpIdEcyQnk0Y0oyRExSLzVzS3p5Z0tLOUpqQi8yYVNrdTRUamI3UGUvM1NHbm16VDBCMDRTUU51VTB5NjZWU0loL0xXCkt6aFlVVjVBMWgyRVhTTUhTNmY0QkZuQTRZZDZVVjUvRFVOVGpXQjMxQXNiVlRvaUNUOFltaElwZEpWbE05elNLSHBsZTdSV3J6MTkKYSt2MExiMFhSRFBWM3NHTW5uTlVLUjFqV3pPWWlGTkZEeGJCZXdaRnhuL0xPMHBSTFV2SG8xR3hzbW8rREczSmVnZ1lrWDVQbytpVgo2U29LS3gvcnlTNEwrTlhRVnFQczd0bW83ZGxhVyszNVQ5K3o5WUNzRXZhTktMTFVURi90aUVEVVo2eXdwTDI4VkZYQ2crZ0dDYlBRCkNjNk1rSFdtMTFxckRtdHJweEhzYnM5dHVpa3h5UlNCbU52YWlmWkM3VzVHMFBYdHo5UnErVk43TzZmdjlyaTA5aW5tSnVpSXM1QkgKK3hMWUd4UXROeTlCSGNpQVdMcDVLU3dpZ1ltV3RUTXZRU2lWdlc5cjVpVlZHSVFMdUhrSkl1bzhMOHZPdklTMk5naHNibDRDcitUZAozTHdVYUw0UVBqR2FsOGd0d2ZQY3ZDUnZmZ1h6ZFRNdmdSRGozcm9VNHFKU25GbVh3RjFsZXcvTnVrVFdKMHJIenJwRXZpbkNZN011ClljT1FUbHVhZGFuVjZOWWxzTXhscWYycFF4UlJhS3RyTXkrRktITi8yeG1YUUNwVk9MUWJsNW9rNE9ZbHJMQ2E2cll6TDRIeDVpUjgKdXBtWFpCRnRFVlkwc3k1aFVjbnVzVE11eWRMTE0zck9iRXV5L0dYZVJqY3R5Y2UwMENqWVRVdmdCd2tIcEpobFNacElhZDNjc0NSOApXd2FxN094S0ltWXpNNTZibFRaS3lLVlpsV1Jud0p3ZGJVcmtmVnNKemFhRXJvTVE2U1lsdWZjVlhBQTdrMUtRdTNKSnVVa3B5SFROCkFDSzc5aVhjbHJOMk5Da0ZLSytsVzVTd2ZjNTFYWnBGS2RTb3MzaTBLR0dub2xqckZpVzVyMnpLOHNodVVqcGJXQ2Q3RitOdHdySXoKS1RXaVc0TXdIV29XR2RqTVJTRXk5V0FlVFVyWXJTS0VPNjhUWUxTRXVjMGJjY0pvNU9sRU13VzFadHhZMU80MW1wVGFBL1ZhL2g3ZQp6dW1MamJ4YTVLRmxaMUxxUkRNRmdTK21MVGRia2NpY0NKdmFkaFlsY0ZTRSt3eTFacjFwYjhZSmc0Mm5FODBTMU5zeFcxRy8yMkJSCmFvL1VLdmt6dDJaTzN1eHYzYUQwOGRxOUxQQll5WVhNT1BkcXBNcFNwb0d1dVJGazR3YW9WQWhCcHd2WVVNNW1PWVpLc1VScTVtbWIKNFQyUWpoWkpFWmZsWk9aSmJzVlNRN1lOZHhDWS9SL0duU3lNcEpueFJjWGdXaFIySWs4ZFF5T29CUjRDZXVtVllGa3ZJc0xYYW40RgpKMnlidHQvczd5QmlOY3dySGxJMk0rRTRHMVVFQ2lNd3hzWjFJT2pMVmRFMnVJUzlXdXU3WUNicTg5NDhNUTZVV2UyYjJBUkVDRkk3ClZLY0tVeFFaZmxFckxqMEhNWnB6QUh4eHphRlR0T2ZnaEVqcldDK3FwMkJveXlsK1R6ZGJHN1dZUzY2MUJkMkpvOWZ1NlJTOTBwK3QKMWV0djVXMmR2ZWNQSXVvMEl6L2szSFhkbHIwdkRTb0tPWGR6cHFHZWFQT2xlOU1nbSthOHVsL00zR215VTRzSWlDdmRueWJhdmV6RAo5TERaU3NDMkl2SjkzbnZVS09NbDNxRzQwTG5xM0cwK05XZ09JaGI1bWpHbkdsVGN0V0FTdVZjTjNJM1AxdHhxMkpPNmhjdjlhdGk2CkFxWjA4NnlKdkNDRG4zSjNyY0VLSUpQZGg5QThaOURHUkJ3czNia202MEJ1empYb2RXQkJXVXk0Ynl1enZZTjcyS2d5eWExR0YxdFMKMTg3T3gwYkpNeSt4T2RuZzJscmt6czNMRmloNkxIc3ZHNVZycUNITnl3YlJVM2FqT0xqWkZuU0lTUUhkenliN21MNlJPOW9DOWxFWgpyZVpxbzdraEIzZlFtYThOTDY0K0ZYZTJRVDNmSXVhM3U5dlFnZlBpN00vOWJWUnZOcnlqTzl6aW5DQmVidDNqSmt4VUpCL2JrSnJMCkxkSkZVa1AzdWZGS3ZHOXp1c0d5Mm1hUE85M1FYQzF4N1Y0MzJDbXBwRFMvbTJ4dElxaVpnYWM1M21LRVJpZzdaUE84UlhER1FLZWEKODdVdzY5emMrZDVnRXFLWTZjNDNLSmVMOVBmaGZHRSs0bjdEOTF4V3IvYlVLaHR6M0xvRERvWU12a3h6aXpYS3pnazMxRE1IMjlCVwpvOWc5ZDQ0NE1JS2E2ZnkxdHFESTBzRGI3dGtvTzEvY1VLODlmMnZyOUQzUDNIRlJ1aXBMcCszOWNUREFjTzQxNTFjTXN0R1cwRjFrClR0ZzU1SG90MjMrR2hockZicmh6eVdHRU00VGszaFRVa2hDSEd4cGg1NVBydGRxVHQ0Wk8zL0QvdDBKVVNFSE5sU0hCS0dqVEdic2gKOVRwOExkb2hkdFlaUmpxbzM5S24wR1JwYnlaRnVCOHBybWlxZzIxRnZBNGxFV0hvQzJ3dXdpbDBMc3F0MU9EbkZOV1lrbnIwZWoyNAozQ2pHZzZQa0RRelJlRmJJWUwxK3BXZzFkcVZzU0x5blhEa25tRzFnSk1WK2RQYWFKeHBRZ2o0RkcxbWUrM1k4VUlOdU5tZ0hGbWxZClliZEE1ZzRmQTh5VVRsSE5SQlpQbXRlaG5uQ2VDald2TjlVcGMyYzBuU3F2b050M2Eyc1JkaERETXR6VEtjOXRKUGxvdlpvL2ZXdnEKN0MwZmwyMCtoNThYL2h2T2daMmpGM1pjSFYvMzlNS01QOE9EMDF5OVFRUWgyQXIydmw1YWlubWx1M0hCTkhTV05Vckt3NXhxMU1YbgpsTHQ3WTNiTzZPN2VSdG01ZTNzOTkrTkdyb0EwVWxMcGs2cFRNWlI1ZFBCaUY1dXpqZEcraHg3eCtVYUl3c2pwLzJwUGhROGdydDNyCjIzWk1kOFkyd3M3ejI2dTVWN2MzMVNsMnk1MzNseHNyRmZqV0Z1UmpXdGI4bGs3WU9ZQ0hhdTNwVzFPbmIva0QrSURCcjRRdjFMMlcKMktpdUpUWnJvR3VKbUJZMHFveGFJcmlIaVBxeGFZbFFxRUlWSnVoYUlpd090QmVPV21LejQ3bVcyTXh4cmdEQ0RGM1dXSFphSW5TLwplVkFsWVNKYlpESzdrdWlmUngzUmFVMUZoSmw2aFgrdjZYNzArS1Z0M2V1SXNHS1ZCYy9XNnJXZWN4M3h2QzlQN1VpcldpeDJPbUtuCnVsNUhzd3htVmRQOThNZWFjdG5yaUxUNnBDVU85VUpWbTE5dnExRkdmVzJnbWw3WDIzTGRyOTl6MUJIN3MvVjY3YTFhVzZmdmVkbWgKL0NtbThDVWJMQVdHWnpoOVgrMnB4WlNlWlhFbjRhb2FCRmJWREptbFVkd2VUZ3ZuVUE4N09seHp2YTFHc1hzNjh6RHFabGFFMXBacwpSTUxGMXVHZVRuRmp1cmtxVzczMi9LMnQwL2Y4UWJ6TEVldVU3bG5aQ0NqZVUyb1h0V0VyaEJoRkZSeGlvaVc3ME15ZmtDb0pYTHdVCkd2NEIzZGdjMXlHVGc3NG9HTlJqVUxhcElvZDBzR2hKa1dDRkxVWjlXZHJtSE9RUTRYekVacXkyR01JZXNPQ2djbUVxUURMVkxvZkcKMkd4TndLbHNVUkU0OHJLSnV2NmFpbDVadG5XaGQ1V0dYdlNyZEpiTmFhajRDVzhsKzc3cTNmQjBWVkxnaUlZT3Z4VzFHMEtJRXYzUQp0RHRSNFdUVENIUitLNEIycHZ6SHpVOEJ1Q0ttdzl3T0tTeTRnaEhBVm1HdkZxV2JMNENkcDlMbHVHSVJWY1Y5cmh0VTJES3JmcXhhCnN6UnJHbXlBd2hjelR5YUhaNHNXY05qVFJPcE1ORHFrNUpwdnB1MS80V05WSGNsRk1RSVVDbFdIUEowREo1cGRYQlUvZ2l1V3NoaTgKdVZQZGJJQlpRME92OUVrQnNKN2FxYnJpamFKekpDa2VaNmdubTJLb2VXeXJVZXllZW1XakpvTy85cmFpYnBYRFBXUGZQSWRuYS9YYQo4N2UyVHQvekI1RUNZM1pBd0Z5NkZOaW84S3BUR1Y2Q3dlTjhDV0tZU01oWGN6UVhCeVpVWFdGbmhTMWxVUnk5eW9Telh3ZDFrZjVBClVkcWFOQVpoczFEN2dDaW81Z2JYUHFDR3VHNGNYVG5vRWlCOEw1aW92VjdaSENxNDZSMDRLeFc2c0kwU1lEbWhnaE5xWDhpc1ZIbTEKVVdUWk5BbXdVMHR5R1pPK00vaWRrVnNtY3RvckRyR09Jbkl4R0FxTWZmcXdxeitzL0tHM3JMTzlwbE9jTjVRZFZlMkYyQ0ZnTHd5MAp3SGxiMjZBOWdmdndZU0crNjJ0dU5paUFYT2lnekI0RElHd2orVDA1ditlbHFqMUlybEsrcXlKK3RQVUxOcHBpcG9tUUJrMi9VdGxJCkVjMGNGclE1V25lczJhMHIyYlhCMlBWUzJxd1dDQVR3OE5MRUhseHJCRHVsUVFES3JzNkQ4V0VYUXdOU2g2UTFyczNzYUZQMGZLNmYKc0JaTVNRRFo4REkwbmIzYVUyVnJxWXVhUE5hbDZsZ3RzRGxpYzlDdWQ0b3VCK25vQXQ3WjZ4WDFwUTV0TlVvYXpIV2RtbkhVVlRnTQpiY0VxQkl4OHY2ZFI5TXIyYksxZWUvN1cxdWw3Tm9lYlRGdDZ0ekRmdVZXOTJsTTNOV01DckVLM0dPd0htWjZNRldoSTRsMk1va2lICm9OaWRvWjZzMTVoM2JUV0szZE92TkdveEMxZHJDLzVTbURyN1BaMmlWL3F6OVhydCtWdGJwKy9aZWtBR1pzdllja1g1SXl6eDFZNksKcmJuUVhEKzd2UVFqeWIyd0VnSFJDTDdpWjdyL2U3VUZ5ZWJTMEZTaitDMzF5a2FGK0VPZm9iY0ZLRVVKL1k3MldSbUZQNWRYNmkvawo3Wnk5b3I4ODdLMlZxQytndXBNNVhBZnFBdWxYb1hvaVRLcWpnWkkxektLeHB0SXB5bnRnMG9DSjNLa0VkZkd4dksyQll2ZlVLeHMxCm1tRFgyNElmQUs2SGZrK2pQTGVudFdkcjlkcnpXMXZuNzlsNklNRzlHeFhQSklxTCtjOGFGZlkxQ09IZ2hETm1uaXczaW1vQS82WjUKQzUzeTNNUVN1dmlIZW9CQndEdlltbW9VdjZXTENFWTFxMFZ2UzFnbjBKVDlsa1pRRjRFOW1GZnFMK1R0bkwzaUQ2RFBOd3d6ZGdwNgp2SGFnYm14VkszT0pPcW9iVzlDYTRTaHlXRGRNRXFtNi9kMkIzUkQwMWF2Z3lHN2dzRFBzYkEzYUhVVVV5RnNOYlFnQUZZS2tDZG5JCnNkM29LSFZvT3JnYk5WTjJINDJCdTJrR1dkYWxvN3NwNUFCMjB1RGQ0S2RwTzRGMzQ4MElXR3I0YnRqRjdFYW5uWE82RHhrUUduOVEKLzlwQnZLSERKRlZkREZMTm5Sclkwb2E4YnBUbjN1M2c5ME05dzNBUGJUbkY3K2xxa0ZHcjltSnJTdTVFSDJpL3BWTmNFdFJINi9YYQpTM2xUcDI5NVdUMy9ISGh2ZXIyaW96MDdWVkVhRFZ5Tk9TV1RaK3NZN0VaUmM0VkJ0WWQ2aHVidVRUV0MzVkV2YkZUWnhWZkNhbHRUCnhlekEvWlpsTUJmM1IydjEydE8zdGs3ZnNuRXptRzdoN0lQYUxwekNzQmVOS2dKVW5nTWlBa1hJS21ycEMrWkRuR2NQL3dpMnNjSm0KVzVaMUhlcWwyWUNhcmFWRzhUczZVMUlxVEd4QWVmVzJNS0dXYmJ5blUxU3MweWRydGRxenQ1Yk8zdkVITVUwMFdESFdFS0hVSS9TZApzaGhOaG81OXgwTEppVjR1QTc5RHgra2hrSTUrcHljUExLREIzeUhuYkNYR2puOXZGQlZ2RkFEZnF6bTJIY0syMmNDZHNvVlIzekVxCmVTbms0UWFDcDlDbzZvaWg0TUZDbTJ6ZFlQQndscXNLNGZCMjlENGx5RTVaWVdEd0t4dFZwSms1MHFkaE1IamdlK2ltYnpENFJsSHgKeDJEd3ZaN0QyMk14cEVHbnVObkJCU2VqaGl1Q2doMEZIK25tQVVUQVVmQkE1cXp0WVIwRkR6ZUUyc2tjQlEvM1FpcHI3aWg0NkJKZAorWEFVUE56c2hFODBGRHgxamhSVHg4R2o5YVo4TkJ3OFVBZTB0emdNSGlOQXZ0cHc4TmhJa0RqSEJDUUR3a01SWCtzQWhNZEd4V2M0Cm43SW5kbUJIaVdNUUE0SXBYdTJwb29MaDZPS0dPT2M3YndNVzNnaytTWWhmNzdVTTRqNDAxQ2gyUTcyd1VWMnhhMDBCT0JWSDlIMmoKNkpYK1lMMWVlL2pXMXVsTE5rbmZJZUtBZVMzQkF4MGR2dDZvRGVLTzJVOW55VURKUThoSHA4SndCY2RmYnd1Q05tRS83WjVHMFNzTgp2ajdVTTRqNzBGYWo3TzdacU8zWldsdnQrVS9mcy9XQXc4VXhkOHJpMXV0T0ZSWkdJSXdEejBXQXZab0pyM1o4ZXFNNGF5S012ZGR6CnBIdHZxMVBzbnMrbkFSRlAzWVNHbE43V2JHL1c3MmtVWGUzdDJWcTk5dnplMXRsN1BpN3hmZzVjL0E0czVzRDRoaFZyeVBpR0ZXdlEKK0IxV3JHSGpHMWFzZ2VNYlZxejV3M1pZc1FhUGIxaXhobzl2V0xFR2tOOWh4UnBDdm1IRkdrUytZY1VjSTcrRGlqV1FmSU9LTlpoOApnNG8xLzlvT0t0Wmc4QTBxMXBEeURTclc2NHhRc2VhZWE2L1E0UElOSzlidzhnTlNyQUhtRzFLc0krWWRLOVlnOHlOV3JFSG1HMWJNCklmTU5LdFl3OHlOU3JJSG1IU2ptcVBtR0UzUGMvQTRuNXNENUJoTno1SHhEaVRsMmZnY1NjL0I4dzRnNWVyNUJ4QT09DQoJXV0+DQoJPCFbQ0RBVEFbDQoJREQ2L0E0ZzEvSHdEaURtQXZ1SERHb0oreEljMUJIM0RoelVJZlhkak80aCtodzl6RkgyRGh6VVlmWU9ITlJ6OURoN1dnUFFOSHRhUQo5QTBmZHI0V1QzMmdCam5mNGNNR3FtRzZHbmk5NGI0YXhuMkhEMnRRK0Y3UDBmSzlyVTRac0ZvRDFUQmRyYTJHKzJyMzNPSEQyck1OCjlkcnplMXRuN3preWYzcVNkdml3Z1dxd0xvZXlPL0NyNGQxSGVGaER4ZmRhaHBzZjJtbVVBYTAxVUEzVjFac3k0RmUvNFFBUGEwL1YKS3JYbmJ1MmN2dDhsOWJKN0VtRnVFeFpoOXA1R2hTV2hxSlNWeVZBS29qZk0rbElEVjZOUlZQMTNMdC9yQ1pkS1N4amJhaFM3WnpNYwpLRlZXRkZqNTBKWnQrY005QnlGZ2VEYXYxNS9mMnpwN3o3WWVQa1hCUGtuWlJLMHVMV3FjS1ZqeHIvYlVvRkUyc01VVUlDWXhXSE5TCllaZTdmYU80RWNhVXFWWXZHTkNsTjlVb2Rzdm5ackF6YXRKZzFhR3RqTDA5ai9jMGlsN3BqOWFxdGFkdlRaMitaZS9MajljdjRRbWMKaStvY0lqT2FOTnFwc0cweGVRV1E1dGloQVRDbjRKOW5VeVdkb3BxWEorcG85UmhTbDllaHJVNnhleXBIZCtvMksvUzN0eVdVc29IUgp0SHM2UmUvcHo5YnIrZlAzdGs3ZnN6R2twWnFrZ1kwSEMrWFZub3JlTmZUWmxyT2xEZ0dDT2VnNVNGdW42SHNBRDFQaldFOTJHaHBNCmUxdU5ZdmYwUGExUjYwb0luN2NGQzFvZDdxaWY5U3AvTHE4enZJKzFjdnFHbjJVUmh0TkZLQktZK3RDU2dvdGU3YWtBUlVIZGh0MlUKbnRNbFdPS0poSEF3V0NxZDB0YlNHdU5ZVHg0Z09pQkQyMm9VdTZlYmZScFZrMlMxcGhiR3Z3eDNWSUl2ZTNzd3J6VzhrYlp6K29xOQpJejlCZ0QvaFpxcStNUXJUUWhkZjdhbUFuQ1dOYjlaWWRCbldBbTgrbFhNSzRFNVJaVzFXQ0VhclZoMy8ycHJxRkx1bE8zK05LbnBWCm9KempUY0hNYWlLQTNkRW96MDNGdFNkcjlkclR0NlpPMy9JSG1aU3drTUJQTEtJL3NqS2FZOG1KaSs1UzhQSFVMWVVEbElpcU9oTTUKclgzV2R4SlpyOGo5V3AxVlhUaTlFU2ZZclZ3NVY2SXM1SVZPY0crbWFMaEV2MWNaSXJYYkF4VVBxdkJIdG5iT1hxeTdVcVBxd0JzQwpXdHlQMklqU1cvT3F6czhVNVRFMlROaWtEbFdxc1U1UXhycXBBdHRxQVk1UVZRUFFkaHJCN3FhWE9SR1RBeXlwdFlQMXMyM0QzWXpnCnJsZDlwbGJMbjlyYk9YMjNIMkw1Y1p1RnlBSjFnMTZqVjNzcTVMdlZRbVVpSEVGUVZPYW8wb1JtUm5PSzg3RTFwVFRXdzl0dmVXeXIKVWV5ZXpzZU1XaFRTUGJSVlRhem85Nnc5c2Nid2JLMWVlLzdXMXVsN2ZnNXg0cVF2WTFZak5PVnRHRWRmN2Fnd3RzQWpEQVZ0aWJPYQp6U2hmUnpldkdFRUZUcmpRbG0yb05hdTNiR2pJS1g1RHZiQlJJOS9rMEp1aUhTZlY0WTVPMFN2OXdYcTk5a3F0cmRPWC9DRmtYRERPCjFSTEdCTWVJZEdJMFVBT2N0VVFMdG5nMm9GRFcxQW1xd3FVclpPa2ZxMkdOTWF0SGE2cFI3STZ1L0JrVnJoRmlIRnRiU0Y0YTZuQkwKSStpRjdjbGFOWC80MXRMSkszNytDVWtiekd6eDFMSkFISVBjcURBMlpaVzNwQTIxQjJyd0hqeVdXMW83UmQrSytYTzNzZDVNODhYUQpsQlBzam43ZDdCTnlKZ3JVR3hLS2FORExjRU9uZVAvcmcvVjY3ZUZiVzZjditYbTJWaUI3a29hK01pengxWTVZUFNuQmF1WkR4dm9zCmFzOUZzdjVPVWVGaThVeDhyWjVJV1VncU5MVFZLSFpMdDhNb1ZmcU11ZFI2VzNIV3dKOStUNmM4dDRmVlordjE3UEY3VXljdjZWMzMKMmNLNkhnL1grbHcrUTBBamsxbDhHNW9ad0s4RnE4N0J6UEtpY3dIT3g3SE1BR1Zsc0xvUnlsd1JlMUZ6UnpJWEdyaFNCeklYakViYQp3NWhsN29zUUVEdUtHZWtiS3h3TURtSmVrWU9CcU9ZQnc0eXdyUlhENHhCbUdFcm5VanVDR1U2SVV0SWV3QXl6OCt6SUp1YmpKVVF4CmRmaHlKZ0I5RDE2V204MGNhY2N1TXp3eXJoMjd2QUl3UU4yM1k1Y0xBVnhMaHk2WFRkWXRzY3lHWEthSVRPUGdBRnlHQ1hjcnk5cVIKeTRHUVF6cFV6WWxJcE15NmJYdnNNdEF5RWJab2h5NURGbHRTQnk2ZmpmYmU0bGhoZEFZYkdtSExuV2dXYk9SZDVDZzZHQmtoM2FtRQpQV2E1d0Erd2JwMVk1TmtxRkZadnB4TUc4SEFuR3NhNHQyTXc1SDYzQWEzY244bHJ0YWUyZHM3ZTdYSC95aWVoT2VJZXBReUNBNVFoCnpqZHdjczA3V0hKaHJFaHFxR1RoejhpQzB6REp6Q01UOTRoaytEK0M1ZGtqSUJtaWN3Y1pZMmFqaVJHS0xPdDNnOTI3RVJOU3hBMzQKWWdRZG5XQ1EwMGlaTy9CNDNpT081dzQxQmc2NFlzY3lwSEdFL25HQ000WUMzVEhHMFI3RGtjTkltclN1ZTN6eHdpeDFuWWFFNmRHdwpwUVFYTDliSUNDMDJkQU0vWiszVEJpa0daSUJaT3djM09lWmZ5VXZIRTFkN0VrY1RZeDdOS2V6QnhLWGF3allzTWZwbFJCSXozK3k2Cnh4RUxDOGtobEE0amhqRjRYVHVJdUJZYnYrSHhBZ1BiNGJweUNERm5uS09IZDlOdnY3YkJjaFp6ZmpYY2NDY2ExSmM1aG9BUmNqUXcKbVBFcFpoaHpjNmtEc1FBSEgwSnZwaE1HOEc0bkdzYTN0Mk13NEhhekFTemNuOGlJL1ptdG1iTTM4eGVIQlMzbnZBY0tkNkpqZTJtWgpIdEMvQU9LWEU0eXdDSnNsYkNORVdIYlJkV3lsRVhZQVlTYzZwdGZiYWJCZnU5a09IR3dQNUxUK3hOYksyWHY1Q3lkRy9BNGczVmNqCjBiRzhXRnRrR3c3M1RjamFXOVk5S2hoV3IxQ0hTdGloNktiMFpwd3dJblE3MFlDODNvd2hmZHV0Qmpod2V4NnYwOTdDMnpoOUxYOWYKNUdJSzg3YUhBbmVpb1hmUmoyR0UvV2JHSGc2SVgyN3h3UHBUWC9SYWNFMVNxL1IyR21FQTVIYWk0WFo3T3didDdYY2JFTUQ5bWJ4VwplMnB2NS9UZC9LVmg1c25NOXptZ2Z4dlJFYnV5T0xiRVBEWUc2b1hwcWRCelBXQi9oWmt0c1F4RXVEZDVpbmhyeHdrakVMY1REYS9iCjJqRkViN3ZaZ1BwdFQrUjEybnQ0STZjdmRza1pCcWQzWk9ENUNCZnNWQWY1SWE0MExCNGFEQ0NnN0w0NHIydVBGNFRmT1pUWWlSWHAKbGJjQmQ5Z0lJM1N2RVIzaDE5cHhFR0M3MjRnVTdBL2wxUDdnM3RMNUMzNTJyZUtqazBVODhnVEw0V2UvZVAzdXdpRWorUFhzZHk4Zgo5RUYrK2ViNVYvL3o0Yy9hZHA0UFAvdjF3N05MUjVQY3ZuajExWmNQYjU4L3ZINDMxSC9zSGwrK2ZmamppNGMvZmZYck4zLzYxbDR2Cndac2t1dTFqTitDWkovLzk0Y1h2Ly9EdTBRN3hxbSsrK1VvNjh2N3RtOWZmVy9lWEQvLys3c21WOFpMU0t5OGV2djJBZDd4NTg5TGYKVWNPNzF2ZS80Nys4K1ByZEh5Nk81WjJla1hQMyttdTc3dUtaT2YvanhSOGZmanJwTCtwWHE4N1BsVEhmVURLMnFxanBXRU9hTHA2WApvd2pwRHpzMngyN2xEVGVNMHU1MlBQZW1VZHRqL2JKZmY0bTJ1L292Y1dvT1RjbXlJOHc0ZGpndU9HVUtta1VOY2RZemlhT2ZTYnpzCmtxbGt6ZFdMVklDTFp3RUhFZUlsc25jamxTVUlBUUVKY0tHck9nNEwvMXlWNEJpa2hmaHMwR0tsSlhXMnRpdHlWS2s5Q2tkYmdkZEIKcGJtWjFNQWVxZHdGUUJJWHVoY1RzamdWWkdHQVVpL2Jjb0g1SElMdzRyWXFwTUFBbEF6RXpZNUFJQ1JMQ01haGhZQWRUd2hFQ3JYTApBSHhFcHJHY0ZiMVVlQUJLTW0wUFFnQ1F5U1NrMk41TTA3d25XSzREUmFRUTRERkJSbFB1blRRZndpa2dleXBmVFBiakxVY2lsVGErClBXQ1kwSjQycGtaTlNtREdOeWhmaXdNZ1IrcXlCcjB3TFp0U01zY2pCOHVSTmRQZzFxL01sWHRTbE02aER1ckNPK3BsQzhqU2pOSm8KZlZsdDVKQWZIRkVIT1BNcGE1Z3dqVjNJTmJGcURpOHEvOGh4c2phaEUvRVFWQVNRMVduVkJLR3NGdVlrMG1wV1ZQVUt4QzhzQ3lVNQprSDlkN2ZRSmhycXV3YXlyVEdFd3cvR21ZZGg2bGdid0RzSFRicTRPZ0E2dW5hL29DcWJXZzN1bExrWlpsQUl2Uzd0eW9TMDA0RkN4CnhZelB6QlNNL0ZrODFCNzNaR1FXS05HTkhaQ1VWdGVKbzQwMkE5QkpLQ3JMemV5S3dQTVhITThUVEVhUVd5NDBCcFZWVlM1MHh4S3AKeUsyVy8ydzJXeGpuRGhDTUplbjRwbG8xbzF4ZE1LUXp6RVVLSzAzSmp2TGdZS3N4RWI2NVJlT25Tb1FVeE1Tc20wbzdoY3V5MnRJaApaZldIQlZUT3JzdXNvMWthMFhyT0NtNWxQQVVvbEVuMEtoaUNZRUxDaUZkRE9Hb3l3aG51T0xpenEybTBHeXpwVXZmR0wxeEVLOTJZCktGNFJlbWxHbnBJTmpuVUZqeEUxaUNqL1pmV0FOc2o5U0hFQ3d4YVJkck9HMUFCd1hLTTZKWm44aExoQ2d4V1F5T1M1Z0JSR2JSdlQKa29BNGpkaWJvZUx4OCtJdWF2aUFnV09Vc1Nyb1NuajRrSWR1WTlwVVRWT29pVHZ4aFkwZHN3MGtwQkNHUGNwRGxMQzRLck56V0xCSwpLcFZLc1Bja2lVaGJCUU5mWkVqUXFtSVpMRExNSXh5Z3BraUhnckNHSHM1RUhBS0lTTElubnd1ODUyaUd3RU1RbHFSWmZaMVRhSEJNCkptZE9jektJUGhLelZXWVZEblFKVjdQa2dRUG9teVZDRUtEK3pveFhxMW9IVm9scUFMUWxiVkN2UXpJWEMybEFrWlpaRnhrSU5HTEQKdkxJQmpENzdVVlpDV0wwN1pvVFV5N2NnSnJ0TWRJRmx1S3hxaGc1ditMbDF2bXpWdEFnSERDUkdkczB5VVdEZUsxa0JDclRzbDAyVgpQWDJ6b0hjcmlGaUpodXFFcmdCblJad1YwWmxnZlFNY2YvYjhqQ0RTbWdHZ0g4NGdtMjN2RW9Md1REWDVzQjBRaHF1WXZYS0ZsMVF0ClFGUkRVQ2RWaS9xck9HNEx1NDIvR0x6TWtYMnJRTmd0Z2FGdVBHbGkwZkJsT3VIaGNGa2RoRlJ3N2dOdUJUZ09RL0ZocXlzOENhdFoKaUFQU0M4SlEyeGdYaUZIbTRySnFYOU9PSFBWNE9OSFJpMEduTnhKd2NHWmo2d1ZyRVVUYVZ0ZFY4MG5pc2hLTXdMdXRnRXZIeGw4MwpwTENVM3l1Vk9SaXB6Wklyb29vNllXS0JwU3JUa0VZR2doRkdzdUNLclhkVHY2MXM5eHpZVEIvQ3V1cThLZ3c2eXJZckY1czE0WXBKCmgyREh0ZVdoVytZaTAzTUxIRUx1MHJyL2J6QVlaUjBpeS9QRzhFV01ZU0U4QjViN2xXTVdRdW9DRWF6dm9JR0Q4Zk9zSXkyclQwRlEKekdzaGhGUWNrdDJhUWk3MHF2anBLdXVObVVyMWtUZlIrZkFLb3RzdCtsN1Nvem8vbUNtNDBMcTNJR0VpWEhMWUVDRENWYVo4WHRlVwpBMTYyTFRoYVlSU2UxYVBCWEZFRjdHSFZKQzA3NlhCdjZxTUVBTVJUZ0tYYmo0OVlORFl2RW1uS25UMXVBQTBIWktQWHdHbHVHWkg1Cm9HT1RKVFFrV0hnbHVEWUpnTVVqYVJLRkpSQVlFeHZBbFQxVUFpbytUWExZREt0NktXWWVMb1VVNWJySmg1bmF1QktlbXpDZnNNQmEKTGFUY1o1TE5ESjViTlVFZ2pLNUpYanpZbHNVMWcyaXRUUmMzd2QwTWg4VldZNEg5QkxkRktFMk82Vjh0a3hBeXFabllNVmZHUHJYUApnY0Y3aTVxblhGclJTRkhJUlVWcmFXd3F6MmhSdVNjdWpHMFJucHNkZExocUFpZ0UvWWFzdWhORlJ6cXY0dkFaWndPRTNDUlZTRm9MCnBNdW81ajZjTTR2TS95SzRhbFRhd25QL3pLeWdqNWhvZ29hbExVZXpWaUVWS2dpMFdVQk13bGpncXRsVDB5UEFEU2RVTWRlTkdibDQKWHVFQ3pxblpGTWo4MHFMN29MNVhWYjh5WmpuTldSbHhYWW5aNFkyelJIV2VZaDNYMGlXM2pkdXNlbVR3RVNPQlBLRTBsNjRRZXlzMwpTM29yL0NJKzlycjVlMFFlZW9iUGVWVmNRMFpPTFJEbUpuc1huVkxJeDB1K2duRVNNUVpwK210U3ZxSkhCVmExVHQrWXhCN1FaNWxLCmtPSlhaMGhQMENMSnhCYUQ3Qyt5V2tTRHM4dG1qZFNqWXBBTVRJbUZpOUN3T0d0V1gxMzlRZTJnejkxZWdhZ0VFQXR0VDFWRGQwSEkKbVBZSlRrcnNscGl6S2JUTFpvQlRzZlhRYmdZQ1lPV0tWOWU0a0FCeHRjejZic3JHZ3ZYMnFqckVzbWlpWlRoVTY2cm52N0dMc1BpMgo1SHpNd1ByY0hDT2RRTVVlVWZSTnkxYVhjZnFnRVhndldjZ2JRazViTGNTWFluOGk5d0dEb0swUHZwbEJMT1FwUE1KSVpXaTRPTUFPCnNKMHYyYlk5NW9TS1BPMGl1V1FDWW9GUEdjU0VaR3VJZ2VlYVFseGtVQUpqN3hHSFZ1YlNMbU5LdkdXeGtRVUIxZz09DQoJXV0+DQoJPCFbQ0RBVEFbDQoJSS9aTDBDUjNqRGNGb1hvd1FWQ1pLek4zY3FZQmxUb0ZHUVJkM0ZGUHZnRXZoaExHWGhUWkVaN0ZqRk9HWm0yNkFNbTlVTnRWbTU5TQpQdDNRRzF1TWxmY0NqVXNST1JXd1BFQ29ub2t5ckhtL2ZZT0ljUVlNZUU3WmFnVVNSSWpRM0d3SURNYm42cjJJL0FMZ1o1aTUwQ2d4CnJzd2dMWE9hOGtzbklDallkOVJHcktiK01TNEFtK1ZNK1JkQld5cUI2V2Vkd0NZcXRUcW1vbENKWnk0eUovRG9Fdy8vTWlMc0VWQkkKTkZ1cE5MMUFyV01DZVp1S0N5QldwUjlic2lFMWh4RFZheWdxWVZseFVDM0VIR0JMSVRhRHdhQS9NQmp1VVpkbkJFMGtaOVhxOUlqWgpZajZZdWRxeE9BVWRWOXBWaEFtZ3FaeFVYU051QW9NUnF4RVFOdzM1cmpFcjVHaUFNQXVuN0x3YXdoWkhDU1RxUlNvSmtETXdwV1N5CldSWEJ1bVprdmI2YWJWWWg3MnMwaVJ6TGlWeUlsaGUvRjlZWTVBRllYbGEzUkZma1NDNG1nczZXa0JLWGJRNjhuemROWEFoaXBHSzYKRWIrRjlPTWJkRzljQlFzTXdzLzZhZ25ndGppMDFLM2kwSldnVFNKbjM2cjRMazFzdG5ZNUhrTk5TRklzTHBjRmxRcHhIRTNRcEtYYwpiSG5hVURJdWpEZzNhS3pZYklzbHVTTjZPTklVcFI3eEJkQU9rVm0yWlppTkdrT0VPSExXNFZnQUNMMmdWM0VSeEdHaytVN05ONTRVClRFQXBLbW5lTHoweU9xaWV4MG5PZk9LQnpFeFo4T3laQ01BanpGdkc5TzhJbWl1YTlhYXN1clBQalhzNEVkbGc2NktJLzFVVHB0dVEKTVJ5VG92b1ZqcXR2REorVENLR0lxMlZaMWJ5TnhUZ2xDSHFBbEdwVmZobWxmYzJkWWZsZ0dlcGZiTVBGM3Nma1RnV1NrMGNZVURLRApxVUoySnd0ZzVBR1ZjR3U2U0w0aStBOWhqMUQ5Zk92VWVBK2tmY3FLdEZGZEI5YkNUZkc4ekE3dkJGZHRhTG5zdFRZMWRjR1dvaDViCkl5REdLM3RZWHlQQ0pKbzFsYURzTUh4SW5Xa25JblJ6S1NOeGt5YUJTenJsTkdlN0IzU0ZsVllnaEpQektFL0MweXBQbHkvS0FaajYKczZxeXhEQjdIa3dRZzJLZWtCRlk4NmtqNHBEWitiT2RneEJydC9HQnV1YWdySDlGZjRHU0dZUWR3YkVRaDRSOG1Nd2tBTXJzUnhvdQo4RSt1eS81S1pyelhPMVM5TXVwSlRnZ0x0QVhDTy9CSUw3cXE3Q3dCUm90aDkxdXh4d0J6VEhRcldBNzJBYjVscWhhbmk0U1ZtNTQ0ClFPY2k0S0FsSVdtOGNJdEZVMWxYYllsM0JGT2gyNXh2d0JnT2c4ZVFzZ1E5OTRDSEl1SEN6WlBKQU9hQ0JVNXE1b0VKWEZuUmtvTW0KUFJkbFcycngzYlBmVWZHbXEvSjNWRXVjR1h4V0tGQUlNVTEyZWhQdEszcGxVS2xKeFlYTUNMcUVjRnV5NDhRVEJUSmtSWVY5eHR6eQpmeVl6aTJJOVlESUNSOHk4M1VoM2ptNUdWbFVhYTVGUDE4MmZpTFBUb3luQTloZkdzbTRhNlFJS2hWdUF3dFh5ek9UcmF3OTVVWE1xCnFNdHFvVEUwcGVJdDhxYXdjMEtLUUtHVzdsZFM2Z00xYjhndmlyWjRZQkl6Q0ZXTjR1UE1URHlDd1pQdDRRQ2pXVE9KeHh3dDFRNE4KM3B4anErWUYwc0FCSlBpTTdmelh0cEt3c2RCSUNHc1dQS1VCRTV6V0hNQUtvU0dGVmYwZ3o4MHNwc2Jhc0JydUI1b1JKVU9leWFmUgp4bnhXbVBCcTdOY3RtclNYWmk5V1VuQU5USFl4V3Q1SENxSlpWNExiajNSNEdZU0hidVZwa3BzeUM0TFlFSi9IblFkTFlZVWdvR2F1Cll1dUJ4d3hpR1NDUkdLTVlFTEZjR1NNY2JNV2owZGt0OXJCd01tYUduY0lnTmlna1NUZG0zWkZ4RENWRHUyYUc1dmVVaXlLQmE3MUkKT1hjek9ZcGJlc2xHNFJTR2xMNzU3Z1UvQ1RHNGNGVkE5NGw2Z2JvekNINkFrVlFHZDZWem40NXh2aWZlUGxmMVE2UjUxaXMxSC9ScwpFZzRNYXJTM1NnL1E2dGFzYkJYbmJtNDAxOEV1eUx4WUc3UFJHcUVtaG8xdnZwWm5TejZEb0JreVpiUkNDekJCWjVadGN0Rmc4N1ZOCkd6Z0YwRkpXNlFHcG9MZ1NObU13V01iVU16azJhN1ozUXdwb0pueVpaelVQWVQ0anBuSGpPWWNhU0VwbVR5U1pzemo0UWhpbEg1SHgKSzJzVXVaMGVSZTJMQkdSVVFZUitzY3d6SkJKM2dGMk5TWnV3NUMzK2ZsMDBsY3MybDZLRTBCZFR6WHBvZEt5enZoeWNGWnM1NXhqWQpnRFd6QWF4aEJoWXMxWFhORFBkUksyeWNkUVV5RGFqMUNHWmhTU3FINkpMUHFxUUJGTWk4WG9oSUxmb1p6ampHMU1OMXdwaGpQNWdLCldXZXBNU1owdzhxRVo0VFpBVHFjRnczRnA0a0JhUmFhV1RyaTNFTkNVK2VDOTRMRUNJNVF6VlRDWUppWktkZ0p1dE1oc3h6cU1GOFcKTytXYSt4a01uQ25idG9RRnpIdTUwd0tpTHhRUUVHZWVqRlBVRmtCME16OFdlRHJ3ZlV6OUlnb1loYWNNYUtML1RXWWpDTzFlUE4rQgpXWWg4ejRXcEI2dWVWbVJNdmtVejZXd01EeEk1QS9ZaWZCS0oxMC9ScVhyTVljSkprSmxWbUU4RWVTQUNSRlVRa0xkemcwSElNOUNSCldQVm9NOWdoMlF6Q2pYQW9PUUdSdUJVaXZkVWg1RGZEdDVHckpSWm02ZHJVMUVaemZxSTh3M3hBVzlJS0t2WlVOWDhqeWV2TXpNeVIKbS9oV1RRb2lSSGlqMHltN21RVEVpc1RNSUdZNFI3SmxLTjQyOVJZUkMwQm5hSEY5bGpTNCsrRkI1VjZCcHBtdWVtYWMya2JLdXRveAp2OElJL2MyQ0JaWWhXVUtraFErdVVtRjNZRG96N2dmTk1XN21pRElIR2tTNnlMQmlSSEJ4azBIZVhjbzJ6TGNFRlFQb2NUOStkcXZ0CktKM0lYQlB3U2dwdnJLeEdHQU44cjdCQWtzQXdrVUFvUVd6WDJlbWRzeHBwMlJLVFo0S1hzV3R3UjBaSGc5THVDT3VGWmpPQmZvYVYKdmJqQVFIeDUxTnphVEpXMVZiVkNxa1NYZFlyakphbkI2Q0ZTTVpxbVd6V0ZsQjBTQUVPcU0yVjR0UFVvY0lUSll2WEFaSWpnT3owRgpCZ3VJWnMyc0NTbGxoZmZ6OGJLZSs0aHpXS3VlbmFWcHYxblBLRVhUelVXRWZiUUw5UnlVZ0FRb21GNmdLT2dxS1pEdFhLeHZBais0Cjl1SUtyMldnaUE3ZkFpQVJNUWNnTU1RZ204aUdjNC9odlZnUndPazhPNmg0QnNPYmN2WkF2Q01QbUxPTHVCMkJrTmJVcmlLMEY4UmcKMndnTXMyZ2FXamsvMDAyMWRsV0ZxUWZnUTRlUkppZjFDV3E0dzZLeUZSMXdVanZ4R0dNVFEyaC9wZWtuV01UaEJ1NjN3cDVnc29XNgpyWXhBY1FENVQ4eHJxcldRdlFGOXNVTEsxZUFqQnZjai9mcnN4a3NRMGExNVZyQXJuRUdZaW5sV095M2NJMjVnODlQc1M5U3RFYUgrCk5PaVZxT1l6cTBTM0dseE5hTFRCQkpDSkRkb0hnSm0wK0RMN3JOcW9hWFpDVkN6MkN2dXNNbzZkZU9kMW1PY0dNTTFnRVMxT2dGcm4KUGRGb21QQ1dVSUI3c09nUUZGUGdyS2NPNndUdHdFUTdkcThFWVVmZUlnRmNEeE9URTNCMFc5NWFyeXNOTzNyUndDa0NTUUgyaVlxcwpwLzF4MlpxSEV6U3VidEN5T2NxWjBCUnVNNGJLZ0lBdXhqay84M0RaU2xWOE01c1Aya0ZjTmpZakluZVJ2MkhUeTdxaHVTN3FoUWVSCmJqYmtDZ3c4djdxc2tBMEw3Qmx3Y0ppcmdvWUFnSklnSVM5dUNnR2hiZ3pVS2ZRNEZRckF0TEtYNHNlcEZNcS9CejBpYzJVbDJveHoKTk1CeHNmTVFRU2d0Z2Q5bWJ0ZG8vc095cVdPTkcxTFFaeVFPQkpmTjN2bEZoWWtGY0I0SWdpMkR5YXFpSHQ2VVo5WnVDbjI1c1htNApZRElnQkZMdk5Xc3dRSXFLU0NOaFU0UDE3R0FIbU80aFZnTHZ0M3JVSVNBUnpEdFFOR2ROVXV0MDNQcEY5TXZDOGgxV0RTK2krNTFKCnZQU2pNR28yMm4xMnF5WVRTY21zUy9CSkUrbXp3UE5UdEU4NXl0QlQzZnNHNkF6U1E5RTl0Rm82R2pBcytvOFd2WnM4S1M3YjZPL3gKUjZSZ0E4OW1XdFc1UE5QS0xmMnRjQ0VMa3NRRWIyZHhnd2cyZ2ZTSmpBb0FBYUtvaHNJc1l6dVp5cUhlemR5WWNQSGxUYk4yMGVzego5K1UvR3dCbVZpdEh2dEtWeDM3RDZXK0VhU0VuTURkcEkraTZCNTlrRWtlcnRSWFZ3WkRES2xkTm9FbVZTWGFaa2p5b2tVSTNUS2ZxCkdlTm54TWtqdjFvRkQ5elV4OEF0MXAzUVc5S3NJTEJPWmp1NmsyWitaREtqcTJxemc5WVQ1WDduWnpBMzg2MW1ndmRVOHcwOGtKdUcKNUVhQXM2WDBJenVVdGhsUWtEcFE1Und1SmVpT1VQUkFTZ1dBNno2Q2ljMHNpNHI0aHBiSGhSNGRmb0dVdlp2R1E5RGE1OG9KMVF3egprT0d6bmtRQ1FZS1cyRVY5bExocWJrbEtrUU5uMDZZb3NEQXpHNjhpdStmbnhPUndNbnRyVDIzS1BRQkdGRFVxV040eDV2VW94VUJGCkdXZjZJWjR2dHplclNMR0pFS2pWY3FwU2g0SG1VSG5HQzRGbTdLRE5UNXhnSmhYVVRyb0I4cEFxb0tXaTZVdUVJa0UxNUJIcUxvSEMKOXFnbitITFdzQlk1SWV3akJDeEZneHZDWlQwbnZ4dmkxakxqTThpY296bWRSR2FqL2ZCTW9ybVpIazJ0TFdNYXFpWkt3RkhwczhhVAp0ampTTmNMSndUT2xrRFBCUXRGbE05N25TQ2dha2djWDMyeEhncE5JcitOcUdDWGE4UUpycmVDOHRNL1Y5dEcxUENKMEFJTmNGOHQ4CnpLWVRBNGMwYThKR1R5RVd1cW12UWRWK2VHY1g1cXd5SFJQUldKVFFreDI1dFl5R1Vod3FzNUMyQXFqQnBFdXpFc3lBYU9rSGw5RisKdUtpVkJpbUI0ZDlrMC9EWmd4QldKWkEza0ZDN0RaQmdNTFJOTUZiUTdIVTB6VUs4aHBjSmJoK1lwOXQ3bWN3Sk9TRkZtM3FLalNESQpBRE9CZkFsNnJyUENrWWo5Z3A5aGVPZnhZOFh5SlBESTVFMFhsRisxQXRVVHpTb1RtZTBOWjdwdUNvUWdBYndDUnNoNWRURjBNOXhECjBPVkExQnNNamN4RVVUVGRGblVvV1hmQjhRR3doOUUyU0tzbHN3QXVXZ3ZaekxkcVdTaVlNSFV3aUFLL1JkZExNcUVjK3RhcURodGQKQ0xObWN5SjJaZW5tSG1ZbjRacGNOTHRYMVJNN2RlR3pCdmhRNUVSZisyV0V6OHdHaXd4bVZFWDNMWXZkRFh3WWhPUWFGeTJDUERwRwp6WDlNdU16emUwSFE3QjF4b2ZCOTFYWUtzSjJDUXl2QkpyRHhRdEtrS29xd1NhSk9ZR1RpUTIvcXpPUldodWhpV00wd0pMQlRBUVBLCnpJTVJjRXZJSjBoblNWQlE2c1kyRU1uazBJOUVCZ0Y4dUhLR3lZNjhhZ2o5eWxSdnlPYmJRL1RwZjRocW1XQ1lQVStjVFlvSUpTRXgKcmJaMnRGOUZOekVHRml1YWFUY1pseG9Ndm9JRFkyQW5nU2RzZFZrS2x3VXlhd1VJSTgwbkRJdUlOaU40cDVobEQrdHh6aDExTjhOTQp4VVc2YXBZRldnMnh0TG1kTVN0Q1prUWNoWmwyR2JZemdLNW1WVlVJU2t6R1pFQ2dGNUlFOTB6aEZIakloUERZRWhCUVljZVR3Uk8rCkpsdUdKVU1HeW1IV2RjWVg0em5TOEYxbU5RTEJMMWF4Z3VEdGhyY2RmakVDeW9CVkMzNVVLb2haRVczcTBZUDNEQ1lwd2lJWHZZeG0KQ2RTQWdPeVhFUkVBWXJXazNCVG0xbVIrTVJBZzZSTTQ2VEpwUmhiQVRLNUxwQmloWS9BWE1TYzFVLzh0RGFIQVphN3ZWdFVwQXcyRgorb0NpNnhaRzNCUGdCSWdQdkMvQWUzZWNWcVRXc0FZREpPUHp4cytLZWxrdERuY05LcmZxUlVsZEpraEFIaFlGUFJGK1BGNG1mQ3BxCnV3M3l1REo0WDFURmpNZDJRVDlIUTNtVW9odHVKdGR5alNYb3ZmSmlBYjFBWmNKQUNLOGdnN2JYVE1WNnJicDhuOXRJYzVVQkVNeGcKLzlWMkpRQ0NpWFdEUUw0cVRxbzduUEdFVldHUnE5YWhWN0hCSkVFb0NsZk9jenZTYVRZVmZjWnkzNmpWVUVLam5ZMEtTOVUwRG5sVAoyNFFLamFwVHJXWmQxRlBqWU1OY0ZWeEpOQzRVUXpDSTFOd25XWkdyWUNQMG9PRVVKZHdkekFiVEJRUTZKRUJ3dSs4TVVLVThMMmcwCktNMW1aVWN6MVE1ald2MW1henRVYmxNUElUQmZ0TmE3alI5Mkp0ZURHVFlNRnp2ZVhUa2o1bVdnOXI0UjFLMnVESTQwYlZYY1REQ3IKOHRhZDFKRDJkTTY0M1h2Vy9HUU5JUnd0WG9OQnk5bWxscWl1eDlVUVp0anRaK0JUMXVyaUgxWlg1bHhZSGNjSElrTjVRT1ErRkZOTApCWUJRSVNVczJyRGJJSHBUT0hpQlFnQU1Ld2liNWltaUZqNEZvd21PdG9lblZVM2hhNXNoS2cvVGtWczVJU0xOVGdtcG9BTEJPWTNKClVXaURHd0pFTnA1cys4cW12WjhKZjI1WHV4QjI5Wk12bURGUFJ2Mm5oNS85NXQzYkY2OS9mL2pKOFhqOS9QbDNydz09DQoJXV0+DQoJPCFbQ0RBVEFbDQoJZnYzbTNUUFUzY1ZiMlVra2tCWUllb0JWRkZhTVYwYXRqTU1Jczh0UXhiTHVoRmxSZlJRUW1DNGFsbE1INzlCVVJyd0VxSFZSUVlJWQpWNDE1TVZ3K3BWVkd0NFFXenJBcXVnOVd4SVcyZHQ2VFVUQlFDVGN6OHFuUDBTZ3FUbmhpNGw1djArbk8zQitxTkxrakNzZVpGUmNDClZ5Z2U2b3dqMjZEYVJCYzVUbFlGcTFmRDQ2Ymh1bXVLcm00Rm5jdzhNSFpXVVl5cFRFZ0lSaUVPK2VUQ1dYZE5VSW1uSVNXdmFqVzIKSUltZ2dSdWcwQVRodXBxR00xVUZEK1BwS1h6Q0dZbFo1NThCTEFkRGNUbDNnYU8rRW8ra1dYNEpxWUZITE5zNEZzWjdsS3VtOHVyWgowSlZFNHZoQXdHRGpjN0JSWllRU3JscVczSzVLd0RreTlkNmlWeEVSQUoxK0NScmZRQTY3R1hwRzN3eWFYT0JKZzBYZkxLblJvN2pOCkdad0tIQmJiVllOeEVITTFjM0VTNk1wYTVEQlJ6WG9rSUpaanRmUWxUWXJFazRPb1V4dlltc0IyVmtyamlIeUVZUXMxZkhlanNzcTkKSVN2N0FpUU9DdVpxU1VIMHNFaDFaTkVaZStQYTYycEpYbmdjdEdYVDhCaHY5WWNHNXZsTFFLZjdWVXhVd3hRUm1MMVVjVFl5cG9WRwpBUUNqd0dIV2ViQjJKME1acjdPeFJvaDlNSUtnRmtlUi9vaUV6M1gydE1TZ3dWS0YvVzJlRnp1eE0zUDdoeVdOclVBU1hvTyttRjQxClcxOW4wMFdpaFNvV0lBTWhwRU9hWm1ZT1FJeXJPWGlBVjREd3lTMTRVNTZucHVwTndmaVJhRTdZRExlT3pzZXBHNGdQYVpXd3E2NkIKNlN6VWd3dUJCT2R6QU9UdmNremtzQXZEZ1pFOTgraU9XZ3FubWU2dHlCa1BPWmZ4WmY1aUFNbERuYTIrR2lHb2NWa1ZjMFh6UEpxTgpNZml4SFYrRlREbFlSVEJTY3c4RUFSQUJuSlNRWjIxSDB3aXRxZ2k0NTVBcDlwSDlpV1lLcE1TQTFGUm1sV3pnRXl4b0J5bldaN01SCndla21NaGJXaDd5NWVzbVdxbExDRE9nYXozRkJoRUJkMUJYTm15MUpaVWpLRWxpTndDWHprUllGbkpNQWl3ekVoSWF4V2VpcUpWSGgKUUt5MU1WRUJUZHBzZU5FMENUUXQ2R1ZaK1JyVGVLSzdnV1dEL1I2eVBGMDRUaERCa0NZWnZjeUp5WFQreFVJcmNEb0U0SStSR0d6RgpSYmY0RXNDa0tKUzFXbjcrZkNHNHRnNEVoSHU2U3VuRW10VmtIK2ttbUl1NjZ6SDdmVDdDSGJINXdiQUF3aU9lRmhZOFFyRFdXZk9pClFSUmtaQmQwQnh5NFNjM09XUSs4Y0VrSFFKY3huSENyaW1VMHI5R1ZWakxIcmNXUmNMYmpmSGEweFNxeUNEaldhOVMxUU13Z3hxeHgKSzZ6d2pUN2l4VmVWMm5CbjErY2hrbURoYmJScTM5aEFpd1FWV0FuR2pJelpGUFVpWFRGTVdhamU3NmJSZ01pejl1QVM1enNnTVhwbQpSS0ZLdW93bmluUnJ0N2pxU0tXb3Npa0Nxa2xBQWhxNHlNbTlHV0hFQ2t0Ykwram5va2V0WStMQlEwZlFsdXp6Q3Y4Q0VqMVZUWlRSCjlBVU1zd0lEWjZRaldUVVRNcVZQSE15UXNwNTB4VTBYUm1wSURNcXVOc1hjYk5WV05RQmQ2bzVHREF0Nk5qSGVWTStUYUZJUXJFb0kKQnlSVnA2TzZCK21maHA1REF1RjVjRkM3dnNiVzZxcjFvb0w3cW1xK3BQQVZrMFd5a05JQmREUnlNSW5acHNjTnAyQnlEUFlWUFpJdQpyN3FqTzRZak9kRElJQnJFblFDS3p1Zms0Q1ZHRFN2ODBJSGRQS2lJMHltbzQ0UUU5YjliaEF1dkk5QW5MRDNtbkZRT0QrelZ5NnlaCjdEY2U2QUNLOXVpc0hJK1Via1FyYW9RUGxCWTJUV1ZLVHNIOEs2b0tSUFhJV1F4RWJydXBScHJEeXNaM0FxYU51RHVBQXkwcFBUTWoKTzZHWnhHZ2M5MXF6UVJZQ0FYbkxTSUZlc05VZTFtalUxZUpWTWUwQVR3bDZXSUxLdG51NSszUEs5Z1RhODBDWnFwTlprNmtGRGZXQwpqTXM0ZHFDTUNUSkk1ZzNER1M4RXppMmFhWW5xbnNaaVlZMXB2QWlQaDZGMkE5Mnk2a25yM1BxVjBmdlpGYXNleUtLeGhKckdrSjZ1Cm1ldUdXUTJoZjJuK2c5UXUybGE2ZXZ5aW9zbi92R2tsekhUaE5FbVE5Nkx6STNxbXhhQ3dMOEFlNlE5ajRDQW5qZHJQK0dhQW0xY2UKT3FOdWMvZ2hwTW1LQ1UrRXB3Rytrcmw1ZUM4R3oyMTh4Sll4a2VkSEppN3NhSGtsNExnbTB0c0RMN0s1bzhMTUdEYW1qcU1yS3FxNwpHNFNBN2tnOWFCTDNTbkR6SlpvS1VZY29wLzZFMVZLWHpXb0U0bFhZd25oRU5mUnBUWkdta2YwZVA0ZlFGM2o2Z2JOb0VTOHczK01rCmxzMWlDb0RPd01sQ1FLZlJUb1Z6WUdnMnBybkNyMW9zRlJkcy83TW12YXpBSzh5UWl2RmVPRmNjeG0rbVUyaEJiSXRCTElEbFYzOGQKOFBBdzdzSWgyK0lWT0lteFFIcHdQcWpvU2JoQWFmZml3ZVdhRjJUbFpnZEtRUmcrOG5ndUxRUU9salBJNEYvTVYzcHVBUzN1UG84UQpSQ2kzRmNHTEFwT241ZllWZ2xES3RaaVJqY2NzV1pDYWhxVERSdGloMTNva0djOEVObE1Zb3ZXWXNpSXIrb2FFaGNjTnEvSFVMeXRRCmFLRHB1Uk9abHVxd2VpNkhhcGtuTEtWb000WnhPSXZucDRqcU1RUjhudmxBc3UxUmhlZ0d0U2N1bk9zeFdrNUxxRnF3aFFFTHFPYnUKMlk1aGpZUGRyUUp3eVVOVHpUY09WSUllbGFyUVp4S2dMc2N4WWdBZS9aWEhBeUcyU0kvOFlob1JNT3hpWjN0eGprYW1wZWdISkcvMAowRzBlSG1vcFBia3QyM0ZMeUNyaS9Qakd4b3dSTEF6aENob2hTV1JKTXNNb3Zkd3crS2JZTlY3NjFBSGVCSkZCUnZTOEp6cFg2RlpVCllNQkt3emxOQ00wNldJVUpwcWpCaFMzT083bGR0bGpLQnh4cDBHZElVR050V2kzWFY0dk5UYW90YVl3a3BEQ3pwdlBkbGszUmRqeG0KZ2FHd0NMeExCTWtraTZnbHM4WmhnL1BjczRRd3BDdDU2RGxNeE5pK2s2bG1yQUhzSmhDVHBaMzNaeG1yMDZaNFl6Yk9sSEtiNWU5QQovSzRzdUxScERvaG0zNGFFbExBRlIzMHp5a0xKWEg4TUJhL3FBaUNhU2tjdHFzZVlpejdZSWR0WWFkbGkyZ0VneE5URGtxeXpNNE5WCk5UamtqV1hBeXJJcUxDUWpoUWVHWXpHdkRXcmtHdHRsQkd1RHFORTVGbFdmMVVYR3p6QkE1S0lHQ0wwS1JneGhUSm53WVEzK1ZKQ0YKNTZGWkxDOERRbEFoaXV1WVlXWEJDYUV4S2F5RXZZbEdWdXhOYWRIbG1zdGdnNGViaFdrM2k2cThJTkJRQUFMRG5rQ0F1d1VFTjRXQgpTRUVEYlRFYUdDSElzSHVDNEhkVDdGaFJDT0Z6MndtcExpNUluVkUxU2JuT3E4cmNJZ1FjZ2w4bHk3bkFxd0x6a1NzeEdWSWYxamxtCkc5cXFmUTZNblN2TmF3VWlJaFU4b0k0RVFyYUtoNFBDMVErSFZORVZySmNWVFJDQVkrMnE1ZDZtWVk1WldSbkl1ZXFaS3d3VG5vM1AKUWNUVm1MZk1OSmR4dHMwNWVWenJxdkJyQUluY2trTEJEUlp0T0ZZM2srU1NmbGF2RlQ1elVnZDF2ZmxWUEVNQ2dYcmNITkJNcGY5MgowVTlFSXlVTGlsUFJKU2lhQ0lwRlpBeFBOZ1JRdEN4QzBjS3QzQmZtUWhuVHBqQkVwMnFjVE1vODlWcGRuMFRIenJRbURqc01zQ1E0Cnd5SzZQMmkyQS9nWWx4Y3RpTUk4dW5rZXdoMXBGV1dnbGFzMW1OUHcrMVlMV1NLU0tKb2R3OStOOHBOSVlSdDBEb3BsZElRdjVxVmgKYUhaUzNnZ0Frb3BscTA3czZObU0wV0hnc1J4TGlubFp3MW9vMExmREFqYzlhaHRTTGIxL09MR1pSNlFWZW9jMVZ4Q3owUTdDRWd5ZApWVkU2QkJ4VGRNYk90aWx1aHArWjc2anF1dk9yRnJxQUZVWFB6endCemxNL25RcmduMVc2QngvR0lvZnFuS0tmUWltekN4T0pKMkN1CjZzWGtIbHV5SjdLYURZQ2FOVXVCTXZsWjVUWFk4UmloRERNZ0pPVjEwWEJvcG5MQS9zVjBVS1duckdJWUY0aVc3NEdHWHJTZG5VRGYKV3U3cURkcW1teDhlNTNtMkF3L2dMV0F1ZUNJR2c2WnhBa1RmTVNqME5xNmFGbzN2eStNR3dURmhUNG5aY3VtcXM0MmYxUUUzTjErdgpWdHFLZFlnR2srclJMN2g1VUF1ZHUrMVV4QTYybzZBV0pqRXNkRkFHQVpCSEZCZk9FbTVTQUVEMGxnRlVzNi9EKzBlRG5OVWlBUndGCnpUaWdBWjQwS2lERjlFU2U4d2VyUkxIVUtjemJpeTJtakxsVVNsV0JwdFhDOVhDU0VaaUhTZXlFdW95WEdaRjUwNkVQVk4yK2dZZGcKNHZOcTV3TTVRV1czcXRieFZtdWIxVHlNb0J0R1NEZkMzR0ZialZnOWl5OE1vd0Q4MUdUeVZiVk1HalVPSHRxYWxFTlVwcU93dE1SYQphU21ySGxUQWNPMjZFMHVUeHRIVmFNSDUxU0JCZ0NDU3JlRm1SUzlyTm13OEVyTVhnQWhJSE1PL0VFbk1rNVpYd3djQ3hGM05EY0xwCmlDUkZLMDEwbWs5bVM1cVNOVjJwYXNjUXBVcERZNE84a0lqRmh5R2lvQXdDWE5nNEFwVU1HeW4xNEJsaW5udGZubHN5ci9GR1l4OVIKamZBSTRqTnpGbTVKc1N0b3BxVlZNakVFUGg4bVRFVzJzVVJ2VmJaZGI3UDFTdHVKSS9Rd0gydFdJNUpIaWpIcUNKTzNNR0ZVVUdOVQpOU2VYM2k2bzFhWGFoczdMQU9tQUNSMTZLd2dVQWFzRlVmdGw5QzJEQ0E4c0E4cG05blZtWEdMVUdCSm1kc3ZkU1JoaDUwSW1MNDB2ClhEU1BCM1pYWmxSZ3gvSTR2RmhVbGRWWHN4UmlvS3FDczdseUJRb01qUm9ZaDBRc01GVTRPRm9mcTI1bXdLanFKbWNlQVZJcW55SXEKREpaV2phMjV3Nkx1eVNGcUh2VkV6VkVEVXV2WVRGRTNzWTY0TzFBQlFiVGM2ZlFyY1JzMElKSzZZbzJnN3hmY0JMSnE0QUFXSVBnNQp3SEFVWWJET21DSFBLY29VaWlWbWJQWGdRb0ZLUjlHSitLQ3FhaGllc3dYY0VPeTlXREN4YXRCMDlDd2FKY3lNRTd6U0k0azd2cnIyCllHSlZJOERQNkV5RnlrWWhDTW5YR0dRYjY0QzRRYlJYc0hlazEwdlY2RTJQMEtINjNTbGhpQzNveEtnNTBvdW0rWUdEbFc5RTRITDIKQ0J4WU45aXA4R1VsbW8xTlZZRXUyUklQcWdpVExYNk5kczVTTzhySHdyMFh5eEFCdlVnVE9FS3kzelRUa3NvbnRJWDYwYzY1YUZCKwpDRXUvZzZXUnROUXJyTVB6NVlDcHlFMm5ORUFGckxtYUxtdmROTW9aa1ovY2xRbWpZdUtOZVFUWEI0WDdZL2xEaitPekJxdW1xZmVECkpqWmtoN1hEeDRMQ3BCaWFSZUVhYVU0V0U3V29wREV6Z1JvUHErTGg5RXBtZFYySC9rZDRTMUdQdDY3aWJFQksrdE5kd09ZWkJId3UKYzBVeWZSVlkzYlphMU1pcGJIVHpHUVd2Ly9KSUN1Y1BidWl2bjR6NkpOdnV4K1haUFQzUGJkWFR2OGVzdTFpcG9kU1dkRGZ5U0tyVQpjdTdDNEl0RHJzYVV1MmxUOTZLbjNNV2hvNWovbm5GMzVUa2k2NWh3RjdvMFpyRG4yNFZHS3ZkdDZYYWhRMVU5VXJCbDI0Mk1hVmxhCnNsMTh4cU42cmwxOFhqUkRiMHUxeTJ0Q2JwbDIwVzRwVzB1MEd4bXp2a3V6QzRTaXBmU2pReEYyVmxqUE5jbHVOdVRXa0dNWG1HbUsKd0paaUY0R1NNS2g0aHQzRkVGRzdCTHNqa2ZsMWwyVEpXejI5N3BMVWZMdkxycnNrUmZLMzVMckk1UDcvc2ZkdXU3NGt5WG5mRS9RNwo3QnNEdG9HaEtzK1psMUpiaG1XM1pFR3daQW1HUWRETmxrU0RQU05RbEFtL3ZkZDNpTXlzdFhvb0Nkd0NmS0VMY25yRnJxcC9IVE1qCkk3NzRCUmRSd2RhdHpuNi8wTHBNc3VVUlpOMXFoWS9CdXMzVDZNM1ZoYVJTN0ZkamRZTjF0cW02aU5qb2c3K2d1b2hhNURJT1U1ZTkKZWVZNlNGMG00MHQ1RTNXYmkwTTJVTGNWYWUwMlQ1ZUczdDQ0M1ZiTVdRaWFMbzZUNTJIcE5vdklYaWhkdE1RUnVVQWtYZWdmQzFONApCdWxpWlNhVXdzWFJaZnF6OUlQUlpjSFFPQkRkUGtQQ2RERjA0ZkVYQzVZNGQ0NGh6V2tRZERFSGkrQi9BWFE1VmZkNitMbXMzQXBVCk1UNnhxTzk2MFhPallzbjRYQlNKemNQTzVaOHV6TjNSZVhpM3ludWFuSXVPTUpwQkRjNGRsU0dpRzVzN0hLa0lhaTU2SFdDbURHZ3UKa3V3b3lMcVp1Y3VOTlFLWnV4SXpKUUhNeForY0JTNHdHblpaTldpNUsybCtNU3dYN2hOV0p6Y3JkM2JsSVFPVml5OFlxODRnNWVLOApxL2Jkb0Z5SXN4QlBDVTR1UzJMeHFRUW5sek1jSVc0M2NaalRYaDJiazh0Wno4UmJjbkl0SWlzdlRpNDFaUGpJemNtbGdpeEpDcW4xCkpBelVMODRiWHRXMU5nMU9MdTc3WTIzb293dzQ4OHNYSlhlNXkwNVFjdlVacXcwVksxQTRJeU80ZFdOeVpaeHIwdz09DQoJXV0+DQoJPCFbQ0RBVEFbDQoJYkdHZ0dyeHZ1dGFqd2UzRzVQSmRvZHphbUZ4Nkt4UmtYYnN4OG5oamNwZnB6a0hKQmJzaDZaT2dDQlg2L2FZRjEyYmtycXhmQ2tTdQpGMEFCeUYzVCtxbUxqd3NiUHFiQTR5S3FnTnJ0b09QaU5GcTUyYmpJdUROV0lqUXVYdjFIQjZYdUZXSTVDbG9QR0hlaHFxMmx6Y1hsCnkxT0Rpb3U1RWl1K2k0a0xQcW5iK3pBODI1WWNyQ0RpdGtObjJ5TlFzKzR2ZUxoZ0Z1QkhBNGZicFBpN1liaE5ZYTlBNGFLK0Y3OFMKSkZ6OHpWKzVTSHBJVUVBc0hCemNIazJPbkl1QXMxREdEY0h0YnRRVEROenV4R0FnY0JIdnhpdHpFM0JaUzl0SEFIQ2hSL0pycjFrdApLWTEzNDIrclMzbUNmZ3ZPR2ZWOWh0K0tmMWRlN050cXZFaXdiNnVyVkFKOWk3K0Jjcm5KdC9zNEJ0OHl3UUhaczhDM3Rhb1kvdWJlCkZnK09nYjFGRkxxV0h0UmIrRkR0NlMvcUxWZEVxd1QwTm5jOTkyRGVmbmJOSWh3cEVUQW01MW5leUZzVVJTQTBaZUl0YUJGTmZGc0MKYjV1N0M5NjhXOElobnJseHQ4M2xTa0c3eFQ2Wkl0dFRPSXVWaHRwRGluV0wzK25zNUM2SWJjdGFGMXlnVzZJUkxocHVOUjAzTUxmSQpVeVB5ZEZGdVVXZGVSdDJRVzFSc00zNXN4bTEwRnJzUnR3QjQ0cFV5MGJhNVdldjVrMEs1bTI4TGhIRTVkTnVXbmIwMDNCWi9zNFQ1Cll0dFc1NWNEYmN2dkUwWGRJdHZ1UHkrd2JaMUt3Z1hZOW1PaHBNSlh3MXFhS3dodXJDMXkyNkI3QnRhMnVZWWdxTGJ3UW5IWGI2Z3QKM0poZU45SVdJd21URjBiYTRwK2JPTGliYUl0VElVL09RRnNreWxBQUhEemJWaG5MdTJtMk1QR0xNczRXZitPdUI4MFd3d2ZrSGpmTQpGZzRYNGFCbTJVS01oekJMc0d5QlZXbUNxdS9KQVRsSERySWkyVUtiaU1CRWdHeEp2eXoxeGJHbGt1SGpKZ1hHdGpvWUVCUmJnR2N4Ck9OOFFXeUFWTDRSdGRVNDVDTFlnVWZKRHZnQzJoZjFFOHViWEVqejU4WG9FdmhaL3AxVmU5TnE4eEc4TGVHMVc4Qy9RdFpuUThCZTQKdHJoMXNMbTFoZW1ydkxHMWhjclEvS0xXSW1XV1ZmVEVpbUpRbUhWZVV2MTB3TUxYQzFtTEZFUStGRnNvTXJpcUMyQXRKQVZFZXI2QQp0Ui92S3g2MWdiV1k0L1NFUE5XakdyKythYlVvTFdqandHcmgrai9qc0dvZnljOWZxRnFnMXNZNHBGcmNuSXRUKzNDWXV5bTFtSmhRCml4bVVXa2dlaTlvUnFpYU43ZWhmaUZxZ1pqRXZiRVF0MGhLaXlJcFF1NFFWZWdGcWtUbDd4Z2JVb2l6bTBHbXpaWGozbElvVVpoTDkKbElJQ2JsUHlRZE11ZFVCOW9XbVJOVVloVDVCcFVkSFcxZ0hUeHQ4M2x6WnNnYVZkV3N1Yk9BditKOWJZRjVRV0ZaVm9wQnhiMFBtdgpHMG03Lzc2SXRHRUxJQzNxZlhEVXphUDFhM2JqYUJmTHhldW0wYUo4SGk1S3dHZ2ZMb0VGeTlpYXhhMHJDaG90NUIyRVdRU045cUZXCnJMeHB0UGc2S1JJSkd1M3ZtRmJDV2pSd3RBOHJac1VDM2dNT3lqOTd1V2kwOEtyd2Q2RGF1ajd6bTBVTHNpRkFRa2JSZnJ3c0hBTTMKaXBZcXgvSW0wV0tXZnRJRzBRSm5NeEcvREJBdFJnaUdRRzRRTGJ1bnozbEF0QS9vejRqTUI0a1dxMklNakRlSVZoU3RkRGkwai9seApnYUZGa0tYTUY0VVdJV05FbFFKQ0M1bk0wMG93YURIdVBDTy9FTFNZVVRycVNrMmdCVlNBWlVOUk1JTlFVU2t2L214dUd2ck5uMlZsCnM0cVhtV25IMzFQYy9aMXF3bUZLR3hzK2k1eXlRRUxXYkRhRmRpNzBMUHl3cmlKY2NwdllkMm5XRFo2RnlCQkJtSnM3RzdiQXprSWEKTW1mYTFGbmVFS0kzams0Y0FpTzhLOEdjaFJRQVkyQWdaL0h2N0E1eEVXZGhtK3k5STBsTGNSMTM4R2FSWWMvdFJadEZucDFNV2NObQp5ekxjMUt4Wk1HeGR1YnlyK0twMUlVR2F4Y2pHUllRUnNxMG9WWDl6WnVHd0kxNFhOc1R2eUtBelpUYit2aUd6MjJiR0xKcnpQa3ppCjZqMzY3TEtHUTR1QXNLbGNGMkpXRFRGRzM0alpWRjFNdFJHemtDSUloM1VJczZrNGk3c0pzOWhLdUZHTGVmQzlNT0J4QTJacFRSY2wKRmdiaFJvTXZtMWdSMk1hYkx3dnBBMHV4cnoyN2FQNmJMMHZMek9YTmw4WHhLRi9jZkZuQlFsYzVmRmxwWWNvbndDemg0c1VKREdhNApTM1plSWdDelJLZU9OTitBV1ZxRkhEVmdGdi9Cbk9ZR3pQSS9tRjY2Q2JNQ3k1WjVDTE84T2tSbk5tR1cvNVNNNU4wUXF6eGRQUmVFCldXYWYrR0lFWVphUGhwQzBtekNMQkpGU1VTYk00ajQ5ZFpaRG1OV1RaK0xySXN3eUw4WklZUkJteVRaRlZYa2daZ21pWitqeVJzemkKQjFEMnNnbXpPQi9seDRJd3kwTXkvSG9UWmlsc1lwUXhDTFBFNFdmM0xaYk1NcHY0OVNMTVNoTFZEMkNXQm5ZT0NjQXNMT0lTM1lSWgp3bG1adnd6Q0xHS1ZpdnNHWVphQlAyVVlMOElzTTJQNmtFeVlaWXhuK1Q2eGVtMDFRWFplZ0Zrd0Y2UkJGbDhXREVRQ3N3TXZpMFpWCmFwVjI0V1ZYaStwUzgyVzUxVGgwV1J4bU9lMjU0YklJMmZEQkJsdVdnU2tWVlpndGkrdWdFdW5GbGwzTFgwS2daVmNTejIrVFpaRWMKU1BYTmxVV2NVTzNEakpXZFJiaXhUWldGQWV2TkYxUjI1bWlhWnFZc0RLSUNHaW1yN0VWNUUyVlJvcTN5VVFObEdUNUQxbjREWlpuUApiMk84Z2JLODVQejBBNVRsbytOWEdFQlpjREFSbDd4NXNzdTFpTWJKSWxiRjRMOXBzdmk3OXBzbEN3dGxKVWJKNGdDUG9tc2t5UksyCitmRTkzU0RaeEt4N1Nwc2txemk1a3d3c0lNRHNKNHppUlpMbElFWVljNUJrZWRPclhoVnhHbkNqTUtyZktGa0cxSWNhR3hJbFN3T2kKYllHU3BjRUUybzJTVlE2bTVZMlNWWnBram8yU1ZmNWx6UmRLRnFkTWVWaWdaRmx1dy9yYWFQU0ljbE44SHpkTGxpME9vQ0VJbGl5RwpkbjVyWnNueW5yQlc3bUxKMG9qNHVWbXl6SXdqQWgwc1dSaVlSTGhac2pBR2daWXNXUm9RVndtV0xBMXNTM2F4WkNsNXBLYkdNRmwyCkJNSFhIekJaREI5VUhOdzBXY2tnODl3MFdXNkYyU3Rvc2lrN1ozSFRaR0ZrZWlGb3Nsc3NLWnBzSXJ4bnRCZE5Ga2I2RWtHVHBRRmgKdktESjBzRG1NQmRORnFNMktibUd5WXJvdjFMUVpObmFHd1BXelpPRmtXV3lBWlJOcElhV3VZR3lOTENLK3dMS3lvaGtoWUd5UEE0TApEZzJVaFlFczl4c295MDRJeUxZSFVGYkZFbmtGVUpaOVFQa09YMEJaMWNZQXpXcWdMTnJWY05JT29peVV6eFMyM2tSWnlxR05rU1pSCk5sV2pmVTJVNWQ5OHB5K2tMSTJRQ0FSU1ZxcnFyQXdST1Z6OE5XcVRicVNzWk5UNnJpblFZT09mcFZwQUVtVzNRdm9teXRLdGExbUQKbkFTZUlQSFRtUW1pTEVUMFQvb0VsSVV4c1JneWlMS3dlSXA2b2dkOFBYbkdqWlJOcDMyQmtiSThGbnRHQkZJV29uaXFMRjlJV1Z5agovS3hBeW5JK1ZvTFdoRGE0TitNVFVaWktKNWFYQlZFVys2bWdMWWl5dUJFaUc5eEVXVWpZVFhVM1VSWXZGaitLQU1xbTVvNlJMNkFzCnkyV29DQW1nTEx0d0tUVnJvQ3g5Y1FDU2JxQnNpb3ozQnNyS2NuQ3lYMTM0N2R4akxIMmtGTjg0V1VFUzhxYkpZbXlsTk5vMFdUMzQKbFY0NFdScmhpd1ZPRm9lbWdEbDRzakJ3VnJwNXNreVR6N0Z4c3Z3YnMxVHdaR1hvNjhXVHhZOGhqUnc0V1g0UEFralNqOExNWUJUWgpscXNodjRZU2xjREpNaStaK3ViRVloU2FiYjVnc2hqUG5GbWtyVWRyVGFGa093YVlaNzVJc3JBOVpyNU9iVUpNaVRpeVVPZk9GMFdXCm5lZytibHRBWkx0ckE3MEovc1NRY0NOa3UxdTZCa0VXMktoSFFXSEVpTkFxRnRQRHhZOGxqSFhWTUxIWGErdWJIaHQvWC9EWWJUSTcKZG5yT0RTb3NXS2tzMHJuSXNhTXBhcnkzS1FLRUJEZzIvcjY0c2R0a2JPekh1VlBuYUdyc2ZBU3R1cUN4UWNzTlp1eDhOTFFGTW5ZKwpiaGgxRVdPeGo4bXZqTTFNQzBpQ0Z6c2Z2Ym8zTG5hNEJVN1FZcGtiVTRpS3RGalFCTWpOdTJDeGhJaVd1Vm14QVJVTlZDd0MwQjhECndRMktoUW1mVW9CaThUZHlvY0dKSFNLMzNwVFlZYWxYUUdLSHU1Y0VJNVpCNnR4ZmlOaHVEeUVRc2ZqY0prdkU1Y0dONkJad0VXSUQKR3hXQVdEUzhRVFl6K0xBOUszbC80V0ZwS25uVFliRUxrWVNHd3dMNnd3em9nY09DaUZYR1JzTWltWW1Vczhpd2dHR3hIMWw5NWJkWQo3Qk5jV0NSbUtWY3hGblo0VFhoVFlkbk9sQldtZ3NKMnJYRUNDZHNOL2J1SnNEeVJ1bm13YkROOWFMQ2RZYS82Z3NHeXVBdHZvbG13CjNjVE9RTUh1UXh3UWJIZCtMeml3dzBtVFozL0Vvc0NDU29GUUJDQ3dHSlBTaFh5ZDBTYmpRc0JDeDhYVlNXeXp0RndLQUN4SlYwUzcKSHY0cmlSV29JVk1xQ1g5MjNpUFJYNmYxQ2pmOWRSbzBHL0JYcU4xWnZXVDJLMUMyS05PN3lLK0xvZDJ5d2E5WWJiTEJnd3VDNCs4TAorN3BOcHI2QzY5SkY5aHRXam5HZGNUTmZsNkV3Z1h6Rk9veWZheUJmaVRkb2FoYTFrYTh3U2xHc2lCVjFIUXdlalNoZDZacktMK0lyCmdVaEQ4VWI1RTVCYlVVdHE1Q3Uzb056MFFyNWlDdU9vSGNoWE9KUmw4MTVuMFJPL2NhOVlKcUhTUDJpdlBKdEhHNm5pRjM3Q05LSjEKMXczQVZjQ1ZCdTVWYm9JZ3VXclRsZHdwOXNhOTJsVW9HL2NLQTBlendMM1N3UExsQy9kS1A0c25idHdyOFFrWWVvTDMrc1hsK1BHSAovNks4VjRiUXdQQzVlYTgwSXNvWXZGZUYxVXJlZ0ZkR3kwaDN2NGl2RElwQWVCTEVWMkllZUhBUlgxZlZ1M0FEWDNIQlhKMEg4SFV2CkJBUDRpckFYKzN2ZXdGZTFQcFREUXVJckRUam51Z042WFk1QXZlTjVvbFFFOEZVUnRkNDI4SlUxZlNTMVg4QlhCcFllSjdNa0srb1MKa0FmeGxmRUxacXN2NU90MkRJMTg1ZnRub1lEcTR1bktJa04vSVY5dkkyUHV5Ukh3UUw0UzZkQ1VwdG5JVndyTklXSUo1R3NpYkRmbgpqWHcxdEtLOGtLOVVDRklQWU9Tcm1HQ3RiT1FySGlFWE9UZnlGZVVaV0VJRzhSVmxSVVFtcTVwMXVhbkd6WHVGSnNsUWFYck44RWt4CkNnVHVsYkdqcWk1L0cvZkthRWRYUTJQeEJ4NzM2UXpjS3cxTmxYbW45b1hHMmpmdWxjZEJoRE53ci95MVBGKzBWOGJvMkJ2WnRGY3UKQnl2ckwxalB4d2dUYVlNSDlvb3dqUHMwc3pvSXpDYXNFUVAxeXRLSlhGK2tWeFFORVJwcjBPdVk0cllGNTNXNFNPdkd2TUpXVkpGSQpWZnR3dldoQVhvZS9oaHZ5Q2wzYU10TVZRa2pSTW9Qd09yb2lPVGZnZFRSWDI1dnZPb2FLVUUxM1JZaUZyUElMN29wK0RSaFRBKzdhCmw3dGJtdTNhSFd1NzBhNWdEaUZvRkdUWHJnaGVjRjNKS0JydGhYVmw4eEJrcGtSMXhSSHdoZ1hVbGYyUXgzZ3hYYnVyTDZPTUZUMHMKc2lyWFdiT0dNOGQ2K3lhNnN2OXdMUnZveWtMcm5EZlBGYXdvT0hrM3poVXViOVk1TVZtR0xvRkZsMEdZYTNVVjRNMXl4ZHJSemV2cApZTmE1QWJBTStlTnZ1T0EzeUpVTnpVZmVIRmYyeXNsbFkxd0JJSVZ5NWFhNG92NlJMcmNocnExcG0yQzRRdG1DdGZHTmNJVU5ybndnClhLR0lhVUt2Y2pVSnhZeHBiYnQ2dkZVbEpBTGcycXJrc05jK3JDQzY4YTJvQjJmSnU1a1Y0WVFIdmhXMUpKZy9iM29yUUJQNG5ZQzMKdHJsNzBuTE1SeFVNeWJvWHV4VTJmRHFCYm0yZVhvTGNpdk1vSnNSRnJoWXljSVRhREc1RlFuRWNkUitJQUVYaTJZMXB3WlV1MXdvQQpYSXJGRGN2cHpXeWRiaVIvSTF1WFZ6ZUJiRjN1MHhQRVZtaDZpWGk3Z0swUWpMS0kwYnhXbHRDc3RYR3QwQ2NqQUhmUldpVmozcXpXCjVUQjJvRnJ4ZC94S2tGb1ptSWVySGFUV0NLRUhxQlYxUGVBZzNKeFcxT2h4N1dsTTZ6TEdMeWl0eS9IY0c5S0tuSURlakFnb3UySTcKeEtxaU9lWHhnclRTU0t5dzVWT0pHTTFjTjZTVjRXejRxamVrbFEydUVmb0xTQ3NtZHNNQnlXaE4wWjdnWXJTZUk1blJDZ01STk1GbwpwWG9mUVltYjBRb3ZKbDRJcGFuZ2dMTjN0aG10VHMydUY2T1ZuaGRiUDVqUnlnd2tacDFndEg1eDJDSlk5ZjBZcmNzdFcxNklWa1JkCktmUVBRaXVpcmxHOHdQVU1wdlJrWXV1V3N5eFN5Z3h0eFhBQmd3cEJUV2ZGYmt5ZzNIQldGaVhLcXlhYWRRVmZOUT09DQoJXV0+DQoJPCFbQ0RBVEFbDQoJaUtzS2wxMm9WcjIyOFAxWWNoaWJvV3ZUOU5xRWhmRW5yM09CV2VtR00xOGZZRll1ZHBoYURqQXJRM2l1NGR0NFZZYnhXQnRwTGl2UApDN1hTbTh0S0I1ZmtyYzg3OWlxZHZkb2NzeUptam04Ynkwb0xPN0hlV0ZidXdGb1lZMWw1MFpoTWpHWGRmOTlZVm9aeldhMXZMS3NxCmMyZmRXRmJtcjFoZGNHRlpHZnhtZzdnUnNyVkh5czdnc3RMenpRS3NucHBDZUU0NWJTd3JZdThzT2pLVmxmOWVoSURkVkZhZUVlNWMKVUZsVDlCRUlLaXZGK3hoRWJ5b3JqZnlvVFdXbGdVT0txYXdjekZBN2NGTlo2ZTNodklQS0NnT3JZNFBLQ2dQVjVqZVZsWXRLanYyaQpzbExac0JReTBxOWpkSmhLQ0cwcUt4ZVp1R3VCWmNWN0RkRitVRm1WV3l6MVJXVWxUd0pJZzZDeUtzR2QrcWF5SWpiUE1lV21zaExvCjBRUmQxVmdJeHQ0OFVGWkY5RFZlYlNvclZRd0lGQVdWbFlZaUNpc0NXTnlyS25Cekt0cWhpZUs5TnBXVlhMcWtZTjRRNGkzcEJ0MVUKVmdnZUVPb0xLQ3R6YmZNd1dhR0RZZERpWnJLQ3A4WDA5TjRLbmdPQkM0YXlJdTNCOStPR3NzTEk1cXlDc2dJR1JIY2dvS3hJenpCQwpkRU5aeVI3RGtqT2dyRERRWXdzb0t3MlFTdDlRVmdKNldNOXZLS3VJUFI5M002Q3MzSTIxTGhlVU5UVzdhUUZsUlYwcmx4VUJaVlh6CmJqQ0VENVNWYVN2V214akt5cE91OGdVSVpRVytqYUNBaThrS20zN0xUTlpFVWsydG04bEtBK0ltTjVNVlJtTEhnc25LclhqOVpyTHkKd0VtYytNMWtSZjVQbkFveldmRmtpYThLSnVzMjNFeldZelNURlFkblFDSm9xNG42NGp4ZlRGWmtUT2wwN2EyeUZqQ0JaTjEvWDBUVwpzQVdRTlJIU0JTbUNnYXo3WmJ5QnJNeDhvaTQ3Z0t3c0ZVWnlPb0NzVEdPWmdIKzZ1OE80NUo3cEMwWVNDNnVTQUxJeUdhVy9kNTBEClgvU3FtOTlVZ3Z5SUIwRkVBLzRWNjhlYngwcThWWk1QcWV4eENkWmJBRmtad3BrM2o1Vkl3Q2RMVWpQMGFhZ3FQbmlzL0ppY1BMNDYKVEZTNUJ1YXg0dStPQkY3d1dHR2dwM1B6V0dGa29ENTRyRFM0R1NsNXJEUThPazQ5MzBwV210UkVWbVpYS1hJS0lpdjBhaXlKZXhGWgo4Wmk3T2VzRVlyS0NmNmdmS0lHc2xHOFJHSElCV2FrVHlJS2c2NHZHK2xuWlhBTlo4ZGF4ODlPTHlBb3IrY0NieUVvTEhzbEdzdEpDClFkdU5aT1h4Mk9vOGtLeFV6TEVxTlpDc3NEQnVkU0ZaNldBeSsya2tLd2xXZytxaklJY2treUl2SnV1MmJTWXJKeVBxTW9QSnluczEKeXljb0s2eDZwUXhsaFlHTC9RMWw1U2JVek54UVZscjVoQUxLS3Z6WE1LWlZ1TTZzRWU4RlphV0k3akZycVd2bTdCb3FOcFNWakFLbAo4eThvS3dPMnJFOE9LQ3RySUtsVk0yNlZiejJ2KzRLeWN0R1NqbTFGTDdSQUFHN0RUV1E5Um9OMjBNSkMxQkR6V0wvNDJOL1ZqZis0CkUxV1lpWU5qVlZWNTJqUldlT3RjWVFXTUZaSGNYdDhzVmdTSldGNXJGR3VYdW5xVFdLZEsyRjhnMWcvYklERFZTRlhJSmhBc0RCQXIKVnMxbzBITnpXTEdPNi9jdUErckVEV0cxM3ZQRllFVXRJSW9FakdCRmV3MXhTRVJnUmJ5eXBmb0NzRUp5alFwNzgxY1Ira0xOYk5CTgpnWldGL09QR3I4STJpV1FWZlJWQnVtZHU5aXBVOVNpV3VkR3JVR2Vqd0NMUXEvaDdJY1J2OGlyK1JubnZUVjRsdlBialF3anlLclRuClVERHNVNFBJbHF1Umd4SmpNZ1J1c2JDclVGY1hmTzB1N1FLVmJ1RUdYZEJWS0crSWw5YUFXcGJHOTBDdWxzNlcyQmR2RlI1RXhuTEIKdUZYMlhudktwcTJDYWxlZitZYXRsaUk5d0dhdFFndmVpR1IxU1FRTUtDQjZrVlpoaEdRMFFLdUZoUHQ4T0tzRkViVlMzcGpWc3FRawpKV1VWbVZBeU5mMmlJTlhNRmdrWFk3V2FMUmVJVmNiQTF0aUVWU3pZdWE2OUFLdUlUcERuRXJHcXg5UUM0MVc3UlZZM1hSVTI2b3dNClY4VStTNWxKUlVvZjh3Y3V0R3F6eENuSXFzM3Q1d0tzMm1LcU9XQlZxRTRZU0RkWUZaSUl2S2ZHcXNJNUhPa0ZWVVVnbEFrdU0xV0gKRVRPQlZCMHM5SHNCVlpFQXo2S2xrcWM2alBZSm5DcDJBWUxncHFsQzZjTDhsMkdxbU0zQlh6WkxGVElzMWlsY0tGVmNIaWJwSUtuaQo4cGxCZFhnUzRVT0VXbStPS2dKdjBDMEdScFhaYXBFVG1hM3JLdFMvR2FyZFBQOUFxRWFKY0JCVXUrdi9iNEFxR3g2VXRmbXB1K2pUCitOVEMwdVQwb3FkV002OENuZ3JJSjlKalpxZTJzdkdSRzUxS2tFU3VtNXphM0ZZb3dLbk5Lc1dibXdwYkVRQ1ZxbHBTSlhyZTFOUlcKQkpxL3FhblZBdnVBcHNLTFl0YzBKODlRL2NTZWZoY3lsYUtEVVRZeEZhUU9mRGdHcHVJT1FFbDU4MUpoZTFiZnVGVGdGNmZFTjZTbApGcVkrMGd1V0dpaVZZS1VXbGwvblFLWGl6NHlydWtpcHVCdVBoRU1FcFJhOGVpS1pNTUZmV0psZlhwaFVWUDJ3N2t1RkZTVnIrZ2hJCkttcUt5SFc5R0ttc0FjaHRJMUpGdmxxYmtJbzhaUjh2UG1ydUtySU1QQ3IrQmpRazZLajQrNm5yQlVmTnlJTTg3YkJSUVJaU2grbkIKcHJDVkgvcE5SaVVnM1RhQVVTSGdRSTR2d0toNFdiTUFwNXVMMm9BMmVnNFdGWE1qbk1LZ29pSSs5SWlsdXFHb2l6WGo2VEJSS3lzdQpEeElWNDVaZW8wTkViY0xkYkNKcThwUnBJQ3BlaFpwZU9GUzhRWEEzZ29ZSzNTVFNGMEZEeGF6SXk3MWdxS0FrUVA4UUxGUUVFSldpCnhFU0RMSHNlbjBpb1VNKzBBMExGbWwwL1F2SUxXMitXL01hZ2ZyeFlnRTFzQ3FvRm94dUNDbDF2TFc4R0tzSVBwUjRFS3FhT2NnQ28KeUhDbS91YWZJdnE4NXNHZjRsVmwyd0RUVHo4bS9xcUt5QU0vTFhKZWduMmFQVE1IK3BSbHZYaUxMdklweEJWOWJPNHBGaEFrNFFYMgpGS1ZBVC9wRVBRVUF2bTdvS1JKbGoxd3FESjFjdWxBdGV6RlBKVlZnWTNaSlloRkRkS3RsS1VjZWxycktvZHpRVTBUVFJZczI5UlFHCm9lRU41L25pNTM1UEp4ckQ1dkQ2TktDblVBVkFjUlhNMDBBbkJmSVV1YXNwU3VrbW5tSWxEaGxrQUU5UjhneWhTUEJPU1J5bzY0VTcKeFNnRVg4RzAwMlpTWThCTzhmZVlMOVJwYzRZN1NLZklEaUx1SHFCVDBrTWc0NzA0cDYySk5oS0JZaUNTNEcwRXdCVEFEK2VuTnVWMApwcDBCcFEyTFpkNEJWUzBDVFlQVitJMDRoUTAzTWdpbnk1aDlBMDVCaHRTL2Jyd3BJdG1ZOVlKdWlpb1lCcmE4RFJKbnlDemRiTk01CjFkWXowS1lCOWd4bTZaaEtWOXhnVTRUWDRGK0VyVThKUVFOckduL2ZWTk93QmRSMGVIWU5YT25vV2tUZVRGTW9MSXZrVzdUTnBOQnEKRUUzMzN4ZlFOR3pCTXlXRGRkV05NeDFHS053MFUwaE1TVEl4ekJSQU13UjZBMlpLd0ZrZUw1YnBjQy9hUUprT2ExMENYSXBYdStUeApBcGtDQm1yOEtZVmUwelR2d0poQzZSYlV6cUNZSXI1V0ZDOWtMSUovbDBNeFpSd3h2UmltMDVDWlFKaE90OW9KZ3FrYjI5NzhVc1lzCld3MThLWE9jSWlkeHJsTU90Tjd3MHFEMkJMdDBUamVEQ1hUcDlNZjNJcGRPWmlPbDMzSlJFa3RjQWx5S3Y3UEN4WnRiU2x1YUcxc0sKMWl0RUMwRXRSWDBLZkxBYldycE94ekJXZGhFRk8xSXdTMW5sa1YvRVV1Q0JFQVVLWUNuZU9lbm16U3VOMXI4dlhPa01BR1BRU2xlcwpWZ0pXeXJLck50K3NVcE5vTjZrVTU3UDY0WlNpNklTVmVEZW1GR0ZCb3Fvejc1UEtFZ0pTdW85d0lVcG41QkJOS0oxT3NRU1BORDd0Cm0wOEsyYVBvcDhLVHpxUWJ0N0dqbzVwQWR0TkplNkJDdzRoTUMvR2JacE5TUFR6ckcwMDYzSlI2azBuSnhlamxnRW5IYytwUFE5bzcKbmxPQktyVGE0ODRlUVNYOU1LZ3U4NGFTZGtkN041TzBQMUU0NmJMYmJiaUlwTWNtSUdrM29HVURNVWRXZWMrTFIwckpTdjIyYWFRbwpLd21NRzUySzZ1cW5GNHUwcnFnTU5vcVUrdlFlSFpla0xJOFdUenRuaU94T0tvb0E2dGd6eUh1bWFsUW52bDhRMG1hOXdHYVFJcW5WCjJpYVFqcURnM2dCUzVBOGhJdy8rS0ZkRDNnaTFvU1FnbW9vV0tncVVBeFdEN2xoZVc3TlVUSnM5V3JONldyelFveFdMNndDWjRrYkQKb0pwb2swZXI1WHczZUJRTjczVFdUclpGcmlld281K2RreCsvbytQelg2bWpmeXQxbFAyWEtETEFTUG94eGtveVc1cTcwNUpxMTVQYgpNaTF0eDFjVUt3bkd5MmtJU1RDMFdYTzZ1enNodWs4Y2YycDFCYXl1RUwycmEwbW90VWh5ZVJqY2hxYldJOUs2Y3c3RDRJMzFYc1kvCnNhajBPYlFBZ1psQm84TnlDQlpxdk1TeWZvUUxVS3VxUlYrem5UMGZKR3lKQ2NmS2hDdEtrOHZUbUxJSTU3d2M1SXVyYkducVRDWlkKT3FRTVkvV1IrRTVqVklFT2lyd3UxT0xDSjlUeTBXMEZNZ3RiY1JjSUJ4NXErNnppelpiazZLQ1Q3V2x5ZjZ4WmdaelVYRUlKQyt2ZgptV2tsTkF1V2tzNmVoTWpSMnJwSXcrNWJnVFVwTGhnV3lqZ1JnWjRCNW0vdUtjMG1yMWoyc20zNzR0bGlQYzlBKzZOUmt3MWxJLy9lCnEvS3BiQTNIeW5rV01pVjEwUDJZaXh2YmhaUEppSDV5VWJ6RUh1T2RDMGpNSXl4cnFPSTNveXN4V2FQc3YwUGxPMUErc1ZCU201NXEKNjNCL0hTWmRZRUhva245WC9WMERza2pqVkVQdHhsWTUzYzIxWU9rdEd2NGdza3hMTDZjNXZBQnRrTkJTUzRWSHJqWk1qemlncVR1dgpyajBqSjhibFJkSjJEenRoUUJHYjJTRWJqZGZaamFvcjE0NlhvRTVEcGRCemdEQlVQaWFFcnRGMVFDZzFURC9FRjB5WGpPRVc4bkVyCndXQXhLRytzV2xRTlIwb1JqK1czT3YwcDBaTGliT0gxZVQ5a1B2QTNpMUo0ZkZiL3c0SUJIcFlVMkFCOHQ2eW14aFAzOGJzS3kvQlcKRkR3QlVOV25wTXpqa29wdzlRUDFORHNRNC9OU25XNm1wUzUyVkhaZktIdzJZM3F5aHBXQ0RWcEI5S05sOEJjNmtWVTB3S25PcktqWQpUUWNmbFVMRFNnaFRWaEcvRHNXd1gzN2M0MUtXcVBSZUx2Q0VWZG80RWsxTjExZUpPQzRJdXEwc1dZN2pGVS9Jb0hFODlZOUVySVF0CkJ6QXFaM1dsWm5OME1OMzNyYVVWekZGWSticnd2V0dPRGt2bXhaYmRybC9rTm8rakVHeUR6VzZPUTJFb2JpZTBQMzRoOFkxcmtqNm0KTWM4b3dnN09LSDVtM3djR0RPazdJRjZCcDFNNStBM0RWVUFMd09pZzZ5ekV1ckg3QW1vM3NLTTJtNGJBOGJIeU8xZ3FRTkV6V2RKdwpKUzU0a2p0U2t4Y0R6WVArbHRBTmY2ZTRPNCsxdG9tUVhlOG56RW5zNTZyNmZlU2YvVHdvZXVBM2hlZTdXMEhnUk9uM0xFdUQwMXpDCkxPa0NrMzhReTFzeW5BQ0hXQVF6c25URmJ4RllFSURuODV1UG4rUlhpUVp5S3o5Ky96anRRU2YySkwzZ090YkFnT09xV0xiWEpFb0kKVnVUOThKdHFQem1ZeVM2MHlNZWs1bXpGbnRuNERDaXgyR05zRllQNndheGxiNjVaQWl5WmxLelV1T1V1SEhqSmxLeGpzZDNRUUZjUQprTU00cithZ3JWOGpIcXhVUERaeXUvRzN6Z0h6Q2ZrbzNkSmZXa3BNMGFoZDVMcUdWaVRadXh1NzhVZ01FWEllaVY4c2dXM29XY215ClJKK1pYNFpieTdFbkMxWW1pQlFoVm9XM2xZaGlEajZqUzYzTzdpWHNGMENRYnRORC96alM0ay9xdlVQTUFQSVR6ZTNEYnhVNTZ1d0UKRVBYbncwTXhCRnNmbzZnZkwyWjcrUk5ZZWFCYWFEaU1DOHZIeUsvVEp6dUZmZDlXMThNa1FTSThrVFdUbnpuK0E0YkhiOEhIRGEyeQpKTDdzaGVITi9aTStISlE5dVBIVnhCMkFxNXZQbnFWaWliRXRYeVFFK1hwN2t1RWIxV0p3M2d6a1ErZ3Jza2RORlNMNTUzQXB1U3lCCmxYVXNzS1FzSi9OaitIQXowSmN6R2lGUVNYbnBWbVMxdENMRDcxY2JwUlNCZGVJbEl6QXhhMG1kcUdQdDdvS2QyRmYzOGxMVWh4ZFcKUWdwZ1lXMHNjQlYweG1DaDMxc0VkZk9lVFJoNnJaeVRlakdKRmZTeHRsNjl5STl3NXhOYjVGS0Jvekx6dFIxQ3FIeC9TelhkS3JvWgpraS9RUnJpT3pRMW9VWUgxdUxWRkk1bWNQYit5bTFSQmRRUkYyZWhSM2djVkpGOU02TXo0aEhxZ2FtNExrV0RhTStadzBocTdGR29mCkE1dXVxaWg4Z2ZOZmNyTVlxOFQ1TS8vMXN4M2RRc3dUeVBsdG1IREFxYWVaNDNsWnB0Qnc0U0lUVllHUGgxck5GZz09DQoJXV0+DQoJPCFbQ0RBVEFbDQoJSFp1eFpxNXNwVmhVMVVIV3hneVZXSGRiRWpUaVh1eWloZi9BODRXRlZLL3Vya25jTWI0aDF0dXcvV0ZSTW9lV0lzUGlDOWRkK3FlTwpyZEVqcXdWMmkzMDBLT0lNTGo4Ri9sa3RUeGRIMHVHYzZoNmROS25YakdFQmYydENRc3FTelRxenlXV0RKSys2OTlQNWt4eis2UGg5Ckx2ZDhtZXJYU1lrcUxXMnZBWVpmT3haT1BSS29VUkNNampVMVY0MU42cW5kbldENjBhc0hpa2YxYmxVMUYyR3hPQnVwY0R4a3Q4MGwKcWVmVGg1MVZKREFmdDA1YkpEaHgzWlRWSldlaHowSmliaTFwTXVvdEpJTE12dUpMUnNkVVlpaVE3R1MzbnlPMURDb1RaTWhyQzlXbQpwVW1UMGZDa0pyL1R6VllaYU9HZUxESkdKSHQvSkRYRkkraGUyWkJ1eW04RDhWZXNRR3YyUGVzSVBBVUFwamkwdzVtNDlQaVFOVVl5CkJ3VjlGVlhNMjZMc1UxWHEvbXlIVlJWblFjQjA2cU1JbHQ2ZmZybXJGb045M08vbFR3bFJKRG9TVkZlU0cwVGRwK2dzOFRrajFjUkEKR1FBcUkzaHUxVEFXSnY5SUhFcTVCM2FsN0QybHZpTzBoUUhrYWRZMFhxUktQQXZZY0VzV092emEwOTRmbENqNWNRa29heS9BTzhpcwpIWEVkSkY0THJoWjVYeW5oS21yRFU1S09UMEtBVy84bzJNZ3laYm9IZTRoRldESjhobWF3SHFzRDZEUGszSUtLMXo3NURGUnFWSGtwCm81cTdwMGdqa2J2VGJaZndqVFRyb3JSajk2QklLY0RrODFZamVNclVlUTdiZ2dhZU1mUWM2L1NpRlZGWGptS0E4M1BhaGw1U0hxRXQKZXRIRFp6dmJlWFZGcHdsNTY4dENXWWwzREdOcm9oWVRpOGNmd0tmT0JlOStYVUVxZ1JPaEo0bGdQRTZXZlhTYk9EdWRrdGhzaU5GagpVajd2Vjl2bDd5eHMwejJMZU92eTN4UjFQY1JJVGxucXhzWGdzVlU5Sk5KZWhlTnBlclJVRmRCU3U1Mi9QZHFCOUVWbm14TDJxU29CCjl3VmJwb0VpZmxVTVRFbzFlcmdoRjA2cUc5UmsrckttdXBnVUxoMVlJc0VoREVUYkhXTEI5MGdmaEtGTkJsWWgrb1lRbUJiditlRVYKNlFkempjYXNXSnB3dUs2VVpJcWpCRkFMREE4bGNOaVJzU1d5UnZaM0JjZ1JoZkpKcEdrMk1lMTJyTkxqdVA2Z3l3dE1TeXc2S0NrZQpmai9zSWliN3FSRDBONDU5MlpNNkFrTWw2dHNRTnFha0dwMXZOUElqUU0zN0NrYm5sRitnR0RGSkJWdk1qcWlQUExLVzdJcm9FZUh0Cm0wa3V5KzdVbGtmb2dHRWQxVDRmVy9JV3Z6MTBBaC81TUlyYXdZSm5wdkg4OFRCRDRWT1ZBSnoxRFA0RUN1ZWowZTFIOUQzd2JDdXAKQlJTUkluYlFteitWNWp0V0l0VXpJc2dDZ2c3Zk1sZ2Z0MWNYdTRvNnlhVEhwU1VUOGZreHZ0WUlmN0p1R29NY0FXbGRGczNzTEpzZwpNZlRxOGNOWG5EY0dEenMxa2NONm9lb1lpd2l2SGZwangza0ZOQTdOeFpScUFacHRhSGgwbjU4cUxTbm11WjNzb0NWV1pidkptcmZiCnFaUEJzUE5sZ1pSdjlmQW50eFh4WVhvK3cwZ1hWQUx5WmZ6czVNY2FJS05PdXFJNkhzSTh2Sk5xa1lYTUUzdXhkd1hBY2hERU1xWUgKek50WjMrRGlOcHlpdVd5dnhybmxZaGxJeGdjMmliMW9lazAvdmdINUFMbk1IZDJFc1l1T2dmRUluUkdnT0N2a2xLaldFb2FLQkJBTgoxWmNQSzdYb3J4M0pRT1B4ay83T1ZLM0FiUWs5TFE3UDhuYktEeEZPd051OUdETEtVZ0hqSXVCOEkwekttWVNYQ0NqVzRHYndhSGxCCkpnaGxLcGJ3azhVdHgza0sxUnBKV0lWZzRBVWdwZ0ZHTHRzWUY0UHRZRUVyRlJwMmp5K29wL0NPOFhEb1ZseTYwcENaZmhmQ3FMQ2cKSm9BWDJhd1M0Uzh5WUY2YXBnVnN4KzVVT2xmOGI1WG1FQmZMd0pGMmRHa2JubmRMRkc3QzI2WHFjMEJOakFmZkFqR3dSSXptbmtSUgo4NUtTWHNlY3ExQUtrQXFpYzFCV0tsY1h1V08vZkxORUkxaEtSZkRKTEQ3QlIrNTBSajBFdys0WUk2dFQrckFxbGd3ckF0eXdLSTZNClBpc1FLTUhBakFBSGo1WDJqblFxYzNWREVCNEtDMGRZV0hqSW4wekxCc3V2TWpXcE9NV2FsTFptSkozQmZyNWtET1VPVlVqalRyTUIKV29UODlvYzBFTDVRbkE3Z2FDTERHWjBxVWl6RE1sWWc5b3ZEMUNpN2U1Z3VLQ0xsY1RNK3kwZmR6bUhvdWU3OUdHWnZpdVp4RzRiRgpRYUJRWUsxWWgwc21SV0RTbncyUUtPcFRvRGp4MGxpeEVFNWlGSnJ2SlI3eHNKd1BjZWNlMlFVQ1J0bHFHR0UwaEZSYlJwd0kzYTE0CnFvUWVSOStCSkJJampSQkZzdjB0c1VPd2NPS0dHSWowSXZqS0pWakswQU5CazVIcGU3UGRzUjB3V056cElQa0ZoaCsvRzBJUlJjSkcKNGxuTHJDeTI3VkNxcUxEeGVKY0tLTWRJek12RXhSTXNBdnhQemRwVGl1WEhEaEVicWo1WnFSM0dEM2UwY0E3RlRCbDlWSjlYcDRBNgovSEgxb3NXckNjOXVmOCt3RHNic3B3cGxlU3dGdkRGZ1JKUGFvUjF6dkR4cys3QVl2YVNQd2J0U0krZUVjWVl2Q0hsRmVFYVBWUjg1CkcyekdwQk5DV3JnSEJLNDgwSWJ4WVQwZThnRlZXVEhXb1lzZEk5K1BPYlE1dVZVUis4NFc3VWdTR2U5U01rT0tWbkxVY1dXTG1aUEgKc0xYSFJMYk1ibmhqMkpMUHA4VysyTHhMT1MzblYzUU9VMW1yWXNUTkE1R0UyenZoNVJKSEdpVmovQ1NReldJT2ZpNlA4Ymc5YkNSSwp2bkowNHNXSGx0ek5PV01TOUxjb0MyV1UvRjRyazBOUTBVVjdBSkMxdEU1MUVVT204cmRvTzdZZjRUYU1mS0I3NHc3RlEwQU90M2hGCmJ4VW9ZUmlhVzQ3bFlPanRqOFlETmliUW80U3NudTJ5bThCUm1WRHU0ZWd0SjdyaS9CVi9jU2R5aWpHcUNtRmpkQ3pSWWhZV3FBZGgKVVIzWExLZTZFMVo1SWxQcW1FeXR0cnRvNzU4a0NZUXRzM3ZNemhCc2N4VktPU0xlVC9oYlU0K2NpNGlNU0ZIbU5VSStxOTNRTFlkOQprNk1iSnZnZk5YdllhM2hMWVdtUHR1bWhrSmQxNnBheDB3RVBOYm9zSE9Qd2U2M29GOWY1eFNyQkp4SlRLK0c5UmNpSEl4UUtDZVVmCmRIVld4TGx6RzdsS1U1Ri9waFRnem1RU0NKMEVvdTlFTnNqU2dKSWlrZ1ByTEYzakRRdW1ZRm5QZEhLUGVUVnNzNW9ubDNoekNJU0IKLzRFRkYyY2FOc2h5VnJCandRWkw3MDVQVTZtc1BhMnZoSlZkVzNCTkpIbHh4S3FrbUdVVjR5dHA1N3dqSEVLaG5xQ201aVNGT0FsOQpJNHdreUdaa1JIN2EwR1RROCs0ZkJrMmlqV3JNeXZTK3BscjJ4WUNoTVUrN2JnMCtlcElOcGFRWmdlYVJHcWVwUjRzNC9tS21LMEk0CmdYK3hHZnlBbkNHckUra1NLczN2WmltWkRhbTZoMWVFVXVVVEdzeUNTWUVMSTdvc0hLblo1NGJ1TWpsYStNVU5mczRoNDhYQVZCQUwKd1Z1MkhuaEx1U2pmblJtWXhidU04aHZYdE1EWUpoNFRmRlZVUFdRR1psSFh3ODFzR1J3R0VBc3FWb2RsYWlpeXRtdDh5MGhnbXJKOApMQi8xays5VndWNHZZTEN2ZTJuOThTcHp2WUFxcCtxVzB1d1pCd3R4VTRqcXkrbER6cDFwbTY2S1FBM1p5UTA5Ui9lY2tGaU5oTDlaCmJBMERwek51TWNiYSt6MXdZbWh0bm9XV3MvNE1CTkNnMUYwL2F4N3NTQ0VDdzkycktYR3FoQVdiZURGZC9RaThVVjJiSXFkbVNuYkkKc0hwU0lwcjEzVWpjVVVjSkIyT244ZzUrSExKWlpadGp1MUhqM3FDTkR1SWh3eFF6Q2o5cXhGMWg1YjFHSVZqMmR1SVFFeVR6eU5JaQpGTGpkZmxnNTFhb0JkeDZSQkx1Mll5NkxHYmorNkVscXoyYWlDTVRuakdBSE1CYmhOQVhGZ0tYa2ZCTVdPVkpGenMvWmJqV0RUcUQrCjREUGNGc0JyVXNEWWp2VnhGNW5sK1ozMTVUeHQ4Qks0YUE2TDdtMVJvUDVzbHQzWG9FWnQ0N1l3Y2g3NGdHT3RiSStjU1BqMW1RMDIKdVovVEFkUTJUNHBZZVU1S2pOdzZBQloyRzJDZVFpazZrdzhSU1Q0Um9obmRjeEZmN3Q2T2ZSZGhZYU1mNXU1WERrdEUwV2Mxb2FZdApkZXBoQmh3dUFLb0IwYXdJZVFuQzh4Q0VacDZHMFFpa1FoZzJhaEdjZ1dYNlpGbUx4WHcrRXpWcVUrNjNZT2xieFlOREp6am1MeGtLCmgyd0hFMUhhL1hsUkN4Zk9XMkliWHpjOVY5SVZWQSttSDBuMktqcFhkWlhBc1dwQWxJWmNGbWFveVBKbkRoVWhwdExsYU9LcStZbVQKZStncmJGSklJeUNWOVh1UGtCL01QZkEvWUZGb0ZHOUxqay9rTWJFWERHd0lFN2dkRmR1YW9CUXVwcm9WaG5MdHFBdzNyQWdOa1ZMYwpSRkNmVlBQQXdrWXg2RDEwOHB2ZGpaQnJjUWlNRFphVFV4bFVIdTBHeCtnTGtnTzlQY3dwaGRYYmVSRkh5MHdLWkdmSmx3RjlDR0pPCkVKUnBaVFlOb1cwT0dMQ3dtcnN2QTRvU0tRMDdxTFJFUEsvUzd0QlNvc0tmYit0OXFIUnViQ1NBNGJhanlEZU55SUhSeVVqM0NCSVcKWGlhVFRtN1RrclNka1JrQ2ZDSWNpV29TRGlWaDBRaGlrTzdaYmczWHhaS3loYk9BVW1adFlsVGJnNVp4K1VXWlJGckVUY0IvUE5Jcwo2Q285dGNlT1JCR0pFYy9sWlltZU10bEphTWoxT2Rkd214aXowTUtBeXdFK2twRzlhbWRmbWNubC9qR0FEQnNkeEMvcnN1cVRqVWZtCmNKaTNhQW9hRWI5OXVtdlNNS0dKTklFUTNHaGVvSEs4S0tHSVNSdGIwQlc1akNXVk8rdzR5QWVMRVFodTRBcUxVcjNZcGg1TkZEbHAKUEJ3ZEoxaThIeWNXR2pneVpKRE12TnR1UHpRaU9sTEVVbVAwSE9velNjRndBMW1DNnA1UnVFWTFla0orSHplYnkwSGVhTWFCNGRiawpwSzRLdUYzRmJidHA1SVd6VXIzSys2UGdqUllzOWFnaG8wNUxFZmF5OTFTdGRkRWJSUU5IVjhUVEtUWExGbzlTRTFCYi9PVGpma1QxCmlRNXZ6c3NoVlBsSXpQZDJzMzc4NGI4bzVKZUJTREtYMlk3VVFBaGFsYTN0RnBVeFBKbVM1VHJGb2NoNS9vNGxxb1JVa0o0K1hkRVYKSHg5cTRhYm9sZDRRc0YreXV5YlRzU3RURXRnUEIxM0JMUzJVZTlieU9STXgwT1dMblRod1VhMFAwNFdMN0laSU5iY2RJNjEyYnRvcgpSbG9WaXFMV2lKMEI4UU1VUjZBSUZ4bTNYS0xNSHBiK25GQ25SSDJzVGs1eWUxa2pnVkwyeG9XbytsTlRackgyUllaenpNNjVqQm9rCnIvM0JKK0Nna04wTU9yR3dPODM5NXRnNk5TWFJ3b3dERkN5c0w4K1A5WFRVdEpTeDkxUVpSSEVraXVKY050b2dmWGhLbktzUmhzWGwKTTF6bUZhcVRwTStHWWtZQytWRGhrSmZjZHE3OXNNME1SVVptdlFKY1pFWnJzY0lOWUJ0MTRrd3NQTTMxTW5nTU94WU1KWjRTVXRrTApDcXlKdXhOWittUWVGUTFLVnRSUDFJbWpONHlOTDk3ajdHbnhhTUZ0T0lJUnNUMVBoTXo5eGg2cllaT2p5a3dXeithZjVJQU95NGhWCkk4T2lReWZDSUNoamFvZzAwdEladVJyR1EzRFBHTkNoeWw4Nk5SWVN3eFBtb2hvM1EwS2cxYUpkbW52YWNLWkVhU0hiaDVYb05JTlcKOGl6UEttNktxMm9CU3JqeUNUMG1Ncnk2MnFwMXlyaEk5U3lhQ3RnN01ybHFqb2FZMVhkTldISDRoUUt6NnNZdWxBVW5JYXYwMEhqegpZMDhsMzFrYVFORklFNm8zTVc5U05hdUxqZ0VKa1NWTDB5MXdhckppSENwY3d1U1JuS1dxZkRqVWlhK0dLdGhZL0R5TTFMRkxBcGVPCmpxWENvbmx5Wkl0WE1Wdms4TkJnNVR6SkZ1aGVjRW1GV21zNE01SEVoV1VuRE1ld3M0ck1ZYlpJbGUxUmtPZXM1RkNoOW5GWUV2VEUKazRUb2pUbEsvQ1JYQlZnRThYTnJydnpuZjhpVHpScFYrSk93TnNzVWxRVkZxcEZCT2NwaG5kSlg3emxZU25RSWc0YURRd2JGaTltNgpUenFZbE14YU5LQzFDU1d6b2N2R2VnTWNVNnllS2ZtakNEQS8xZ3F3S0dIVUVJYVlES1Bybkc1MmlQVVYxekRxU0Y4NXJnOXEwaURFCklwWnBwR3YxMDQzeEJMS051blVZbGd4U0krRmtPSGlpQmlESGUwYytMQVRSc0xZbW9acmFzOTE3c2hlV0RyNWxydUpnSjViQWNZWHYKdFFrenQxU05ERS9yNmxrUnk2M2tYNlMra1F0M3R3Q2hINDRwaU9FUUNzU0dQdm1mL1JMb282UmNIT2ZUWTlLalhCejVhYXdldXZWdApKNVBmdTVvTkRvY3FPRkZUemJIVnNiQU02OXBUdUNCY0xpZ3FnVEd0NkxmbEpFSjIzTGplbXBEdVJkNDVIRjh2RFlmRHJoalNKYmFZClRhcGFDclc1MG9XR1BUekp4MDNnWWVUS25Ma0luZ0paV0k4VTNzenR5TEw5M21qUGhPWUFqSzA5VGxWd08rWWdPQT09DQoJXV0+DQoJPCFbQ0RBVEFbDQoJaS9nblNRQ0trWm41Vmk2UG1mYUliRWxpU0xDcUVtck5KdWtPYjRRRzJPNENVc2hCV1F6d1JNUExuaFMvNHh6RjE2N1BMUUNBMDZrMwpxdS9FQVVJd0krVEVEc2VwUWVXWW11eC9kcVpGbGFYRFNrRzRGK3dRejZjclB4UzA3NmFIbFVPakNhdXF4c1owTVFDaWlhd0x4Uyt3CnBUQmhEejc2anJ4Y3gydnFlc3hRNGRQMERaSW5oZWsvSzNLMEpPQlNNaUZxS0dDbG84NWMrWlIrZlRJa3g0YXl5ZUtwWGZNQUQ1S2kKV0dqTStRc2xKc2Z1TU1WWGJ6VGlqOThQWVV6bnBEQU12UlMzK2RYV3FVS2ZGUjdjMFBLWWxsNGRuaWYvQ0h1R3NvcHhSS2EzOHVOVwp6K3h4dVJ4MmJxN3VvUGZNNnFtMjYyUzY5SnA2NE15a0RSY3FaZDVDaDBHYmt6MjB5R2xCZVZ2dTkzYkdJTE1BVEF1N25lbERBN0FWCkxpaW9aYzJPZVNGOHBJcDZ4WlVnNWdvRlo1M3lZOGY3SGJKOXVnTGIxTFR6M0FhOTN4SEIyT1NHQmU4OUg2YzBrM1ZOdExCUkJYTGwKcXJsSnJnZEs3RHU4RjVNdW1SdFNrUE5mMVduaFVRaDFXMWcrYUxVc2RoUW9FWmt4cmwrU2RVMU1reTQvemFFNm9xSElVenhOTHExWgpSRld6OGh4ODZEQTBQMTZWd21ISDJkUGVrVDNuYUUxT2tFaUQ4UURqclY5VXc1M0graVZkWkRGSEVDNmZMckk0cERNalVvOEJqU015CnhwSlF6bEFWOThqWWxYSmRNYTBSM0NVRGk0Tmd5UDNzS0lBaUFzMTYxNWNiRWNMQ0pRRUNOTjErejU0aHViVFduRkk5eXFXaDlrYUkKVmVra01KSlFlamJkSy96SFdHMTNWYVFtcHMyeU93MGhXakpSVTZKRXRGVURDeVVNc2FNSzVORUJpYm1yN0s2dmlUUjhOcW9vSG9JUQp1TnU1Z2hJNmMxZzVqRUpVejVET2VQeHdtZFZSZEt6V1VFN0F5UEFjNWtoOEVEQU1COUVZU2VTUjZJaWpvSCsvNk9XSisxKzlQc3BSClBndFZNbUtMMU16d2hxRVU5ekZNRktJUVJXTTU1Q2NOamc3d0w1VnZJSk9rR0U5WWxFbWlTUExhREZtZG5wUjNVQjRkM2s1MmRmSDIKa3pLWjE1alJrYjVBK0JLSG1tUG9UZFJVM1F5WlNHd2VFSmVKa2dxdXcxZDh2V0NnNlNNY0ZnZWdydysxMEtzckhCdDdLcUtOK25wTwpwckFRcW9HMmdpdnJXSHBuWVhsbS9DYjhTTlpYWWQyTEgxaEtjc0hocHUrRS9LdjRIS01yOWNRN3kzS0NLVjM0aDB1c1BLUmFxUU5jCkFibGh4dUtiMVNYd0swWUVNMUN3RUlWcVRCRkRuSzR6cXlwSW9JV2hKcm9mTWRQVklqb3RyRXlNY2pQZWpLb1VBSSt0QWFvcVVLSWQKbXhzb1l5d2puQS95UTZZL1FOMUFubXdiNWxDb1NUdHVhM2Jnb2thUkRuZzdVTFRtbW81QWZwY3VRYlVrNzI5dlYyS1ZOc25CcUxjRgpWY214L04zVzFaVHR5T3hQU0tIQlVpWDNmbVdaV2lzdDB0RlZIV1NoMTVCc3JyT3V2bk84VnBWaHAzYXE2Z2FGSnBUWnorSkhvaytmCkxXSHNBRDdhYjR5bVI3bUxrL2hOektFbndnZ3pMS3MydVp5WlVoeFlxUDJFOTdwSFBCUnEwTGZ0SVVjWUNuTXpZOG1BQk55ZHpNeXcKOHdBLytpVmdFeG5OcGtsU3lnZThIR1pFK1huaEV3eEp3bDVzd1RxclZSeXFSbFRzTE1sQ1Z4dExuNUZETXJhSnBIRHJwby9IckRJcwphMGtHd1NrZEJvNzRWUm54dUVncGg1YVZtc3hvNE1HZzhEWDdFMUY5TGFLK3NZQ2h1cEFlRERJQjFJcEIvcG5zNVM5MGc4ZWd5SmtkCmJ3VTlFdzE0SzdvekRZOEVKVGtKRHdJK2xVbUlXSFVKQWVwMnQ0b2JrTUhhOU1JcVF5dTlRSkc2a0hrSENRYnkyRHRLVFFSL1RtTE4KcWFVNi9UbGVaWEYxRkxlSnB1SDBjQkd2MFdSSHQwdk53bkRaTExhaitKRktNYm9OTWZac2E3S3FocnFoVW4xcWZKTFV5OHAxM3lMLwpUTG51SEphYWNzSnhPcHdoVm82NXJMNmpMckFlbWdLdGZFNVE1bUdsZ1B1L0VDR0NSWW92Uk1Rb21zdFhUU0Yxbml4K0p5ODM2Wjg1CnFtQU9ubHFIWk9VOEtZekZpamltYUxFVEVQYmlSWDA0WlZ6MElVZzhxVXVCakl3WEhwWWQ3bnZXWmFWU1JrclhJa0xCc2VTcE1LMzIKM05idVNtdW9idEtRZGtIdjRoZFAvM3V1SmxoNUlWalIxSHZOQWtwMnFXbWlRQXZOQUI1ZW94bzlPNzBJdlRZVkN0Z214ZEl6dTRFdApXeUJBOUlVNkM5VVdwQmFsTnQzdVJQSUV3YVU1RWNGdWQ2ejZWb3JhMVVVT21nVW1ZN2dLVERmdEF4a1prcy9QZmtNOUNQYnhaWG5VClcyNkhodm1MU2c4bExiQVJucVdtajcxcmxndFpsMG9TR0JQa05TSS93bXc3TmYyUGFralY0M2tvQ293SUtNVjg2dFFjTld6VkJjZzgKLzZ5S0U0SjYxQlN2RkVOVmtCS09wcy9hc3ptSmw1MkZMaTBTZUJ0bzB0aTFtVmM0UWxpS1gyUmxGbjZIMjBpc2RzNXpXb21DTC9uWgo4UC9IM2gxRU5ta3FYRWlPQldwVVZidFp1d1VZSU1qdmVxbEtNa3ZsOFZSd2dsWmdoV3ozSnY0azJ6Z3dLZ2xXMHpnMUMwcVVwV1J5CkFDcEx1ak94OU1rWlMyVVNJQkFpMmpNME1iRFdvUWlyUXRycFVkeVEyL0F0aHdBc25mSSsrYVpJSnpMU2loOWdIQVlXNGxOcU1sME0KSzRtZHNBWFNwamdsckZRdnlwMVMzUDdxWHQybVJJM2pqU2wxNDg4SVNGT0hEY203YWk2SlJMY21jYkxhVWQremZKUytlbzY0WHArbQp6TU5DTVFjc1BOdmNGQ21PUFlXeHg5SWtNdmNLMU9jV1BKTXA4Z3E3b0tRUWZTQ3lwMmM4Z3RDU25YbEZVUm9CT1UzVEd6OVdKQXNVCkw2MzZIdkE5alNnOVoyQVB5U21GL0I5LzdoRGE3MWdpcWp1VnZFeVNKMEFyUXRvT0cvQlpQTUo2eUhKWGtVQmNRYmtMa2FwWnRaM3EKVXg5d1hPN0pkN2d3U2hSUmMrUXF1bXFvWGIxYzFPazRFYnY3cUNxWkRXVlNET2MvK2xtcTlBa2ZrZGdIMFJ1cE9nUk1rUUhEM0RXZgo1Ym5pcWN5UFp1VmNwSDl3VG9vcFdnazF1akxIZFgvUXNMSWJBR0ZjVmIrZ01xRWFnZWhoRGdvdDUvMUpEazhEQ0V6Nndha3B6MXJECnFXZ1hqN2s0cjhEclpHMGZia045RkdaalF3d21TRkg2bjF3cnJtRWY5YnoxNXU4OEtxb2lYZ0dTR1FaOHExZU4zSVFhWHNwSm84ME0KNDlKREdqWnEwM2w4MW53QlVrQU5DYXJPVzdGaGR3Vng0UXFzS1ZWZEpCMHRmclBETmMwZlRremxqYUJpVGc4ek95M1Bpc2NpL3BFKwp6QjdzQm9oRytYSjJGTkh0WWFSN2RZbTZwY1NuM3kzaVlTVlQxWDFTZmd0N3JxRGdicDRWcktyd0NvcEVkNEtSRmtaUitsQVVSWHVpCjBSVGpsNCs3QWxSM0lHVC9FR3BJYXBCS1VOU0VsWUFlWnJTd2FLNW40bmFjOHhCVWRxa3lQL0Urcm53RThwdGNKOEU2dTc5a0JqcHcKcnF5bTQ3ZHRsa2VMS0IrczlHaG9aU0Y3cVk3dm9yR1JmdEZLd1NFWjZjK2VaYldjSlVUajhXeWsxMjVhMVlONEdBZThhdndJOTBRcwpTdFdSdy9LaXBNb1MzamQxVlFzMVNuVThMSFpVdjVLbzVKUkFxY25pV21WMENtUWViK2lyMTU3RFlBeUlwZkhDUXNiS1lRcXZ4Mk92CjU0bFhuYUpkK1V2bFQ2TE1NaTIycFhyc0FOUVM1ZGZkMm4xa3B5TXV4TTRiak9qRFNnUUNZcVkyS05tWDNER1k4OXF6TDdJTGo4OXAKa3RlR1EwMlZGeks3UXpsSFNyWkVxVWxPbG9XaEtHbWs0dm1rdWdpZVpLNGN4WHlSU0F5ZlVOd2gxbjh0MVcwWHVrY3M0OUtFSzJFOQoxazk3NXNJMERKNnJLa0xiOE1UOERGZUUxaHBUdGNrZTdhcStWUk1FTGt5bXBtcTkrRmhKa0QzMWhDUk1hNHQ5bFhMYzBKRWk1ZUk1CmJBbkdvV1FXT1FORkEreDBmWUtBRzdpYlpKVDdGQWZIYXFpWmhCRnRxcDVpWm4zUHNxd3p5aUtIS0lrS09WZHpmeWRtNEZrdnpkcGgKT0tiYlQwT1lkM28ycGpxZDdueFhHVHpkRlJvbzI0Tmw2NzlDMThIeXVFZFYya3FINTRDc2ZWa1lmTmRsaCtTYVh1TVAxVzB5Q2NzMwpEUEkwbmtTdzhaQ2RNelR1Q1pWeUZabERFOFpqWHhFaHk4ZlNZWUZYMlJ1cnFPSmQweUlzbXlzQlZBbGRJVmdEZTZMMk9qaldNdjdOCldjbDZWbUQ0QlFrc0VNT3EwaHlyMUJmdG9vY3p1cUtub1VWaWlJU1l0dTNHRTlLalE5TXpqcmpvcWRmRnI0Z3NaUW9QQjRGanBkRzkKMFJweGIxemp6SUFWNVpmcjBmb2lVcDV5K3RmaitRbmI4UjFIRkxKVTdTazhCU3piMlVCVFNrN1hLNkRvU0o4cTZPanRhT0V3aEtPSApxSVIzZ0N1azZYVXRybFY1eEdua1VHS0hPRU9YRG9TSUdPalNydTNZQ3BwbFBzdFNoRzFCZE96czJhTjg3VEg3Y01wRlVHSTJLOGVyCjVYdFk1RHRPcFEzT2RnenZONlZaV3IzL2ZvNzBibHQ1dFp6WUlQT21RZ3VpUy9wMU0rZ3lLMTk1NzJCMzAxcGNkdFM5V1lLb2h3WlMKQjliTFBTNEdBeUhhM2IyZFJGd3JtV0tBbnh6ZWN3ZjFpV2dicmtBVTRTb1pwWWI0TVZFbWtJQ3lKR0E1YWNTM2xVUm1SU0pGWkFvbQo4c29TZ1BJMTVtaEZWbnBNM3l2SVlKT05WZjIyTTdxN05PYXZBRS9QSlEvOVovK2VFL0pMSVUzZVRLWlRZVEdHUzZvaTdIZ2dadUh2CnJDa0NFSzVESEQ2MndjMjZTVXBtc1ZsQmFIVVF4bThLak8xNlJsYkJzVVFwa2RXV3JJZFpUaExxSjVQRjg4ditBdmVrdm1aUjhVK0QKL00vbCt2L1lVV2w3WkJyR1Vya2dWUnRzWnV4aUs5WXM4ZGl0bjJRcis2TWdLdVNDMkNxOERVSklwSWlJY1RxSDFZNUdBbE9jMVZqUApPN3dDVzE0RnNteU9wVW1zNDJTWlVOOXFlcDBab3YxczY3SWtReUFuZzV1VlIrTWJGZEU1bWpURm5wemxZYVZPbWhaaUlkR0phWmVZCnhyRm0zTmkwSWh0ZEg1TjNsdk54TEdTbTd4Zmp4N2JvTXBOaU9pelg1bmI0VEI4RkR1VW56ZDNjeHhZTkg4TXcxYjBkWmhnRytPR0oKMGhtbjlyOHJ3NzhydlZnandIQXJWTCtQNElTUE1tNkRrQlh1cHdMNGNVdng1Nm1DMTVvR2d4K1QwMlFXV2ZxaDJuQnVFd3Nyb0lBWQpEQzJ1S3RMS24vWGJMdjQvbG53WHF4eHJrcENWV256bnczbEoxTEczWGZyVjVsWUhFUzdEcERRNVRUMGZXS2o4b3VheVNrWnQwenFxCks1TUtxa0VvV0tXSnVsclZ3OFA0bnVWNGIwOTdUMElsYUkxZkVQazFtMFRFYmRRZXFxZ0xXY3pOaXQrbllpUWRrRUVzejRjbnhWbWQKRXJlbTJxdGRrSkdNUkNXSUUyTklNemcrcy9uaEVQNUVLRklFZGtMbXcyVWpyeDMza1k0OHdGY3FCL2Rxa1hpTlFuWEFrSHBSZXo3cQpFM21lUUh2TWJSaitvcHMxc1pRb3hJREhsVjVjZ0laK1pnbUhhekpaRC9EWnovcnhPenB4LzVXai9iZHl0S1BDNElYUlJwUXNEU1d4CkdXRkVUSnZSR0VPMEVjMW14T05tYUpmbHpHc3d0RUdGWDEzbFd5eW1nTHRMdXZ4TjBFWjVKc3VlRE5DT3psT2JuNDNsR3Z2djNQanMKdkpRdzNmUnNNbU00ODBjZCt2SVljN096dVZ0U3BRcmpjamo0c0Y5Qi9FaGVLbGE3dWRuMUNiU21zZG1JRERGYkVOVHNadjNjQzVvZApmV2syTTV0RWUyYzRxYkdwMXFPOWlObkhhR0IyZGRQTXpjc0dtcEF3aVJ1WERiUlJMV0pqY3lxdVJTdTJEY3V1Vmc2OFdObE1ObVpWCkozT2dxS0dvQ2xKMmkvbjJBbVZEQml1ZXM0UGNBUkRjbUd5V0NGUVJmcU1ndncxWFl3Y2tHOFhTSEZHRGtVMHBReWx2UkhaekFkRW0KWktPM1dyWXdINTIvaXVvV2J6NDIyNitab1UwaE13NlM1NEZqTjh2M1hteHNBdUJhT1doc3hKL1VVczlrYkt6K2hrOXdZMktaQ3k3OQpjTEZaZEtiY0hCT0lmWVppN0lKaW85OU5zVHlNTXl2b3RNOVF0US9qYXBpaXlkdStpZGljeUxzdzJRUmlzeDdRNkhIaTY2SnM4SVhECmpxcTN6Y01tWlBqYmhtSHp6NlZuczRITnFDcFRBdGdvYkpHVlJZY2dDWHRVMFZCdUR2WndtR1Jqc0Q5V05FeCtiUXIyY20rL0Z3UWIKcXdWMlJBd0c5bExUd0NCZ3I2UWw0Z3VBVFVHTjlxRjdoU1B6dFF2NjlYSS80UmY4ZW5ablpZTjlEVUJFSjU3YjZPdXh4Tng2a2EvWApWRS9qRGI1bTFWbkpxaUZnZ0pjTkpVUkN2Sm5pYkROUkpTSVdKeDBKVStHckRiNkdSZG1ORzN5ZDZFS25FSld5MDBWMGlRbndOUzBTCmxNNmI3ZGE5REE3d05kYlBUMmlHa2IzQ29vY3B5QnQ3dmFyVGFvRzlSajhPYlJiWWF6YkVZT3p0NWw3TE9sWHZxZz09DQoJXV0+DQoJPCFbQ0RBVEFbDQoJaE0yVExQWWZodEE5cm5pOHVkZXdEaW5vemIxbW01RHVza2J2cDFqcHpiMWU1cmx2N0hVMEVRcnFOZW8xbXRkeUczcU4rV0o1WmMrQQpzOWRWbTNpOVpnalhMdUExakV5QkJ1OGFjWTJSODdlTnU4YlpOS24vZGlVekdqd3JiR1BXOVJvbWk0Wk9lUTBuSDI3U05kYTZUTzBFCjZIbzIxY2dHNWhwbHU0Wnlic2gxZDV1bXpiaHVTeDdiUmx5M2kzRzRoNjVtWmFZQjF3Qnk4S2VEYjkya3lIelJyWnZqY3NHMmJ0TjAKMFVCYnc3Qi9LYkt1U01kUTdoMWc2Mmo0R1Z4cjZoejFLVzJxTlhNVDFDa2FhdDBqYXhwTTZ6YjhTdDFJYXlTREZLTnlWZ1Fhc1AyRgpjSEpNVG5IZVBPc2FsVitCczY1UGFEQ2R0VWM1WkhNUng0WlpWME4zTnN5NlJnMVRzS3hoR0cxOGU2R3N6N0ZNc21iK2QraXJvdXFYCkpUS3NuRDhnYXl6cXBzVm1YRFFnbDZoaUlXT3M0YXlSZzMxanJITS9CVVNrV0dkT1pQTHhwS3Y1N0FsR0tGVmFic3o0NGl4ZkRHdlUKeDNEdEdBaHJRRkthZWRVa1dHT0daMlRoQmxpVGlQSW9qazU2U0l0aXQ4Qlh0K1k4NEUydnhpcUhTTm1BVitQWG1FOE5Kalc3K0tVMwp1WnBRa0J0d1hZTjRIZHpxNkNMN3dsWWo1YUtVcnFuVmRVVlkzTkJxSk9NWTY3eVoxWUJpODgwTFFEVk9xUm5uR0FicEdHOWdOWkRsClJZZGltU0QranBwVzVudGhVQkgrQmF1dWthY1BWald1bFpORm9LcVA0U0pWc3lLeXBrT3FidEhIUGtEVkxRcEpiazUxaTI1VndhbHUKVVVvU21Pcm1ibmczcFpvbEh6SXhFbzdWbjlJMlpsUmpBK1ZmTDBRMXpvaDNMUWpWSUV1d1NqMEExYTBxRm5uanFXSFRoMmcrTlF5YQpONHlueGlCRWljMU5weWFVaEJoZnc2a2htbVRvT2VEVUFCQ3BxdWxpVXlORnE3SGJhT3JhTEdJTk1qVSthR2JxYmpBMUZTT1BzcUtzCmRhZ09XbXdzZFlscDlxWlNJd2wvTTZsclpPY0RTVjJDVG40VHFVdG9Td0pJalFha0tsMDBqNW9kU1MwODJEanFqREtVcE4xRWNGR3IKdnMyaXprc3hvNXRFWFpqUWxEeWQza1JoWms5MU9nemVsbUp5NzRXaFJybThJdWltVU9kZFhCbHdhY0JzMHZyMllsQjM1NzNDOW5DRgptWVZ0OEpvWUdVMTNQVGdFYWk3UDJpRlE5eWpqRTMvNmNjTHVoWjkyYmVxaFR6OU9TRzM0Tk1iM21qK3hweDh4L1E1Nit2bVROM2dhCmZsVjZZNmN4QjZKbjhNWk9WelpsbFk1ZVZZOVZ1ZHViT1QwWmhHN2ZEblA2RVJicklLZVgweW92NHZSeUVqQ0kwMXkvSE53MC9od3oKdmVmeGJBMzRoazF6cTVJdjFqUzZSeHBIZlZqVGp0TnQxSFJYQ2ZraFRXL0REWnJleHVCTUw0Y21BaC9ORUdFYXg4QnpiQTYvN3EzcwpHRy9HOURFY3hQUzJCV0U2NzZyUEFFekhxM2p6cFZFTTBFZ2pGbDRhU3lXMkZ3cTY5TU5ZWktwdnVqU09rTnVZZ1pjV3BxRG1nNWZHCkI4MHV5aSs4OUVOSVl5a0hMLzA3SnQxcVQ0Y3ZEVkxCbU9aOTd4RUx6a2RuSGovdzBnWkhiTHAwRG1MMURaZkdLcHVwaW1CTEwvcXEKN1Z1d3BURVN6Zkx0alphR1o4Q0tkcE9sSC81a3Rab0JEaW5LeHovT3p6c0dXUnBlVVowenVBd2ZreUdHTHZiaTNHaHBPUVhTQW0yeQpOSW9sQVVFOFlHbmNxbVM1NHFPUGdHcnpGMVk2bTBpd3FkSm9TUDgwZ1NKSU1NQ3dKVVhSeFpTR1lLUzcxNEpHYllqcmpOVlE1Vld6ClJ1Y0dTcE0vMmkzR2xQNWJsV3liSncwRDVTQTNUaHJIS2sxdUZJVHp5TkYzcCs4bHlXMk9ZOTBzYWJpRzNiMHhpRlZoZWZqVXRiSUsKa05EWGtiKzlRTkxiR0J4cEtDSllUeHdZYWQ2aVZOOFVhV0pPeWpnUTZlS2lwTTJReGhZTStONElhUmo1VUlJZ0RTSENNK1lCU09QcwpyVTNaSlk2NEFBNU5RWTh1UzRqaURZK211bzArNVdGSDE5RG1CRG9hUlJOYy9nUVJHalFoeWlGdWNEVFdHTkVWazhiK0dCb1pzTkp0CnVLblJ4MmhvZEZ0V1h3UXorb3RUSFQ0M2hpQmo4aTVtdFByeWpINlkwZFRKc1d3dm1ORlVDRkltZnlHajhhRXlGckNSMGRoTUJPRlEKV0FGanpGalBSWXltTVYzY1o3M2NlVzFnZEdJQmFodHZZRFRlTDNJRXJoMjcrb0lZR00yL3AvbkV6OEd0RCtsUk56QWFNa2psRWdNWQpMVEZTK1VTTUp2U0JSYVZCaktha2tzSEZJRVlUNnNNYytrMk1wbFVNWVJPaitYaEdiNGNZVGVrSzgyNDNNcHBxbFZibVJrWlRxY0p3ClZDQ2p1VWt5WVB1dzR5Q3ZaN2c0a05GVXFqNnRibVEwVkRpaUZ0N0lhT3JhQlFNMk1qcVI3Y3NDQXlPajhVNktmSHNqb3lsc1pwQTAKa05Hd0VJS3dtZEZpSTVtVWZmb0ZKdlZYMnNob3FJK1VPUXhrTkhYQ2pEM2Z5R2lxeXhoaURXUTBHMll3dm1wa05BMTh6VzlrdEdScAovUkNqYWNDU2JST2pZV0hkNEFzWmpVc1MxRG1RMFJCcUsrWWR5R2pLa1pSN3ZaRFJiSzRiM3hGcnJSbTdVa2JReUdqRUpab3h0YUdXClIrQ01NZHdBUnE4bW9ldm1SYVBObnBvK0hsNzBhbEhHYkdBME54b0hGNDJqRU9oNTA2TFhqT2RxV0RRRGJvejhCaXdhbDBIUjF3c1cKaldLZ2lMS1RGWTFPN3VSckJpcWF2RjJWNGdRb0doRlJkVUUwSjNvVzRmdzJKcHJhbDZ3dzg2WkVvMCszMmo4YUVnMkRHSjFtUkdPMwphb3owUmtRallxY2laUk9pR1JTa3VpRUkwV3p5emJ6aFRZam1GZWRIU1EzbHBCNzNpTnFFYUZTOTlqcSt2UURSeTVXdG13L04xdHJPCmV4QjB5Szdmb2pkdk9EUnN4UlhOWkVQak1Bb0pDdzNOWHVDUGtKZEJoazRVSnlUakdOU0VKaWlvZ1liV1RPS09pQnNOTFE1Y2NUOVMKZGpzamIySHBXQUtMZ0pyQXNmMW1ROFBxQW1pem9XbEJzNWRnUTlNUVVPbk5ocWFWdFVuQmh1WVAxQmtrYUhqalRHaXQrZTNGaGtiQQptV0s4ellabWFZTUt1cU1BQkZYTi9HQnVPRFRMS2FoaURqZzBLaFNFN3dvNE5HK1FxaXd2T0hSUzhmdjZ0dUhRN0xmTkFIekFvVm5iCjhKZ09zK0hRckM3WldHbkFvV2xoSENqZzBMU29zK0lGaDZZU1ZTb2wwNkhaVTZpNXBsS3lEUEFpdXNzSU54NWE2bFNTMDQySDVuYmsKRXdVZUd0T1IybnZmZUdoNk5XcDFhRHowVWJFR0hocVdHcFRualllR1ZVNkg4ZEEwTURvWmVHaGExSHpxd2tNekZzZXFVTk9oMWRuRApNaUNoZXhCbTR1QjJBNks1T0tKQUpBalJpZEJmWS9ERmlXbHVoZjRpUk12S1Q5ZUVhQjVMOWFzaVJNT2diZzQzSVpvdFVpaGFDRUswCkZnRm1SbXNwWE1aaHFHOUN0SXFubW5SMVV5VTl4WE45SUtLNVlKa3UrdCtJYU1xMHhaTTNJcHBLYm4wV1JrVFRvZy9nWWtUVFN0RkYKTUtJbGxjOW1BVlF2d0V3MHVCalJFc2JyY0ZwTnd4OVpKdEVURWIwVjd5OUVOTDFDOW04T1JEUnVtUVNGZ1loV05PTVRJWm9SRGRYVwpHaEhOY0FhbnVHQkVLOERSamU4SVJuUTY3VXpNaUhaMFpCNUdOQ01xTS9BZCt6Yy9ybEorV2pDaTZRVXF1UjByVnN5dm54SFJXQXhJClNCSWNTVmJhcUFpVWlHaVMyWko3S1c5RU5BTy82dkpnUkRSZU13SW9naENkV3JUTHZRalJMSitpeWlZSTBXd05LSTJRQ2RIMDVIT3EKYjBKMDJvS0JJRVRMY3ZqUVgxY0FlMjJBMGZjSnVYL3dvWkVFWk5vdThOQ0o1SXRIb0NQNWQ4QUJrdmgyODZGcHBUVFlmR2djWDVMegpBRVRESWxuNkRZaUdWWEptODZGcFVGclFnR2habVBDNkFOSDRSYmFtQ2o0MEVwUE1Cd1FlR3BtOGdQZHRQRFR6a0N4VENqNzA2dFk3CkJ2WVpRMXdrd1RZZGVwVEl5TnJZbzhOd3NLRTdxc1Vka3Qxb2FCZ2ZzNXM1czhBZzFJN0IwSkJTVDBXd3RtdlBkcHJVV1pzSzNhUFUKTkxicTFSbXNtd25kM2Z0Nkk2Rkhjc0lxU00vb3E4MHA1Z1pDazZpODZqR3lOM2FUUHB3NDZHMjRhZERIYUJqMDlIeStJYytBT2FtQwo2MEpCaithdytONnFDSHV6U2REYmNJT2dqMUVjNk5HdFBnME1OS2dTQkx2ZEZPaU54QTRJTkVMUFRBa0ZBeG9HTmErN0VORFlMVGpPCkRCN04wTzRFQUhvK2Z0MXYvdk9JRmx1QmZ3YkVSWDBEalg4R3RVUjB5b3YrVFBTdkEzU01wMndXY0xDZlJ4SlM4U0kvdzdRc2V5TUUKQ0lZYURlSXh2UXhEbUcvczgzZ2luV3ZxODNCRHBBMTlob0Yxb1RmenVkc1AyY3huQkVCWm94SEk1eEVmN1VFK2I2UmFFSjhCWldOYQpPSURQNElSdUZuWmdpV2tzTWpJaGo5M0VBalh0K2NNZ1R1Rk5lKzVKZVYrem5oR1FaVm8vVU0rNllCbnVYS0Rxd1FMMGpIUzMrbkdaCjh6eThTbjFobnRuM2VkVkRlZTVhZVczR2N3L0k1bzE0NWluVkEzakdEV1lGalBITytMdll1MjFuSDJGK0F1N2NBNmtiYk9mcktKdnMKM0NNekdtRG5FU21rb0RqdmNlREdPZ09ZcURKZVU1MHg1cVViNFR5alYrTE5kSjdkWXZTOTFUS3lQWWpPa1BJMWs1b0Q2RXk4NWF5SAo1d3hEOTAwa3pubUdoT1RHT2MvZ1J3Zk5HWFVPVE00RnpCbkVhdmJqdkZET2k1SHNja2pPV0NvejcyV1E4Lzc3NWpnZm96SE9RTHBFCmYyRldiczFpWXQ4TmNWN0JTUXFHTTlhUyt1cUQ0WnlvYlhjenU4MXdobFVMbUlpNlVYMURrdWJPcTJONVpEanpidUVMYVJPQlZJRncKaG1Xd2ppQVl6dHlHSC9waE9HTUcxZlFRREdjMGVIZXBMdEw4V05Qd2hiajV6UitYUjY3SXhqZnpsSGgzQTkvTWd2NFp2T1ZkUkFLbgprUmNkL0daVzlFOURzTlZaTUVYWDdadmZ6R2ZKUWduem0vbEtOQU9pSlY1T1ZqTysrTTFzRXhsWG9GQTNQRDBPWlFZNGYvV0RmdnpoCnZ5akFtWEZCVXE1dWdET3RsRGdFd0ZuUndwSVBzSmxoUURXTHVCRE9ERmRSSHhRSVp6eFgvNElSenVBeDhnVzVDYzY0Y2hVWUJzSDUKckdhRDRLeHZlbW9DUFlGWmRueTFENlhNV283Nnk3WmpsdDNPU0h2RkxNVmgyUVJuR0tRYUNJSXppMGZWOGVFaU9PTXFwVTRMZ2pOZQpPMEdiQXVFTTEwNkNzcHZoZkR6WVlEano5UXlwaGdnUFpGSU1wYkEydy9teW11SE03cjBNL1FmREdSYkp3MjZHTTNFUFZCd0Z3emtSCnErMEtldlVTaDZDV3c4dk5jTVliYXpXR0djN1U1YW42MVF4blBGK1ZJOThNWjFTbmtlZ1ZDR2VVYWdtWDdnTHI1UVkvTDRBejFHWEIKbDZmSER6ZWFRMGZ3bS9HZWNIMXk4NXNaNE9Gd0hmeG1CbmpFSmZCb1FVdHpEZWlwbHFMVnJYMnA0K1N4V0NRZC9HYitaSlp3WitPYgpHYWlNWnZRcU9Yc2VSUUUzdm5uTllHd2ZlalBLYVlSWE5yeDVEcTEyTjd1WjVUVTg4d3Zkakc0d0FrR2IzQXpwSkN2MUE5dzhvdkx2CjVqYVA3dUV4c00wamlwZUQyanppNDdtb3pWallMQ09hR1JRWkp0c0dzaG5rUE03N043RjV0Q0JJR05nOGhzdWlqV3NHSW94Qm1rTnIKUnRzWURzMUJhNmFzZ2lYL2hqVjNCeDlmckdaUXVoZzNDMVJ6TDI2OVkxQXpzVjVENWRDYjA4eE9SNDl3enJ3c0hJYXZZRkNhMlgxKwpLSm04MDNJOUtvQ2p0SnBpUDBNWVdCZUpxNmlQR0FrYjBjd3U3MVdmTlFOUVNOVHhXd3BBTTZocjlFQnZQak95ZHdRakI1NFpFQUhHCnhJTE9YS1A4OUlZelF6WTFTcWp4SVBNTHJ6RFF6TVF3ckZCM1dqUU12UTlMNHdQTXpGWmZ1Und1TS9qQlZCZmRXR1pVNEdxTllDcHoKYTk0cW9NeFlGN0hFOEdZeXc4Z0ZTRENaSVYxcTVpaHoxUXh4azBpSkY1SVowd1RCOUVGa2J0V0Z0ZGR1cW1pOWVjeGNpaEhnWUc3TApYamNFanhuS0VzN1NONDRaVjhCZkN4cHptNmU3TnljVDFGV0pvSDNCbU52d2x4WXM1aGF6VjZDWWNUN0ZqTWFkQk1lc3dnS1RJREZqCktocVhxTE5OZDd1NE1jeHczclg4TjRVWnB5WkloQ0hNRURuTnRGNE01aFdMdEdBd3J4YTk5NHhnWHQycDQ0dkFEQzJ4Q21rTllGN2QKUHg3OFpVRWJ3ekMzVGxqTm5BeGZYczRGYlBZeURQRmJHNzNNUkFmWEJvRmVqbVRFSmk5RDVFWHF4dzFlbmlNNktwaTd2QUt3R2RqbApGWUh3aTdxTVJJdmVtNzRqOHNFY0NEVXoxeitVdzkvVVpWcEZFN2NNTHBHRGE4V2R2Y2RxanNsTlhZWjFzZUEvcU10a1JQbTlrQ0JpCk4wRzVvY3ZYNFF4ZGhrWG9wb0F1cCtSQ3R4ZDBXU3VmdFE1MG1mbG15azREdWl5UWdaVmxoMDhQUDVEQ3pvQXVNdz09DQoJXV0+DQoJPCFbQ0RBVEFbDQoJemNzNUxhRExYejNJQ09wOVAranljck9wRjNONUxRRVdObklaVmZPc2p3bmlNcHlIWkFUejFob2hIY09VVWZDV1lWQnBzbkhMMkkwSgpxcHUyek1MWWVsakxLNERKZ1ZCV1FQRmlMK3Q5aGtpVEphK3hHYmlQNUFZSGFmbEtuRjJrWlM0TnFJc0kwaklYWkV6aEIybVpZVTZYCmtHNWNNa09kQWs4YnRNd3pVNWU4Y2FLYVJ0dDkyck1ieXF2KzhUQ282R2RFaVVkMjZjbkZXV1k5aCtxdHpGbm1aUS9XVjVtenZDMDMKWnhrN2ltd1NuR1Y4a2FUN2I4NHl2S3FxcXBXTHN3eXIydmtHWnhrV1NuazNhSmtPT0IvUkRWcW1sNWExR1JPRW9EU296RTJZWlc3QQpSM1pqbG5saWpDUUhaam50bmlTQldXWXBDQWZkQzdOTVkzVVhCdEhVWU5Gc0pjd3lCejBXbzl5WVpUcVkyVUw5b2hWRlVzbjJ4aXpECm9qS0ZHN1BNSmJEbURHT1dFd3ZoaW5TOU9nbU1IU3hkdURITFhCUlREeDJjWmF4a1dRTVNtR1VsZFV0OVk1WVpOeUdwSXpETFhDS3AKVzRReHkyU2pWY3MrVDhROWgxWTZNTXRrbzAxdnhrZWJnd0oyWTVhcEptRjB6SmhsR29xaHlnemdjVWVobmkvTU1qS1d2di9HTEVNTwpvczVOZ1ZuR05ycGhOMmFaYU1VZVF6eFRuY3ZoOGhWc3B1VVl6QTFaSmsyTGxUVjd1OVlzdEEvS010YU5lbmx1eWpMankyUTlCbVVaClBxWWNqYUFzSTNhZ09OaE5XUmJYYUk1RFdhYjJUNStnS2N1MFVFcC9VNWFscE96elVKYkZ1Q0pNeEpSbDdxa3lxNHV5ekJCNXdMWVgKcGU3SnE1MmdMSE1oS1hqNFJWbVdmSExOUTFubTZVZlJLaW5MQ0dBSmYzRkJsbUgwTHdxeXpEQ1hUc3lRWlZvWUVMb2h5N0NLOVdmSQpNamZUdlRCa21jZE9iaXV4SWN0YzNZak5Fb3pMc295R00yVDVHRzdJOG1VMVpCay9vQ2hMd0pNWkxsSUMvNElzWTZrbzcyNXZsNzIwCkNzYnlNVnlJNVcwTXdqTFhjOHJWbTdDODM5Y1hZWm1wWnhJR2dyRE1rbmVxQm9Ld3pPUmh0TTdZZWtsYWwzMUJmZlhJSG5LMUpNSXkKYzREeFp4VFBTS251cDJHdVkzT1dMUURMM0lZcjNodXdMRUh5VElldzdDREhQSVJsUnFybUo4QXlzWjFQam5ZRnlYa2hJaDhDc015dgpMekw2VnplYmFzY2pBTXV3OUdKMWdFaW9yY3FkZWdHV0dSc2ljU0FBeTdSb0hoTmdtUVlKRFM3Q01tOC9NOWFCV0dhcW00SzFRQ3dqCkVLQkt6aHV4VExTVnV6T1FhZ3VWV1ZlM1FCT1dNZGFwdmRsTldLYXVJMGZ6Qkk0Q2NIMlVYVGRobVRHVGt2SWJzUXdybWVBYnNVd0wKSDFJd2xtbWhRUEZtTFBONFZPVUVZNW1SRTVWWHI3aE1GL2E4R010MGFMTjdTVGc0WnU3T2hpd3prZEJHOUdhSW9XZGJBN0xNR1c3MQplaURMdkdmc0xYOVRsbUhWaXhhVVpWaWtsQXJLTXJlaEJPcW1MTlBLUnhXVVpSSDJSaitVWmNvSTFjdmpLbm1qTkpMMTFFRlpobktICnc4cW1MRE03UTRmMnBpd3phczJLKzZBc3M0Q1hDc1NnSjhPZFlJdXpGMldaSzZkMEdWZW9NUUxLdVEwM1l2a1lUYUpDYnh6eGNneFkKL3VMVmY5ZUZBMi8zMHc1R0RXdUd3cHVidm0yOE1wNXdtWHJFb2l0M2R4dDd3Wlc3bWF1YnJkd2RNTjVvNVdsVXc0dXNQQjBaM0lCawoxNmtmc3ZLTWQrNEdLMDlHNHU2OXhNVGRWT1hwOHBJWFZCbEZZMVErbWFuTU42VGxRQ3BETmNKSTlVMVVEdER0QmlwRHU4VWhMVURGCjJmV3ZOMDhadG1uR3Nwb3VkUEYzQXFiTVBOSXFiNVp5ZHVYTVppbkR3SFphZ1ZLbXB0NGg4UTFESTUwYXF4aWhsTkVSWTZ4MG5lQ0sKdGU4RlVrYmhBc0d3d1ZFT1BOTEdLSmRvOUh4VGxDR2NZb2c0SU1yVUI5ZDVHTXJBSjYwWFFMbTBjQ0xOVHk3UmxEZnd5VXd3T1FHNgo2Y2xJUXlzN1pYZ3lLZ0thR2NzTTZ4WFRPbTUwTW15azhRVTV1WVRRTDhESnlFa2htdkxpSnFNVUp2cm1jbnBGcWtFWlI3OUJLRG9SCklmdUNKdGRnT1FZem1WRzlOUTR5R1hvUFpvbHZZaklTT1BTNkE1Z01DVXEzSTA5SlViZDI3b1ZMN2srUUVFMUx4bTZNakFjc0dRZG0KYU81bUpUZEwxallxdVVYUHpTQWxOODlTTDFJeVd0eEZZb0drWkdoWW1Pb3pKeG41NTZGLzM3TXBWMW1QdmlHc2ZvZEpUTUZJUmxmMQpyckQ0cnBqQXNpK0hiQXNmeXpBRmEvT1JzUmY3b2R4NFpBUmNsRUUwSFJtT0FSbnNBVWVHdms0bExSY2JHZGZhWFF0QlNDb0ZLazBCCmRRYXFJRDFnZ1BrR0k2dGlySDdiWEdScUJwem1ZZWF6QzF6eGdpTDNhQWtTVE9SZC9oNUk1RzRveG91SXpBWXFQSmFCeUtkWTJUemsKNGdMWUZ3NjVCaDR5YU1nZzlETFZHRERrVmc3b05WaklCSzF3eGFLSy9CWk56NEtFM0VLdGVvT1FZU3pFR1p1RFRQWUsxeS9HSU9PMwoySmJpeGlCWEYyTnNDaks4TkhXR2RDS1N1ZXVscGRkbUlDT0x3Ynh3SUpCQnRlRjNGZ1RrRW0zWGJ3QnkyYzM3ekQ5R2hZWkltc1lmCmsyWm1odkdtSDI4WVVjQ1B5NGlwejZrNUdBaHF2ZEhIZk8wc0RlTzhBclljNWRzQlB0Njg3NXQ3akpveTFSdTZLS2RrVDB1aUhtY2sKcEl4c3Zwb0xPVTRWekdQa1padTNVaSsvTGhibkRUek9YYXIrelR1R2dSQjk0WTV6Tk1hOGFjY2YwenlyQ3cvc3VKb01HYXpqeGdGVgpOWDRiZGN6V0NtSEVYSWo1Z1VXdVFUckdPNTJOSzk2ZzQ0Wkt0NmVlc2tJTW00T2ZrREhIaUM0OTVpTnZ5dkZpTWpSOTI1RGo2azdlCm0zRThWQUw2Umh4L1RKakxnamNoanBPbjVTQWNXMmY2NGh0UExxTnN4TFFsR1o0b3lNeVNUWUo5bmJTTGRURmdJbWxKVVUyNDhmUkMKTHVER0VTZC9vNDJsK3pwazR4R3RDZ3cyenRIaTlzVTE3cXF5T0ZoakN4TTMxWmhKQUpVcEhxZ3hreDVSbFlqRnI2R2ptMmlNdHlJWgo5TENCeGlnSlcrWTZrR2VNOTlrTEVYMGxIUHUwcHRrMDQyS3ZLV0RHT1h5QVlCbXpSdDBqYnFDTVVlL1dWVzFKVHdtTEdyNlNtMk9NCmdqT2psQytNc1NYZFFURnVEQktrQXpIbXFvcGxxamZFV0FxU1VRN0VHQkhVajNWYVB4Ump5am1mc0lUc2lWclIySTQxQkxEVTZuSXgKUHJpdi92ZjM5TzR4K281WVNKdGlYS2NiVGdiRU9GaGxtMkhjY2tocEw0UXhBZ2pGMUVsNjFjQmRVTTBUQUdNU09Lb05JWlVIOGtKTgpndXRtWUFpcUd2VGlscDNKdTlqRkxiUUZSaGNqM1VxOVo1Q0xrYU9VQnZ3Q0Y3ZG1mSTlqNTFDTDBzTXhrUmo5aHlPeEY5amltU0s1CkxCc1JzWFVjYVBGS0NpQzhtTVV3c21vaWtNVXIrbmNFc1JnZ1YyK3dYZlNWUEtjR3JoakZXQXJlZVN2OEE5TnhONng0VHJkRURsYngKcHZNR2doaG9DcnFYTjZsNFBQWm93Z2loTUhOeHdTbmVoaHRUSE1aTktSNmV3VGQ5R0NKZXJuNXZTREhFdHdyazJEaVQ0YVJDRko4LwpMMEp4R0RlZ21IRGxWUStmZUFSVzVNWVRRNHdzTXBEcHhLTTVZeDEwWWhpbWVickhLNDFlMzhFbUhxRk9DaER4YU01aDNtUmljS2NDCmFZelhld2IyUDdqRStHdzJlamV3eExQWm1RNHNNUTNsd2hJemZwM2VVT0laSkNjemlhZmJnUVdTT0ZxSDMwQmljQmlWblRhUEdKcE0KSmhxTkk0YjZrdmZ3cGhGdllGYkFpSWxjWkRyTUxPTHBEL1dGSWthcFVqSWhORXJuMU1RMFNNUXdaRWZQTjRpWVJzeEV3U0VHMDRrSwpFbU9JVjdFRGVGT0kxOTBXRVI0TFVjOGpIUWd4Uys3eUcwRU1QQmREWEVFZ1J2cGVsUm9HRUVlejlSZC9lQVpITmZERHk4dXFUUjltCmxTQnh4QWMrYk5iMFJnL2poRlkvNE9GVkpObDljWWZ4dWJGWUxyRERLMHBoZ2pwOEhXWXpoMmNrWkFNNVBKMmEybnpoR0FaZXdHR28KWFVVME5tOFk1TEErTG83d3FCNUxiOXh3RC9adkdKRzFacXc3WU1QVW5NLzZaZzBqZ2ZTNDZUQkNIZmc3R1VnOEpjQncyZlFGR2taaQpLa3FuUlVOOGxIVFltR0drdUpwNzFXMHRUM2VnZTBPR2V4U1dCV040RzI3RThER2FNTndOTjlwOFd5eHBrMm0yR3pBTUtEN3h1VjZRCm9LQXAwSXYwVktxTDhsNXdZWkNqVk5SdXRqQldQQUpXR2kyTXRWQk9iN0F3VmxPcDlNTVZ4cG9yOE1QOHlxckZCQytxY0xNb1kwT0YKZ1JscTdTQ0ZSOUN0RDFFWWdpWWlKUU1vekxXWlM5dFkxa3h5YVpsdm5EQzlzZFFPVFZncjJYNWd3bHpyanZ4bUNXTlZ2SXdtNXEyRwpRUVg5UmdsWEt6TmZKR0VBcE9LOCtYMUVIbXh6aEQ4N09qOStSeWZxLzM4WTRTOTQ0RDl5NVBydDcvMmozLy8xZldBYzZBOS94Zi81CnMvL3JMMy9SRC96MGg1Ly85SC81NWYvVnNkdno3ZS85czEvKzdDOS9ZNi8vNFM5Ky9kTi8rc3RmL2Z6TDcvLzYydjZQL2NZLy9hdGYKL3ArLytPVnYvdlNmL2VGdi9yM3B4MUczOE1kKzRILzdpNDlUK3A5KytZdC84Mi8vK28veWttUFRQL3k3UC8yNFFmL2pYLzNoOS8vUgpiWC82NVYvLzlYL3l4cmpJajd2eUY3LzgrLytNYS96eEQzKzVyeEZWM1IvRDR0OTZqZi83WC96NVgvL2IzM3lXLy9DSC8rYnYvNlB5CnAvL3c5My91L2ZCM3c5OS8ray8rOFB0Lyt2R1MvZlhIZS9hNzM4bjhEMzc1TngvWGRmM0RELy9rMytGZnB2N2xIL3pWZi9qMy96YU8KODkvK2sxLys1cHYvK0piK3V4K2ViMy8vNC8vKzVkLzg4QjkrZUlHaG4yLy84OGQvL044ZnByLzVWci85NDIvL3gvLzVmUHR6YlBuUApmdmpkQktPUS8rL1gvUWZxZ3JDUS93a1cvRUZ4N2g4emYrenkwMzJjbjM3NC9jZXgvOWNmNEZ3endmVkFmNWIxSDFoK1Fwby9vTndGCkRPaGp5ZmV4OHNKL2ZJekRuUmJHNXY3bG4rR1lrTkpYMUgweGlKVSt4aG1lSmNaM2xHb2ZNNHhWMkt1SkFNTEhEOVpQeHE1MmNELy8KOERZREZmSHhDKytqb3BqbFkreDVuNEdOT3NDUU9QNjlyWU5QNzZNZTQrc01qdms2MjNQVTY3cSszSU9mZi9qWFB3Q3N0T0JrZ2lySwpmQmpVUFFWVEsybmhINjcyUkluRXgvSVhtWEFVSUMwVWNYN2MxL1I4KzhmN0VjS1BUY1FuUDM0Rk9EdTAyd3dqWk1YUUlLcHIyY2RNCjlEWW1wVDk0YVpmNUVTWGlkZFNQNldqaEpYaWRRUmgvL3UwVCs4dVBLNDUvWVAwVEpybE1rRTRjdTl4bW53V1dySk5GRkwyblQwYnIKaC9ZWjIweVFWLy8yT21yRGVxR1ViNjh6Q09QUHYzMWlQdVAvK2dMLzhSZTR6cHBOU3B1TXBIeXN1NEd3UVRGQnhidjdNUTRRQnRpZgpnZGc2NFFFWUxEUTJBSE9ITFA2blcwdEJSV3J2VTRBb2dVdWkrMlF2NDMxaGwvbmNoT3VvNTNaZFozRGYydWpmOE41MmtxdjI2YWpICitEcURZNzdPOWh6MXVxNHY5K0R2T0RiOGpxY3lRTHo3ZEY5eDJ0QnJ2SDRmRjRnby9ldE1MK045VlpmNTNJSHJxT2RlWFdkdzMxZjgKQkZ6bjk3YkladVpQcit4bGZKM0JNVjluZTQ1NlhkZVhlL0JkWGxsMjlYcmE1L0VMZ3c0cTFsN2pWMlBZcXJ6SHI4dDRqMStYK1l4Zgo1NmpYK0hYTzREVis5U3hGOW50YmxuWitQdW94M21kd21jL1pucU5lMS9YMUh2eXNvUkp6Q0pRK24yNE81cENuZkRvSXBvdktMK1FlCjNJL3hOYmdmODdtTWM5VHJnczhadkc0T1pyeUJRT0pyVy9MKzE2ZWpIdVByOFJ6ejlTajNVZStIL3VVZStPWmN6KzJlcTY5bmZPYnEKOHpaY2MvVmx2T2ZxeTN6bTZuUFVhNjQrWi9DYXE4OHp2cmZkYjhOOTFHTzh6K0F5bjdPOTNzZHpYVi92d1pjMzUzVnpybWQ4T1RMNwpiYmdkbVdOOE9UTEhmQzdqSFBXNjRITUdyNXR6bnZHOTdYNGI3cU1lNCt2eEhQUDFLTS83ZUQzMEwvZmc1ODhlU0dNZmkvYlpBd256Cnk2dG9UTEYvY2tzdzIwaVA4VFpia1BjK0trdVgxbnYrRCtNbkQrVGVkbnNWOTFHUDhYVUd4M3lkN1RucWRWMWY3c0hmZlpvOFUrL3IKdmg1SDRmcjk0MUpjWjNvWjc2dTZ6T2NPWEVjOTkrbzZnL3UrSGtmaDNuYTdGUGRSai9GMUJzZDhuZTA1Nm5WZFgrN0JkNWtteit6Nwp1clhIVjdoTzRYZ1YxOGxleHZ2Q0x2TzVDZGRSeisyNnp1Qyt0Y2RYdUxmZFhzVjkxR044bmNFeFgyZDdqbnBkMTVkNzhIZC9aYzluCmdFOW5sQzlEUVpoZm4zZEhxWW85Z21Qc2dvRjhHZ3B3cVBxTTkxREFaaGFwdmovRU1INGFDdTV0OStkOUgvVVlYdz09DQoJXV0+DQoJPCFbQ0RBVEFbDQoJWjNETTE5bWVvMTdYOWVVZWZPZkZ5T3ZXbnUvMk9vWHpoVjhuZXhudkM3dk01eVpjUnoyMzZ6cUQrOWFlNy9iZWRuL2g5MUdQOFhVRwp4M3lkN1RucWRWMWY3c0gzWEl5ODd1djVhSy9mUDUvM2RhYVg4YjZxeTN6dXdIWFVjNit1TTdqdjYvbG83MjMzNTMwZjlSaGZaM0RNCjE5bWVvMTdYOWVVZWVHb0hXUWdKbkU5K3p4QSsvNVB6WklYNzI4MDZ4cGRMZHN6SFF6bEh2WHlaY3dZdnYrZnJpVGtjTXI2NDl6eHMKK2JUMjRRbG8yMnMxY1l5dmxjY3hIMGY4SFBWeTJjY1h6LzUxT2pqRmY2NVE2ei84L1orL0FxMy9LZkhYOG5lTHYvcU9mUXJDbmxncgozckEvWW94OWYvcHl0Qk9LL1RzSEMvSHVkcTNlcVh3cForN0lqUFdGMmZNQmlKVmVaNmYyeVlnMWVXMW43ckFaNi9kUnY3MlAycFQrCmY1K0JqWHZ1V0dOODJuWkk2ZjArNmpHK3p1Q1lyN005UjcydTY4czkrRzV6Qi83OTA2MmxOMUUrblFMOURyN1kxOGxleHZ2Q0x2TzUKQ2RkUnorMjZ6dUMrdGMwNjIvZTJVMEsxOTFHUDhYVUd4M3lkN1RucWRWMWY3c0YzbVR0WXRmSHB2dkswODZkWGxoZFlQcjJ5bC9HKwpxc3Q4N3NCMTFIT3Zyak80N3l0K292YithZHRwS2NQcnFNZjRPb05qdnM3MkhQVzZyaS8zNExzRnNsQVo1ZEd6ckJPT1lJdkFiZjZkClJ0dzhhZ3ptWlh3eW1oYTh3eEUyUHlvWWVSMlZnM2VhMzE1bkVNWWRqb0JvOGIxdGtScjJmZFJqdk0vZ01wK3pQVWU5cnV2clBiakMKRVUyZTczMXpPSmUyVHdmaHROblQrK2N1NDMxcWwvbGN4am5xZGNIbkRGNDNCelAvbk92VHRrVWxZZStqSHVQcjhSeno5U2ozVWUrSAovdVVlZkljVjkzNDVJbHQ1V1R6aHYxOUN1d2J2aDJYanA5ZmwzbmEvQXZkUmp6RjlmbGZIU1ZEdFJ4U25lRm5Pd2E1WDRmenNkY3Z1ClU3eHU3N1h0ZmhEM1VZOHhmWDVqZklyZjhjT1BYL3YwNFlmNWRZTjREYXQrTXZwNlA5M011RGV2bzM2S1Erb012c1FoOVNRL3hTSDEKME82akh1TjlCcGY1bk8wMW5KenIrbm9Qdm56NHI1dHpmYUxuSU9mUlhEOTNHZTlUdTh6bk1zNVJQOFVoZFFaZjRwQjZoejdGSWV2bgptM01aWDQvbm1LOUhlWWFUNjZGL3VRZmZZU0pQMGkxK3VxL1YzVHZmOTlYZDY5NzM5UmhmOS9XWXp4MDRSLzJVcU5ZWmZFbFV2MC9zClNsU1B2bGNYTVFYZzJDbmZacDlGbiszVEZIQ01yeW5nbU05Z2ZZNTZEZXZuREY1VHdOY1QrejdEd3ZhTXcrWDd0RG9JODh2anB5Zm8KNU1BeDJoUDh0RHFRMzdxRHpENnFQZHozR2RqNGFYVndiN3M5L3Z1b3gvZzZnMk8renZZYzlicXVML2ZnK3dTWjVSYS83dXR4NHEvZgpQKzcrZGFhWDhiNnF5M3p1d0hYVWM2K3VNN2p2NjNIaTcyMjN1MzhmOVJoZlozRE0xOW1lbzE3WDllVWVmSzhnc3ozajE2MDlmdngxCkNzZmp2MDcyTXQ0WGRwblBUYmlPZW03WGRRYjNyVDErL0wzdDl2anZveDdqNnd5TytUcmJjOVRydXI3Y2crOFRaTzRSaFpzajljOUQKUVpoZm56ZGpZUG5UVU1CNFdadWZod0ljQ28yRTNrZEZGTzc5R2NyMGFSZzQyKzBQK3o3ZU1iNSsrNWl2OHp6SHZLN295OVYvNXhEQgo2NmFlTC9ZNmhmTnRYeWQ3R2U4THU4em5KbHhIalp0MS9mNjVxZWRyUGR2dHIvbyszakcrZnZ1WXIvTTh4N3l1Nk12VmY4L2d3T3VPCm5nLzErdjN6U1Y5bmVobnZxN3JNNXc1Y1I0MDdkZjMrdWFQbkl6M2I3WS81UHQ0eHZuNzdtSy96UE1lOHJ1akwxZi84bngvOS9PZS8KLy8yZi9mckxuMzhicjhqbmYwYnNzK1lGYVMyazV2Z1BNR2wraFJXNE45U3pIL05Qbjh6dFk5SFRxOHpuR0w5dDNZZjRQYy90ZXdoVApYK2N5MUlKN256bmNRSnJseThrNGJIdjZyTGExNTJOaFFXTjZxRytYbWJXR05MTkYrK2NyOTYvOUJEK3pFdVVHTGdCNmxINmNlcDgrCkRkUzNmTHpxTkpQQUxDUDlRUDBrcWdwa0pMSkJQemhMbk1kZ1AwQnQybVAzanlGcCtkSlFSaVBqeHdyVXY4OWF2OWo5K2ZnUS9mc2YKYjVvdmVlMkRLdEl2bzI4TldSQnhGOWpTeDNjc04yL0ptbTM5UHFveGZMOHdubXJMUkxxbHpPUWk2cmJnZWZxazBKRlZScFRmK2FxZQpNSDQ0OXVmeTBSalo1Lzh4SHNlbWJYai9jd00rUFlBZjlXVHl3dzVpdEdmMGF2N1ZWcmFTcHJVcGxDL3JTUDQ1ZmVNeXJoWGI1dDYvCi9kWlI0OWZtbjlUMCtCK2VqNFdCZjI3dTE3R3JlNnFOV1FjQjdHcHVtMTREZzBGL2pQM0hpQzJmN0UzWnhVZkhaSmp4dDM0L1Rnek4KWVBTRTBXYWtGcDhZY0p5NnVLWWlVaHRSKzJmamFtRjhZc1BGK3h1YkxwOXY3M3QzRkJqS0JvVDJiLzcrZit6NXNORUt6ZXhuRUErSQp3RlZ2WGVOWlZML1BiTGd3LzdZSDlBQTNuUDJkZmJ4YU1kS2gyVW4zUzQxMXFXMTdhR0R2WEJqQjBXditKTmd5N01mWVArVnNNMG9DCjQ2RHhwZGFoczMzWURPTExkNzZFRHRQdkkxTm8yOXpuMVBmdTcvUDNoU1hVdHlYZmRiYUEvelhNVCt1WCtTZWJpYXlSK1dNMStzM0cKN2tmTTFoTzJvUkJkeGhUajQ5ZGY4MEFJTGdES1RmVVBZTjM5YW5NQ25rU0h3WXRnWTA3K0tqaDgyUWpJc0o3YzhnY0FhNHJ4TFkweAp2T25UWTNRaGM4REc5SGgwWUdvNURoQVBzK3RSeDdZamJnNGV4bTlld1hsMXh0TThtTEtUWGJ3NnJGV1Z1UTNQZXl6STJXYmdER3ljCmNjVWx4dU12eDQxSE9sV0FyWnUya3VlMlpCcTB6TlgzY3FvUzA4K3B0REEyRHpDRFk4RW40OHc5NzcxekdOdGEzMzd6NTMxZTZBUFMKdTZiMDUxRk14ZGJxTDRQUm1EQjZXbGdqNVczci9nUldxejR2ZHV2TVBmYlhKNlFXbmkxKzY5ci8rdms0cmUxcGdEQ2FQQVV2QUJwawpiQ3ZHRVJobjgzTm9WWGVMeHNldkNFSDhYNHhsZVdiODhsdCsvUWtnS2I1bkJYbWlYOFA4ekI3bXdXdWpjYVRmTU9ZUnhuai9VWFpaCnVzZlpqS1lETm83d3VQQ3AvT1lKK082d0VWb002dXlTK0t2Tk9SZWZCRWtZTXNhOGp6ZXNaaHViUHhaOGJUNHhTYTFHekVJbE52MVkKVmVUM3JQTDFCTTUzeFQ0akdoTFgzSjhWdTk3RWlOajhxYkFOaDQwbHZwK1AxN1Nlc1ROR1ZLNUlQWHBxZW53SVMyMnhxZWJjTDc5Lwo3dGo3Z24vOURXdjlqVnZ6TVhyOXE3amxvNGNaczhwUFlVWnJKcG5yRTNlSHpXTmtMSG4ra1Z1dXQyeXFiU2x2SlNlUlg4T2N3azFnCnRiMk1wTHZLT0hRZldQd2JiZ1lCS2ovK0VPWmNZdHVSWXR2Wi9HTk43OExYRTRneks1TEllSnpQZnBqczlWNUx2RkRObjJFQmd6S0YKZVNUOVhoRml6a2FOUlYrUDZ4OUV4ZmFZNjlyNlY1dkRKMmppSmRyWTloQ3A3K1hEMXNyK3RSYnpHOHg1blRQcnNTMGJHK2drMGd4agppZy9XbzZSL0MyT2dqeHUvVld1TGcyclErWHIrY1dHZ2J6emorckZmd3h4dUdLdWlaUHVZWDFaTTVuT0ZjV3lmc1V3UFhEQzNlQklzCkU3Y3hMbUZsVGE2d1BUR1FrTXo3NDIrZmxrZStpYTQyc1lDaDkvQ3J6ZWxKSHRXSEozNFlTN0ZuUmVLSmpSNDB3TGZ0OXF5bWNVSTYKYnRJUzRzTlllNDhmKzFqU2Yvdk5NN2g5dnZnNStORXh3SEM5ZHp3NUcvTzR2TFBmSGg5c0JZN0wxaGJ6ZTdncDJIL0ZvUE5IUEw0eAp0eU9adHNjNFJoaWY0NGUrVHYrOCtuUXFOUkd1dUs1b2R5TnppMitOMkM5TjhaT1VjZG02YjRHUDhKdUg5ZStoajBiekJYOThnZlpHCjBPOWlMMGNuOENRL2hmbXA0M29ZUHNLb05ZeHkrTDRjTmk0dmlZYjErZkt5ZUFOeUV6U0N3N2E5WjFJeFpVdzlKaEIrS3ZFQ2svUW0KTXhhQk5xNjhEMURpQVBtSjUwNmN3WSsvZlY3bkN5QSswUzl3S2VjTHVONXJyV0cvdnV6LzZtL2Y5blhjZi9IeGcvLzlmNkFmZ2llNAovQVRwcVB4cU0yTWtOc3Y1WEJoK2l1OStEQk5zNFJhL09CNnZ1OUVldWxhL2NzUjdhZE0wVXR5a3NjSklKaFYvS2NXeWNMSi9RYnlECm5uUUFYdW5KSHdJYlBNaEl1SitNTlc3eVhBcXY2SzE0dFBZaG1pVU93RmZGUm9TRS9aanJPWVB6SlgxNGFIRW5XdzczWWE0bkJxUDgKSkwrcDlrdDgxejErRHF2SlpRelBGWlRPMzN3NnNUdFYxL3FTUGFiU3VIek1qdzh0NzkvM2htbFB4YS9CN0ZrZU40ZldhdlFIZ0JtUwpMVUlzUThRLzdUKzBMS3M3cm1WanhNU2VHbGZQNXVNeWdtd1J1N01wbDNZSE52QW5tL3Z4bjNLT084QndudzVCTWY0bkk1c094WEZqCm1UTGtUc3Y0NGR2NldwTlgzOU5YbzZPMnZUdkRVSDRBK3ZweFVpc21BNzVNY2N6WVhjVE4rUGxZVVFONEdWZkZodHArVzNNY2dDdEMKais5eFRoOXJtSFZ0R0VjbHprbmZ3SGoyK2RkNFYrWlNGQVN0SWVIdzdjRkwrL2Y3dFh6OHJOSERjUHBPalRTbmphM0h3MmE4VUFkbwplOGdmNnM0dTQxbysxK0xRR1VoSkk4V1lXTUpabWVnc0VZZGx1RURHUEZNOGdPR0p0d3FPcnhONHdpdEF4OXhTWXJUSGZLd2JXLytrCjFVOURMWmxLeGMrZ3lBa0NRNzV1WDMrVnVDOVZuZjg4TmloSUFVNVRibkd1Y0VYOFF5M09kWnpIRFZ6TW5INWVYZE14anByaWpXOTEKeGxrOS9VbVhNUTdBVm1lK3J1bTVsQTJSNHoyeUl6ZEpieDZmWHMxOFhRR2ZzUTZicnhlK1o0M0UwKzNpUER3cUxEdXprTXIrcFlqcgpUaEQvWW5BaWNROUdFRnppVko4d3hWZUlTZDhmNFRDNU4zd3l4NFRHQ2Z1TlAzRlllcHlBaGRsUDNyRHVlU0E4eXc5ckhmc3I4ZzM0Clk4ZTBaem5VV0dIdlgrTXI2SzBYYjNzQzdsdzRlTXZWWTJJdXBlOERuQmhjckRySFdSTVp6Z3NqSnJWOUExTHlYUjJhQVgydTAyTWUKZXNpbEo4SVZjdnJIRUxIVkg1eEdZclNUV1BHdytabnBxSWlzeDB6UWNuRjhpQTN0NG8wamtSTkd0SnlJRXl0ZVlZeXFySnVudmVvNQorc05jZWpoTzRTdU84aWZka2VLNWwrTURYWGhqd3h4ZjEyQy90ZmhtS0xxaGtSQXgvNWFtVGRLQlp6eFpMRWgxZ0x5RDgwQnZhdHdICjRLbUhCeDNCWDlBQjkvRFFQbFk1K3dEaE8yQ0k3RzI3amdNZ2MyMDk4dHhtemlQMjBWSTlqdVp2KzUrRXV2ckYwZlNOUTZTMXg0N1MKdy9qRTlORkxPQkFmWmc3bEh2ODFKckt0eTlxdjR6ckdKKzc1TTN3QXRFR2Y4ZWFSOHZhVHpXY0VqVFV2eElNbEZnUGtVOGxJRXBzbgpDM1lvMEFIR2RpSStwb2djQjlnZmVzU1MwTW5RVXdpQXFSRkx3Z0hLZnFFMXJtUFRGZ3VYK002Nm1VSWVKMHJlKzNPNXBQMzdpbTE1CjZSNFVGRHpyVTExdy9JQ3pYeHkwTTZ3eFVueDhXbjd1NkNMZFl1RkNud3JHRGE5U0FGQm4yMVZsWm1PTUlLd3pDLzl3UFRNTzhPekoKVllNcWRpOWxSNEdxWGE3dUZKWEgyaWNlR0ZDdjhTTEVZTjNWZTZxRzEremR0eDlaKzdQMlVjTzUwT3BSTmhMci9FdDZCL0E3MitGYwpaZXpkQ1dDTGp6L3ZreW85bmxlTXk5MWtQRCtESEtmRmhoYTZWNGlBN3VQbUZ0UEZxaHdYZTFPSGFXN0xrVUxHbUxCdnB3Zm0wajIzCnNsdk5UemFIM3oyMVhJQVJoT1BoUmNLSHQ5bHRqRWtmdzBmeE5BSnozdDlvejluYlB2dkQ1UkFJSXpwaHJIQXh0VkNWdWZad01MencKak5LaTk1c0JldWJhazN0NHpwMkl1bmkyOWpyWStpL2M2VjZWaWUxWjVWa2U4Q00yakFPTVdJM0dSQTR1K2Q1MkpFM1BhTnkraC91NQo5MDg3YkFqZlh1NEZhKzduL2tBMW52VUh6YzlqS0NnUk1rRnZ6QkYrVjNPMjhjTTQrZ2x0K0t4Y1Z1YlpjZFo5Z0RialN5Z2Erc2oyCm0vdWo4YkJ4d216K05tSi9FcmM5dHpXUHlSQkE5cGdnbVdpRkVWVGZ4eTlNVEdQTmlRRVA2dUc0d0h4bVFyeTBQOWxjOGhPclZTeW0Kdy96c1lFN3ZXbTAxbjd3TzhXZ04yWEE2TVVhc0h1Tko2MmoyR1c2cElyMTlSMzA4cFA1T1lkcDZ1NmtSR1g5bThvWHBVb3VwOFR3aAp1K21rd2JjZUgwek16czNOVlR6NE55OVZBSUhmdHpEbVp4anovc0sxMUFTMTd3blhONVY5QjgrSE1HUFhlV0ljTTg3ejJkUHlUSEZHCllHK2YyNmxmZVhaQXg3RHREeU1BaWc1cFd2TEJlUXN3YzZUQlpQYmNTU1IrZklQaDhLQzliTjNSdlNlOGVZTEY0dz09DQoJXV0+DQoJPCFbQ0RBVEFbDQoJdUI5UElRSmJRK2hoMzM0Tnh1RHg1NUNkSkh0WDdEVVdRL0ZVYnNUbXNTTlFqZ3JVZHNVUGxpTjUwU1hBeHNqT1YxTmcrV001NnliVwphZ1MwN3pUL3J2dWlZbndIZUQ5dkI5ZnBPR3hiOTFRdzlhSVEwYi9kNjVUMi9vOUZMZmh0amZuc2JyeUhNRHdnR2JzanNYWU45VmkyCmN6alZhTnViOXIwcFdtVDVvRSs0T1FsQnB4OWoveDNWSVJCWXhxZEZzREdWRmNZMFkrVkdUeTBDY3ZQWmQzcHB2QVdyY2p2TlZCajgKN285SDlNRDhDbGVQcTBjWlc4cWZyd3NBOXUwNjdWaEpQUU91b3hhL1U3eDA3a1dHbzEwSTltK1p3RmxuSW80YVg4WU95ajlxa1BpYQpjcGlXeU8vWXFzeHhZZWQrbDdVWGxIWnliSXdCM3owVFphMGVnYVlXdDc5amp1WjhSVHdWR2J0ajJjQzlacDhBRUxKN2Vvc29QUkcrCjRmNVovRU1lYkd6WVl1SEVCdUF4T2JHM3ZIZmZBWXltbTFxc0x2TFB4MHFpM0Q3U2JCcEdQb3lNWHR1ZlV2UUFMZE42eExDSUs5Y0IKMEY0Z1hoZjY4RExXczU1VHhoOHQ5cmJNNm1PSkdQdlhLOXdWVThXSE1hMklBRVdTb1h5ODdqdHNUKzlZQjhCWHRGZHpVdzU4S1hJVgpkQUpacnhBeVdjOStnMklZNFA1N1JWb2o1MFVKNXZGSGJhekhHMjFuOTdiMnp6OG52M2FrV21VcXFTaVNmOGpnMm9yRHhzM3VFRDJzCmZkd1B6Mk03RFR2RmZQei94eTR0K3JLUGU2RWZhZXUrWXNBY3JVU0t1NjBZYjJPaHo3NkFFUkk1TDFaV2FrWFdPRmY0WXR2cDhPQlMKM0wzTXYxL1BBYzRhYWorWExOMmMzeXl0Zk5GUDU0bnh1WTRucmlEZEFTK0hrR0RjOFI5R0VuVFU0Mk1PYUpQaUFCeldYODRZT3Y3RQp1cWdVWi80VGN2ZzdZcHpxM2o4UyttN3I0VzFQeWp2dVMySkhLTnYydC9WZ3RvbmZ6d3BWb012ZEUyL1JJMmVTc3ExSXp1UWMzbWhlClhDTyt2b3g4Ui9LTDE3QXc3dFg4Y1lQUW4zUkZSS0dYV00xL21NdStMWFhya3ZLU1BNN20wTVNGbnN5OU9XUnNPdzFFYlVVSTVVYUoKUVkvaHRKOXNQbTRPeTNYQ2ZBSkp1WjF0VnppRFQ1UFVBai9uaSt0YXkzakwwbXc4amxLZWV3SEJsbFo4T3pJKzRkQWZ6YWw1SHUweQpaZ3dRSi9aUDg3ak5YNDBmRC9wZmVOc1dHWUZsalJyYlVLVklFL1FTUnJiVDFaYW9Zb3ZmWWxkVVhTM2NJQmtqYnNvK05TTU9zRU9CClIvbVd4M1pBaG54akdQc1ZzaXJkZWtkMG00Nmg4NFFqY3Q5KzRjbFU1SHVlS1UrSm81WTlTN2tkZ013blpzWEE0MDgyaC9CaDdLZzgKRy9SVW41anl6dG1kOVh5dU1TV3dCWEI0S3pVcFVZNmZ5aUUxWkVCRFc0WUdjbHdyYkpqM29pSWxUUjh3bnNCaGt5NkFYWU4zc21WRgpoamkzVzhNY0F0R0szNDJiK1AreDk3WHRiZHpHb3VmemZSNzlCL2EyYnB3bXBCZFlBTHNiSjIwc3lYYWR5ckZyNWNVOWJhcERrU3ViCk1VV3FKT1hFK2VQMzQ3a3pBd3dBdmk5bFN5SnA5c1VpaDhBQU13QUdnNW5Cd01WNFNHVTl5QTVyeGlRb0gzV0Vvc2N4VVpIRjJpSlYKTHJaVDJjY2xuWkR6ODFCRlpqc241L0VWbVpTM2VwbzVDTVJuQWgzS2hBV2ZsRDZPSTdNTzlDTUh6aFJIcUJvWDZDTFJsTWhIZWVVOApCUkpQeDF3L1k3c2NQdDBvZUxwUUxua0g5R0plT1pNVUFuM2tBRVhGV2dUQ1Iwc0V3eDRBcFdMaklybkI2amJhMUZ0SWhYZnR5Y1JtClhROHM1TmhVSmJKSm9aaFlvNVVGdXBnVGZDYlFtemhTTHpkRWlCak03TE1rRmtpaGFCWm9NZ2JxbkoxcjVOZndrWDNldWNaR1BIcUUKbEtNTEtiV01CZEliaTJGcVdRU1pmZi9hclRwN0doUE9VZWZZYVBWSWtVVnVZM3AxeVllRmVzcG9OK05vMHl6M3prempnaE9OalZOMAprOVk2cU9oVnk4eUoxQ0xqdVlSbGplRTRlcmRoUmpHc3h2dVRoWWtGZFNwQ3ZHcnVLQXVCNUZTV3lSWE95dzFBZXFMWmtoQWp3QVhCCnM5bnVnOEk5VGVFa2o0Y1Y3T0tqc0d5dW4yamVyNVQwbldXL0c0WWhXaE9EMFA3NGpJOWY4ekZKdUhnZnl4bkZiZ1NCd29mRk9zY2sKNFpPZ0diTUx4S2gwd05SSkRtZm9aTHpCSFVablprYkE0ZFBzVEVKZzdqY2dIMWlySXc5VllzKysrTTZKYngvV3RXMGZYN3VRdkZ1aQo4ZExXVjk1UmpmY1NiQndOdm5YcHdob1FhQmdyekh3NXhWazhmZk5oTjVXK01jRGx4WnppMEdDWVVTS2FuWXlBM2x0eGE1OE45ZlNHCnJRL1F3ZGRlR0J5V1E2cFVBUE0raWo1ZTYyY1NvSDhIRjZxd1J6aDhwOTQ1YS9FeFNNb0U0c29heGt1dk5GcWdOOEJ6aUQvQ0ZKK3IKM1B1d0RxMzNnN0NqUzZUV05PdGtuWnNJcWUyTGxmWVo3MWY4T3E5VFNtMVJhZk5jV1ozT0JVMUxlc1dROTBXT0twWTJ1TkFpZFpHVgpJdlp6K2ttUFQwejZRemdmb1FWS2NGYUoyWDJLUlROdnN5eHNGQWdDdGRjdGZFQzZqRHdvaVJ0dllSVm0yL3ZNS2tjaXNZNWNOMTBFCno2SWtzck56L0NXKzVaSDdaWkM0VzBTRnRSdTZrZVoxUVBIZU9WOUFLUXpIYzhFMFk2VUw5NXAvY0ZtdlNyRjVKSEZQUjduZFJuSnMKS3MxZVMxWWMyK29Wamx6N0tGaS9nMUVRVWQyRnJ1WFI1bUdyNTlZNzRCYUg1S0tzeDZIV2FsV2JKSThGdHpZQkFia2luRERVcmlnSgpDamQ5N0RZeDc3WkVjQUNoZmRuZHhNcDlzQ3Z1OTRhdlc4Z3NrTW9HYWdRTDlyOUk3YTltQkpkZnFxeHFnbGk5QjEvNWUwWDRzQXlqCjlYSDRXYlFoc2M2WlpKR3pqTjdIc1FqUXBzUENyQWozdzlDMHg5SFFIUEdReE1ZVjRaejFpRUJ5VUIvczNLbnZtSDErMHdzZDExdk4KeDAwaG1kM1NCR1U2Qy9YcHdVWGJBY054TzhSRzZUYWF0SmczdUc3R1NDOXlaS3FpS1ZNNEJCUXp5SmNjS0FHY2JjNmY0bkFxdTdPMAo4YzRLQkdxdmlBamg1N2V6c2hucmplRUpydDB4MEZnaDY0QStSTm80cDN0UzJIZDRDYWo4aFNrRU8rK1VzU1kzQjVRY2o4MHEvYXpiCkYyN2xLaVpCUzA5WFhyRDZIMkV0Y3U0QjN3L0RrcWxoWU02bkxSUW9obnRBandOWklNY2FHL3NNa0FVYWQydzJWZ2d4QXZLbldMRE8KM1BnS3diWmhaNG16UlRsWXlkaGJVN1lnV3hxTjlSc2V1UHJrc1NRd1Nnekd5dTV5ekNpWm1nRE8rWGpKZDUwQVNJRzh5dCtUc0VDVApGVzQ1cE9IeUVOcFU4b3g1YXhnQmgwWVpLK0FkMXN6ZnMvRDNFbEhZRytZWTM2MmhmWWxQMkh4RXArZkFEZk9yQ0pzVis4S01EY2x3Cm14VnJuc3JaTUxGNjdxZDk2alYxTkhaeCsvVE1tZHMvL1UwSXIzU2hHNGVCdEJueFhpdWRwZzdkY3Q1QWZBZzdaeDAxMVlwM2NPbWMKMGlZNmc1QmlrUHZCTFZnem9CeWxLcjZMc2VBK2xPU3JqdVF2dFVBT2hhRFhibGx0eTNtdzBpd29YWEFBWVFLODBtWVM3aE41c3B6YQphdGdZa3JENFJLZ3pXMmovbG8xVmtpVVB0MDBrTTZaUUc3c1pXS0RSR2ZkS2E1NFlicGJZTGpnN01LcjV6a0dFWGNnWnFFSVBOQjhPCjUxK1hZeFhSK0VBeVBGTW8xc2hGNms5TGlXZGhjT2NKcDdNcmUwdWdZSUtENHpHNmhrZE9UT2F0YyttSTNGOVE5QmM3SFRnVGZuNHIKUHB3RmtlWk1PaUlmVy9nY3VJZmdqT1ZrbGl0dWl3M2Z4bDdENUpiNGdpNnBraTFHSUpnSlh1L0w3ZHV3YnJkd0N6eW5KeE1kVWhOMQp3Ri9zby90S1J3NmNKaXdvS1pDVzBYcUpsdVRjRm5zRWpGV2dHRy9xVDR3eTk1ZmtWRmhoeXQ5OVU4YmZ2UEZlZUJHMGllaHlZdTZ0CmxzWjdzTEZiWHFnSDh3MGlVTXhGVnNnQWFEU1BMYXVwTSs3Wk9iQ0xJRGIybnR0NFdXTXRQUmFZdXhCb1krMmNiRThRZmd2aElEV1IKMitnY08rT1Vab09FczZXNjYxNWNuM0wvaDBWcWdieFRPS3NWQS8ya1Q5bXZobWFLY0QrVGRlcWk0YStHRmU3YUJGbytKTjhPTFRnQwpHODBrTEdRVGR6aEdJNHZNK2FxS2xteGtrZjQybnZSSENnQUxMN3pEdVE3QlJlYVhqTC9qelRKU0ZuYXJSSmdMUXpPUmpZVEFPZ2JQCkxEdXpaRUF3VnBhN2xlWGFuNW10OUpUQ3FpUmpITVRIRlhsSGtKcERWUW1hOHc2ZVNHOXRDOWZpNmJLZ0JXWUpLMTFTMm10ZUFHUjMKWVh6UlVlSWpodHdhNytzU1BibWVYenBueTZCSWVhTVEzak9HQnNQQzMrZDFZWWI0ckxTL3V3NHJLbk5BY3R3NEVyd0RJWTF1YUJYdQpEQXZBUEdmMWpQWTNMcGt3MEhzWHNhenhWNTU0enFUK1pJWjNZKzNxd2pjaEN6WWVKWkVabEk0amRzbzd1NTd5c1VQYTV6REFoOXo1CmJsYnVUNVpvbk0zODN1RUhCaDl5bHJ3dnBnVmpEVWZMeE4zNGxtamY4SHNFcmhoR1MrWWVaVy9lZXdlSzltdE9Xd1d4VG1icklLUlQKTGRqdWJkd2xMTHlSbndack9vVkcyT1lTdzZaNzZXK0lzZjBOamZ4K0VFTkFnRVM3VzhSRU8yUFE3dWN2ZithR2ZTSjhZMWpiZ0NQMgpLR2gvWTVFamdoQm9XSFJ6akw3RVFBYkRVd05uTHlNb25LVnFyQWVGUDVOd3BBbTZhaFJQWkZXd2xvM2VIczFya1I0VnQ4QndTWTdOCnhua3NqaEsyYVdHNkJwMTZpWjV3MlZUd0ZVYStaVGMvM3dNN1lMUS9SOHFjNzVGcGVvaVR5MFdUMEZmV25IK0JacjUzZGlVOGpUT1YKTWxIc2V0QStRUWMveG03SHhYdUt3bG5lWlhCWVVKK0RET0tjQWVqYmN6R3FtQmRDYzFxSmNNL1NuVzNucHBvd3prS2tmV0FnT2gxegpuNGNnRVp4cmdyWEFlRlR3eFhxdGZWOVRMbHV3R2t3M2QyMUJ0dnk1WkFOY1h4dSsvbGs0YXhRaVZTb2VBd3MwN2s2UXRpZEdSaEN1ClZYTllUaHFPYWJyaHRBU3NML2dlTG1rc3ZyN3pxbWtNOEdGWE1Qa1ZDT2p1VXdDTVVrTW92aGp1UGNrcDAwOWI0SkVEODdrY0pZYkgKQ2dzZ1k2QU51MFd2dGVadVNSMDg1TnJuUzZBWUFVYkxKMVh0cjFjQ01OTktNVEJMUGRCMWxwUis3emYzYzlCcFA0alRlQWE0S1l3RgppMEt4ZU9mcGl1NTQ3Zk1jT0w1STlwQWJObFZqTUlGa2ZZVGN6Tjd0SCs0UDI3V0tSWFBKbmRlS2d4RVNrekhReHlSUjNBSFhWKzVHCklyK2RiSUZ1TDhVK0dXWnFHdWFLOUs0RjkrcTdBL29iek01RU8rdkN2d1ZuT1NlWFlUOGhCa240MVdhY1RvdWhIMTZJMHJwbEJPR0kKeHZHaStFQzE1T1dldW1nMURCTGg1VXAzcmpoMGhHOWphT3NyY3ZVRmI4VSt6aWIxT29xMmxsTkdRRWNIVzFaN0JHSFQ0bHRWc3k2SAp1N0x1YUlHN1F5NTlVQXp0ZHVOTEhpK2Q4eW1DWFVHcGlzNWNwTUZidk1ydlpYaGU1ZXFxOE9mRGxIRVdMbjdIYnZ4Y20wM3k3c0JqCmdXem8xdmFoYVF1a3kyQ09yTUo0QlBSeXRwT0RCUmVWL3BLL3RwNC9Lc2pYd3BYM3BXRUlWUkRaN2hvZ0FqUFd3S1h6cGFYYVBtZHUKRVlTSUZPMVZsMmdRdFhYbVdtQWlHQ3NsUkhWck1OU1hJZWNRWDhKREJCbXJqMlM4WUREYjhJTktoQmdNVDI0T2NNQVlNSmM0UnR0bgp0VDI1eWllb2NOWTFCRW8rekxMMmhWajVXT0FOSGRnK0wwUDdxcUhqQ3lkd1VPNE1oZUZxR2VzTU1tSHRGY0ZlOGFFSXB5TUgxczYxCnJuMHdiR3E4ZVJFWngwRjRmUCtCUm9NSEVTM1VmbTVrZkZjaGpTTS82R2FGQmRKdEtHWk02b0JCZmZSbkU0UTZodzJnVFZ3Z0lzYWcKZXNXQnc5am1aNUF3UEk4eTNqZlFzczl5RC9iRm5JRWVRZUhQN1FET0ZmY3JrM3hvU3d0TzU2VHhxR2haVTNoUGJUamlBekQzaHp2cAo0eHNMNnd0MlN6SHpzWlFoSFFOTEtEeUsrbk9CaUNJc3M1eVhRdWJTZmlBQ3IvMFo1N0ZBWU1vSDdOeTc1MVRpVFZzaHA1WUtsNjl4Cjl0aHBPRCtoaE00SzFuVmRwRFpkNEdmYm1NZzFJK0RBRTJObERTTmdLV21zRk9leTNxeUVscVIvN00xRVVhY3cyVVR6dEpmT2VJSFoKQmdyMjFKS0gzRFltZkxTejl2ZTM4VUs5NWdPZU1vYXYzcy9NVTVGRzlza2s4U0hNS3RWZXNiZUdLWXhMVnB6anp0OXhSS2czbExCYgptNHI2ODRKTFVVVEpwN080Sll0QVJjbFVjdWxqb0lPeldtYzJya21GNkJzVEJSQUJtT05NUXNZcHhPb1RRSkd0eUFMWmRVdG5tOXdqClVJblhvS1JrQkR6bmpMMEtVS2U0ZE9sOHN0cWFnQzBDN1NOd3RZM0lPM0pndmlha3ZmVmJhVGEyaEF4ekNvZFordz09DQoJXV0+DQoJPCFbQ0RBVEFbDQoJNHhYTGI0VlRUZmw5eVlTeVh0U2prdktESzZ1OGM0UXNqWFVic1MrOGNRK2RJeGFvbkhLTWRtYjI5S25NTG0wM2E1VXJLbjNNQXp2MwpWZWFqeTdTMW8zUDlZUEpMM0kxMVJPQ042aXBKR0t2eGxramFqUmxCSmpsVlZPb1ViT1hDOGxWc25sUzV2MTZnYmRBQ0krRHJnZHE2ClhQamFBbnNGM1pIZG91Q0R1clkzV3kxUTVrSFdpM0FkUXBvZ2tyU3pJNm5jK3lhMERWRjNRTzltNDZ0MUNtV3FGd2dwWDFoVGhRMkEKY3R4MUlUeXFpSncrSnMwWmcwNjl3eUcxOFFrS1hWK1M5UnMrZkdDNmRpbjk2WmNka3pxSlVzQzVHenA0K0dHaG1EclJBY0RDRzFISQpZWHZncW1mZXI1bmtWaUFBa0ROQ09JbGlnZXdZMWRhV3p3aGtFYlpYd2JkYWd0NlRPWE1nQUhQRG94RHVmbUJacGtvSEFncldPL24rCmxvNlBkR1RwNStxNW5reG9xTVBWVTdyOTUyQWg4eUdwYXJhKzhMbWtjQnUyR3o0bDNPY3pyY3VWQjdEUWZlMTduM3FzMmtaWUlWRFoKNkRNcmQ0eFBjY1hDSDg5amZNa1Y4eGFiekNzY2ZCMHF6RmN0RmRlWFB1eFArS3RxbUF0TDhtQlRrSjhGY3U4TjV5UFRYbUNReW00cgpHNS8yUmR0SW1pTUhscEkzVUhkdXdJeG1pYzlJNXBSK0JFcldwRlVZVXVQRnNmYVplYlNKNW85MFNoQ1d6SVNiS0ltUG0wU3dZSjFQCjV0WUJnNWZKQkV2TjFLVzEwb1p2MHVNNVBhclBWKzIwdlczQWROSDFHTmJqY29laEVJWjc0QzZwWWJDTVR5eVhzLzFDWjlGSlVSVCsKVnA3TGoySkw4NDI0M01iMnVMS09Cem1lRi9pa21QTjFYZ1Jyemh2SmpuMmQrN0IzWktLMUZ1RmR2OEx2YU40d28xR1J5L2lvNkt6QgpKdkZpeU9XZnNzQ2N4U09wZ1ZRZmJ6RjZrVWNYNzQ4Y09KdytpUGQxdWtmSjdsRE52akVqdkJQTW5WMHNXc0hCTTdyaEwzRUdzNHd6CkpDUE03NGJLYjVKR2VGMUgrL1JRQmswbG5HK1M4MndZNFNNWXRKVjhqQ0FzVGZLSFc2S2t0ZXJhS2VPc05VYmF5NWRPNHRpNVpWTHIKV2JZTU5LeVpFWmpYcHQwT1Rlb3ZQbXViamF4dXI5eEtOa0dDdXNCTUNUZHh0UlVUUnc2Y3kzeGl2aGh0WTAwY1pRbGZVaGFLWjJ4MApxZHhFcDMxSzcxdW51OXVaNEFYcW9ueE1jTmRwdTh4cy9aQmhGMXZWWERRWEV4WUV2SlB1VFJBVXNzRDFNejhHOW9pRVY5cUQzOWdkCkdoQ1lDWC91WVhNTFhYL1A0elhBbC8yRkMyclEzdmxoQ3NwUzZHYTc0TGJZZGE5dHVnbEdtOHZDSDZCenpubVFSRVorVHErRWFSTzAKOFhZTmUwYktaSlNKa1NKV0NDK21idkNtUUZZK01NMkRadXNTQjR3QU1DUWJwY1hMQ0RJdlkwbFMySTZsTmlUYmtwRVduRlBDeXowWApRNWNwbTREYnpUaGVjVkNTZzI1MGRLY2NTa3QvK0JMYUpTRlJVVXBrWjU3S1VPVk8vVEdQRTNBb20rVEVpZFBDVGRtTVpLUGt5V1ZOCjE1bTJkeGpkZ05uOUtBUFJ6WjJsK0J5TEZrOEFpdXVuVms5Qm9HWlhxbklPL2N3RUJuZ0RYMmFpaEsycDA2S3pMSElyQ1plMUtzdDgKWWhSdGc0SXNnaXlLWUVoZHh0Y3M5eWx4dFUzMFo0RjhGZFVkWlN5Q1BOcm5OQWV5Wm5sa05jdGRMQkVCL2VHVGsySHdpYVZRSWJFTQpweFF4L3VvTUF2M0IxU2U4eU5tSGlTY0xsazFRTkZpR09JWXlLNkpvQk1xelpJRmFlMCtadit5RW1XRWttMmdwbTJMSWJPTXo1cnA0ClF3UjZ0ZHhaY3pPMEh2aTAwNFl2MldJYW5jemJocHdYRllBcVJMYTRTNXM1SHQ1OWVzU1FyeWZ4dVV1MFRlVmhnWm5rSUNCUldQRUUKd09DbUNxb09ndjJ4anpYdFBMSFhhQzFXbDNNRGdWNWtCTmJtd2tjZEI4TU1wUkZpTGtwM1ZzaEZISnRUOERrSXdkNmFXTGd6VXg0dQp3bW1iaHF4T09Zc1NyK21RRXNBSVFrTEozSXJZWFBpNFJEdzE1dHlCTkFuV3ZUeDBJSUJaelVDa0tXc1UybDNkeFpKZUxaTSt2UStWCjVXVkFKMnZYMmNJYmxKMUZHMU14OGRLa2JkcldsLzd5cnJaSE9nZFVYckYwbHhrcGxSTjNsT09yRVNpOVBvRm5sU01IOXJ1QmRyZHMKRWViRkk0c21BSEllRWxSKzJOMmFvNEJXdnF6aHNsbkJDNG50d1FBTWpwSW9KWnVNWEIwc3MvTTAwcjRveFlNRmh2eWxSSXRGZ0ZZWgp2Nk1uWEoram9aMVRZYksrRDdSQmFPWXpWNGVXQk0vQjNOMGZBeUEvRWVEeVhuTjk2YlUvc2gwNm9KOXFMdmxkNnFORVlpbElZSi8xCm5KTUtwdDR2UEk3QXUyOXlIMHVjcHo0bFJGUldScm82WjNqQkFmREdWUm5OaThLa1hrK3pkNWNRcVRmc2NUSXRHaFJtUU1oN2hYd3gKcktjSVRocVorbXhpSVNJRmdHeUlOWGJ6WXdSaEsrS1luRnpGeHFQY09wc3dvWnBQOTA5UG4xc0V5c2R6NHc1bHpRdDViR1ppZDIrTwpoaWpXVVh6TUFlYXY4MWRUcEJKY256SWhxZGh5ZzhBUURPR2pWQkJCTURlNnpSVGJ5dmtjeXlsdXFBTitaQVdibVhMalUxR0YzUUN6CjdSVXNYM25ud3J4OFJ2aStzcEtSWjFIb1lwSTVkcG1RY05pTFRBeVU5bFlpbnlZb056NWJGRTZ1akRQTm9VR2VsUlFPZE1mc3R6NWsKcitBc21GRjRoTC9YbnhmK0htWXdNQ05RcC83TW5qQ0M2QkVGdzJweFFVK3orRGxyVjBjaHJBRkVXVXVaMVFhS2NLNElrUmhGR3FsRAp1Wk10Q0N5OFI4YWR3UUNZaDRBL3pWWllCQWMzaFkvSExKVDN1cU9OS01rOU9OTWNXc1ZpRHpVcDd6TFVMdmtReldudkFHTDloZVFYCnN5c2NibmkxT1EzRVlxVm9LTGJSR0VlRThkZXFYVVNvUld2c25VWVZXOU9KZGN4d3VzeHFnU0Q0T1RiTU82SEkyR3ppWWJUOXdtd0sKYkh0M3I5RlljT0N2ZFBtSDZQcUVkOHk0b05JaTg5ZjF0RFZXSHpnRVJaWk02QXFZbmNjYnJsMk9Uc3cySVRsckFCMUxiWDJYQmNXcApGVzUrNUQ2aGl1R2NRcHlWMFZJbzJDZzNMMlYvbW5LR0JYNkxoakxyV0lxZEU2L0lRbUt1M0R1ajZVNlJ6OE9ZUlp4U0lSY1FaMHFtCnkwS2M1SVB5aEFlMityektxWTAvUVF3NVh3dmttdzUwcWNXbjB4UjhjNVd2cDlteTdzMkJ6TDg0RStYa3hRdGdmSW1kOWdhZUJibFAKMmVXenlaTVE0T1JIV1NKNElvSVU1cWJjL1JZc3FUZ1RRT0ZqMFFzWFFPNEl0eFlGUkJDeVdXWitkcHB3b1paVFY1QVAxRi93VnpuWApWNFZQNE9RT3VXVHQ5d2thL2MwcG1qdDhiNGZNZUE3b2N6VFFWUW9MVEhOT29oVTg0cVErZXdRdUJvYzJBbjRveFVzdTdZTXMzWXpnCmRhLzlGWEM2cE9qa2hyK09xMTAwZlRILzdRcWZTNXoxMkVJMWZBSlpUaElCc0pBQ2k2NHJIRGpCVldTY0Y0WHZpaGNxem1mcER2UUkKZEJsZzNMTnRYazRhbndEVk9TUlFKQ3UrVWxpd25FWWxKRXhPUGg4Z1dETUZWZ2tycEw5eEdsSVRJVEF0L0pwaEpiSUlJYVdaVjhJSwoxRmo1cWgyY0U1UURxcHdUUmxORU9TTlF2RzdKdEdoaDRRWS8rNDBMWVUrbGJwbjVJUlRldmg1eXJTQ0N6TThCdTMvVDVzWEpta1RtCkpRU0FDNTlvMWFXcktVU2M1MVZuRFBUWk5LbFRYRDljZGN5ZERST0JCVjlMejl6UkZZRDhva2h1azEwd2duQi96eWtnQUl1U1VMa1kKcWdJOXJueTFOZHlKS1pJb01RM2QySEJsQmFmbzVFd1NtQWZjTUsvOVUxdEZlT1lxOTJrWXB0T0wvMlB2YkUvVURwM2lHaVN5d2czeQpmQWJZOElrbUJ1YXpnRjZaazlFTmJBNnZHTXVPUzIrcTFlT3prOHZnM09MNm5yNm9xQXJKS3p6T0NRSmM2bms2S2ZLVllweEdqakswCjFQSUZaT1VQb0J4NWt6VmNBalE4RmFjc0pCUnJBWFNBOWhja25VaWtvdjd1c2JzMGhEaDk3bXE2VWVZUkpEeWJwZFBsaEErMnhUdVAKR2RlZjZEN1RsZHBKUUFLTFRLTThZa1hCYm5GMmVDQlFlL3UxTXczSXlENUhPZEVQcHVwek5wbzg5UmZldFQzTjF2bXM1RjB6bkFpVwp3TjVqVlBnekdDZlFEdFpqQXZJWmxqYWpDSUdjYnN5N2dVUkFPczRCWk0yZnZ0OUwzSnllT21PZU05aUg2ZWFhVWFYQk51dkNSeENvCnh1SnkvQkV0dkdsUzhCbVhuN0h6MFQ3elQzalN2NmpHbmg4NjR2cUQ2N0lqcWpUZUlzT3pKQ1FlZENlT21mU0haOW9tN2xnc2VVY3YKOWZmSTNEVVpCRXAyNFpJZVVGOTh5V0xtSFltUWZvVURCOGFCbkpwbnhwV1FNMmU0RHVsZ0tkWGp1UWZQU0VVc295ZllDbmF4VCtNNAo4bSt3VGVTTzREZlkwb0szWE9tQ3BNZHlSMUNpZFFmVUxLYkkyblhBQ0xSUDJzSzN0RXg0R3BMdllNeEtYc0hQc2sya1B1Qm4yYlJYCk1WS2ZVQlBBSVJrWDU2ZENvRTlBUkM2S21YaTV3ZFRlR0ozWUhCRHNjM2R4Vm5vQyt1eE1ibnJPVDNNUVV2aWxMbUNjRVBpVUFESFEKNXpOZ1BXRzZYMGZoNWFLeHZHejhjQkZmR1VhdzVyeHVRWkhtQ0V6MG9mbnNWeG1JbUphckh4SW9zQjBvRFJkZFFyNy9HWG5oN01LYgp5dnQwN3NEK1lqMWZMcE9adjdxUk5WekVrc3lpYS9uQlhJSFZNMVpPcFl0N3dLYUt4QVBkdmFDcDlxUG5aOXlwT0xjaHMrSGxKZW5CCkNiK2NGTXJ5YXhiemt5R3l1eVAzQVpzSWpFdldaNzlUTTdOYlIvNXB6cEE2bFk3Ri9EUW5CemI0WFZWbTNpU1grU3VuOHpsWkdNNlYKeFR1NHpDUEZrNU41VEhlQTN5Y2lOWXdQc2tiNHQyUHp3ajgyNHRPZ0U5Z1hkdStTRUpCbk5SK0ZreXpLZEJFZUg1aHFMVHhoTzFIYwpkOE1uMTZVem5lK0dUMnFnWE5aT0JHWWgzWWd4ODdyQkRZYUUxM1NUYUVtRG1UOHArL2VXTXA5NHlyOEdONFUxdkFMRjkwZHc1WXZ3CjhpZm5PblZKc3Z6empab2xxUmFDVTM4WTVWOEZkamxCcC9HeUNFeHNXaVA3QTZwKzV3NmNwUDZwME55L1laZjdqSytjMUIweGUxSkMKdXRMNVBRN1puL2o1QXhFbmx1ZUhnS1k3eGoyV0RjbUdaSm53VzZ4Q2VEZVQyN2c1RFVBUkxJWjgzUnZUc0hDZ1dlS3lEU0lDeFc4bwpKb2tJdC9qVGNJT04zL1FVM2lRVll2dW0raFUyR1JPaXgvaE5XN3h6WDdEN2g1MXRWSlNOLzduMk1CL1BRUWxOZUl2SWZEUWxSNTRnCnNQQldlbmNVbTJxZlpYWnExN2RpNitJNVF3VjcwQ2djNzhpQjB4RGVKMU8rM3loOVVBajNkd290TjZkdDFLamQ2WXgvMnhkVHhiR0cKRVI2ZVFMRGdrNzcwcjM5TUkyRzVhYUlRQXUySk1UNjd0YlladFRucG5uZXhrU0ovTkJQRmtYL2pMbWliZEgyQW4vZ0tGOWpDeFExTQovNXNHejdUZ21HS0tjN2VvMDR5QkUzaDV6eXA4dm1wbjVqOTM0RlJ6bUFiN25URzRVZm43SjRYbTRFWmp2SldlRFZCWU5IaDkrYlhBCndsc0JkY2hyUE5VQjFrdVR5TjFDRjRiT0hUZzhSb3ZCcHh6L0VSNEpwY2pnbzlrNGp1Z3grYUoyOTlQYXl4L0hQczE3WUY0ajhPVGIKZnUvNW9OTWJkWHF2Nm5VTHBuZm40eC8ydnIzQVgwUmlmenIrNGZHalRoZlE3TjN6SDJ0ZjdOMTcrZlRvMjM2N3hJK0huZGFvMCs4MQpCKzhXL1hDL2R2Zlg4MjRQZnFwRHR3YWQwOHRST2Z5MDl2bmV2UWVEUVhPaVJPdDFwOXNlbEQzOFhkYnVQZW1Od20vNHoramRSWW0vCjNRVk41TTZudFh2Zjl6b3RBQjhEM3Q2cjhhSnZtOTFMVy9hWFRudjBlbkhoWHZPY3lrSlhYT25QMTVtaTEyWG4xZXRSWlpLNCtJM1QKMUQvOXVXeU45dnVYdlRiMGI3Ly9hMVVDejJpK1FkSFJzREtWWTNWdW5OUUhUMDRlZEM5ZU4wOUVWUm83YlNpNWhDWXNjK09rVkorSAo3eW9QenJ1MXBtUEp2SXpvK0pYL0x1N3V1b2pKMGVYZzlMSmI5bHBsVlZiWXFoVzV3ZTNjOU1EQ0VhOHFQYWZOWWZsb1VQN25FcGhRCmZicE8xTHB4Q21WVjhucVg1ODlhbytiYnNycWNqS3ZjT0dHOS92R29NMm90Mlk0RGZVTXEvVjJudXdLQlkzVnVuRUpjY2xXcEc1VEQKeTI3MWZaeUxWNUZBYzdvdUZuUjk5bTRVYmNybGR4WEZTZWp6QXZhdjhiaDBla3NXWUx4Rlk5a2JuMldkWGxWYStoZmxvRG5xRHlvVApGQ3JjT0ZYSC9jdEJxM3c4YUY2ODdyU3FEOVlLWTNXTGkrZWdmMzdSSDNaR0s2eWQ2K2dIYWNsVnUzRHZzRHlyM2Q4ZEFkZVBvdDBSCmNBYVZhM0lFVkxzajRBeENka2ZBV3hHVFo0TW1hUHZkYi91ZDRaWWRBaXRiV2piekRGaFppdXpPZ0xzejRPNE11QT09DQoJXV0+DQoJPCFbQ0RBVEFbDQoJT3dQdXpvQzdNK0RIZGdaVVczY0dYSUdpVFRrRHdzRm92M3hiZG85Zk45djlYN2JBUTFhWDIzSkFXb1dTclQwaVZkYTBoNlAyWWZtMgowOFFPcmFDS3hwVnVmSVJQdTVkTFJQMEgwRVZ2UlVjZ1k4dTJhUWlQbTVmRFlhZloyMTg2Yk91b1lGZGVTZTNxWXJHOTFvZnZkbldwCjJQNzFGZ2pwbjUwTnk5SHkyYlI1UW1BVndiWXBxLzhaamRibXJmc3VhcFlZWGRqcWQvdURMMzU1dmZTSUUyK3E3N3JWclkydTlJM1AKdHNvQko4UEx3Vm16VlI2M21xdFFOVmJweG9rYlhwU3RaNWRMNXQxT1FveEppQnYzRFZhZWdEQ1lsOTNtNE9HdkYvMWUyYXMrVHRNVgpiNTdLVllrODZQZUdvK1lWaUF3Vk4rbWtBc2MxK0U5Vkp2MVdtU3UvM2NiUlU2eEN5NW9mby9VS3BIendjL1MxcUNMUCs1M2U2R2dWCkE5UDEyQ3JMWTdkaWo1eU9zWG5hMFpXT3F6dnZ3MjE0SDdaVUUxcVJyRTA1TGwzQm5iSXVNcUh5YnZGbWlVNFVqUVVXdmZrNGpNcUUKTExHcHhJU29kZFk5MzZUVkNVblhtcERxZTh5YjI5aGlWcFphNjc1bk5nZWQwZXZ6Y2xUZHNiMUplMmUzTTNyZTdDdzdpMjNlNXJtTApTS2k0aFc3T09YcDFxL2ltak9mVGN2Q3FSRTV1bmtxMHF2elk0aUc1dm43c0FvOCtqSTRsZG9GSDZ4OTQ5SEZkUGpubzk3djdnN0w4CnJiTHJiWDBEckZhWWpPdHVHYTVNeU5iR1Y3VTczV1oxZi9BbUhYa3EyM00zNjZ4enZaRlY2enBHSkEwckVuSWJRbEUwS3FlRkdEVGIKbmN2cVd4Y1h2ejBWdVQrNGVOM3Y5bDlWRnVicmMyelpYdWwyL1hlWTFsWVVyTGxNcTM2TGFTZlRkakx0S3ZyM3RnVHlubGIyaG15SwpFRnZoQnVPYUM3SFZMZ0t0SXNWdWFjbHZhdmp1OXVZSXFMeTdiR2FPZ01wUnlic2NBZE1FM202T2dOUHFpcyttYkV6VjVmbTY3MHlWCngyWlRkcVpOenRxd0pOd21FZ0tyM2JtNHBjc1dLMHl1dFE5b09hMDhOanNodHI1anMrNUdnZ2VWWFVFSHI1dTlYdGs5THJ0bGF4VWoKMjNURkd5ZnlSV1UzMFZXSm5LNTRhOXZSWVdkNDBXMjJ5dk95TjNyYXZOaThQZW04Q2FncXU1TTM0cXhVNC8vV3BqNktzWTlWcWFaUAoxZFZ4TG43emdyS3lzV3RqTnJIcW9uL2RON0hWY21sdWdDWitnRGVrbjFZUUgrc285cXJmejl6RVRDbVZyU2tiSXdlcXI1NTFsd09WCngrWWE1TUM2ckw2emxZSzd6anJkN2lyQmE5M2JVRHFXcUFlUmZSWWZwYXB1bDdXbGIvN0dTbVd4RnlqenpYOUwvYTlJNFVTdFd6RFEKOWlyUHhHYXJkWGwrdVR4S0lpWXZxbkx6VnZYS3M3SmRQVW1UTFh2anRBeEtPbWhWSHFwMnV6UHF2RjFob0h5RjliM25kamJvbjFlWApoRlI0ZlQwNW8zNzFrMlQvRmdocGRuOXB2cXU4Z0VBMUdqVUhLNmxTdHZ3dDNHN3JsYzNLMTRWYXpXN3JhYi82bFkrb3dpMmRUSnE5Cnp2a0tFdnFhN3Foc2R2cTdlcjR0WVRPdFhkak11aDZGcWcvTnBwaEVkbUV6OHpidzJ3cWIyZmIzRmF0blU5c0Z6c3l5MDkxbTRFeHIKNndKblZwRG82NzQzN1FKbjFtaC9xcXlOYmtiZ3pBcVRhKzBEWjFwYkZ6aXpSVUpzRnppekM1elpCYzdzQW1ldUdEZ2pQcGJBbWRiVwpCYzZzSVByWGZSUGJCYzZzazlqYjZzQ1oxdFlGenF5d2V0WmREdHhtNE13bXVJZzJKL3huaGFGY2RWTGUwbEJ1Y0xMQ0ZRTFNkb094CnVYazlObWNzcnE4ZnQ5dUhyVWtaK2VESnlTR2xDanBaemI2MFpVR3MyNXN1NldieVJLL3I1ZHVQSVQzUFRyNVZrbTltSjk5MjhtMUQKNUZ2bHVicVRienY1OW5BQWdJOWJmU3VSQlR2cHRpSFNiYWU5N2FUYml0THRvMWJlZHRKdGs2VGJUbmZiU2JmSzBpMTJHNTJzNWh6ZgpNaUZYbWZnUDRvdmVLQy9oYmhHdHNJaXlqM2tSVlNaK3Q0aDJpeWkrNTUzVWRPVkFRRXYyaXhWaUFhTWFONjZPZlZ5dmJUM3YvRnAyCm4zZWI3MDVXdTQrNVpYSndVSjczbDZXTDJPV2t3WTdjVms2YWlrSmtsNUJtTVhtM21aQkdWSitUdTR3MHQ1aVJabHR6bnd3dk1QdEoKVmJyZUsvZkpEVlBXNmJYTHMwNXY2ZnZYOGFoZGxNM1I0UXJMTEtweDg1S2pKdTdMcENZMC9KdlU0UC8zNFRQOHZROC8xSzc5UHNxdApIRnRXVG1TekxxclV6UjRwYnpwZWRvVzMxamZsbHNBV1BwYTV5akI5cEJjR05zTnpzKzRYNEpjdGhNMTBzN1g2NXhmOUlXZ1R6eTZYCnlLL05rM1lyaVlZTmliTS80UEhhUExsUTJZajRab2w5S2hvTExIcno5cGJLaEN4eFhNV0VxTnZRdFNzVHNpUXNKeVlrWFd0Q3F1OHkKYjI1ams3bVNncmJ1TzJkejBCbTlQaTlIMWJXQlRkMUJ0eTRINVZYVWc0OXhLOTBjOThlVnB1dW1ET251RnVMTy83enpQeThpZEMzOAp6NnZsWE56NW4zZis1NTMvK2NPVHVmTS9VOUdkLzNubmYvN2dkTjNnMnhzNy8vT0hWemZSQXkyVCt5dXBuanVmODg3bi9MN0U3WHpPClZ6TTNyUEV3N1h6T2ErVUFhSGZPemk2SDVVRy9CNnBCci9yeW1hcDM0NVB1WGRudDluK3BTbWUzOCtyMUNINnZ0ekFKYVdVeUo2dmQKL1BaYldieGZEczVBS1Q1ZTdTR0FzVXJyNjZheXdubzEyc2JxM0RocGJuMXMyK1oxclNFRTZ6MUVXL3dzOGM0RXQrNG11RlcycjUwZApibzN0Y0x1WGlYZDJ1SjBkYm1lSHUrSng1LzZyUVZuMjdvTWFWdDRIaWp1dit2ZmZkdnJkY25SL1VMYnY5d2ZOM2pJLys4NUFkOU01CmJpcGJUTXN1ZkZuSlBCZlZ1UG10TEs5TVdQTzN6dm5sYU1tTGxySGc1L0szWnYwNTdKQlo0d2pWcmx1T25UbTB4NVFqcHdGdTNnSUEKeWJUdFZocXgxV2FhNFVYWkFvVjVzTHNTc2RiMmpCVW1vUnZRaDc5ZXdGbHJCYXZ2ZE1WYmlHUllsY3FWYmR2VEZYZkduSjB4WjJmTQoyUmx6ZHNhY25URm5aOHpaR1hNK0FIMW91ckhHSEdmWkladk96cGl6M21mWm5USG5mWXc1dDZGbmJWdGMwaHBacG83ZE9XbHpUVk5iCmViMTRPeE56YkxFUjZncWtiY29GMUExT3oxRTloOEl1UGNlNkViTG02VG1xRTdMbTZUbFdEYUZiKzcxenUxTnpkRHVqNTgzT01rdjQKNW0yZ04vTTJ6bTRMdlQ0NXQ5dEMxMDJwV2ZNdGRHc3lYRjFKK2Q5dG8rdXdqVzVkZHF0VjlZT1BjUXZkbkVDQWxhZnBwZ3puTHF2Vgo5bVcxK3JoU1B4Mi9icmI3djN6Yzd3NVZUbnExUzF5d0h0ckJUU1F1dUtVZFpiTXYrMWQrRHJSZCtUVmFLbnJqTTZ3NklVdTJoNWlRClgyK0JrUDdaMmJBYzRXd2FsTzJWVnN5bUNJTnR6Q1gvakVidG96b2pYSDJpYnNxZ1h1R3dzQzZEczlWbTdkMGhidnNPY1VJbGQ2ck8KMDE4NjdSV0N5RnpwbXpjenA5VXBlbDJ1RXBQbGk5Kzhjdkl4SHJXdkljWHlEZE5TRjdyeVZLeXU1OStHbXI4S0pkVVYvVjgzeS94aApkdWFQelRyeDdNd2YvZlZVay9OdE1YOVVKMlJuL3RpWlAzYm1qNTM1WTJmKytJakdaV2YrV0hQengwZDJzQjQxVjRqdjJrWVA5dG1nCjJSbzF1OS8yTzlWRDRHM2xpbVBNTGQxMHRHdWpjaWFaMCthd2ZEUW8vM05aOWxyVnRldUpXamR2MWFzY3o5dTdQSDhHWS94MmhhdlYKY1pVYnA2elhQeDUxUnEwbGh0WFl1SUNsdit0MFZ5QndyTTZOVTlpcWJNbmJsTE5FNi9vQzlOWjJiSGJKdERjby85SUtRbjZYcm1neAplYmVacm1pWHJXaUZnYnE5YkVVcmFGOW5nLzU1ZGVGQmhXK0JuTW92VkkzNjFUWGovaTJRc3NzalJadjhMby9VL0R4U3QySk5Xam1iCjByVllrcjY3SEp4ZWRrRkYyRmhUNHk0UHpBWmN2bHZoakxFaHB1QXIzRTdibVdFWFduZTJMZ3B0QllwMlVXZ3pxTHgxWTNuWUhFK1cKWEt6ZmdFaTA2cE54dmVQUXF0T3h0VkZvbzRwSzI2WTVNSkl0OTJCVURoWGFPVENtQ2J4ZEJ3WXV1V3QzWWR5U0tyczdBKzdPZ0d1MgpoSGFud0pYNnNUc0Y3azZCTjBqVFIzc0tyS3lmN2s2QmEwUEgxcDRDdHplUXJYSkdpYzA4QmxZbWIzY00zQjBEZDhmQTNURndLUzI3ClkrRHVHTGhWeDBDOWRjZkFGU2phSFFOblVIbnJ4OEFmKy8zMnEwR3p1bEJlMnpOZ1hXekxLWEFWU3JiMkhGajVPTEhMU2JFZVYwZHUKNW9yc0dnL1VwcnphdDlrWk5uWUpSaGNSc3N1d2NldFNZTTBsV3I5Q1pvM05rMmtmTEYvSVRWdTd1NkIvMTF2OWJuL3d4V20zMlhwegp2MlpCL1l0bXF6TjY5OFVLWnVQaDZGMjN1aG5jbGI3NW1HbWtkZHNFeEVwRWJjcWFlb1FUY2ZPVzFQdmswZG5aVG0vRGRycjlDc1JxCjhtSE5OWWdoWlRFOTJFYVJ0OEh2RzFaTzNPRGVTVDNvOStqeDl1cG5pOGw2Tno3eGZubTl3dVhKcm5zSXZsNWg3VVZVVGxhN2NTSXIKQitNTUx3ZG56Vlo1M0dxdW92V05WYnA1ZjhGcWduMDEyc2JxM0RocEt6NC92Q2s3MXpZZGZWZDlJWHA3ODhLWXlrbW55aTU4V2NtMApIdFc0ZWZtU1ZoYWZ6ZDg2NTVjcnVGaDkrUnNuaXJhazI4eG1kQzJxMW1HSDFJaWpWWnpDMTVRdDROREtoU08zOVcrZTdyZFRqRFpkCk1ickN5OHM3RGVJVzlwZksreVlQNk1OZkwvcTljb1ZqMW5URjlkWFN1YThybnlXbksrNjBwNTMyZEgzYTAwNTV1amJsNmRndDVjM1YKbm5aUjFodmpLZGhpTmVrS3BHMXhIUG02eUliS3F0Q2JKU1dqc2NDaU4zLzlyREloUytJTllrTFVXaE95SkxsUlRFaTYxb1JVMzJ2ZQozTVpXczZwWmRlMzN6dWFnTTNwOVhxN3dvc1FtN2FIZHp1aDVzN1Bzc0xaNUcraFdQOUd6d1Z0b2RUbTMyMExYVGFsWjh5MjBPaUZyCnZvVmVTZm5mYmFPN2JmVDI2Zm9ZZDlETk1WWHZIcFZjWTgxb1c1ZmFocjRudVM3VFlsc3pJRzE5SXR6ZFUzNmJtd0twYXBxZ3pWUG8KcnVUZTJveU5acE56TzUwM0FWWGwzQ0tiSU45RkxYSC9uZlhKUTZxU1RKK3Fpdzh1ZnVOa1A0YXF3K1d4WnBzbk9GWVhpWnNpTitqdQowdE1LQzNBZEJjZFdKMGJaNWt1QVc3d1JiM1pLa1hybGM4bTY1eFNwYjAxU2tXZGJmeWQ0bTQxeW01cU80K3F6YnYzZE1kc1pFWWhtCmZSeXY3MjRpaGZHNm55dzJSVHhzY0RTRHFQNGk5aWJxMy9GeXFuemxjRlBXMDFWa3hhWXNxYzNXd0hGa1hwNlZnMGVkd2RhWlVkWkIKaXEvTE9JK2FwOVg1c0FrMlQxbXI3UE1oMm45WXphZzVWdWYyRW9GZDlsb3ZOaytvYk4xa2EyUzFwUFp4VExmSHUrbDIrOU5OZkN6QwpiZitXQTFYb1BJU1h2YjhiTkh2RHMrcXZYYXpQN0w5aTlQM09hSEpiUmhNN1lOdW9jRi9sTUxFcHg3d050cHhRTk42RGJ2ZmFwOXZtCkhJZXV0ZzQzWmE1dWFCam9kZlRoS2s5WTNYbndSQ1FuRDN0dC81UVZnalJDVHI3dDk1NERDc3JIVkxmZy9mSlZweGYvc1BmdEJlRlEKOXFmamQrZW4vZTdlM1FmdGR1MVI4MjEvZ0VKa0w2azlnUCsvL0dYdkV2NmIxSjd0SlExVFpIQ3FiUWlWcTh6RzdEU0VTYkpjd1FlVApKVHJQNFVPZUc1bnAyc3ZtWG9qeGVma092bndESDM0RzBDODFrZFNlMXY3NVUxSnJZd3N2OXVwSlF5a2o4NkltUlNQWFN0Zk85K3JDCk5FU1JLQ2pjRUZxb1dsMnFoaTdTdklhbHBjaWhqYnJVV0RHdDFZdUdFYmt3dFlPOUFCT3lZZklrcXgzdFlkVk1GMUJWSm8wa1VRVjkKa0Zyamg3U1I1QWJRaTZ5Ukdwa1NKRFdGcUxXb0R6cHpNSWRVTjNKcHBJVkFWd2tpbE5JQmd2V1NScEZMRlpVcUdsS1pCTnVURFNscQpkVUNUNU5pK3lCdENxQlI3N3JsUUY2SUJ6UnJvdW1vVXd1aFE3R2d2YjZTSTBPS0JocElpU1VORFFnRmRjY3V0UFFBVktiYnB5MmdZCnJWd0dxb0JNWlFvWmt5NEsrSVRNWnY3QTM5eGtXV0FoRG9kT1plRHp3WjRIOFhBY0VVZ1ZORUxhQ0MycFdxb05BUklGTXdZQkVzZW0KZ000ZzB3aFBrZVRZVmlOTnRDRThSYU1vbElsQktjNjFGRkRqNE9aWlVVdEZJODBLb0QwRHBoaVRJNEQ3azBvcHNZc2VCTDB1OGxSWgpQREI1TGNzSWhHeVJCQ2pzTU1EVUVCb0hENHFtS1l3YThBZG1weWdNZ1ZRS0k0VFRRSnZNQXNaR2dnR3RQZWhYWWxJZFFDbndRbVRZClVvYWpxbXZSSElBQk5pS2xpYUdnUHlyblVraGZrU1JwRWZDRVNSZ2F3OGxMREk1S1FRZUV5RUtuY1ZvbE1Lc2l3Zz09DQoJXV0+DQoJPCFbQ0RBVEFbDQoJY0sya1F1cEFmUjE1WnFRT0RLcW5NcXd4Z2tBblBZeVpEZXNPYWhwZ2dXakl4Q1FXZ1lHeFF0NklBbm5qeWVVK3d1QkRZYTJ6bXN5aApycW1waGxFNVRDQnBZTVVBd3cwc0NLVjFEWlo1a2lvSkZUd0VhRWhTYkJmNkM0c2lqU0N3SGtWUlNJbWdYQUE2WFA0UzBjS2NTZU9PCnNBUTYyRHZiKzM2UGhGZDd6OVR1ZmxwNytlUGVuWk5ab2dxZ1Z4UldVSE9HdUVMbzFRU1c3Y2xWUkJiV3ZJclFpamtTaWEwN0o5T0MKNjg3SnlxTHJ6c21WaEJkVXU0cjR1bk15UTRCWjRNb2lqS3BOQ2pFQVRvdXhPeWRYRW1SUWJWcVVFYTdWaFJudzZ5cmk3TTdKRlFVYQpUSm9yaVRRN3ZhOGcxT3lLdW9wWWc1b3pCQnRDcnlEYVlQeFhGVzUzVHFiRkd3elhsSUM3YzNJVkVYZm5wQWZhNjkwSHZYNnZWa2hECk1zNHBlMUM5S05JQ1dDMThzRGJvZElRTW1BYnp4ZVFGU2orR3dKQVdLcVhWRDNJQVZwU1lCZUo2UjZST3dtUkpaNEZ3a1Jja05MamUKTklSNGxwRnU0SG93RFFtMWFCQnhlS1lnb2ZsSjJvNW1id0hUTEFpd2lHSVlwV2syQkdCb0JJZHVpaFVSTUhRNTFKNEZDK1NIL3N5Qwp4WFduMlJKZ2NXZW1XUk5OSGVMTDl3Q0JRK05vN0d4TWdnWFdURkZUTU9FTlNFT2xZZlZSZTFKSmU0aTQ5NkpzZG0zSU5WUUFsRTlFCitoeE9vK1dnVnh4M096YnpLcHhhSGc4NjdiK1ZGRHQ1NTBTN00xZFUrQVdjWllhakFjVkhmT2VPWDhERzJyMzlmcjg3VnZKaEQrM0wKank4N2JYdllCZnFtMFdHV3pjRW9JSUpqMThsZXdiUEFuOERzMlduR2FXci9jalRxOTA3NmIrRjRGeCttL25RSmZEdDBpMnpPQVVtTgpuNCtTMnFzOWtCaEpJbkNQeFRXWDB3YzgyZmhQSUdhay9iMXVkd3FaNUxnbjRaZk1LbWcxcTVUSkd2MkkyR3dsM1BrTGxOQXdNQUpWCk1QcDd4RzNTWnl3SnV3Wjg1dnE2UmhoQnA2WVdqdmE0MlFKT2g2NDRkaWZxT1NwVkNSQ2ZDcWg0am45Z1dtall6VUVvRzQyYmVjTEYKNFpQdFNPTElkQit3WUlZOWdCNG5FcVU0NFRDNDZSQmFwRlRZRHRFSC9GWExyT2FyZ3FKVHMzeHpUZFFKdGU5bVlvOGIxQi84eGtpdwpDWXY1d0JKd3RMZC9pbXZnK3g2ZTBOdTFWNE5tdTFQQ05Fby9wVUd0RnpqQUlycnRJbXI3ci9DY2wrQi9VS21CM2hnOE5CTUFtc3NGClNQTmNBRWRlbm84VjFETUxTdEJiOWxzVk1lNVh3UWpuZWNTSXc3Uy92L2VuNzJIR3czYWl3elNOMkhRZU04OTlxTS84RkhOK2JFeVkKbjNYSDBMSGhuQnByT3dzT3duU1kvc3R6cDdzWFRha3d6OXdNNFFrU0QyMDg1QkdSclhtRExDc1BNaFFDVFcrTTB6a09pWmdjNUhSbQpRZFRlSmdaNVBzYjlLaGlGRWRFZ3o1SGNxZ1pUUVlEdWVRTkNXdHlXa0Q0WWxPM09xSGJRSExUbkN1bHJNM3RKUStzVlJzeDlza3RGCkZuVHdrMVowQ3diUUYrTUVPUjYxVWxMNTdUZjRBcnFhKzBybkZ2cmdrYmtQaUJUYWtxaFoycjhrNnZpM3FJcEZZMlY3d0Q3V3N1dVEKKzhCWW92NDdxbGpvZ3hZQXhjL3Bid1pyRGRRTjZmNktBZ3ZEdndmRUMvaUFyQWcvMXFNNmRZc0hTeFp4MzZhK1VkL09YREhiNlhQMwp6VmhXMCtIQkllVVAxSnFodjhTak9uVW0vam11NTdBZDdFV05ISTAxaVYwQU1UcFhQUUxOcUFhYXZCRGJyQXNkTmtmbG8wN1piVStyClEzYUphV0VVTFRLVkNnWDZaZlFoeWJRQzdSYktKSEJDbmZXQjFoeXN3R3FyTGlQVm8yN3NmZ01EakpNaDR6OFpEUmdneTNScWNJRnIKYVpUMmQxVkJNMDV4bjB3YVdacEpQYjNlNFF5SDJMTWFUYkhNYmpPRy85Z1pDZHJkSHU2K3RodlVNUDVGclZyN1AyYStlcUVYN2p6dwpBKzVjdWhhMkFSRDRDcVIrbHVHR2srQjVSTTh1a2NQQkVuZUdoVGoyRitPQTAwYllXNGllYzA4ZS9sV1dQaFdvdlpJV3RhQ0xaaW1aCnlWSXl6Vkl5ZFVUbUpWR0dtbmtkTFJKSUthcWpqbUwrSytiVGFvcEFySnBKYkk1VEF2K0tMTVhtbFNNU1ZhcjRoMXc1eXFZcjdNK3MKWU9MeGdsK2twVUphSWhMYmQvZEhMcWFnanROblpTSWlmVVdrRThSa2k0aFpVSEdTS0cySjBwWW9OeUR1ejRJcFNFU2w3MGVTR1M5UQpKRlZKTW90SVN0MTBFMjY2Q1RmTjB2RDNRMDIzSko1dTJUZzhGOVBVSlBGc215Zy9TWVMwTkVoTFFtSjc3djU4d01tV3pGc3h5WndWCms4eGJNYk9Jc081S083bEV6YkhmL2ZsZ2t5dFp0bDZTT2VzbFdiWmVwa2hLN055U2RncEpPNk1TLytjRHpTdVR4WU9pSnVENUZDRmMKZm45VytZbitTK28rYWJjMG14TDM3NGViVXVPOXo4YmhNMWJGZU8remhiMG5xeXJOSEZtelBMZi9mcWk1Tk43M2FIYmJ6azh2aC9ITwpUMVlZNnozSm4vTTlKMzYwLzBNV1Yvdm5ROHdkTllmN2FnNzMxUnp1cStuKzQ5elJORk0welpyVS9mc0I1NDZhTS9QVm5KbXY1c3o4CkdiM1gxSHVyUTFxZTIzOC8yTnk1TnM1Lzd3OFUvdkNkTkFvcGhmQXVDUFNzQ0kxbmNGQzdCVVdPS0s5MnhTdkZxMkRDcXZPQWpYYVoKYzk1WGVKY1IvRWZ5UVUzVUhseFEwNnJtbFhvOFFyaElsWXoxKzFpeGQrcitIUDVtaS9YMUNha3NzbkZkTTdWellsS3BJTFYwUnRGQwpXZFcyR3RaSmpXTWVWcU9YMjR0U3FDd1MvaWR0V0p2aHRoNW9CLzJMZHYrWEdlWjlzaDBsT0lsV3NQSUx0dktUcVZPamQwaVRsL3A4CkNuTGtJWFhUVVBRaEF1WGt0VlZrN3RRWnVhaVZxKzVLTU9CZ0Q3M0xOcmFnOElpOE5kVERNQ3dBaXVtQU8wQk13TVd3ME0xRklJK0sKbXl0Y0dkOG5CbEI0QnpWU2VEUk1IRU9ZZXNZNnlUSTBRTTJjc25kUmFHZEpWcGhQUTV6ZS92NkRWdXZ5L0VWLzVHL2FRdVc0WnUzZQp0LzNSaTdMVkg3UmhuZHQ1U0hvNC9ERXBuS0ZOYW5BUnBVVmlwaGJBd1lNbmo1MWsrTzZzUHpqblhFTTBDMkdPdHZ1bjVjbURKOFVKCmRQZDQ5SzVibm9TbW83bUtMYjVzbzhpUlZ6ZzZ3eXBtZnliSlJ1WjY3cWNkam5haUMrTkJNQ0ZzbWF4aDZBY1BDR3oyb0docUJoaFcKcENHM2lPR0RtMkYrSHVaK1Bwa3dvUmtSMXBOMkhpbzMzQVhYUjhUNTVMSTQyTXVuMWc1RG1BaEd5bFFhUDVVOFRaTzhxV2F2V0RBagpyTlFYTkV1RHFQVWZKSm5walNBUFJDNjBYWWkwQVdDRUM0Yk16S3VVQWxraXlhTmF1Qk9zMnRKK2haWnlNZDZJMnhwMnEyek9LdnZUCm5FMXp4NXNmcHp5TWs2djJmRzlxYVllRjdCZi9oSENZRWlEeGZoZUV5a3pZdElTYWxHRlRjbTZKN0l1MndBVWdMMW1uWk8ra0RKb3AKbGlabFZ4Q1pESm1XZnBNYlpSVmY1M0xSbHMwVE9GYWpsRTdnbUNRU2JXS3V3S0ZLS21IUnhyVkl0SzNZMG42Rmx2Smt2SkdQVXJRdApkbTZQTGQ5d2JrTlBxY3JSaTJOU2dUNVJBNmMxc3AzclBEVUNmd2ovbjNhVTBuR09GNUZ3aStoOEwrV1ZMUHk2U3ZCNFFlVzZNNm9jCnpWZjMzRkFueTBhTE9EVFBMOTdJc3d6RC9OeWZCUDFCN3M4V2U4b2ZkYnJuRXdjZGY5aFpjTWFaOUw3aElVZWtHUHdLekVNbGcxekMKY0VadHlCeGozUnpvS0lEd0EwWERIdm1LTTBDaDRoa2R2RENFTXlseVVsT2xrZVR5WXhDS1BTV290bWprR0VJOURlRnFjN1U5NVZhSQptcmxDWk43QStBQ01PaFUyK01nMHNqU25HQ1ZvQUlPSDRRQU8vUkVKbXRBSzNBSmtnWkpRWVNjeFVEblZqVlFxT2JPcVRGRFlwN0tXClM0bEIxWVpzZGhnSW5hTXpYamVVelBTY1ZnM00zRUpyYkRWdEpLbWt3S0Nza1JsUjBPYWxSWnJrczZ2cUhCRkxNalRqRm9JMUsvVlgKYUJBR1Jsc1BZMUlBZjZHN2ozeU1VUkFoYzliY3ZhZk40UnY2NUUvOFQzcHc4aDZWN1FsRHdFRzNjM0hSd2JkbXg4Q0huU0d1RVZmNgo1VmZ3enlYOG42NUh3Y3d1ditBdk5PZGZOSWQwcCtvRU9nVlM4akhKNy9KdGgyNHh2NnU5L0JZQS8vVERYU2U3Ty8zekU4Wk5wR2h6CmZ2bDZmaGtFMlhMMmYzazBmMVNON0U3WW5UdlVsOFBtcVBrRkxDT1o3YjE4OG4vKzY3My84Ly8rZCs1Ly9oLytQdi9uLy8zZm0vbDkKVHNkM3YrOSsvNjkxbUorTGYxKzJ2dDd2UHlnV1lKdEdvWUJ5N0s4c3RnRG1oZGEzYzBLTmd1WlExQjVkL3ZiYnV4cEsxVWdidUhPQwo0dGZyQkNjdlA3TUt6R0Ewb1hzY2RYcHZXSmJlSjRRbkU2aXNNSk1vUFpmcEEyUFI5ZDlQYWhJVHNmY290UDkwU1gxNWNFRUMvaG45Cit3cEJVMm9GM2hlWlVpd2lZS1JIaE9vemdYSDFNMEl4cFY1RXdLQk8yT2o4Y1JVandJS1NjZWNFMUF5a2FsVkZBM1M5SzZzYW9NdGUKWGRuQWl5bFhWamZ3NXRCVkZZNkt2WjZwY3R3NWVVVFRoYzV6WkpPWnAzRHc5WGZRQVI0OHFUMjRIUFZyZG9GMWZpdkQ2V0hxelBYcwpkRmdPM3BidEU5RHNUMnloWWJRc3dsMmJ3dDIxQ2U2Q3hNZWJKbW1HQnhyNElIV1NtK2dEZXNRVWhrSlAvbDNwdHJYQUF4cmVUSU1QClVoWTJmQ0dDSlJnRENYL3p4RTd3WE9VVUZ5M3NMd3c0c0JwMWtxb0FPeUtZRkVyRkZXVURCaWVQY0VjQTZvQkY1V0N5SVhEZ2pzWmgKYVVhdUIwWU9IN1RLTEM3YkJZWWdMdUhiSVpEMVBGaHlRa1ZQc1VjZVFhZ0xCek40WlE4WXpyMVR6ekJPMGFoUTVYd2NaaEhqM0JVNgpianhyNUhRWkxlbzBMT1BDNVBsWXIzR3RtandtdDJpSUxNdlNDSGtNNFY0SG1PLzFHTXlObzBQdUI4cDNJUnBpN21rMHdwNGNYekdRCjdIREhBQjdoS1Y1UmRLNkMzNVVSWXh5TVlaWklCZUpYNlRSaWhFSjVvTEl4RnVxR3pvdVlYVWQ3ZEdjMXlTSzJBcVRJa25qY0l3QXoKMElNQy95SVFrZWdSZXk3NDVpUDIrVzVHL1BQRStKcUJZSWM4QmpEL3BqaEYvTU9wanZjT1kvN0ZNRGUxR3lMbmxlU21QM1FpVitQcgpCcGNiYkl4ai9KTjRqem1McGlwQU1ySlBCZXd4aERrWVlJR0ZNWXpJOU1nOUozd1hZaW5EWFkybERCTVVwSXdubXFWTUJQQlNacEpiCnlFTVpNY2V4TUFZUmpiaC81anBpZy9CM29UMy9RTVRBYmpRdWVOQnNtWTd4RkdPSVpacEhTM2dNNHZnWHdUei94bUJJWWtET1hBaGQKQ1B6elBRM3M4OVF3S05Cck1jZmZIZSttdUlTc2d3MjRNT09zaTBGRW5nWU1PdWFVaGlhVUdaTitDamE5UkdZeDUxSWdKVWtqeHFVTgpvMENGQ29oamdHTmJBSG11eFNBa3plTmwybjNiZ1dXK2g0RmxuZ29HQlRvdDN2aTdZOWtVZDVCbE9VZ0VxY2UyakJoRWxPV1JxQ1RhCmMwQXBUQjZ6TEd2SU5FdGpqbVdnSjJUeFZtZ2FPV2hyT3VDTkFZNWpBZVE1Rm9PUU1vK1hTZWVtQThOOC93TERQQTBNQ2xSYXRQRjMKeDdBcDN0QnVLK3psNkloaE1ZZ0lFeUpzM1haNUN0QWM4N0h0UWVENlVXTWN3NWJUV0FoaTEraEN1MGNjQVJ6SEFzaHpMQVloYVI0dgowKzdianBZbDl6Q3d6RlBocTNrNkhkN291MlBaRkhmc3J1RFVGc3BIa1dleGhsZUF5cGc3UFlCVW9xSUJla0VlRkR6K0h1bDNESXJVCnUxRExLV2tCcndOdzI1RnlSd2NrazhXNm5aQjg3SEtJNGEvSzNJWkRqVE1nS0hZTWlmUzZVSXNwOTNnRGdObyttT1lPc1l6Vms0aGwKRFBLa3NlYmppWGZhVWNReTFxRWlsckdpNVd1eEt1YnhNaUJpbVFjRmxrVWdTeG9qOXNSejR4SExYQThqbGpFUnZwYW5uUEZHQUdiWgpKSGZHZExlSVpRenlwTEd5NDRsbmpTamlHU3RPRWM5WXUvTFZuUHJsOGJydkVjY1lFaGdXSUpZdVJ1b3A1NFlqZm5IM0lvWXhDYjZhCnA1c1JSd0JtMkNSdnhwUzFlRms2VUZnK2JwOE5DOHlwUHhIRFdFdUtHTWFxbEsvR3lwWkh6SUNJWlI0VWVCYUJMRzJNMkZQUGpjZnIKMG5VeFhwaU9qTEF3bVhhL01BUEFMOHdKL3NUYVdlQ1o5Qnl5bExFMnc2U3p3aE1ZNXRXaXdEQ3ZPekhJYTFlTTFnTUN3d0xJTXl3RwpFVjBlTVZQdUd3OE00eDRHZmpFTkRKR0JmWVExK3U2WU5jbVhXQjBMdkdJSUU4VnFERlBObWs3Z0ZhdERnVldzTVRHRU5Tckd5ZDhECm56ekVzeW1DRUQyTWsrbmxWZ09QdUdlQlI5eDNobmhxSGM3b3UrUFJKRDlpL1N2d2lDRk1UKzdGdnFXWGxadkFJdz09DQoJXV0+DQoJPCFbQ0RBVEFbDQoJcHdBRkZyR0t4QkJXb1JnbGZ3OHM4aERQb2doQzVEQk9KdGMxR2pqRS9Rb2N5b1BnSm9pbjFhR012anNPVFhJalZyZ0NoeGpDNUxDaQo0bGVjMDJVQ2gxamhDU3hpbmNqWGNUcVR4K20rQnhaNWlHZFJCTEZtV1llVDZlVldvNVhtZWhaNHhIMzNkWmhheGhtK094NU44bVB4CmxkN3I4bFVtMXVMOXdWeVdwa2IvL0lSM21OTmt0c3ZTbDBHUUxXZi9yZUN5aERGOVg0K2w4NnJ3Ly80M2ZIL2ZILzlyL0gvOGFmZWYKM1gvOGYyYk1vZi82TUxOdi9vOVgvYy9IN2hja24rQXN4OFlFdExKcnczbnpKcHdiRm5vRjk0YXRPT25nbUlDdTRPTEFtbE5PRGt2cgpWZHdjczNoblUzemh2c00rcTl3eDIvbGUwUUVDRldlNFFDYWcxWjBnVUhHR0d3U2dWM1NFVU0wcFY4Z0V0TG96aE9pYWRJY1E4Q29PCmtWbThtOC8wV1k2U0NlZ0tyaEtvT2NOWlF0QXJ1RXVvM3FURFpCeFkzV1ZDUkUwNVRRaDZGYmZKTE00dDRQSU1kOG9FZEFXSENxYWQKbkhhcEVQUktUaFdxT2VWV21ZQldkNndRWVZPdUZZSmV4Ymt5aTN2ek9UM0Q2VElPck94MndWU0owNDRYU3FCNEpkY0wxcHgydmt4QQpxN3RmTUZ2bmxBTUdTVjNkQlRPRGEvTVpQTU0xTXc2czdKekJtT2NwOXd4ZStMeUNnd2FyVGJsb3hvRlZuVFJJelpTYkJvR3JPMnBtCmNHcytZMmM0Y01hQmxWMDRHQVl6NmNTaHBMcXJ1M0V3SEdmS2tUTU9yT2pLUVZxbW5Ea0lYTjJkTTROWEM3U0thVGZQT0xDeW93ZXEKVGJ0NkNMaTZzNGVxVGJwN3hvRlZIVDVFemFUTGg0QXJPMzFtY0d2Um5qYmxESXFBSzdpRElwMDRtSFVpbFhnVmwxQ2srZ2J6emppdwpzbHNvS01QQnloUHB3bUlGMTlBTWJpMWc3TFRMS0FLdTREU0sxTjR4eGw3RmNSUXB0Mk9NdllyektPaTdZNHk5aWdOcEJyY3E2THBqCmpMMktheW5TYzhjNHU3cDdLYWl6WTJ5OWdvc3BVbkRIMkhvVk45TU1YbFZRYnNjRndSVWNVSkZpTzhiV3F6aWhJdlYxakxOWGNVUkYKR3UyNEtMaUNNMm9HdjVacnN6Rm5WM2RUUlpwc3pOWXJ1YW9pZlRWbTY1WGNWVUdGamJtNnVzdHFtay9MMWRlWW82czdzNExxR2pOMApkWWRXMEZCalpxN3UxQW82YTh6SjFSMWIwL3hacnEvR25GemQ1ZVYxMVppUnE3dTlna29hTTNKbDExZFFVbU0rcnU3K211Yk9jZ1UxCjV1UHFqckdnbk1hTVhOMDVGblRRbUpHck84aUNWaHB6Y25VbjJUUi81bk55WGphRWE0KzZ6eGRkTWx6MVJ1eGYrK2ZsWk5Mb2lVaisKNjhvY25hcEdsdEtEUEtrb0tLK3hCTW1hNGhzeTlHQ09wcEFDQnVIN01pckZyTWdpblEvQ1YwRVNROG14NkpxMHZXRUJ3RFNsZ0E3YgpKdG4vVWlta0RRNHVHaExJcUZFcG0zOWFnc0lqcmRhUW9HSVN3d2diWG9FaFFKRlBBNmhXUXBlNENYZUVlWkptaWcxSmJEVjg1b0xZCndLa1VIT0JvTCtSVzhEM01YVHI1R1NCZnJVNlk4M1FHQkJXdVJORTFkTThtQVdlM3JLQkUwYTVIb2RSRUg1ZmtnOFkzblVBYWFWcFgKb3FheVJxWXhzWUxHNTVTS2JVNnA5YnpaSzdzbkI5MytzTFJQWnp5YlRxMjE2dXNaUHErV29hRkNrd1pNRWpUVTEyeEszc0lGeE5rbgpzd3I2SDM2bGQ0SHdkaEtGNHRsa3pwU2d3LzdDTmFnRUphbXEyUXdjdGhVYmpHdkxnblpTQzU4UlgyR1RPMGN0UlMxR0hlVzg2VG1sCm5NdWhsS0JEQS81Vm1NMEQ0RG4yRC84UUdReXZoOEwxbk5xMEdmbU82Qy8rSk8yYlM3YUMvYkdlRXgzMW5EcnZmNGtxNUpZZithSmsKZDVXZnZoQTJSL3hZcWpsS1lacE12b29nWmhhVWlaak1jemNmNDM0VmpBS0UzOVRURjFtWVlzUWJtOHQ2ak45MVluaGdxMk5UM2ZJcAovUEZERWczVTJBakcvNFl5b2FJZFNvdlBqV2ZVYnRRZE41anYrM0FGWmlDV3lUaWZNSnRLVmt5bUl5eG1GeXp5eVNHYWozRy9Fa2FUCnpzd1lhWk0ydm5mNkVkbkk2VjRveUc1VUpGMDhxNUpvQytYZktFUXlsNFdvMmQvb2VRRCtCTCtrTUZZVXp6ZU9hbUZTa2l6WHNCRlYKU2twU1o0VGN3TGx2YWtaL1p2UTZGSnBDdGFDUEV1OTlpa0s5WCtJVWpmZG8zVC9xZlJKRWl0dmR6YTZmd0EzWXJ2c1gzMThzZU9OcQoxUlNZUGp0TVN0bW8wRVpEMlg5c1RsSlNwTkx3VWZxUDlhaEVQYzBibVgxcHFxNHdDMm5kUDNSbHY5ckliUHhJc2M3MEtUeVVSWlhwCi9TeEVTYzlWOGFjajN5MzdCWXJpQTFqd1pReUhRMzJ3eDgwZDdVWDlRSVhYVmNRdXhvVHlYbzhNcUtjRllUbDNuOXhUVnZReFBKeUUKeVM3OWswcVdCZlNjbFhRZkhaUHNBMHlXak1TeGlDcFNQY1Nacy9MaG1zV3UrQjc0RXZoMkV1WFh0QThxTVRNU3o2T0VSeWg4c3QzdwpuVHVLaGpheFRCVCtqUzFQSFhhRnlUN2dqbnlZbDdaeS80d0Q3dEpDNWcwOTc2MnRtVVZudjdZMUYrdjBlMXV6aTg1NmNTdFNPMkttCm5jZmNqSGdjR0I4R0l4cWp3R3RtTlE4cEQzbVlhQk1qRVk5UjFKSDNWeTd3RGF1SkhWNFdsblZqNzJKaCtubDZoR05tWWRqaHAvSWQKTDhTOFh4WHorQnRaWVltZDcwMnN2WWwxNmFkdTNjL2R5WFVXcjBBM1hBZlJhbzJXY0QwYTdqa01GKy94REpreU14Z3U3TXVvY3dwTApkSjR1ZjQ0c1lONnZpbm1jNGUrbHpOSENxbU82YnpmQU9LK0ZuYjBTbjRiTEdYcm04MzA3bnVGLzNYdENNa0tvL09qUFhIWDBlL2hrCmZ6NExJMG12cFBwcVlteWtKOGY4Ykg2QzdTSlRwZ2FuRkdDSTJ1WmNjODlCd3h3dFZpaXV6N1NHWXFHUmFIeWMrWHpQcGpjeEF0OHQKQnJtUUpvSk9YRm1DRDdQaTYyRDhtUjZ0TnlZTGtDTVBRYU1wZWxnaUNLcmVNSWt4elM2KzMwdHZkS09keDAwVFkrM2RCenh0UUd2SQpETnFPOGtaU2FHdVhLMHhtRFc1VVpBckFPSTVzTXQreFZ1cVQvYWhQZHZWZ3J6NU5UejBtMkZyL3hobFNqOWxWanpuWnN1L1V3VWxECjB4RVluNWZUalRSVHRYL1lsK3B5KzNxeXg0bFpPaWtLenZESEEwZVorOHFFQnNKbmZmV0ZBeDZ5TE1adFJNMkhidG1YNzdpL01TbHYKbmFvR0RNNDB4Zk9BY3BlYWxDNFNKWXBpcVJ6a3lFTmtabTNqUjlQVjdMMHRYNHg2Zis0aE5JejJjbkRtaHpYNkhnM0hIQURqUEpwcQpoY1FmbGduTjFzZStNdzZCV1U2RmIzVGlhNHdPSCs4enhFQW44dHczTnh3WlZuU200MW5mZmVsNlFFUmZHbHFsQlVQcWFCZEdneWk5CktwNkZJYU12RFMyVkVpamxKNzlvN2txb1BvRTV0SHBRNGRrK0JZUnJZWkhsNlZZYloxOGNINC9KWTdkclhxY2d4cWZYWUwyUllhdEkKYzVjWXhvSmd1U3JjQzBIWVpLa21QMWxPUGdtMGhoV0NYTGtXMEtJbkRaUXdvVWpodkxRZUNRTzRvZGFlQndGKysvYTdRNElkeUlVSQo3VENndGVmNzRzdHdiejJTU1lwYTh3d3U5MTQrUGZyK3lXSHRpOXJkVm1mUTZwWW42Y21uTmJwU0FTTUY1ZUhIc1ZzVk1Cb2duM0pCCkxsMlRxWlRlT2trYUtlaGdxZkV3OHUwb1NiSXV3NmZvRTNLNXFBUjFWMHpVSlZFR3B6Q1k2RnBPYVZBVjBvYS9KWGgrZ0xKSjZ2aU0KVDVvRE9sRW9HMUZvTlA2VTRQclJRdHBMN0JhR3dqTXp4anFEb0M4aUo0dGFnWkVHTmZ5YlpXZzhNN1E3VFJKeU1FVWFTcG9DSDduUApaVVF1TEZ3WVVCMlZBbGxwaWdRblltNW90T3FZYWR3R1JzTnZtVWtwRHNvb2RKalZjZUVMbmJ0K1d4ak9BMGtaMmdRSVQ1UFM5TWs0CjZNRHVuZkJMU205aWozZm9ZS3FMQzNRN2dWbU8wNXFDM1N0REk1MUFucEFocVNoMHZzMlM1YmhzRGxxdloyUVd2bWJwQWxzWExuRmsKc1JJdWJWSU9lMnRCenZGQ3A0YjBMbkxpWVF3aUJUckQ1cXFFOVg0TG9hMXdFVW9sR09xY0ZETExNQ0YxQnZNWW94QndvdU1Mc0RDeApDcE1VQ0xDMkg5eHpNUGNkckMvWVJrbEd3VWNCNnhMVDFtTzRHS0tCNnRBTGxFcEt1dldTcFFtNkFWeVRXS2xBeHoyY1ptQm1rcElGClBjMEtQUFJubU9HUXVvUEpEclY5UHpkTGhNMXZXR1JBSHI1aGF5alNHeVBQSkFHQUl4YlBCSGU2TkhXbkxtVVYwZldzR1prYTdiWFYKWnphRWFiV0J4T2lycVJGQzRPcGpSTkdWazZOa3d4aFhIU2VvTlQxU0ZLdTIrbGpaWU5lSjBYTEpLVmNkcnhuY1FseTR1M3hQWTBDRApjK2NrRE05N0RBdVFBRUlON1FDWjhqR3ZlTUFRTlR3OUZOcGZja20xZFV6WmtFaE92V25TcEVDTkc1UlI1WURqS09mQnp1aE15aFI4Ckg4VjFaQzZiNHArdVcyem9oaUJIUDdJYlJqcWxiVWZyUkVZZzBBcFRlaVZDWU41TWVybElGclIxNEFOYm9JL2lsWEk4aVNsN0FOTVkKZlFSSGtqU2g0MVZTb09NZmtHRXdCbXhZV2ttVjJ5clN3SGFwOE9WcEc3Mk9FeW1qd0FDODFRQVRML3ArUUdrYmNNOWxpR3lBcGx2ZwplQmlhaXJCdlpUaFkwRzBwaFV1aGd0RStDdHJBeFVXdlp4VGFuaGxncWtsQmk4THUwaGd1ckFHUHpYVUNyQ1NER0V4VmpWT1VJdGNUCmlzQjNYSm5pM01IZUl6ck9oeDlTRzJ0OERuc3Q5TThFQ0xRTzJBci8rRGllZHh2S0dEcDZHbVZjdmhVWVdMcGtadDhBQjRnUXVhSGEKN2hZVExIK0Z2OEFjVURtdUlFbzVVdVM0VXVHb29QSFpYL2lScWtsWTlpUllwRlBXOEoyQnRDQ25BTXdscmRHM2x5clkrdUd2SUFFQwo2cDBRTXZWRHdkOVJFMGh5bUJRZWdyUGFHQnlTSkpYb2RFZ3hISWVDWnV4N1dERGNDblVRTkpuaDZjbytOYUFLVkZkTlErblVwclFGClFXUjFVNHBNZ1Vya3A3T3gvTnFHaTlrNjJHQkNsemFBOVlJZWhiT0JYSmdCUW9CaTdKTGgyZ0FnSENHaExNaFlZWWVDUm9RUm1ScTAKZytseFhCenBnbjVQR0NpQm1WQXIrQlFWdmNBM3NmM01WcVZBM1VhdEMwNW5hUUVEcXpCRVc5dUR2ZFJiL2N6NjhlcytKWlNvSFRRSApNK3huMTI0NkV3MGJZb2ltWG1kTFNJUjlqaTJSYkUxSVJIVHNsNWtOS2hObzFrM0l0WVlkS3hCaXp4VVlJb1lQU0tLYlBLRkllb1RrClpBUWpPenJPZXcvQ2JjWG1yQUZJUnRFRzBCYU12aXpjZDl4UFFCZUhobE9xZ1FDWDdNeDJqaUZIRWNUWVorc2NTRkNXNVFJUEJOYlkKVTJocGJkdnVxbVhhOE1adXJJYStBR0tOaDZCbEg1WldqZ1kxaG1FMlk0bnhHNEM1U0FraEEraVZHMUkzUFFoNmhBSWtvRUhEczBWagptK0x2MXBKbnlWQytkUWRDUzQ3N2FxOGVLYjZPQ3BLSk5obURCNUdVcUVTYWFFc3JMTWN6elYrQjNhNGJEdUM2Q1VzT3pqM0dmMDJwCjBkWWVmNGZXOFFhS3IyeG56dGcwT3JBWm9BcVprdHhPckNxQlVUaHdFc1ZBMWdiTVYyM0R1U3lFaGlpbnQzKzUzalRFWTBJaFpkeFoKbHN1ZG8vRE44a0pFTlFNRTFNczhzV2tTWFRWNm1naDBuUmptSzZKTnJHSHZiSUo4VmJpM0EvN2NZWU50TmNzb0t0Q0RRbWU1M2pTRQpNWEd1UDlxR1F2YzlDSmNWWUkzbXNxUWd4bmd4QnZSVG1Kd0VyK2R1ZFpJR3lrK3AyQVl5WnpmVytQaE9EVlpiWm1pL2NkOFZMU1U4ClVEaEF6aTA0QkRUN1NkR3dUYmp2WkhMSU1EYzZGeENvL0dLSXBzZkFnTkFHUTdnWERnVjNjb0lNdEw1QTVVeEhoRUhWSWsxOEZWU3EKWVhRWUlYL2xGdm03NnhKWGRsMTJ1RDFGNkhWQ3M2a0RwSUthNE1yOGxYSHpkOWMwVjNZZEcrOTNhNEZoQVVwSVVKZzBLRUVaR3FkZwpiOWNKMlN3em5jaHQzZzIvYTU3dU53ZjFVZk4wT2tCbGxhQVVjdDJqaS9MY2ZpU1hPR21sS1lXQm9rbEkyMWdBL0VCT0c1TFg5SlY4CmU3Ujc4RmVzcFhQN0ZjYlJGbVdrSG1Bc0t2Y1ZWcVlUM1ZMUGcxQ1Y2R3R1TjB4RUtXM01DWWFpK043UXQ2aXo5QjMzQWhsOWhxckMKZlNYdkQrT2tMN2FMZFN1NS9jNmlKNzY1YnMxeFgrdnFFUnpDZFZ3N0FvTWJQd2RsMVQwc2k5bis5V1JBQnowUmxpK3BLUk5ONjNMQwp0NzFDcS90WGFIWEdTM01UOFI5ak0rSjhiM3JHak0ybmVLNU56VVEvUjYxVE1KNjhZL05haDdFZG0yalRrMUdOVGIzM0QxRmdacWN6CldLWThzNVBwSVNaK1prdHF3aUZtMWhDdjBPcitGVnFkTWNRdVhoVWxzQ0NsdXpCMHJRKzBiMG1SeVVXQ2xpazNCdz09DQoJXV0+DQoJPCFbQ0RBVEFbDQoJYkRoQ1VrelBDUjZKOHhuckxyeVh6S1duSWFIR21XMGpuVzZEYTUxUFlNVnYrUlRHYVVpb3NTQ3lBWFJ6MnB2b0w5bys4RFU5dWZXUAo2bjFYL2pwNk1DaWJKMmY5MXVWd1lvY2lEOXNMUEsvbHhnZzZwT1Y0b2NhZTJDZzBCclFiUlRjMmM1bnF0UGJ5d2V4TkRlWlRJVktRCkVWTjdXNFlPWEtYdDVoYStITGt2ZGZkdCtvdjdQS1JwWTBLVEtDNXptTHEvN0dVWVpLUGN2aG0rSExrdmRmZHQrb3Y3UEp5cjBxRHIKRmhRWWN1SFdDano2SlpRWUprOXV3Z2Q3WTVPRnNyZWRmTnZ2VVRnTTlMZGUzd3NKSCtNZjlyNjl3Rjl5Kzh2ejdpWDgrK3owNTdJMQoyck8zNUdyN2c4dmg2OXJUWnEvNXFoelVuZzNhcUE4dC9LMW1menhvZHJzZGtPUVhyenN0Vi9JN29QNWVMYTFkakJxMUYvM0xYdnZlCmRObFBhL1c5dStNVlJMS3d4bmhoWGJzZ0ZGRGhVYmM1NHZJd0daNzFnSjJ2eHdvZnZHNE9XdjFtdDFhdlBTOTdyVTZYaXhPS3RpMDYKVnFFNSttUUluM3V2TGtzdTZ3WnBFajJod0Nya2hoM2UrN1RXc0t5R3NSbGo5QWNlc0tsZXc1REUzWWF2bUhrVDl5VDcveFQzRHp3MwpZeEJNN2NHVGsvMEJUTjV1U1JpT09xZXdlazRPanFHa09VR09uaEJoei9zWWFIVkRKTTBaYktBa25ocjRGZWNLL2MvK1B5Z015YUsrClhxbnBkS0psT0lpTnRadGNVN3VhMnNXUm9HYmhnRVlORmZTL0NvMSt5SUdadGFwd3VrMHVLNENCV0t1eGZwZmRxL0YvY1h6dTFWejQKWk5pQ2hQK1VvQko0TTlUTVdjaEVrVjNFam81dnkxKzRjRTJNZjAybnZ1Si9jWm1wRkZRU1dqdTQzalI4a1JnRUFkcGhXa2pMZzJRdQpEejdzaUJiMkYzN21lYmgzNzIrOS9pODkrZ0liNWQwSDNYZkRZZlBrOGZHbnRYdmZ3b2pCcG5QdkFleWtiMHN1Y3UrZ2YzNkJVLzlSCnB3dUVZaVVZOUU2dlpndFlxRlhlNzdraW40UHVldStIenJBRCt4MGluTVp3UEdxMjNxeUFZYjg1N0xUaTZvUCttN0o2ZlVrL2RKOE4KWEVYQXVPaXA3WHUybU9OQXJiSnQyL2tlN2gyV1o3WDd0YjNhM1FnUGJ1ZjNhOVJzN2Y1ZTdkN3o1bUEwZzdLRGZxOTkyUmxWSVdvQgpGaVIyQmU0dTVBWGlDcHg0eGxQbTArbUpXL3VuUUR1VS9ZRSttU1RQUWVYQ3hGVmE2NElTTnZ4VXUxamxKV2d4emxIZkcrU250eHA5ClB5d2Z2aTE3ejlydGlteStUZ2JoTnB2a2lzTFg0Y1JXME9QeE9oUDJhVDZqOGVZdWFPTndqcVpuKy9KQ0NWQlJWL0doZkNpdUxHRFEKZnJmc3RUOFVod2paeXFzcGtCZnF6eVZrNzk3RFg4dldKZmFCZnFDNlU4S3VoKzdDZFpaejc5K0hpWEcwMjUwVGU4L096b2JsNkZNYQpnRG4xWFlVbjNlNGxuV3I2ZzBiekF0VHNlM1lud3B6eWpuMTN4NURXam9DVnRZZG5aN0JSUWVudk9xT3JDTjY3enk1SFF6Z2ZSZDdlCnc4N3dvdHQ4Wjc5K2VvM0MyUzhiQzdka1Blblo3bFFTS3B1MlpqNzBKdlRCSisrMVNta3llS1JGbmtlYTJHMEk0YTJaUlZ0RVUrWGQKcEphYWRMMTNsSjNtdkRhYTgwcTIvQThpaGNTSFVBV3RSbkE0NkYvVWpsODMyLzFmRmlzUVdOQ1dhelE3c3pXSE1WeGVWMWpJVEUvSgpSYk16Y0tTaEJiZDJGMS9OK1hTT2hQZG5GUEYrVEIyMnV0Um9sbkNyN2ViZ2paUHpGdkM2UC9pTkFHaGZjN0QrUmJNMU5neVh3L0w1CjhkRis5M0l3VnZjMEFNZ2UzQm9PV3ZIMzAyNlB4ZzJPRU01Z1RFTml0YTNhdzE4dm1pQmQ5OHV6L3FDcy9WQU9oaTRxN3BZM216RUgKNVMySTVrS2E5UmJOTzJWL3ArenZsUDJiMlhtdks1eDFkd3JZblFMYzVaTHIyMnBtaW5seVI5VU8rb01lN1BnZlNzeFBJSzJvbXpVRQpCclk2WlFZRGVpNkg4NmI1N2tDek5RZWFxM0ppWjZ4ZVJiRGs2NjNEN2xiam1xeEdWSEtTTk1NZ092Z2dkVUxPSmY2QUZnYUY5MnNtCi82NloyOG51VlBFRGs0djJOU3BuanlGemJRMlB5dWJvTmZLNTJsNkdVWmc2NTczc3hjSzk3Q09TUXNWT0N1MmswRWJwQkdzZ1NYSzgKZUx1VEpFNlM3SGN2eTlxMzVicDc0RzlabEdBb2R5b1QrOGFPeUdSV3VHajdFTWVkYVludnlZVElrWW1BYmdIREtpaWcyK2pwWUc3eAova0xvTm5paUU1TmhtSDlEWmpJM05pKzdTQXFLNWNicjY4TG1mNlRJTzJSTldraGg1ckpHYkJOcmpESDRTZ2ZNRzYwemtidnBrZ0pMCk1sUUJOWnU1c2dJL3plVUpKcGZjRnBaa3VhRzUwVkNTbmg1eEJqKzZBWUVzUVhzZnpxSE1vTVZ2TGtzd3ljclc4Q1RQMGpRWEZJK2EKRkJuZkV3SVd1WUEwV0Y1UzY3bThVQitHRVIvY0dIWXJLeTQxT3FWd2VwM1NnNzU0d2NzSzZrWnFweFJtRkRBcUl6R05VYjl5TG1PdgpaNFpkcjJNdnVnRjJEUTZLclpnajJxUjVnZk1nVFZKTWp1MFdtOTJYTUJtQXdGdHNxQ1NtbU1ocDN1d3dHemc3cE41TmoyWFRRNms4Cnh3MUs0bzBBT3pjMDc5Z0dVeVBpMU5EV1JETm5hbVNiT0RXdWRXYnNEc3M3QTNvNGNCNjhIdlRobVBuWHpxdlhYZmovYUtQT25ldmkKbFY5OFJXMmhUY1ZXb3RKWWVLNWRaUnI1MVdOSzdqMStkdnJ6QzVnTlg5VGkyM08xWlhUY2l5OWFZUTVkMTQ4UWcvV2c5NnBidmlnQgpHOHljNy9yNGs0L3pPdXdBS2NUWmlmS0g1UVhNNWVHejNsaTRGemxaZStXUXpFR0ZCMU9Oc1lJRSthRTU2UGhFWjJORTNmdSsxMm4xCjIyWDE2SmtYMVdNUTU5NFNUNlFTQmEzZzFmYWVaSkpiWTRReDJ6eHZsckJ1Wm1YR1BGYjMxdmM4bDVyM2hqYTkyOUYxdFV6b3VKMFYKQlQwWHJXQ1dpWlFDYnREbWdQcU9zOHhNZnBnLzBUQXIxZXJUN0VZT25WYWF1R0E0dkVMNm9lSXZ4bEJXc3pNclhodm4zYzQ1Y2dCegpKbUtxYmc1Q1BSdFNmQ3duRy9pNU43cW91QzUyd24rKzhKZWJLUHpkTW5NUjBYTlhYbXBrYm5ZaXZwcUlsMlNBM3F3VDcvV2RhUlprClRKc1RUckIvQ210cFJqNm9KRm1ZRVlwU0pHMVEyS1c4cG5qNGozMld1TGZrdG1lUzZCdU4vdDZBTVU3ejZ4L2lqODAyTW40RGEzUE0KSXJ2SW50dGF6dXRqckZ6UCs0alo4dnVJTjNIOWsyOHE2cW1iaXRsNzNGVFVremNWeGNSTlJiSFJOeFZ2VFF4L0ErSjJsM3RwSjRJcgo1MTdDQ1RNejh4Sm1YTUkzTStuZnBKYnFOR3VrR0JZa2lpSTFqVlFrK2lOSXZBUlN0S0JRcUtTUU5rU2pLQXkrdTBCME4zSmpNQlA2CjdlVDUrTmhrMjdOTDdQcmpidjhYVE5TNVdkNjNuWXpicVpuT3h1OW44WHRybVRHcWFrcm03YXFRNzZNZnlwMCtlQldaK1UrQU5pKzcKbzU4aWFYbmNPYi9vZW1rNUo3SEorenQyWnhFbzNOUjREdUo0RlBXYThvbys3TFZEVnRHbHFVbWZON3ZsYUZSUzM1K2ZWdTd0M1gvRworYlYvK3BTb2Z2bmIzaVI4NzNscm1pMTNmM3pkR1pYMnQrb0xCd1lUOWc3R09ETkgyTjBYai9kckw4cTJRNTBZZXNHVlNoc3RWTzdWCk15NzdqN0tMeTk0V056SXo1REFJdGl3dTkzaFFsajFYVEl1c3NJbnRHMExxMUlhNmU5S3c5TUc3SmhmTzg5UlFPR0ZtQ21HaWhMcSsKTUY2L2NJV2xLZXdWUUh6WjBtWHpGMk9GbnpaZmxiMVIwNVVIcFFvb1JPcXl2TWhJcTVLWnBMc0lpY21VdTVSZ2NncUZGWHc3UWRqNApWMEw1bFNqUzJ1T3YwcUsyLzVYU3pMWUVxaHFiZDE1SlJmaFRTYzhGSjBsU1VBTE5BcEZSNG9ZRVgrQWpoekpGeVZtMEVoajArQ3VaCkE5clUrQ0hMb0doS0kydnl6TjZIVEJKaHg1cWpuVlBmelRGOEFIcjhWWkZFK0xBdThKYWl4aE44bHhtUTVOcG9kNmx5S3RwWEVOMGUKSC9aUHdMK0FNQWtJcFZBVW9vOVBEdUk0WkNLMVVlcUFXNlgwbzRGcFdSaUtFQlFwTU4waDFOaEI3UEQrVjdwZ2hFcUwxUFVuRlhtdQpIQ1lYN1Y2aytCK2FSc1JNeGlTUmRTbnhMdVdSeGljSmM4dXdsS0pYWVdLbk5yQTU1OFNsR1haeENwMmdrWUJoak5CcHZLSWg3RjJOCjFFNmNJa2x6TzZtMXU0ZWFNZWVBV1lrdWVNS29CQWt0c0h1RzhXWEtDR3NlQjBRWlRRZDhTUU1qS0J2U3h0SGlBM0J1cGtqTFFZdFAKMDBEa0F0QmxpaGVOU2ZGVk1KeXFHcTlJVUU5VElOamVLdEdaMURSN3BNMFBZaEZSdHhUeTN6RC9nUTVhSG1tcThCVTVaQnFsd1lXRgpsaGh0eHhYRElCUnlRTnE4cnhHeUJIbW1lVlZrc05TMDdRRE0zU3kzekJjOGhwNDZPNUV0bWxSNTRvVHdpSEtsNko1TWtlVFVLNlV6ClRjRVpPQUV6MnkxL3FjaE1kY3ZnWWhVNlk2bTFXZ0lWd0tMc1ZNVmVTY21yS2M5MFNyelIwaWp2Nm9qQ1F2Z2FRdWlJU0xFamVjN2MKTG1DeDJOV3RGVFdmcEtwUU5neWZIaXJ4bWJZVGZNbE42Q3dNcHV1WkFieUs2Rk8yWXlTdVlieGdmZEdhVTFvU1JzRTNSUktlOWFuRgo2R1k5VFhvVUYraXU1RW1xSlhVQ3hJUndpNm13VTFWS2l2bFZRVHBpN0l5OWdtSm5mWUtMRWdZRWU4WURxUXF0cVE5QWVVRkJOYmlhCkVrdXd2UU1WaVIrV2ErN2FENittak1XdlVMeWFRUHdnT2lJcWt3bE5BNEZ2cU52NDlNSWtGTGhFRDZZblBEWHc3ZlBIWHlIRmhSY2EKQW1hYVphQXFwSDNmSnM4a3pZZlVyZnZBUHRzL0ZocVMrVmNrWWNmTjZPR2NCRjlXNWFVUTlnRXJYakhDQ0tkUHZBMmtOQTVTOEM0bgpjMXg3c0hxVkpQbU43OXJhWFRyajZXRndwMEQrZWZLQW16aHBjNXI3bmxNZ2xSVXRPc0NaMnRrTGROQzhNTG05YVc4c2xBU0d3a25qCmVhOXg2eE9wb3RXWmVkR1kyb0VERHRIR0RkeTJLd3prV0VGeTIyOVZMTWpUZUt2Q1o2dGhxOEloelQzU1RKTWlBc2lVSUtUQS9aeHcKd1Fhc0NKbVhhVzVBcE9ZOEFJQTB4NjdTaWpYYXM5RmtWcnJsOUZJcTNYNnhHbFFpQkYwbzhoTGNYMnBRTWhvZEZPTEFBRzFvbWJEUQpUSVV1eUVLakNwRmJ3WjNDN2tYVHA4Z0xDaWZqWE5uS2loWHNQYUR4VzRUQlpTeG95OGtsb3pVeXRmTS9Vd21oelZVQ24ybUhNSUlHCm0zZWVsUGRhdDNmRU93OXRQRjc0cGZaeFpMeGdLQkppQXJBVEh4Q25TM2ZFQkRmbXVPMjRPU1hHaHd1bktPM2JYck9BTWJJM3NnQzMKWlMxTWZhdFhBVlB3eFdkY21idzd1Z1VKU3ltd3RrQU9XTVl5WDFXV1dXR1l3VzVrN0NMTUJDMUxBMnViMkNpNXI0S1hWZUtDOFFncgo4VFVscVdzWGszWE1ramI5ZWMycXg1R3VQY3NoTzE0NDREaCs4MjVwVlN3VGFqd2J0RjUzMmtzcnVXS3VIcXUvKzYrcDBjdnpjejRlCkxtclhGcHVKNG5HLzJ5NTd0UmNVVzdVRVQxd1drYzAzMmtZSTBEaHJDMUtWUlRuMkp5cTVvbllYdS90NDBIeEgyYUNldjFycDBHUDMKV3BTZ2ZoK1QyaTVtZkMrVGtHallmbWk5dzduQkJuZWlnaVZtZkhCaUdlZVJ4Tm5wdDM5VEtDdWdVbnRmRjlZekxYa041eGVhaU9ILwpUbTlESlVLalJOSXMySTFPTTlwVU5DajZ0S0hDSGtwQnBpQ1liTWRTN3Mva0I0czBvN1dJU25ubVJTY0lYMUltdEVCaGdCK1NMQ05rCkVyWmIyczJVLzMrOFcrTy9LTmhZQXNHbXIwaVFvM0FwZFB3aHliVGI5TGxia3g4Y1lra1NrODQxOEMrdmJBbVNsOGhVV1c3Rklld2UKMm02NFJVNXFqdkgvSDl0OGREcStuOEd4alFTcmhIT1hzUW9QakxVOU4yVGNwY2tQRG1ObWQwalNKVEtXT3JDOUdPcWJRQTBzb3c4NgpkY2ZYM1AvZnpZdEUwYmFQZ2h2KzVWTk1yblJoSDAwUUtjMHpVSjR6NDg0MTNKZkpENndBSkhTWXdma3J3MEhyU3VsdzZOaEdlb25DCmdZVi9lVzM5V0o3V0R2cmQvZ0RPNmYzTEM3L0szR1FHQ2EzNDZoc2ZaaUlOdTRnVk1wTjZGVnQ2UlE4a2ZwS3hHWUhXQmVrNWJxUE8KV0EyUUZpTlBGYXRDMFo2ZGVSMEt5RXhwL3dBZW1kUVpHK1lkVXJXZU9xVGFQdGlSTEhCRXBVTWg4REViMGhUakE0aEZJWkdjTkhRQwpGbU5tdlRHcHpQQm1tOVVSN1ROMGZNMXRyQStTNW1uR1MwbkNTdGMwcTJTR3pNTG1UV2FjRXNmWDVTSkYwL0VrTDhMOEVoYlo4MzF2Cm8ySlQxQ3J2NWh4MWhxUFlQRGNlTXpEdDdJalRYY3k0aVJROHYvRUxQRk4yTldyMUtxLytpQ1IrUWhEUi9CZjA2QT09DQoJXV0+DQoJPCFbQ0RBVEFbDQoJY2pUcTk5d3p0OU1QMzA2OU0zajNlZi9pKzR2eFdrZzFVT3kvUDIvMnl1N0pRYmMvTEczQlo2NWNjMVErNnBUZE5oZDgxT21ldzU4WAp4MGp5Y2RtRTdSb1pNeWpiblJHK1JJOFBhMDI4VEgvM3I4QTBlb0N1WFh2VWZOc2ZrREh2THBINjZlUmJlSmJHK2J4eTQza0lwSjJYCnZSSDByNGtQQi9MMzJoZjBMYklSMjBlSnJWVjd2MXVXN2FQeWJQUkRFNjFvdGNrWC9wTGFXUmRmZ2VyQkhMZ1lsTU55OExhc0llRVgKMklmaDRncXRidWVpMXVxamtmZlgyZ0E2MmUrNUdsbjAzR0JjWTlBY3dteXJ2eTFiSTVCRnA4MXVzOWR5dmJyN3o2ZkEwY3Z6Mm90eQoyTzllT3FPcHo2OExpRVROMDN4Y2ppNHZLSnpjNG4yT1hSL1YwUERzdWh5aVNJQ0R0YWZsOEhYdEJUWGUrWTBNcjFFenRrYWFqTldBClpYRnhPVnBTSndsVVRuWHVxTmw3ZGRsOFZkWmdMbDVlMlBMZTJRRExEWWgvVVY1Y2RvY3h0bWpRWHVCeWkwWnQvTmZ2K2hmUmIvZGUKUGozNnR0OHVaODZGKzdXN3Y1NTNlL0J6SGRnMTZKekNnbmZEZE8vQkFKUXVXK3VhVVh3QS9GRXAwSmk3N1VIcEdNY3VHLzRWL3huNQpkeWp2L3JFM1BIbmJIQXp2UjlNcEx2bzJNSkxnd3pubGVuNTJ1WjRNeDc1dEtIZDYvVjVaZ1RIZGZ1dE4yYTdDR1M3NWdTYm1WZWs2CjdmVGEwRkZSZ1RhWUhMQm1yZkJZVGw5YytnTU4vM3R5UWl6a1JDWDZPL2pBYTVXSnYzUlVOMm1oZi9HMjhsTEhvcmM4bzVFOFVHOUcKL2ZQYmxXVFhOdysvR0RaUm1VQVZCNVpZMWVsNDdldmlHQjhqV0p1dWJNTXFIWjc5c3NhNzhTMHZneUcrNGIzaG8xeUhjN014ckxMTwpvL1NYVHB0dUN5OGRYMWZ3ZGdWd05acGVseTVqeDFLaXVPVHRVaVhSNDdHTXFIZFY2SGwzMjZUa3VwRExLUG0xa2ppNWJVcjhpWHNlCkdhZjlFZWdCZUxCL051aTg2dlNxVURWZFp3MzJmQkoyeC8zTFFhdmN4MERZVzkvMFlXdTY3UzZjbDZObUczU2c5KzFIOFo3OStIM2IKbVRTcXpLNm84T2V6dHFLeHVYUmNkdi9hSEIzMlcwZjlWck9MWjZraC9UNXIzdm15UUVzNWVISVlsNHgvL2c3MUkyelY5VjZvUnRKSQpvcTYvZWZEazBXVzN5M1lhRjdRSnY5b0t5bHRubnNNdkZ5V0ZlajhlZE5vbnVHUWVOVnVsejNTQVEreGVjWHZlNy9SR3lNMnBXc2RBCldiRGQwRUJNRnZtKzEzRzkxWGt5cjNVeUJEMzhkZVJadTZBczlqUXVxblNPd24xbTQ0KzYvZjdBaHUxUldkemRza1ZsOS8zTVdGcjAKQlJzQUZwVWt3cUlPNkxsa0VjNW5GODFXWi9SdU1VY0paK2lvTkJpdk5yc284aXB1UFM5eXNhQm9RS3JtOC8rSFR2a0x6TFhEem5BVQpMSnRHNjNRQllzK3JISk1UVVVES3NwazFJbk1rRlZqR09oTDNFNXhieEdUMzlCck44YmtMNHFEc2RnOUFXcnVDNlZ5Y1dQQzQ4eHVQCnh2eHUvclUvNlB6VzcvMDFVb21RYlhyUk1Idkd5VG1sdnZPeWJuN0RoR21TUWQ3YWJTTGJkYk0zNnRTYTNVNXpPRjB1dG5IM0wwZmQKVHErc2pjcGZlUlY2TTNIQk5tc1VTSCsvQkd5amQ3V2o4bTNaSGQ4NUFLVThPYjdvajhocDk3VGZYbUs2NXphSGRLdGl1RXlnRWRFVApFaTJwMVRXYndPZFBQYzRrUTVQbGgyYXZNM3dOcEVRemtWeCtlU3JNVWt6WWgrZmRacS9FU1JJTHJZVnJtMnBRY0h3SG1ZZExvWXlXClQxWXNYejRCejNmOWk3anJWZGRmUUxCUEtsV013MlNBQXhGVndUR0xnVm1ocXpFUVYvWnEvTHZzbGdPcitqM3B0Y3Rmajh0V3Y5ZGUKcmM2anptQzRwQm1hR3ZPSGFWNDFUODc3RGE1SGM4V3g5ZlduaGpiTFJMV2h0ZTYyNlpGbHlnOEcvUXYwVnRyTFpOT21pUW5OS1JjMApwYktwZHFPeEdXL0FKVlI2NnE1UGd5NzBZREE2N1RjSDdacVlUcjhVT2MyOHZIand3b2tRa0FvcUZncXcvci9ydjdDTld1TDd3NDdmCmpDVDNvM29WTVNIWW5neTVyODVqL2UyMHRzc2xZcFZ4Z21tcFA2ZGZOTnZ0Q1lGOVRvOXFqSUdHSUdzblFDQ2MyWnZKRzB6N290TVkKRittdGZuZmdWZEVIVDJvUExrZDk3elFzSnpDU201RFY1TnFiWHIvMUJnUjM3WlVOeVZoUXREUHNnOWd0YTZkNFdjY2x5Um9yWE5RdQptaGV3RHd3NzU1ZmRabkJReW1qbkdRMmF2ZUZGRTA0SHJYZlFacWNOcGJtTFdpcVpSMldiUEY5YUZEUWlvZVhJZXp5bldFVlVyeUtkCmExblpBVy94c1RJd282U0lPcmkwYU5TQnBXVjlCNFJKODlTWDVEUEVRYlAzdGprTUdvNFlHNy9uN0ZESCtJVGF3M1puMUxTQ2JVSVQKSTQrdWxUZVJVL2MrL3V3dmVrMU04Y2w3WUJNZWJ5RnJNQmtmY3g0YXZLcG1YZUNMbk42MjBoSHFFYkRDcUJKMWZMTFNlRXVpOXZENQo4Y3BOMlZyTDIxclZ3ODZ6OC9pSHg0LzZ2VkhRQU5Qd0F3eExxelBtZG5jUDZ2N3dHUHZ3ckdkekdFNys5ckk1dVVpcHd2bEYxKzlTCkU2M2o0VFppVzFUdCthdXpjZm9BZHZqZDRYUkJsQ2QvS3djVHl4bCtlTmdER2U1RlFkVHd3L1BUc20wbDBMaW9ndDhvTk9lN2FTdlQKMUFHak4wWHJWSkhYL1YvKzJtbFBFSDRFN2JKMGZ1TElXUjdZUWZOdVFUREh1RWFPVWhaVjhRZW9pc2NjOEdVSTN3RUdweHk0NEpRWApjWERLVk5GblRucytqclhuWkY2cDc3eGVIMGU1VUJITDlucy8yUENXL1RpOFJVd1VmVFlSWTFNbC9BV1hUR1UyWWVFbGZMSVlxekhLCmxsM0txZkZpczFsbHkxVGpsY00zUHlDcHFQWDZJV0NwMXVsUlFCSnFHS3haTFJHYnJxMTd3Zmg1NytmK2FZUFFOYnRkM2hHR2swYXoKcVFvZ2lXQ0hmVFZCd3p5OGkwc04zM1F1VG9FamI4YWx4R1N4QVp3Y0I4TVNxUmtzTGduN1dSQlRkNmVWd01ueVRIWkUwWDIvcXlHagp2K21mUHVtZDlXdkI0TGFFMGZONmR0b1puVGN4OUd4Uzd0dTlJaTUrOGVyOFRlTVVOOHYrMlZuRG1yUGRQajYzK0Rrb3djUEo0clBZClBvNzhjbGpDYmtNYnMxK2dUaUd0L1ZpZTN2c0JSRi8vM3RNKzdPZmxUNHZaaWF3dmlUTmptdlpVQjRhamJxTnRtNkJKd2tPNlpMU3cKbWlzZjdMRlY2bHkweitIbmJxOXlweTdhbFpIYk1BVmZZOWJZWDF3TVhMRUZZd0psWE90dW5JV2NPZEpRTG5JUlpzWGNVckhQVGVUegpTblhPWVRFM3VuQ09xMVp5MU9jQXYwSXRMamtJeldkNmJpOXQyWGpHM29YSkJ4SzFYVHQ5VnpzY2RON1NZMzRMQmdHeDlPS2RZYnFoCjFnVFg1aGVLbWJZQVZUK3lIUzVBTmxGc2F0Q3BGQjFXRm91MGRqbnN2T3JOT096TUZMbW56cm0wQ0NNVjdKOTFKczMyczJYNDBFcXUKeWlKMWJEaW1xZTRPR3VmZXpqZXZSS3Zmd3lSdGVGcGRRQXVXOUZ2aXFiMzBaTSt4TTBzUDJvMytBSlgzNXJUZVBWbndESlFGenNKRwo4YXd6UzEyNEUvNml1VUN0dm1vc25IeXVqQXU5RXNuY1VrUDB0VEN1cGVYZUxxWngyTHJvdHQ3TmwwcTJUS3MzYVFpYkxET0NzMTUwClZwOURINHhUdDNteG5BK3UzSUsrMHc1Vzl0QU50a2p1WXFraEoveFlPbk9wdUpYVFlXRlVxUU5UZm9TWllseFA4R21sZVhzMGlIaFUKRjhkbDBZSU5la21aMXFCL3NhUUlLbXNkVUYrV0ZCdEVtVHFXTllvR2c5UG1ZTGhnSE1kVmpMQzlWQ2c4aWtoYVZqYmFZeXJvUmFFYgpGUXI3YmxRb0czVmoxaW82NjQwYTdlNWlrV2ZMWEF6TytyMUY4ZzZMRFM5UGVUMm1zOFpvQ0lSNk44dk1VUnlDS29ySzY4SWl2ZkpWCk0xaHQ1eFRDRXdnb3RNUEZzd2JMd1hiVFc0eXJLeEJiMDN2YVpvLy9zREY4M1lSRFFMbUFTMWlvSEtIUGlIUDRSeGJmaVlManBiSloKY3Y3WGk4YlkvUTNxMnF4U2cwbmRudXhIczBxK21uRUttRlhPN1lMQndUWnJmb1Z5MWltMnVHUzNzMEJrUUFGMC9qWEhEdEp6Q3ZZdgpXZ3VrQ2hVWUxoaHhLdEMrWEdnVFdDQjVvZnBpTlFOT2RNUGxld1NWT3J2c3RSYk1FbHZHV1NONHBpelpHS2hPczlkalcvdnMwelNWClduWTBhSjFINnRMZDd4dkhqWnE5NUFpbjNIYnRYM2VQZjN6Mi9GK2YxdDdLSlllemM5RG1JcFZ2bGc0SlpmQjQ1ZjA0YzdyRDE2ZGEKNSs4V0hOdWpnbjM3SnZmMDJmb0JGNDlPMTdFdFJnZEw2UFBPcjJYM2VUbkFwR1JUMXBqajV0dnlLWnlkT2hmZDhzRzRIZU1LaC9WTwo3MDEzT0lKRjVmMyszT3NudlRjMXZNVTIzbDF2Vko4dzIxN2d4VHMzYmphbjJ2UERSODZhaFZwRC8ySmtUVkRqSnNKditxZTFaL2FuCnlPYVZaZU5HdUxoVU1NdmYyKzh3cFErT0Q1NDh5ZlZoaVRNQ2YxUi9lZmJIZjM3MjVZOWZmWEsvK2ZMemI5SS9QcXZ2ZnoxNGZQNzYKaTFlOTMzM3o2SGVmMy8za29OTnNEUDlndnYvclEvUDdMNzcrL3ZHZm42cS9mSEgwcjArZWZqMjRiR1dQSHNxbitSMmgxTytUWkhqNAo4K0dyejVNL2ZIMy8zNDAvZmYzbDV4ZkRyNGQvay9mMjdueDkvK2gzQXk3MHpXai8xVi8vZnZUMWw2bzhQdWg4OWVmV1lhUHh5YXVwCnBvN2EvNEQyc3NOSGQ3N0kvdnZ4NlBEbm4vYlZmOWMvZjNEZVB4ckM0STVlZi9abjgvdkxSNGZxRHovdS85ejk1TWU5TzRkbnlUZW4KTTVIOUlTdk9zaC8rL3M5L1BmanVvUEhEL0ViamNsLzg5UFdYYng3OTlQVVh3OGI1WjRlZjM3bDhkUGR4KzJ6dkRqSHIwZitjUExzOApQUHZweDJ5LyszWDM1UmRuKzY5SEI2K3oveFpqN1BpZlB4NjJ4TkYvdnY3eUw1LzhhUEZBbDRjSC8zNzE3ejU4K3VOL0RwKzBuL3h1CnY1Ny8vSWNIeC9YZjkyd2ZYamJibDN0M2lwL3ZmdFo2Mk5KL3YzdndXcDNjLy9MQm5mU1BuKzEvKy9uL2ZQYjF3U2ZmUHpvb0wvLzAKNXgrKytmM3IrNjFXOHcxKzZuejI4T3pvdFcxWkpQZWEyYUR6aC8vNW92UHZiOXI3M1R0LythUSsrT3hmbHcrT2p2LzRIK3ovcDEvZgovK1oxdW5mSDNQL2hwNjhmOUZxZm5ILzIxZFA3OTdMemYzM1Z5Yko3dzdQMHdhRDFSSHoyNWd2aE1iWU92eG4rQUd6TFBpbXpIOU9rCi9VWG40RjRUeGxjOC9lcHUvZk55djVzOVA3Y1UvT1BvenRjSFQ3NzgvWThQUHkvMEVNYmx5VC9ONy8rY0hmVC8vZG1YUDdULytZVTgKL2YxUGhQYlB2VHRBMEovTm4zNlBRL0pQODZQNWV3LzU5T2Y5TjUrYXVwdWFQN1NQRXZIVDc1OGUzbXQrK2NkSHYvdnN2d2ZZaXNFZgovazFZcU1qZW5lVDAvejVSOVBtelB6LzYwbjM2OHNlSGY3UEZEejUvK0Q4V21meUhmQUpUOTJYeTJaLy8vUEJ6ZWZpWFYxODVQRDkrCjllWDk5cy9mL3B0RzBuY1k4RDNiMTY0VktMVC9qZS9BVDZFRDR1NVhMN0JRcVFpbWY3ZC9lRUtzUGl5SGYxSG12ODNQclFmZkhmNzgKMmVIWnZiLzk1Mkd6K2NrZjlzM3A5Mzh2bnQ5NStmMkRad2Y3encvUGpqdi8rZm8vUDMzeGF1L08vMi92eTdmVFozSUZuNEIzQ1BzTwp0dG1Yc0dNZ1FCSUlFQ0FKTzRFRXdrNzM5UHh4bjMycXlydnhDbngzenAwejV6djlhNEtOVktXU1ZKSktLdVdDdmRhUUltWS9QT3NYCmg3aTdrd3Qyc3k5azRmZDltUC81RGZzVDMzL1dCWm4vZHVHQWdLbFJKTktjYlRsODBiZjlYelg3VW5OVnlZSnpWcVZvd3hDYTRuMncKK3FlZHIrRk9kOFo3YWtLcGNIU2NTYlJPcG16cjZYUytuSnFJc2p3Nk1BdlJQUmdaVUc5QWNsN3lKNE8xMko5WkY4UW9tUzVnNUdjbQpnRmdnT1VxU0JjQWRMbzg3dDQwTnhHc2xwQ3gvWVptRm9EZ252VHllRVpYQVhQaDBlcXFWc3NNbkhIRk0wcjFMakVqSGQ5V1h4Wkt0ClB1RzBESkxVUUlUa0NKK2JzVG5wc08yYytXVzR1U3E2YXo2UzQxUWdBTDB0MURCdnhSbmswQXdRcWo4Ym1KclptVjhzaThkSVl0cHUKWmlOOTRsMjhCcS9sZFVjQTIxUXFlajJUbU5TU3hGYnphdDVnemJicU16ZlFNS2xZSVZmcnJhUkdpOTdrdlZmcVJiNkIwQlFKakNnRgo2NWVjYzNvbG5hL3JCRmtJOVFsM3FqVHlHcXpjdk1Dc3B0OWtzUkNLNU1MZWx3NVNPRDY4M1BFZ3BBWC9hT2ZLL1o1bWY3bjFwclBOCnRwWmRDd0JSZGJNQWRrWFA5cGtnYmQ3SVI3YjV2YlNEbjMzWmNtRjNiVWxwUzJmaDIxNE9nOUZ1bDVRV0xIYTZaUT09DQoJXV0+DQoJPCFbQ0RBVEFbDQoJUm9VREJOV3ZWb0RNTEI2N1VNR1BDcFBnOGozYnRrNlB3dmRzMldicll4MzlYWHVUU0tOeEd3SEF3ajNmUG1ISjNNcXgreUdUSmR6QgowKzM5cG12TXB3bllTM2pLR3NjbTU2TGpjZi9PN1RTaXA0Q1RIYWZJQWd4di9uYnhQRHB5SnlySGI2Q3hwK1pRRGordlA3SnZvNmM4Ci9UU1dIV1dTNWJ3UHZETHFBQzFRcytYdy9ubVlmVHUzZ3R4VDlETFFZK0NMdjh4aEdyZFJxOFdYVDM4dm1YN0pieUxONzRVRG53emEKMllETmFDbENuczdqcFh3dEF6K2xzS2NTL29qTkovRTA3bkhrMCt4M0tlNFhCaXYzSnZvVy9wbURxakNQZm9qK0RML1ZpQVo4K2tqOQpta0dRaDkvbEtHRFpwSmVNaEx5RkpqSHM3NHJ3bFNSNkdmNVpNRmpaNGVYZ1M4OGNIQW9MeENjRWtXRUhuMkova1VDdndORzhvaUd4CjA4MmlnUmlzYUpyVWhPR2dJcS9sZWd0K2wwREFPQ3dJaEpoRXpKREZTTkdmTEx3M0dndjdhL1NiQkh5T3BwSG1TSWxlUjhPanFMaFoKSkJvc0NkNFFQVmtzU2RIU2dkVVhMcFRFMGw2eEVLSmxvTEZRdjRIRTRtQ2phU0E2Q2NueGlHYkYvWW1Bc1poTEVtUElTTTRscGI0awoxSkRSSnhZaWhWVDRKOFVXUVBQTE1ZWXNXOENYYSt5c09GYVJKQlo2QURqNWtsaVAxRnlSNUREa2VPVG1ERjkra1NLcVNGSlpBajVTCkZCTk5FOUVrTGdTUkZvNG16MkttZUZxRUZMM01TUjNnWkc2MUJLdWE0cmdXdlE0cGtaVVFsUVE3d2xkV2VWQk1paDdRc28vQTZpZTEKTXI4Z2tpTXFJc2cwajBrcFFEUTFWalQxc1NHMUpLd01VZG9TamJFWmp1TE9GL1NKSWorY0JobzgvS2N2TlAxYzJWYW51aUV6OW5rTApXUHJmQkgvRGlHVTNZSzljMU1oUnZSY25qUzRmMk1YZ3ZLTE1idSsxQU11bHNNcThtOXVML005Z21DbE9WM3NidFpYeHpJblE2VlhlCm5lR2JIZTUzNU00QVgwem8wS0NCRmhaZVo1b3kvVjRyems5dWp4TjRXNWc1MDdFN1l2bmx1ZGt2Vkt2N0hIOUN1ZUU4Mjl3VVhqSnYKZzhNRVdMRHJ6Qjh1eE9KR3ZrUDhHVnNQazk0UnVSVS85WnVjSDhBSjdleUtVMC9Mbnd0N0NDL1BiOFJ6azBWaDdpcVdPZHNLV2twUAo1eGhIR05vSys0eSs4RnczdmhFQlhGUG8yOGJXNVBhYk1zOHVBSFNENEdmZXJiL2UvTXpDY1FGTENWanJvZjR0em9rRzF3UmFTamM2Ckp4cGNFOXJxWXpuVUM2ZEd1Y3dDMzNldzRqeVU2TnAzS05OcjBMYXVhUHVvKzVSRFppeEhKdzdVLzF1ZUJYS2tHWCtxL0ZtbzVzSjIKZ01BNXlUVXlINjVjdy9wMVF1WXdWQlVSQ1RyeGZSSEU5cWx3MVZlby9FYkdITm1BWndFSlI1TS91eWxIT3V0YUsvdlNyZ0oyQjlKSgpNU2MzRURtbmdxSm5LaHgyc1FKUXlxM0RpdzlrL1J1c25QMS9PZEQ1UzZHMHNzNkJlRFdTTUtneEJaODhwOUxPTkluRjNJbmdzeEJzClRjWkpTZG9wRFZQS3ZxMHpidkRyeFI2Zk50TXZSS1p0ak5HZWFzczFCOFJhQlZXY2ZxSy9NdWVYbjhZNEdQQnd5S3orbHc5TTF3ZGsKUDdlcXU0RWo4dm9kWkFVa0RoMkRRVzVGUEJxNUJ5eXpZL0haM3hxRHkvUWs4SkhET1RKWi9QU3hVQ0xrNE10bEpvdWJNNUJLd2hyNwppMUtjNWJINFA2S1JhZTBwMTNqTmdOMmk5L2RNRC9UY3MyWWJ6MjhkNkdzekQ5NS9BelNOdHpZc3NqcFBYckhhenJjdUhWL21CeEZtCldpcEZ1TytOMldCbFdaTE1IQTdMZGpCZWYwOGpCQWtzblJoQjd5NlBmY2Z5RlI3c2wxMnVuQXVlY3hqdWFSK05nalg0R0dSamlhcVgKZmRBSzduMC9XZVNMRlQyWmcrbXBUTHFjbmlCUVYrL0F2L0hNTm1CM2FwTGswR2xjd3BrR01zbkpZSk41YjdodDhhWDc3UWRzZnJGZgp4T2M4N1h3UndDaDdDMDhIMTRqaXNVdU9NUlpUMUp1cy9BcUFhWk5lSXB5MW9SMFF4bUhVNURmQUJSMlZwWmMzRUNpOXdCWGNmdWQvCmpqOWhHRlh3ZmpTeHArSStMNEtvd2N2bmdXMFl3YzdOU0c4QW1DL1ZOWG9samtlTndPWW5uYjNYVTdiYXcyZlVNajVXbjJlRjJWL00Kd3pDZnd3VDg5RFJXeUpmTjFHYmszUnBUUGlvUVFFWFAzaDlEOGZuSU5xZnBWSDcxNTlhK0pnNkF2bTJRMldHd1VoaWYyOUd2NG5CZwovUUNEWHhneis5ekF3ZTVZUzVidmdOWU5XNnlBRXJFSzNITVd4WW0vL3lPMFlaREcva0MrTzcxZjF4YkFVb3E4MTNkdndyMmJlak9TCkRCVG54Y0hMWkFoc2t3UlVPTi9PNHRTTmZXYURqbGdEcUwvM0tHVUwwT2dENWt3eTNiWVZLbjgvSDdsUXArdkxObHl2aTJ5ejVRYWUKUmNsYStvcmtWdmpzd0RkVnFBM2wwVitvZk5SYzBOaG9vbGVBZGs2K1NRMCsyckpaM3NpaDJkWXJmQU42NWRaUmk2Znc1SEE2a0hIRAp5ajZ5SkJiV0ZlQ0ptQ254YlhsYlNpQU5nazIwZVN5NlhlRnYvdllHMTJvM3pBMHlIY3ZweEdLdWdTVmVHTU9uR3RrRW5CeHErYnlDClIzWWpWdmtvSldrUTdQNktJclQxMysvditJKzlVUWNtblNkTEZucGxsOVRVQk8rRjNBWnI0bXY3OGFuMFVzY1ZlWjRtWGtTdkpPWUQKNXdyRjBlTFBpOFJQMGJQdDQwQXpodkRzVzRqOEt2MmRYSGI0M2krallTNjR5SHdFZTBsOVNSa3k2WEMzbEgvT2Q5SWkzcUJQTHc3RwpEMkEyNzV0Z2tUTjdublZJZzhKOGdMenZPNE1WSFlCSXJJRVB5R2MxSEg0azkrVmtZVjBMY1VZd3ZZZ0RzN0h3L1RiYTVuOU1saEJnCjdPQkxkcE9xYktWNENLNExaTHFYN1hRWHEzLzc4ZXhMdkZqTkpISTd2dVZOanl6cHlCeThzVFBVeVpsczVHdjJYUGlPamZ6Ri92eGsKRTlFejludXd0OEMrUCtobHQ4c1hGNkNZa0ZsWWN3bjkrY2tOSGd3cVhlRnhTZW94SEpCaWtOZ3FXMnhsSTdFbU1odUhoZS9HRWV6SQpsS3FnUjFzMmsvbnMxNExNWnhiTnN1VVJyMlJqL2xWVytwV3M2emZUYVZYR1pMSnc0bzBHYUdLektSTi9ueTh5MGQxaGlPS1NsMWlBClErZENhd1c0NkhXcGRhYVVtU2VFa2l5dDYzL3VWS1JVQnZ2THZwL29zUXNWQUlxeWVJUmgrZ2Jnamw5YnB2UGRPdk5ncDhKUDU0S3YKT2ZObTRzKy9LNTV4RHY1cGhVM2tKazhmdmJEaXVzOUM3elgzQjNZL0FmbnRhLzl5UGhneHBKNEgrZVFvdjV3TDVjSHhXUEJNeUdMUwphYkcyQVMvMjlybS9sMVRva2w4YUpyQjlyZnJRVWtyZ0RxRG5nbFpncXJYOGhlL1dBVGg3MlBjZlR3SXJ4NjlSeVVvYXE1bURlWEFxCmZHOFBQZ21HallGZGMrR0VaenRkTXYrZERuRGlRL3N2MERpSXdFQXNaV0tSbHU3dkQwYUVWc3RDS1dXZEF4TWpGcVppc05OTy84aUMKVFpDT3l1d2RPcGVmVUVkMEMvUGtBTG9LWnpmbkFES25QQUdYd3hrTkhSTHZ3Q29xL1daZjhGd0F1Tm5wVlNhWjJwbjVzc2lZUWVEVAp6TStqSW5iMDlNT3BkckNZRFhtckRhZ284RXNzNkNVMDBBRkp0Q1QzSkJOWjJ4U25vUTNBN1BVNUpZaGx6MGJlNmlSWWc5NXJkcHY5CmRraGpBWlN2UnVWQU9JRDFoQzNpZFhjQTdLUXRtMUdUcEFyWW5sb1hPY1puZysvWUNRaHhhNVBGaURUWkFFdzF3b3JUM2lGVXlKUjMKZStabHp4WWFkR0dLa1VxOXpCb2RITkxXaGZ2eHFmL0VvdzdZZGI1eTYwakdnbHdKK2lBekRBOFhJcTR6MUJmTnVQYzdlV0JueWc5QgoxTXRPTExkZTcwWWlCNTdqTWQ2MlBTbE9zS1NkYjhIVEVNUFVnK3g2UEllbkVtWjRXSU5sbTl2YXFlQjUyYzhZUzJsMVprZk4zMThRCkZsdHhhZ3AvQVUvR2VDQ0wwV1paYkd6c3k4MGFjcFFUMzM4MkczRGJmOE9jTFNSaEFkU0J4aTc2MEdJRExBbzJSZUs5Nkg2eHV3RUIKQjE2bDkxSjFJSVpWQzhCTStxUXdHNndzN3ZkTWNrMDYrVGE0R05pYnZOeEJFZDdubjR1eEVkcFEzS2xqUDhZcFI2QXQ0WlFlSFExbgpEM29vei80ZmN6eEpHN1RNUytSdzdROERIUmxlWnlMZFJURWJMUjFQOE9qYlN6cWV2SjA4M3Y0N0p1WngyeCtZYzlQSng1emEveUVyCkV1cms5SFF1MUpibmJIU3lXL0MyQktSdys0MXhHZGg2V3l6eGZaNGZ4S3AzNnlyNGViOWdENFlSMHhpczRUMGVld1AyOWh0SlpoYUEKeWQvT3JaazYvNGFSMDR2b0FQMkFPbUNmZHdMWUk4bDY5czJUQWV1eWNHMzRXQkJ6RnFkbjB6QWI5ZnBNMENBTWk5Z0xiRWViZVM2NAptczNDbmZaWEp4cEo1OHY1NWNmTUJEMHNVeWJaQ0F3SzFXclN4QjRXaTM4RzdERnliQ3RtRWw5dFlIWkdHbTZNOE95blFNdjNWMkRQCi9kNWxtK3ZRdTBBSmo3dVpvN05yS2xTZkFvRHR6Ym1kbEVKbFR1MWYrNUhXOEx3eFdNR2IrY2ZDSWhRMkpUM256NTl3YXU4cUFpL0kKdFNlVDVKVG1SbFkvc2FxSjBVbTBIanZTVHNXcnpmMllpWmdLS0hjQURPUXJIM21iYlpQQUd0OVpCbDR1dUJtZnphYXRPREYydmViVwpYcnhWNnZhN0c3QXVweHdYemFOZWVSNU16dVRvNjd5RTJSWjI1QnQ1TjU1V0VDMEVmN0V4ZUxNMHRScmZmdTg3V1BpMkk3dVpMSTZzCmJoTkFIQkIvYUEvazVWZ0l3SGFBOFRvNEF3TDJyRUN0TmM3Y1U0ckgzck90ZHFURjBTNjJ5dnpXd016LzNnVWhTMGpsMFR2WW9uYlkKTVlzbG4zZThtQ2dpVnM2ZWJCVmNQLzVwMHRPcjVySlJUd1hDcy8yQXVTQlpaUTBpT2NvemkwTmJlRVZnVE9XbTJaZHFHUjZYTG5xUQpEb1JnU0EwVDJCem1ING54Ky9ZWGVLLys0cStWTE1hMlA4VkJkOWtHQ3NmYmszaDlGRzYvZlB6U0dxWkdmc3JDSnAybnhMWTREVHRECnViclQrUlBaVkJwdTZJbUxvOUVOc08vWFNUdGdaMHUvNk8xRkY3bmdlOERMVy8yZmdXZVJiUldPcnZDK09rNC9BdC9ZQVp5ckpDN0UKeDBKeFBRSjVtY1JYajRXdm41Nlp4MmdzSE9UV2d6M25UdzVFb0pGZlptYmVRbVdkZnhkdCtSalIrRFNUam1vdUN0Ymx0ZS9aOHVZdgppSU9IV2Mzd0EvM1BVSEhTS29ZNHpTakEzSWVHUTNtR0F0Wk1oS1FmUXpFVjZDTUhzSmt3NWhJdmprZS9udXdtYlh3bFI0NHZBZ3JEClorSEorSTF4dzJOZ0R3ZUp5a3U1R1k1MzJ4TXdsemxKbTRpQTFXaHQ4WVF0d09vRE04OEpFSHp5WS9YaHVQbExVMnBSS0RaMEYrdnUKR0pBNnR3ZklVT3RZbktiS0FGVGJ0clBFMnNVUFMyenhEbnhrTUxJeWpNdjdCdG5XY25xQ1kveXZGSnVDSjh4N0s2Q3J3elJrK1RrKwpLdXYxR1NXNGJ3OFB2QWFlT3F2WlpMS1NOVitqTHAwUURGTUxYd3ZrRUYyQlU5aitlME5kRGl2K3NXUnlzdlpyNTZXU09Sbk1UUDArCmowcXdpQi9RSkQvZVVhWDhQL09qSWh5Q2dvTXlUQ3ViS1lDRExyNVkveWdWbUdpNTNFY3lBWjhaT0hXTEUzblkvbVVQcDM5dkQ2dWMKU3ZFajgwUFlneWZQWmEvVE54VEpaN015djJzZGZ2N2dkU01LNmVjc1VjZUxlWVZmZWlFL0RlYW1lNjJ2OG1lcE5JVG1mTUVickJJOQpHRm9BTW1vZFJKTXJlM0MwbG9DQkhzYUgrY05wT1grZ0t4a2Z3TkpBSGpvKy9IczUzendjeC8rQ1FqYmVQUENGRWZMTHcvZ0l2K1p5ClpKbjdRSHdQN1NNQ0NmNFZBdnZQOXZ5d0E5ejlBS1JzVHJFcVFrMkJXOERlNUQ4Q1JKNEhnSXo5NlFhTS8rRzBoU0NtODRjZlZFNDkKZmxpUC93T3ZLUm52ZG9CdEtRaytucWRMT0x6S3BvQ3E4RGd3RkxZTklORVpqRzc3emFIL09UNmNOeXZZTk5pbnJHSVlzUUdncDRlZgpuWEk1QUVON0VvajQrM3dDTDJCVFgxYXFLOFlQVTE2dDlDcGJlcTQrQktTb2N2d1NJRm1OMERvQWFySlhpMGkvR0VRMG9JdVF0WEpmCmphdFpWVUQvZGhwdlpyQnppVUxsQmdPMnZ0MXNwNmdMakx3T1ZzSkY3UURnTVdCY1doSENuVU9ERGhUbzRPejBzSjJNVDdYeGYrWU0KZ1lPYVJzMVRaOVVmNXJvcmdwRFpOVmd0eUUyMkFvdHhzNVB0dnpUc0dJZ0Y1QlNvUHBYTjF5UGE1SVdpZEg2N21hSGl5OG9NVVB6bgorNGVwTWRDdzA4ZzNkRkhlb29VRUUzTkhXQWZCdUNYU1gvekNxZ0wyaWoycXFFQ3lLNHpZVU5IUUlVWjE0VGtTY05NSUtoSU9zcWs4CnA4a1ZUWXAzM2ZmNXJieWlMc1pBR1lQZGhMNTNraE5kamVoNHYzN1dla2tCODF1NlhmcC91Qi9xRXlSdEtwRm1SQT09DQoJXV0+DQoJPCFbQ0RBVEFbDQoJV0RBbU50RVVyUm5xNWdXNEN0eTlPakkvVUxwTVVrbEdSRVlaeDF1S2xoeEVNejdOVzh2ejMyUXovbGxyTU0xb3dXbnhMZ3BUMzhxQQpLWUtJME9KVk94TWh0Zm1BdCtlOGE3TVVkNkMzOHdTdTZIWnpha0lPMG1iRlNzbWlWR0VvMzlJRDBFWDNjMmsxemJsU1JPV3BJeTRUCnpWM24zc3ZUa0hwRS9XSUQxcklSaXJTYVdEL3BrMFBXa0FjK0szaUIwczE1MXAwVVZhL0J1NitnNFl2dWh0Nk54ZTRhZmNNV3hSb24KbHZFU2wwNXVndTFOSit5Z0JzZEpkVmFEdHhReHp3eG8vUHh2Skl2RzNLblFLT0pPZHlaK3pPK3VlOTNwNVNrQVB4SEJaQ01lWUI4MAoyRS9vUVNLUWJwMXloZTlZYVZVMk54L0g4T3dxeFQ0bDNJL044TkxvREpRZmpWNi92V213R3QycFZkTG9mTzdIako3bEQzZzArdllaCjNlZjRtOUZUN3hhTVhxeE9ZUDdIbmdPaER4bnp6a2J3U0J6cllIQ0ZWVEQ5TWtvRmN0RkFOTndQLy9WUjRnWUtpSEJQc2ZKd25qZFkKRDRmVTR5VHIyVDAvWmFxeFl5cGFUcjc3eUcwLzJDa2VQdnRZb1UvMld1Umo5bkdLdTdLUkRZMGxZR200ODE1WEUrQ3JoZVdtUzAzSQpGNmpGTElCaUZ5L1Zqb2RENHRnQ1NEd1Z6Qjk4bzZiQmpld1lKVThkWXJCZDJiQ1pEVWVZWHppd2h5L3NtQVN3bzJkM3FtUzBvWW1qCmRTbXNmUDVqdEJTTTdoTy80TS9TR3Z5NlZ4QWkvVHg4MVQ4YjBraExrVUVvWGhuNEpKRU9MTTgxZzFXRWxrTWEvcW1Xck5KSWswYkgKNFloYkQ5SklYL0hQb0ltSXV6aWtCaXVIOW1qMzFMMHlTRU5MeDlqZUswb2pEVG8vM1VsaUlUMVRFemtJR3F6bTltNWRrNW9yUnVhcQpHUm1rWWJObGMzQSt5aUR0RFREeSsvbU5RNHFLTEZtMEpXUFNoajhOVzVKSVMyV2lKVXRlb3A5cWpSQlN3SXVUb25CTjN3RW5mNTVUCk5ZaldlYm1xamw3Z1k0MDdBZExnOW9LVmFsaU9SdnBxdDR1UWhrSi93eDJIbE9Oa0N1M3c4TFhjdEdTUVpzYmhDR25CSlpFTzBxT20KSE5LeXdXb0pPQktmMG5OTkdyK081dVc4S1kyMGtYZW05cGEvbWhSU2QySWRUM0ZJd2JvSVdjbVY3bWRlcEpFR2V6Mk1qR0hQa2toTgo1Q0ppYWY0UkwxSklEVmFNL1BvaVplWWFObHRYbTNwZUR1a1lLM2xHSFdta0pTeHJuenNpUFlUVVlCVVQrR1QycEdta1BhOURST0QwCmMvQ1JKbS94YzBVS2tQYVRXQzNpeFNGU2x3aXB3WG8wbGVmYmNIUHNKUURheUU3TXY3V1AvbGdHYWRnY1djM0lnUnpTQWxaM2ZjVVEKVXNoam9ybFc5dkhNNytHNUtZbjBMV0VQeUNLdHp0OENtQlJTcVBtREgxN3NiZWcwU2MzMWFLcVc1ODhmZmFkREVtbkh2bG5JSW4xYgpOa1lUaE5SZ3ZaenJSd25yVkhkSmFhUzFnTFZOWnBLUDBraDNUeVlwcEVBblE3U2RZY2wwa2lId3h3djJucTRXcEpIV1U4WGhvUEgxCkpZbjA2MlZWUVVqaC9uSTUxOTllYUViS0lQMk1ZbC9IdFZjYTZmUHY3dThsRmcySWtNSlVBb2gyV1BGdVpBbDhzTDY1alRKSWUyMnMKK1BQM0pJazArdXcxR1ROZlhxREhBTnI0WGl3MDUyRmtTQ09kQkp3aW9YSDJhMk1YUWtyWVU0NnljS1kxYk9TS1p5RlNENGNVWUlGbwpBZGpmUGFQMEh3OWlwTWV0N1pGR2VrcTdSVE0xZm80L25CVFNYQSt2Q0JXaDUzQnNwNHdBQzBEcnU5UktGUythSzBDYVAxMm93cklwClRDRk40MVd2U0JGNmRzRm5hcWNKV09MNUtrSUtzZEJvTFlmRGVMS0JTREVSMHNNaE85OHkvUHRrRkNFOWhuN2o5RTZUampkOEl2S2EKdHZOUnkwRGJEL1B4TUN3Y1ZMbHRHMnpqc2s5N0RmeXZJL2QwaVpWSDFqUDM5RUx6QTlWYnNNbjhHcXlCeloxbnh2VTdqNGllaHFQNApzRVUvUGE2aUYxSVozaXhOWGFubmxGSjhyY1EvWlo5R0NWZHpKUDkwT1I3WVdZcGRQczhTdHY1VTltbk52VWtUOGs4bkw5OEo3cW1JClltSHppMms2S2N2OE9scTJsWlB0SS9YMDI3NlBpWDdiZHY4d3h1azNib3BmVUt3OWVYcmJTRDJudEZ6QnZUcklQbjIzVHZ4RythZWYKaGZnalF6R0o1eVBySUdLUmZmcDdldDJWWlordU9rU3V3VDI5b05qZmlrd041SDROaHRSSWhHU2ZQaEhCVkZlZVl0YnBadkpXay91MQp6V2lyZkxwa254YXo5Y2xjOXVrVGtUYmg4aFRMR2dtTE15N3pORlRHaW84dVpzNXhSMEwwMU4xcUhOUDAwN3d2S1piS2NtdFVjbVc1CjU4RmowTk1VZW1CNWJHYi95TlA2WjJSZHc2YzcyaDBsaHlGSzllUzJ4MmZxazBDUEVTY0w5RER6UnU5VHJBYzh6TjhXL01jSHZ5T04KbmtJekQvOTVSLzRiNjcxUk9vTEdOMjdtR00xM01CSDJ4MWN2cmMrQm55T3d4MUxtZ0IzODhPa1B5UWIwZEhnUzRhOUhOM2JneDNiUApRTFdhYkFEZmQ1TEZaL2IvUEU2Y1FEdVppb2Z6eU9jVnFOdUR5V0RsMENKUFJ3WnAyQXo5bkE5cHBNRmVYeFlwMkVSK2NaRTl4cDhyCjhuUmtrY0l0YnlxSGRNWkhHbndEUGpJUGJmUTU5OFpET3JQWnpCeFNaUDJ6U0FNaThrTHJuNTFwYVMxQTZ1d2g3NVdQVmtEZ1IwSVcKS2JMK1paQUNmeEJZL3dNT0taaUxZSzVmc2tnQmdZOUJlYVRRK3BkRmFyQkMrMzhwUGRlazBhZUV0R2FYUllwc0NnNHBsSDBCV21oVAp0QVNyT284eDZORW5laUdjK2Y3c1Q4dDdnL1BmaGkvN01tK0d6ZnRCc2Z1aStsNW9TZk1kclMxeVlNNmZXVnBiWG9qdXlQRUhxZFBrCkJXaFM1UGxBS3hmYlcwWWs4VEMxMGNQOWs5bzVaaTNhV1ljNmlmTDNVenRuY3NkQ2RDQVFxVmpaOG90R2tZcVZQZ3BBY1kyTEVIT0EKVTAwMCtsVFJTdi9qcVc5cEJNZ0VaaEN3dGlVWUQ1amM0NDU2U1JSOUFtb3Y1MS9PQzFiMm55YmZZcVpqWmkvc3l3V0lwY1NmN3VncApUY2VVd0pEYnIrQUxHelJvenk2R09wVGRUcXRqM2d4ZWJVSUNzaEUzTUdEc0tXUzFvbjhnUTc0THZTU3BRYTFpRmRHZytFTWFudTJBCmRlc2V3cDdHZUhFMFVUZ1FrUnhveTY5enJxcEdkUGdQUFhqS21aZVluOTBvT3orRGxac2gra2QyQlpuMWV6T3ByNStablorTDVqR3AKR1VManRhMUFMTzNydDBYOFNYa1dHb21sQUF4MzVYNUpXVkFHTGV6T0VDdmgxY1ZaSEY4SmRtU0tzMHFmZS8yVWw2UTdNRzc2TkNmZgpUSGtpMTQ4OUtkUGRJRThzb2VweFhxcWVRVkdvZWdLeXFzZWd4cnJGejhxQlQwQjJ5QUlDMmlqVkkwMjdBYnlLaGlHd3pIZzhSUS8xCkQwMDdmQ05OdTU3WEtLdTI1YVFTeGVNa3A5WXo2WjhhZnhkRGt3dWtPNjI2R3FsTFZSdDltaUE1a0lKYk5DditMc2FiMWZ6Vlo2TlgKLzBLTkZnR1d6bGJYaEtRMERPQWQ0TTUxZWJSbHhaRFA1eU9uRFF5dVc1QlpKczhPSDF2c1pUUUdLczUvSldFdytWMTZ1WFUvTXB6RAo0MlFVMUpFR2htc0ZKZ1VLMFoxM3l1TzZsTHN4cVZYdWxLVU83SlZqVS9lc3VKWm0zTlBHUGZDZkR6ZnZrT0tDTFlCbWRCU3JVc3NKCktNWmZVUGdQV0ZBdUVIM0pHMkIrckJhODVJMlhCanNrM3JqUVhFNGx5WkdsU3BPajNDUXoyUHpVOWw5WVlaZEx3bmw4ZGZmbGtzeEsKYWxhWVZ0V3ppaDROVnRtTlNZUE55TDBNckptUGsreTJaTERxV2Q4U3BFbFp2L1VrSmZ1emtsQlBTeENydnVVMlhvVWhuZEpQc252bApTNU1lanhhVERneEozcUJqbHM1ZzFiYUN3TXRYTkN6VWJIN0JDbTZzaW9hRmp2VXJ2ZjV4b0NoT3ZnSFkyMGJEdU9CVloxcUFDVGNVCnZlTmlUbmhwWUQxbEowYlBKUGxXM2MwVUd4N3VTREdoUnRNNXJwMHdEak9LSEM0YzExUHFlS1YxTERoL0FlTXBTem1EY2dhdDVBWk4KNUxwTG80b2U0eG5ZMGxKNVNwdnVKcFc1N3Q2aXoxR216bU12VnJJTWoweHFIRzJnSjY2Zk9qMlRUYXZ6d2RxV1l1cWtqdXkyckJwRwprRFlNeXlLbElDa3Y2c3VVT2lxN2VLS0IwSng4T1JRVkxhQnBJQ0xiOGpxYXFJZzlieUNVait5VzJhSVdaUmk2L3REaGsxT0hrc0lrCkl6YTNoL2c2VG55OGdEYjRWSUU4WDlTQlFDYW9BU3hCbzRJTkk2aytaQVNrb214MkdLeDZCbVcrVWdFSXRTVVV1YStUVlhsYjFxb0EKS3B3QzBPcnZ5OC9Qcm9Ia0JtMUVGOWdLNnZFTXNTWFB4ZnArSy9CUTcvMGVURlU0NGNXdlk0blRESUpjT0VuSFI4WW5CN3kvREdqbApUL3JFU29sWTJrVmMxdTFCWGhJZ2xrNFJGeENMRlhIMGk0QWx0dklMQmZ3SnprVW80cEpldDNwMENYQ3RTVnVFUkNtVzhDUU95WXBICm94U1NGVVZJL3A2RUZyeU1VNndla2dWVDR3a1N2ZnE2d3lSUE1DK2hyalc4d1hwSjRxRThuWVhiOGhYaERjQUhld0pOQ0dXcVhLeVcKOXJVUzdha3ljUitEVlNsSzkvY0VEM2Q3TjhWOUlGblVZMzBpVlNBVHI0SFVDV3ZpWko3ZUZFUWFkZ0pUT25NV205S0FEK1NEaWJSTwoxbUJNUXlwWHhhYTBIdHBSOWhnYWoxVjVQRnJqQzRGME8ySVhjUVRQRjlPMUVWWkZsdkIxOGhKdk9KV25wczduVlc3elkvZVhLNkxSCnU2cDQzNU9ia01HcXdPbUFkNFNiM2pVS0lOMjJoZ3dxYTY2Tk1FT1ZJTDFCdE5YSjJiS0FPcUtOVG0wZjR0dXkxRng0V3gwOHJMTHoKOHpmZ3JNQjNXcGhCVnVwNG5Kd0g0L0hwaTNsZnpybjdKclhiQ1U5Rk5SOUJBbUJ5OFZhcGFDdmxXY2pGV3lFd0hjSW43UzhCb1RGWQpiejZrUUt1bXZPVVpOTU1ST3BMNlJrT2ZpVk53YnBWQUNncnJUWEpRR0oyc0I0NytmWS8xOXlXQUNVNEk5VzJpd3ZOQk83SXVQQTZoCnhabEhhYXAzT1dISW8rUlRnMVZkRERWc054QVk0ZE45eGlkalJNQmNUcGNtVXZMTXovaGVzSXVKTmRweDVielFhTWVWK0FCUGcwYVQKakpEa0FXRXkrMXMxV3B2VGFJejNxc2VDRndOVDEyZ0dqU2RJRU5qMUdvMlZ5bEpuZXdlTkJsWk5TcVBwbG4wQVI3OUd1NGhkVUhCdQoxMmdReXUxbnJ3aU93bW1RSitkZ1QzSDhCcXVVTlNEWWhEcGJKUSthZjNRb2JhTUVQVTFodmlYd2VTNWk0L0M3V3c5Z21mM2wyNzZYClYwTWFMYk04a1BPWGs1UXdVeEY0ZldvV0FPc1lkU2xaZzFWV3pWNlovU0FVNWc3eXBRV2UrRFVHQ2xnMVVWS1RuSVpSaDZQTnRKZUYKZ3VJd0FNN3RLUkFJaW94RExUcDVWNGNqUEhUWEdGNldPRTFBd080UnE2YjJRakEvTjdRdWhMc2grTlo3aTMzUFk5S3hxWG04MmVQcgp2bXVOWnZGaUY3Szc0YnN1KzE0NUJndUIzVzdmZis2bDlrSzl1eGhjTmYwaHJjdGRETUs1eGI3blFXSDN3dXQzTVFSSHdyNlhnc0o2CnJ6Snd0TzZHeW5zaDBqQ2YrNXQzUThGZU9CU2ZFeU1zNE51N3BDTkIvU09aaDBYdmxZTGtLUzROUTlZV0dCNFVsb1JQU28rRzA3ZHUKOTVaWXRTak9ENERkS3QyOGNVbkl0bkt1dFFMRk5KbTd6RXBDTEhJZUVWaExueVk1VnpnOXpRTjZkdndLa1NzTjZYU2lJY2x5Qk1ydApVUlV2OGNhVTkza3Z0cVc4ejYvSnI5U3dNUkc1N2t3MlBVOCtjMDNHM3djakk3U1JVb053VFk3M3k3WUZ3R1RQYnRob2o5YUVlZ0FzCllFbFVhL2VJa0FDS1JmU1pHREk1aUhBbGh6NU5NVmdLbUl5dzl4U1RieW1PTUREeGUwMkQwc2dSRjhKRjc4aVU2SEw3V1NwVTMwaDYKRnZRYW9HcTU0OExvM1RTR1JrOW5VRFI2czRFQnJKc3JTbFhRVVRlMzNGNUR4OS9GTGl2b1JCVkRWOWZRS1ZmUUlaMThoeG82V2FTbwpnazYyV2xCbkRaMXlCUjIvV3ZDV0dqcmxDanFCMVhkRERaMXlCWjJnV3ZDR0dqcmxDanFGYWtGZE5YVEtGWFNvV3ZBT05YVEs3OUcxCjFUZlgwRjBJcnFDQ2p2VXNicXloVTY2Z1EvYVllZzJkSUNGWm9jTHMxVTVLV2R2eU9mRHlsVUNpWkJjTlE1S005QmJVRTdkZDJ1cWwKU0pHUGZIVXliRUZzL1VvRUI3UkdlajhLd3QxZTM5THh6dmdLNG9TTnErbVVjQW5ZVlZncnl1N3hEaTNGWVBQZmVVY3RpQ0k4NDFNQwpwcHlIcFcxK0tOYW5Wam1uZVg2aXlOV2x2R2dudWwvL2tHUXFIMVVpVjBwRGtpcVpnM1BSVlRTblNkY1VSYWtnWEc2UHZnS3FrNjVVCkVDcC9URElaUkgvWVdDNW9qRzRHdXpsZTFmT2FsYWRtMEZqc0pzeUUxQnNZUkp3TTF2eldpREZWN0NaM2JDUDBrZz09DQoJXV0+DQoJPCFbQ0RBVEFbDQoJMUlyZDVQMVQ1UU1IbnJZc0tpYURDRnhUTlRla0tLcG1FRlFLYXdNbVRNSENMMDlzSnNSZXJmSlJtODRhazdxY1hpU1ZjbTd2SkNDZgpRcW1yeEJUVnZ0VTFWaDJxKy9hQVdGSm4yYXc5ZGhrNlV3c2NycUk3VVpnRS9MWXRtVFI3eFlsVlNkYnNrcTBDNDFsSzRqb3dWYk5MCmN4M2ZXUzBIWGtjZDMwU3Qvc1VzQ0ZySmw2YkpGOEVvbTlLWE9mRDJ4NlZaYmxBWnFSSk4rZlZUellIWG5FVXdLd2tqbUpMcnA3V08KTDNwUXE0bFJZZ1poZGpvRWRyY0swUU4zOGlGWG1hSUhtRHJIYTZlWU1NQjZJOFZVeTBTMVQ1TFRhRmRSVEJqNEpYTGRubGVZNkZRVwpKZFpMVkhKcHMyVXZZcjZYYmhZcjZrM3B1S1Z5dlp3SWhBeUFsVW00STB1QUdCRURIUDR6VXBUdXNnWm5qL1g0Vkp5OVJWbXpzeWNIClFKeWplQVVJdGF0UndEcXp0MnBvSzVXN2FvV0dtUHIrd3BnMDBtSUJTOXpVZ3d3R3haQTByRXFUY2VJdTJGNnBSczZnVXVhczRjZ1QKVFVqNXloUERoWHVsWUVmR2p4ZXAvSTdDU1FQSmVTY2pjcHo4VzlFWDNwRndsU2hMU2FWQTdrTHJ5RmRFblNSMzh5dnNzWXBXaWVmawpYZFllKzYzb0MrL0lsOW1KTTRpdXB0TlNKZEpnRUxrUzhpeWdNeUlqR0pLZ0hoa01pdEFUL2xBWWtsQ1kxWGN4QlRvRnRRNUpPVHRkCnZTaE9hVWppdXp0OG92Z3ZWWkowajRqTUU0ckkzSmlsQml4aGk0YUlESDNHcDFLZVk0bjdiTGRFWkhqKy90UHRFUmtBd0tHUTNhR2oKRE8yYWlNeEZ0ZUR0RVJsWWhpYUt5TWhWcEtyVjV3VjFSV1FrNC94UEdzcHp0Qlhud0JJOUlIRHFuS3d0ZlErMjZzQ0V4bktWTTVibAo4OGExR011QmROdHQxc0FNeWpXSnUrcDlNaG5ndXNRYjl2c0VkY0RVNGc2Vm5GNHRaV2hYSnJEejl4ZFlRQ1lmWGRKUlBuYVJ1aUJaCkxhaFdWNmM3YWZZeVF4WFYxV25NMTFPc3ErT1ZqaXBVQ3FzSFFhdUtsMVR4cEpkbld5cW02cjFlM2tVS3Y5TzQwVEUxNzNLSlNmZXAKaDROWTdwRlRwMXdQcC8vK3NXdnE0YVN5b0YvLzdsMFBkME9kaFk1Nk9LVU0xZnZWdzhHbzlZMFNxS0VlVHVKR1VOa2lydXZyNFFUWgpVTXh2N1BldWh4UGZPMHBWeE4yN0hrNzFsb0M3MU1NSlRxdzBwRnBlVnc4bjlzWGtqblZnSmR2dGxmVndnN3RiVGlRQUpjeUpsTE10CnRlUkVkcmFhY2lMVlpQKzRDdHhxQnVSUmdzVHQxZWdJamtkdDlUWEMwVkpISWd1RnNzY1FuRHRVY2wxa01pamt3S3RyTkZoY0p4OFEKdTh4MzV2V3lrY2w0dHU5ZEZ4blA5cjNLUW9pRVVEYmEwKzNjSW9aYzhSRXZxbkNyR0FKZ2l0ZktTT2t4V1RIczdiU0tvWUkxRHVtdAp6MStVWkxUNzNBYU00T2dUSDVsNlpBRG5Mb1dRQmIrMlhVd1ZqdnlWd0RLM2FjbWxXVjllQ2F4Nkc1b3dLaTI2cmRIcHVZeGh3ZUl6CjVZdWRWQjFxdGlJVk4xMmJJTUticzl6RndsZFZwSTVOUXcxRnBCb3JVc2VtaVphUWdVcXAzMTBxVWovMzk2bEloWER1VVpFSzY4VnUKcjBpRlVPNVJrUXJoYUxzR1d1UVNTK1gxSVFHUnZ6UlZkNUtSMDB1dnZsQU11emVMb2FnVVRscVAzYnNVRHVYeksyYjAzS01VVG5KZAo3bDRLZDMzY1VrZ3haZDlkaDE5NVF5a2MvdzRpVkF6M2o1VENTVVFWL29GU09PbjRtRWIvcktka0dQSlZBZi8rWktYQ3A2VnNycXFXCkcrR0Y5bGplcCtJV2FVMzBncUJDbWlLS0dnTElFSmo4elhZNmJaaUxTNGIxSGk3d3F0RjdHbzl3bEc3bkJhcGNhc3Zqc0tnWE40dnIKNmo1bHI4TVJidzVNZEZSaWUrRGtGM2FOODBqaG85Y0F0YmhNdlN4TDY4NTRXRERQemtVeVpza015RmJxdFpqeG4reEE4NU90ZEtTSAoyb1lYK3NWREpsc090NTd5T2Q4MG44LzVxN0FKd2R1TzJZNnNhK0dRNllpVHNCWkxxdW9NZWtsMGpkS0hmTjFadEJGLzViT1hzTmd0Ck1YMnA4NFBQUEtTaHBjdWFORzdsS3V5Q3ZhNVNzZHZNTDRzVUkxczVwUW83Njh0UGZTeUhkS1NBdE9TTjhaQ0thN0hpN2lNdkNpY3UKZGd0Mmx6VzJNNkdvQk16a1VDcDJ3MzBpcE1KK2ZJay91UXE3c05tOEQ1OC81WXJkUHBTcXp2NlVLK3kyclpZc1VsdHR2cHpKSVowcgo5K05yZE9XUkZwOC9TckxrdFd3Q2lhRWMwb2F3d2c2dEtoQllldGJvRTgzbmNZM3ZKYVRlbzZJS2dqZURuelZORUlQT1YrbzlldXVzCmhTVU0wV2ZHUzBxUjU3VjRRMVdLSFd0SXVSVmFzTzROTlJmQkdkR3JiWHVmMGg3MURGVngxRVMrajlWZXc1QjQ1MklLZzFKTFRsWEwKODZDODEzdDJrcE5xT3lKeHA0cUc2SkpTSnpsZFViaVBndVlVU1pWcVNIUW5wSTY4UHJVbWNvcDVmZHI1U2FXSm5PejhwUHErcVRVYgowVG8vOVY0RG1vbXUxbWRFZEpmYURmM2p0TXRMYVM3ZmlFZzIzVlZyQXpybFNPODExWFRYeFdIMFZ0TkorUUZNTDg3N1ZkTnB2Qi9tCnhtbzZxWmlnV0Y1dXI2YVRxcVc3dHZKUnZwcE9LaFl2bldsL1N6V2RnQ3kwekVyZVAzWlROWjBVS0pVYlFxNm9wcnR5UjlaWlRTZDEKVHNQdWxYZXJwcE9xcGVQNysvZXBwcE9xcGRPWTI2T2ptazRxMXM1MFlMOWZOWjNVNnFKSTcxMnI2YVNNRzM3dTZIMnE2YVJxNldSdQptNytobXU1eVNFdXp2S1YwYlRXZGxIRnFzTjY3bWs1cS9TU3lvVzZzcGhPRFV1MHBmRlUxblp4dGVkOXFPdTBVdTZXYVRnUktmQ1orCnAycTZxeWltdTVwT3NjYnFidFYwMHJYVjk2Nm1rd0lBc055NW1rN3F0RVNVQTMrSGFqb3A5U0QwWHU5UlRhZHlNbktuYWpyMS9lVWUKMVhSU3hPQ3M4WHRWMDZsVmN0Mm5tazZxbGs2Mkg5L3REcUNYY3dBRi9jVjBYZDBrMzhYcnNrbWx1RGVIeHNLbnZZcXdDNGdmM01yMQpzcm0rWDkzRmtFN3dsT2ZlL2Vya3JRdHRkRHE1N2Jyb3hGRkprQWtKYXpKVkRRdU5MQ0FvVUpDcGVwWWJsR2hJV2xXQmh1NXl3b09wCnE0WUVLUVlHcGF2dHN0S1FwQk1wWkRXTUFwMFUyaTdMcUV5NGl3azlvalQrZEJSNVJBRkxiS2ZTMkZ3NU1zZDJ5MUpxZEhkem16dmUKUFZjYVRmSnIydHpKZHBlcmFxcFYwdGptVHE2U1Mxc2huYVlFQ2VYOFpLN1IzVzFyVmVydHRIU1pVWXhTYVdwenB4cFJoSVM1dWMwZApiY01vTjdxN3VjMGRWZnVtMHVoTzIrSFJybnFIZTY0QzZUYXV2SWphNnl5cWQwdFIybFU1ay92cVdoNHd0VWVuVnY2VVBlV0JEZXBVCmN3L1YrQk9XMFVIbldURUNyNm1RVGt0R3MwRzl3bEEraVVOemZTSEFvcEIycUNPSkRGSkhOdlFuNUdSdEhiWUFack5kWEU4RUwwMlYKbmJQVTNWQnk1ejJsMTc4ckM3c0UyVkNBcVZUeXdUVm5Rd0ZRcXZsam1yT2hBREJ0R2QzS2ljMUk5OTJsOHZIMm94RFlVVkRoT25CNgo5VFhDMGRUYlZRb0tMN1ByN1I0U2lLQmNWTEpMVmdxcjE3SWpZSm9LYStWNlFJZ0xhOTgybDRXMWI1djczUW9JZ2QybGtUSGlNVEJhCkxjcU12M2ZKa3JJbFJVclZmcTlLT2RTdXl5TmRXSWwzbVVHdDZJbkw1VkRQajZ1N1ZLYXdOeC9ydHlRdVFkWE85K3BnQ0I2OHloOFIKYTViOXRxNUcxWEtuYjdEeDJzM21CQVZGS2F0VEI1dzczQkpBd2JtMVd6VUZoUkZDcVJzTzllV3F0alVVTXVnNjRYVzZKY1N3bzZHUQpRVk1FL3VZT2QweDlwVnlQdXl2RVVDSzU0dHErMWZvNjNDbFZQdDRnaGd5ajBSM3U3dElwVDdXZVNGdW52RnZyaWRoT2ViZUxvVUtICk8yRmRrcGI2a0dzNjNDbjFlNFU5N3ZSM3VOTjZxem1zZnJxOXNQWnp6NWs1Y3Q2cjVzSmFBRXpkekRGb01YU28zblRYRmRhS0t4OUQKdDhhUFlIMWhYYkljV3Q4OVZ3ak9GWHJ6NG80SUNPY3U5WngxVEpzdnBncEh2aFpXVk1Sa1VMdG1BclhMMDFQZkxsWEV4RDhWaFFyQwpjeUdHY1lmS1FtaUlhekY5M3pTV01Xa3BZckkvRHNTZUtHOFgwMUxHSkp5a1N1eVVBOFd1aTJ3WlU5eWhxVUpkMFcxbnBUTHUwQ0tWCldvcVk3SThic2ZGOXJWL1oxVlhFSkpkQkJIc25LdXkwK2d6RExsM0RlOE90L0NMRFVPS3l4RzZQNmdGeGp4clh2RS8rVmpIb3YranQKU0tlcjNTTWlwYnc5MXJ2ZjFWUTlkUHAycHhyWG51elZWUHB0bU1sUlY3dEhsVTU1L2l0clhIbnl5YVpoYUtoNlZxOXhCVVBTWFBXcwpWT05LUjREZ1F0UWkwdmdZMHc5V3ZKVWZXNFVWbnMvNW45NEw1dm5UbThGYVNMdmZXby9ia1RzTVBwVmVVWFVmMmYwa1o0UTlaU3BRCkd3OEs3ZkppeC9RblFSSGVjN3JKUnlxb2h6TllqK1pPNzVVZnFoTDJZWXZuUDNveTlYQk8rU0s4dzNrVXg0VTZXVlNHaDdua2F2L0MKWmt1azZmeVNLOEw3bEVVSzVtSWlkd0hadVdJbGM3OHRpOVJlbWZnV2NuM1luQnhTdHBLTEkvQnJpT0FoRlphbUhlMFJHOWRITUNDcQpjblE2MGg5ckthUUdLeVN3dU9lY29BeHZMSzc5NDVPM21ueVZRUm8yVzRQUGhSRVhneFZYeEEwVmtKWXNZWG1rcFlhNUw0VVU5WDJMCmxnV2xsV0trVGFVK2d0V09QTkppc1UwS01yc0FXZ3Q4N21FLzBVV1laOWVqWDdqNk11OEY4cGpzZS96NlNtemtpbWMxUUhUSHQ2Y2kKdDAyQ09mZUNZcU9UUGF5aG96M0N6VE92RUNkbU56cU5hWk9BcUNFbk9nMFNkREZUVDV6VXNEY0QySS9pd2liVkNJbDhTZEpsYXBYcwprQ0FueXc4cXI2VzBTYjJ3Nlhpdnppd29vS3ZTbVVWckpLbWduRm9sdTNRWG5Wa0FnamM5S1doS1ZYZWlteWR2cUVwVHlkQ2txR1RRCnhrK2lReSs5ODJPajFyRHVUbmVYUlpraFhXUnBpZVZGTTlGMVpXa1pyRXFEa284VDZ4c1MwSmJ5ZVZyMGVDNXlZMFhxcXZpWmNna1AKcjR1WFBWT3VjeVVBN0lxR3E2OVZZckNENHIwdWIreDVqZHB1T05SUWphUVlYdFo2eWpNbzNuSVRMVmVUZUhGbDNGWEZidEpIMXJydQp0UjRVcjR3c0MyL1JoRldBdDE1Q0szVlhuR3k5bUpyWGNubFhuSUlESkIwZkV5YU5TQnl4amtsZC9RN2tOUXg1Tng5NVRJbzF6TFduCjNsVEJuWndjb3hNcjlmWjFncEdKNC96cUlUdlVqMDgycWhMY1h5UVFyS0lIL2ZhSVRPOG4rMk5YL25CUVh5SFpSVCtMRzlxeUtWY3kKNmFxeGl1bTY1NEEzSkZIOXk2eWtGRHRXdGNZRlErS2w2dE9uMVR5cDFWa0t1TEpvS09YazMzT2xVQXFvMXRKWVpmMjRrL2RaU2IxUQpSek16aVBvYVMzYVowUUZNcll1T1hWeGRxd0JNdEt2Y1JqSFZXaDd0a3hTZVhONUlNZFYrT3Jvb1ZndCt5Z0M3S0JlV3NnNXBpbDFaCkJhaTFCbER6UFNSeUJXS2FhZ0FWc3RNMVZBRnFyUUc4akNmcnFRTFVXZ1BJditGUWZ4V2cxaHBBRkxXK3VncFF3Q29LSHFZNEQxWmYKRmFEV0drQklzZXVyQURsNkt1c05ZWTJWM2lwQXJUV0FySTk4VlJXZ3pKQXVhZ0Q1NTVYVWVDNW5kWHRUUHUwZDJXNXB5c2VieXovWQpsTzhpcXZDUE5PVlQ2OGgybjZaOFZNMklzb0Z5ZTFNK2cxWENLcng3VTc3TC9zai9SRk0rK2Y3STkyektwNmwvNVMxTitmaFJCVGlvCnNPeWdhQktwbFFiTGQvVzcvVzZvcDN2Y0RhV3hyNSttdTZGdTd1dkhtOW9kN29hUzYrdW5MMC9wMnI1K3lsMzlycm9iU3FLdm4zSlUKU05vVDE5L1hUNXI1Rk8rR3VxS3Zuem9uMzZPdm4zSm1DQnU1dXJHdm4xb2wxNTBDdW9wZC9ReFdYUUZkMmI1K3lsTVR4UzZ1N3VzbgpHTWhGVjc4ck9vQkk5dlZUbnBCVWh1bzFmZjBreXhHVmJqWFhUaGpObGJLU2QwRmYwZGRQK2VZdjlrejh4cjUraWh0ZEh1MWlkK2pyCnB4d1cxblVEbFVKZlAyVlhWeklMK29xK2ZsSmxrcHpvM2RhUDd3NDE3N3I2K2lsRGdYSCtlL1QxVXo1UU1XaUdjMHZodTdnaTlkcSsKZmhLbUpxK3JINzg3QTNaRFh6K1JHR0xDcm42Q083dDBsNmRnYkY4LzFiclh1L1QxVSs3cXgzTHlqWDM5bEJPdWVSV3BOL1gxNCtxMwpwSGhSZE0vVjFYMzlsQW1JTE5nNzlQVlRrTFhqS25DbmZud3VaU2lhKy9HcHRKUFQzSS92cHI1K0xCUko4ZEZielhIUjEwK2g3a0UxCjIzYXV0Nitmc2lVUGJ6eTRSMTgvdVQyOGMzbVNlRjM5bGdaem5qbEpWQk5EdGI1K3l1Zk53aXlDNi92NkNha3Q5Zz09DQoJXV0+DQoJPCFbQ0RBVEFbDQoJRnEvdHg2Y3ZTVU8rSDk4ZHhJZnQ2bmQ3UHo0dFJVeHF0emRjNW1yb2E4VW5ya2k5cmErZklMQjkwZFdQcWhpNnZhOGZXeXFsMUZmMAo1cjUreW1hT0RJL3A3dXVuM05YdjVsdWI2TDUrTjhiNk5QYjEwMUQzZW9lK2ZzcGQvWFQzNDd1cUNsZWtMUy83K2wxZkRNL3I2c2ZECmNsTmZ2OHRRTXIrcm45d3RaM3I3K2ltbmQ0bDJzYXY3K2lrbk9vbGlTbGYzOVpOWUYxNVhQK1Y3NGJUMzlicytiaW1rbVA2YUp4bS8KOG9hK2ZwemlrdXJxZDNYMm9LaXZueUpIOERxQTNOYlhUOWt3cEx6WDIvdjZLUmZFMGp2eXpYMzloSk1VZC9XN3NNYzAzMlFsN09zbgpid1JSTm96S1RWWWErL3Bwc21GdTd1dkhYOG5MQXh5RjZsb1orWlR1NjZlOE9TaFdjZDZ0SUpiYTkvMFMyME5meVVaN2FVdG5mSWp2CmxWcFNOeXFLOWtyd3JYeG9Wem54WGxTMktPQW1oc2U0MDV2VTQ0NWZCMC9GcG1oVURzRU82ZHR5aE1IOEwvTXdTODluZ1NkYU84TGEKTitLNE5JSnQ1Y25vL25pMllQN3VLa0s5Qk91cGpKWjZxdUxESEJ1amYvcXhDd1lPeXljeXRmNktOZG91aC9mUGFjL3RjMWg1OFp3MQo3OCs1c1BGelBBdUFUNk9NTlJSTmxHMzFsMzB6dEYvMVBneldTTWdYbkViclpOZFg5UjJNb1ZvcE9NbzFWKzMwN0swZWZsKzI1cytoCmZjY3gvN2E4WjUzQndxK3AxYXl1NHV0a2R6dFBPemI3WVdSdlBXUTI0V2ZqKzNQYWJnazRTbUhyOTBlbDRqd3Z6Ui9CN2VjOFRzcysKcXUxTXRWdHZIYVBQUGNnWWljVys0MDRHN0JtTXpGVnpHUGs5ZmNKS1lWdnpjQmpGSElkajlMMXlOQS9DazJObzh2SEtWbHEyM0k5Kwo3N3N2VUl1Wm1MSzNYLy9oK0xtRnplWmlacXEyK2xLSENPcExFLzNhTUphZE5uYlFvV1piUU1KK2t1Y1JiblZsTTdVbktXSWhZb0RwCm5teHdYUUlXbyt4Y1VVV2pZMnlmdjVvNy9WYktzam40U1JzUlhKek42NWx4Qml0Sm41amlVT1Bac3dzK3czeTErZ2JWSkJxelpLdGwKeFN6ekdmTDNYN2RDazMwbkVoOHd0ZGM4cjJpT2k3ZnlwZ2JVbWhRZFVtRnIvbXl3RnZya3ZJc2FhT2EvU3MxdStEay9NMlg4cCtSVAp4bitjSmNpWWVmVmFmTThFQm9Cc20xUnAzZWwrWnN0aDR3VEE2ZXdac0ZUN1RBZnVYa1ZnS1dOdmtFblVqQWMwcSt6ZkZuSnl0dnIrClBuUVhPOTB5L0FRbS9McjJ3YUpkRCtYV3AwSzlBL0tjTVAvSkFiTVJoaWRLRS90RFBqdnpDWGVnMkRHZ1NHUUQvb3k0VU5VdlVEaVYKSGZqejBZTTBqTmtPZHJHUEEvZ2k3Mk4rU1BySklsR1BBckJsekYzd1dNK2tvMXlwNEI3NzhxODRYZTFqbUQ4VmNhS0J3c0Y5NGE0OApuc2ovalAwNGVQRG81ajBZVy9LUEJpdnpLTy9sSGhHNWZqdk5QS2l3K0twOGZGNUxaY2tRNXRrSlZNWjJoWmRxcGpIN25adDcyV0RGClN3UGZsSDNrNWNFcDdlSVkvTTVQMjBlaFp3eFdHZjNoNVhDTmdIOFNGT3pKd01yQ2JyaXBWeVk3SEZyb0RTOHZCbXNoN0NrSFRMZHEKK0tpWHB1RThoTlBBWUhMWUFaK1dYOUNmTk5ocC93T24xNnBIdXYzMXQxVUFQRzE1MEZQQ0dZN1BHS1F0SDRNRmMxcWlHTEYrc3hZOQpNU2ZnRHF4ajRmdjdJd2Q5TEVjeHcwWDhpQTc1QUloK2l0a2w0QW56eHJWRHhIZ1FjYi81bUhTM0U0ZHdxaDE4emthK1pnNG9kVG5DCjJYOHpJbGFCRk90OUVPekNqd0tXWkhKRURwMGZWY0o1bnEyWXFiOTd1QVVqQ3VWSHlOUHZQb3BFaFg0Rmh4dTVoU2hNWDBMMHAzV2IKb0QrZFB3YTBiVWtVbmVNaC9ZbFloQ0NJRUFWaTJNOUFpSDBmck5mWUVzTjFEYU4rUFR3M2FkZ2paNWZsdGo3Qkc4MG9NZnRGRHhERgora0ZXS2llOHVZemVqWG00MHlSZ21rSXp0L1l0WE5uWDZYZXRVSzBZM3poRndoN201Tm5nZ0kwWGMrQk9Fbk1CNjdreVo4Yno1VWZUCkNOaUlkaENOTm1CTGZJVG9UNFh4RC90ZWdINnY4NWNWaitZbDMvb2lDMnZUTk50c2Zkb04xdUxFbTNtSG0zVVM1YlBSc24vYWhTbFoKRkpvT3drTmdtMEJ2c21ydFVtOHl1eGpVbkNLOUdmOTYyVHFLNzduNlU4NjVQc0JMQ3NMbFhCSHp0UzcxcHJqdHNCMU5IS2kxS0xxaQoxc21lOFFIMVQwK2p1M0pUcTVyckRvNllmMlh5K1g5TXI3YUFKZlozd2pDSDcwanJNYUF0VVNJNGlyZUNQNE5PVk9hTUZ6OHo4TSs0Ckd3YzdSd29xUXVnak13di9DWDdUZ1NxbDdFTjJIVXk5OGFGSUJGUkNNTkpROXN2RWxNcVl4T3JEQjFVSHpIM2R3em9MYkROaUZyVHEKb25TSUoyK2RzTjk1Nk8vYU9PVHBLdUNOU0tlY0g2MnlNNEZXcldGWWFGS0ZDMUhGK2Rvd3R3OGpPM254QW5VZlFORGJvcTBGVHYwegpDNy9ER2ZPc0ZxRXBVU0s5NkJYZ3lUWDM0TSthbjRFTmRTa2NEZENsbkxLbU5CK1lDMUNwWHMyc1JGbDRGeWNNZEhSRjNLQVdOYlIrCjlQL1NjWDdFYU5qY0ZQSnpaaVg2RHQ1YTBNQm0xazBCdkg1dzg4MGNCQ0taZnVNQnFIeDZmRUlBeTFSNzZLTHkrcG9uYUdDMkJSZEoKMUk3d096UDRMbnFtckV4Ym4zamltZHFVMlpWOEtiSUFHcGNBemhRQU1CY0tSTmxXNWx1OWdPZmQ4RVlFdEFiQUVIOG1ZSGtyMkpnOApaVGY4NUdPLzg3UGZnWFh4dk8yaGZYQ2dtQjJ3ZlorM2k5azQyd3YyekI0eEp0WWp3VmhYd0NpYldKcWZ3R0FJbHNROW8ra05BMDZJCnVtNGladVI2UjhOZTVFYnFKb29lc2pQcHZ0M3I5alBmQndGYko3MHVPV2ZWemR4dFVmN3ltWDdiWUFadUVpRDFlWkZZWDE1NlFWZjQKTWhRTFJGNVd0TlZMbkhITzRFWE53cUhiWUdKR3c3c0R4TVVqd2NjaE1PRmRRY0tTd0pudnp3YW93ZzRSd2VjVkVBRVYxMUZFR1BDSgpRQ3dhaUFqd1FaOVBBbEhyY2lEeEhBbTRmdUpDSW95VHp4d1JBaDlyUE1wclp2VjFuUGo0U0duRC8wdVdCT0srMVQ2Tys3dkdyYjlJCkVlR1E2MzFvNHdOME5UOWk3TE9SSTRIQmFnd2VQMndzRWJvS2ZBQXZMR1dvK0NuRlNySUF1RHlsM2s2Wkc5VjRFVWFKNWNZQTVVWEwKTklhSEs2ZkJSRWhRT09LMmFTd2xWNE5iQzBvcWxhYngrcm03amFkZmgzdFdXNHBBYUtNRUFERS9LazhEQUhCWkVDY3pJTkw1L1ZZQQpZbXRVSDRPaWRqcVlFQUJFc2Q0ZkJ3SXIxM3RUL3B1OVQ1Wi9lN3lGeDhpdnNqRG04dnAzTTQraDY4QnY0N0g1NlJZUUFNRGFlRE9QCmRUWTM4bGh2Szhkam1rRk1EdW9NMGhmdzJNVTBsamVTOG5WMTVuanNPaEM5b1FaeDdUTFJIbWtRRTNuZHAyME1jeDRwS1lycFhZM2UKVWwzaStXTUFjN2tZeGVyRzFlaHR6aUpTTWhUVFBvMkRpbXhJalVGUW01RHFuVTIzTVhiZmJGYmZrWW5qSndmQ2FPOHMzL2dnSnBOcgo5d0IyUjU3TTkycVVVQm5EVWtZK3dSaDQybEtKRXBQVjhWWnRPZG1jTk94RUN2dlFaSDlXSG9PNnRweWNqZncvcDJhVDRFK2JtWWwwCmxpa2ZFaDdMeFhoaGI4ZUhLd2hXM3pPY2RZMmUvYTVtOU5TN0w1UVJDSDdEUmNxNjBPTUw4MXd6bEU4eFAyV2l5QzVsWXpnRG5qYzUKdHZ4OVVoRVErMk12Uk5XOVFxOTc2SUcraXBlSlZuNGU0WjlzQUs1c1p6ODVLTWR1Zmx4QmE3eE0rYnZ3NE4rRHZHNzZ6N3pQUjduYgpURTR2OUxCWmR6eVE3dXh5ak5zYmRMREJSQ2MvZUJrN3NjRzlxcHYvb09abXc0WlZyeUNpNkJsRTJCQk1sY1AzRmJBa0Zsa0czd3ZPCkVZWU9VWlFlWGR4My9PaG9LZS9oUFJCRVIwc1ZId3dPdVFEdFB0MlVyLzExL0FXOFUycmk2TTlBdW0wRWY3NW1PTmhET216eFNpSnEKdTRDL01NOGh0d0NlMDBBdm9SWUZWdnZMQWNyTDY0c2Z4alk4QU1IZUF2NXNJN0F1S2lUaWYvMElzSkZKdHp0bFRwcmhVemRBNEFORwpTNi9HaFc1SERKWVJvSEc0N3kzNHgwbGJmTEd4dHcxV01sa00vdkxDNjFUd3ZkUnQ4SS9mbVRONDlyUW9Cc2E0eVV0QmxJSkg1U21wClFHUnV1a1FRblUvUlJpeGFJalAyZWF0UW1UMGFhYSs2MThVWlZtbnhBMzdPOVJEc2xYU0VxRGNPc2xNZkF5eW5HTDFna3hjVUV2SFEKNGZWSjIwOEhlU2RkREovVUtrN3c2UU9uNDFHVEFaR0tWUWl3VnBOeGdQazBDMUlSZUErOXRLc21ndWhGUitUZ3p5NFRsRnQ5WU15bgpBY2R0RThLZXJxWG8wYXhtQWQ2RGdURXdwT09TOWIyVm5jdnFMNHk4dGtBdUdvZ201Z1BuZDM0WkpsOXk2Nmc1S2hWcG9TYkUvVU5sCmJIT2htbFBYeHlLZG9vdzd5Q3luQVlhWDhJd0RmQnJqektjWkZ3S2Uwa0drMDIvd1lqU2hVNGQwT1ZPSlNNZHJxcE9qdWpWR0JVTnQKdzJNRWV5cTVRMGoydjhLMExIWXhNM0pTbGVPRCtxT0RMTVYweEFmMVJ3ZWw3dXRUaXcvcWp3NUNpdW1ORCtxUERsS2NyQzgreUk4TwpadjhyWllqaUVmd0IvZU52bnRmenc4dmhaL0d6ZWZBWUVnWi90b0xqN2Mxc1N4N204OWI4ZjUwSzIrbjViNzQ1UGNRZi9ObTNmS1VTCkRSWG0wKzFzL29DU21VS2pDS3MydkRTMzB2ek5QOUlXaEJoUnNEeFgrSTZWVm1WejgzRmMrTVo2S1o1WVVGYktyclUzZXBhL1piQ2gKdXFjK3RLdCtHRDBFK1daMGxJOGUrR2VQMnVVcElra2VyQ0t0NURJWDVvZmN1ZWl1MTk1RnB3UW9HQk1idFVwZ2V5aSs1K2JOalArNApTUHJMMlg2MTBDYzdieG4vQ2RzeUFVRjRuaW5JSHVDZGVrc2NrZ05ENW1Rek9wUFBRYVBYYisvQXcvSUNtSXVsRVBVYlBjNU1Cbjc3ClpIUTNUTTl3ZnMvd1Fkcm96UVptMEdvb0cxMTdNekRMeHZzb1gxWFlDRGN0Y3R4V1J3Nkh6SEsvYnBHYU5WRG54N2huc1VpaFl3TmEKWDBMeFF5Y1pqUGo1MFo4d3BkRkJmL3FkSStQQVNWc0Q5ajFzSVZOMjAzL0dIVjdLa0tHQ3p2Q0dHQnJFZHp0K1lpUzVnbkduajN3OQpydU1va3p2SU5GaGxqeks1QnplYkNkUXg4SUNQK3g4d0UxQmFIbTBvL0hObWdzR3F2SzNmeDB5Z1F0dWFJVjVwSmdCRGh6VVUvamt6CkFSbzZqS0h3ejVrSllDNnNvZkRQbVFrOGVabitjMmFDd2NvWkNtSXpRVGtqaE01Q3JNWGxOZ2RhL2J1K3lETjBwWmEvd0pYcURJcEEKS2I1M2pjN252b1BXbStmNEsxU3BaYUJMMHkyajgyZWRNbm8zalUrb1MyTndYN0NJM1N0cXdSNTdsS29EUXBOMUlJSGpEalhmZHZSTAo0NzJYU2Z3SU9yakVEelpYdzA1NWYwQmJ1bWx0Q1U5WWVOcVMzc3J0aEQxai9FTExEclZsM3VkQnQwOFRYK2RreGYvVFBma293K1BICkUzZWp0QzJneDRwUFVrWG53Tzk2cm9wV0h6NW9BeXlSQTZkYUtUMzJSWXVBU0sraWJCU2dVdUhJSFBBNFk1VmJtemFrMFBuQ09CdUcKNyt5VjRrN0lHM1ZrakNBRE5FcWQ1dU9sdGlQS1dqRzBTVlJhQkNIRm5uMjBSV0xKK0F0UHlTMEc0THhnbFBMa2FleFNtMEFMQWY1eAo4NnA2MkRSVzdpUVNLSE51OTBXTWVGR2d3WjcvaTFxcVVtbHB4VUZJZERqSXBlVlI1NHRlL3ZuaU5Gb1ZuUzhhalNjSEd6ODd2bDZjCkx3WmRKVit3bkdXTzJ4NjNUT3Ntd1VHb3Q4NGRCUkdPV0M4Z09BZ05tNDNXbktYQWdKamFMazVTYzM0ZUFKenNsbkIwNEVzbk5OQmkKRHpnZG1leituMVM3aUl3RHlHZ3B4T2ZNZDUwOTgxM3Y0UDk1MmJpNVJBdkVjZ0p6bnc2dENNT09Xa04rU0lYQkNkSG5udlQxK3E3TQp1MnZNSEVFaU81bytmVE5ZeFllUTZGYjA2NDhnblZLbmJ6QWtwUG44RGI4NVZMZUs3aGdpWkFJOElxQlRZWm9JUVQ5SEJEaWFGZThJCkV0MmtKMGNDSm9TYWpxODJEQkZjb2lOSTc0MUgwWThuN25oZWU5aVZ4d2ZwK090SncxRTBuV0lvZFJoTkZ4WlRWRVRueDFLc3BIQ2EKVFpkRUFnQmc5VFZ5NHdVSTFOUk4yeGlvMUp4TEVLZ2gxUzNUUUFuOGpFanhqclIxVEtNZDkrdEtETGlVU2svczVMcUZwNkZMN1JZQgpvQ21tbFJMUUEvZXFUZVB5YUo5ZkpJTjdkbmxNY2hvYVNRbFRLSEVFNEdncWxYTnV0cFdId1FvVEh2YThONEhiNzZUZkpIOXh0MFRUCkQ1clB4MFA3alR3R0RCVEhiVHhXQy9vNEFMSThwZ2hpa01GdTVUSDcwbkViajJFYnB3eVBhUVpSYzN0VUdZUVBBQT09DQoJXV0+DQoJPCFbQ0RBVEFbDQoJVFVMSVk0T0k3NWJWQVA3OG8xOEtBT0F4clNCS05aTzZ1RW9Eb05OWW9jR25XZmRKajJIZ2t5WWxIQU82bEZ4MU5ZQ0JxU3J4U21PQQpTY3k3K0cyckFhMWFaVktpL1VWcEdtVXZxVTgyTHNZUXJ1SFFHcjlCTnNycEpxRXloa1BLai9OMjVITHc1R3NuZVNBbUErdHRlOEJrCjRYWXpPN0xpS0JUR3NNUGxtVW8wQmxyMnhhT1lXaUxlbXpoaTZuMzAzWlprQmhQY0pVVmNkZ3lzdGtRSm55SGNnWXhFcnY4WVFoLzEKR3FmQlF0bzk3QmJPNDFJdC8vVVVNOU1oZzFDR2lTUlJJZjZuUDJHZU9sVTZZYkJLRlUvY3UzUUNZcmtzbnRCZE9zR0dRNldQSmRHNgphRHFZRkI5TDhoN3M4Z3YyZ1NpbUR3T296ekNxd1B1MjdXQ1BEWjQ5L0FlTElGdVRBTDFsNENWQnZVS2x6RVAxQURrWm5RTnNrYVRDClB4c3V3ZEVwa0IxSTJ3YnRlZ01tanRQZWhxZU96c2R6a0M4aEt6WDhkQkZGdWdMSjFxREJUaHR0QkRiQWl6S1dod2Y2Z05ucERWTFcKZU12TFA3aExaeEs2ay9BdkRtRllMNTV3bHNrazVTWGREV0tqOXNpZE5ZUk9yNVo1NmFzZlhSaXMyYmV6NWFmWW43M0NrNk1XenZFdgo4WFVlWk9pWVJHOFFZRU9SUVg3QlJEckNzc3E3bDY2YWFPU2hYbm4zTTJ6L2pxR0VoaS9vY3I3alRIVHBIWjBTd05PRTl3RDdLVWlCCktDYit3dURQUGcxeE9FVUwzMmVQOGZzWSt3bm5yejY4VTV5dFNlZ0grTFVVaFpXRmlUTCtocGk1OU1PeVZTcHV1Um9WQTMzQkNWZXYKd3E5UytmSnhTQU0yNXdzazZoZjRwL2NPb3c5Zk9QdUo0TDlYWHdUaGQwRnVORUQybWZFMHlGR25seSs0bzA2U0xOWTdVU2E0K1JmQwo1cE40R0hLb2o0MVQ5S2txeVA4ZjYvc2ZHK3ZiL2xmS2tBQ1RxZUQ0c0xpWjhjOGNEVllyK09adGZqcnY0QXVoWVc2KytOblV4ditaCkh3ejRBL1VmQnY2RC8wWmlEemdSZlNCQ0lmQkhDSDVibXhnYzZOMEgzUGxRQTd2TDBKODluQW8vMDlQUGRqTSsvT2NoRHIvcTFtdnQKU3VFaC9rQzlPd1R2Smg0Y1lEVFlFTHdOSGpuaFFlY1FqSEJvd0I2eTRIL2RmeHZPNEQvczRjV0FQV0QwQU9CLzNiRUJvMGNFM3ZvUAorT01KZlBnRlgvMzdBY2NlNmc4Zlg5akRESXk4MnpRRVlnOWVISC80b3o1Z0QydjBJZW9MRVRFd2t3RDRnTWRDNEl1SFFBVCtPelVFCjRQK3REYmd2R01FSUhQNkJVKzlqR0FFL0FoaFRBNDZBcnRIL0U3NVFNQWJlb2wveDRvR0hBUG9Yd0lxZ0R3QW5BRUE5aVZHL0lCN28KZ1UwTjM0WTJuSjh2QWdrS1VhQVpnYUdqMmMwTTRRZUg4Nkg3emxBQ3ZBZkhoZm5Da1ZnNEdrQWZNSUlnd0ljWWhvZURERmxFTk9LSQpnZEhFaU5HMGlJaHBFVUcwaUZDMGlQQnBFWUVFaUhDMGlOR2t3R2hTNEdKU0VJZ1VCRU1LZ2lNRlF3Q1dGQmhOaWhnOTNiWTBIOUg4CkFjakFYLzlMYWxtSDdHU3BqM0M2MUNlRkNZTVhxQ2xiaDRxVEJvL3BhVk9mRkNZT1FESlRCeDhWSm04ZHlvbE85bkFZVXgrQnZEeGsKejZmdFEzTjhQTTBQUC85Nzduend2NTBPUDVzRkpUMUFvbWJieVh5WXJjU0dMNVBqL1BDditXeFluZjluU0wxMDVBa1pEdDdkYkRjUApnWENBNWk4dHNzYnlFZUE0aW84SW5HWWtQQVlKRytYb2lzY1FZZkVZeFVwNGpNOUw0QytjL2czOFFPQVVMeEVFeFV0RVFFUlNJZ2hKCkN2NmxlQWw4WUhnSlBvbFJ2NEJvNmNIOXR3c1d3V2daZ3RFeWVGUk1FRXJONExTZXdRV0tCa2VhQnYwR0VZVFdNd1N0WndpeG5pR1EKbmlFWVBVTndlb1lJMEVUZ0VRVC9KOFFMVFpuK2lMSHlwVGh0SkdGbzRqd1JrNW82RWl3MGVlcVR3dlFwRVVNRVlFUk1qZ1QvdzRRcwpFS0I1S2tEUVBCWEFJSEVESEhFREdDSnVBS040S29EeGVTb0F3YUxmd0hkeEJBZHhWU0JBY1ZVZ0tDSnJJQVRKQ3Y2bHVBcDhZTGdxClFKRVIvb0loYVNEdzN5OW1BVWJ2QkJpOVE4UkVKQ0VvdlVQUWVvY1E2QjBDNlIzNEc0WWt0T1lKMEpvbklOWThBYVI1QW96bUNYQ2EKSnhDa3ljQWpDZkZQQ0JxYU5QMFJad1ZOY2VKSTBJaVlVTkNrSjQ4RUxFQXdvcVpFQUVyVUVBa1lVWk1qd3Y5dFVhdmxLRnNXV0xiSQo0dlFDLzlyNk9sN01XNGZ4enhwWXRvdmorRi96aC9GbXN6Mk5UL01kZVBLd09NeVBwKzFoL25CY2J2OE52d0UvWVY0SE52SUxhZmcvCndrbmVyZz09DQoJXV0+DQo8L2k6cGdmPg0KPC9zdmc+DQo=); - -webkit-background-size: cover; - -moz-background-size: cover; - background-size: cover; - position: relative; - display: inline-block; - vertical-align: top; - overflow: hidden; - vertical-align: middle; - width: 1.3rem; - height: 1.3rem; -} -#download-btn { - display: none; -} -/* Content */ -#content { - width: 100%; - -moz-box-sizing: border-box; - box-sizing: border-box; - padding: 20px; -} -/* Code */ -#content section.code { - display: none; - background: #FFF; - border: 1px solid #E0E0E0; - -moz-box-sizing: border-box; - box-sizing: border-box; - padding: 15px; - font-size: 12px; - -moz-border-radius: 1px; - -webkit-border-radius: 1px; - border-radius: 1px; - font-weight: 400; -} -article.component { - padding: 0 0 10px; -} -#content section.code h3 { - margin: 0; - font-size: 12px; - color: #000; - font-weight: 400; -} -#content header h2 { - font-weight: 300; - margin: 10px 0 25px; - font-size: 20px; - position: relative; - display: inline-block; - padding-right: 10px; -} -body.light #content header h2 { - background: #F4F4F4; -} -body.dark #content header h2 { - background: #4A4D4E; -} -#content header{ - position: relative; -} -#content header:before { - content: ''; - width: 100%; - display: block; - position: absolute; - left: 0; - top: 23px; -} -body.light #content header:before { - border-bottom: 1px solid #E0E0E0; -} -body.dark #content header:before { - border-bottom: 1px solid #58595A; -} -#content pre { - padding: 0; - margin: 2px 0 10px; -} -.showcode { - margin: 10px 0; -} -.showcode a, section.examples a { - color: #288edf; - text-decoration: none; -} -.showcode a:hover, section.examples a:hover { - text-decoration: underline; -} -section.examples ul { - margin: 0 0 20px; - padding: 0 0 0 20px; -} -section.examples h4 { - margin-bottom: 5px; -} -section.examples li { - color: #58595A; -} -/* Side Nav */ -#sideNav { - background: #4A4D4E; - position: absolute; - width: 100%; - z-index: 1; - height: 100%; - left: 0; -} -#sideNav ul { - list-style: none; - margin: 0; - padding: 0; -} -#sideNav li a { - color: #F0F1F1; - display: block; - height: 46px; - font-size: 16px; - -moz-box-sizing: border-box; - box-sizing: border-box; - padding: 12px 0 0 20px; - text-decoration: none; -} -#sideNav nav.site, #sideNav .combo { - border-bottom: 1px solid #58595A; - -moz-box-sizing: border-box; - box-sizing: border-box; - padding: 10px; - display: block; -} -#pageNav li { - border-bottom: 1px solid #58595A; -} - -select.docNav { - -moz-border-radius: 3px; - -webkit-border-radius: 3px; - border-radius: 3px; - background: #595B5B; - background-image: none; - box-shadow: 0 0 0 1px #303233; - border: none; - border-top: 2px solid #666767; - color: #FFF; - text-shadow: 0 -1px 0 #000; - overflow: hidden; - font-size: 14px; - -moz-box-sizing: border-box; - box-sizing: border-box; - padding: 20px; - -webkit-appearance: none; - -moz-appearance: button; -} -@media screen and (min-width: 650px) { - #site.open { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - } - #main-header nav { - display: inline-block; - position: absolute; - right: 0; - top: 40px; - } - #main-header ul { - list-style: none; - } - #main-header nav li { - display: inline-block; - margin: 0 18px; - } - #main-header nav li#download-btn { - display: none; - } - #main-header nav li a { - text-decoration: none; - font-size: 20px; - color: #7F7F7F; - } - #main-header nav li.selected a { - color: #373435; - } - #slide-menu-button{ - display: none; - } - #main-header hgroup { - text-align: left; - position: absolute; - display: inline-block; - top: 24px; - } - #main-header hgroup h1 { - font-size: 60px; - } - #main-header hgroup p { - font-size: 15px; - } - #main-header { - color: #373435; - background: #fff; - height: 148px; - } - #content { - padding-left: 240px; - } - /* Side Nav */ - #sideNav { - background: transparent; - width: 220px; - z-index: 20; - left: 10px; - top: 150px; - height: auto; - } - #sideNav nav.site { - display: none; - } - #sideNav .combo { - border-bottom: none; - padding: 36px 0; - } - #sideNav li a { - padding: 12px 0 0 10px; - } - body.light #sideNav li a { - color: #797B7B; - } - body.light #pageNav li { - border-bottom: 1px solid #E0E0E0; - } - select.docNav { - background: #595B5B; - box-shadow: 0 0 0 1px #303233; - border: none; - border-top: 2px solid #666767; - color: #FFF; - text-shadow: 0 -1px 0 #000; - padding: 3px 20px 4px 8px; - -webkit-appearance: none; - } - body.light select.docNav { - box-shadow: 0 0 0 1px #949696; - background: #DDE1E1; - border-top: 1px solid #FFF; - color: #454545; - text-shadow: 0 -1px 0 #FFF; - width: 192px; - } -} -@media screen and (min-width: 880px) { - #content { - padding-left: 300px; - } - #sideNav li a { - display: block; - height: 60px; - padding: 22px 0 0 10px; - text-decoration: none; - } - #content header h2 { - font-size: 28px; - } - #content header:before { - top: 30px; - } - section.code div { - display: inline-block; - width: 48%; - vertical-align: top; - -moz-box-sizing: border-box; - box-sizing: border-box; - } - section.code div:first-child { - padding-right: 5px; - } - section.code div:last-child { - padding-left: 5px; - } - .max-width { - max-width: 1180px; - position: relative; - margin: 0 auto; - } - header#main-header .max-width { - top: -10px; - } - #main-header nav li a { - font-size: 22px; - } - #main-header nav { - display: inline-block; - } - - #main-header nav li { - margin: 0 25px; - } - #main-header nav li:last-child { - margin-right: 0; - } -} -@media screen and (min-width: 940px) { - #main-header nav li#download-btn { - display: inline-block; - } - #main-header nav li a#download-btn{ - position:relative; - top: -15px; - display:inline-block; - box-sizing:border-box; - -moz-box-sizing:border-box; - background-clip:padding-box; - font:inherit; - background:transparent; - -webkit-user-select:none; - -moz-user-select:none; - user-select:none; - text-overflow:ellipsis; - white-space:nowrap; - overflow:hidden; - font-size:16px; - line-height:3rem; - letter-spacing:1px; - color:#454545; - text-shadow:0 1px #fff; - vertical-align:top; - background-color:#e5e9e8; - box-shadow:inset 0 1px #fff; - border:1px solid #a5a8a8; - border-radius:6px; - margin:0; - padding:0 1.25rem; - } - #main-header nav li a#download-btn, #main-header nav li a#download-btn:hover { - border:1px solid #143250; - background-color:#288edf; - box-shadow:inset 0 1px rgba(255,255,255,0.36); - color:#fff; - font-weight:500; - text-shadow:0 -1px rgba(0,0,0,0.36); - } - #main-header nav li a#download-btn:hover { - background-color:#2f9cf3; - } - #main-header nav li a#download-btn:active, #main-header nav li a#download-btn.is-active { - background-color:#0380e8; - box-shadow:inset 0 1px rgba(0,0,0,0.12); - } - #main-header nav li a#download-btn:disabled, #main-header nav li a#download-btn.is-disabled { - opacity:.3; - cursor:default; - pointer-events:none; - } -} - - - diff --git a/www/assets/topcoat-0.7.5/demo/css/theme.css b/www/assets/topcoat-0.7.5/demo/css/theme.css deleted file mode 100755 index 7f1ec6c..0000000 --- a/www/assets/topcoat-0.7.5/demo/css/theme.css +++ /dev/null @@ -1,28 +0,0 @@ -pre { - padding: 0; - font-family: 'Monaco', 'Source Code Pro', monospace; - font-size: 1em; -} -.rainbow { - border-spacing: 0; - border-collapse: collapse; -} -.rainbow .line:hover { - background-color: #171b1c; -} -.rainbow .line:hover .line-number { - background-color: #101313; -} -.rainbow .line .line-number { - text-align: right; - background-color: #1b2022; - padding-left: 0.8em; - padding-right: 0.8em; -} -.rainbow .line .line-number:before { - content: attr(data-line-number); -} -.rainbow .line .line-code { - padding-left: 1em; - width: 100%; -} diff --git a/www/assets/topcoat-0.7.5/demo/fonts/sourcecodepro-regular-webfont.eot b/www/assets/topcoat-0.7.5/demo/fonts/sourcecodepro-regular-webfont.eot deleted file mode 100755 index 9e9e4de..0000000 Binary files a/www/assets/topcoat-0.7.5/demo/fonts/sourcecodepro-regular-webfont.eot and /dev/null differ diff --git a/www/assets/topcoat-0.7.5/demo/fonts/sourcecodepro-regular-webfont.svg b/www/assets/topcoat-0.7.5/demo/fonts/sourcecodepro-regular-webfont.svg deleted file mode 100755 index f4a1739..0000000 --- a/www/assets/topcoat-0.7.5/demo/fonts/sourcecodepro-regular-webfont.svg +++ /dev/null @@ -1,242 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/www/assets/topcoat-0.7.5/demo/fonts/sourcecodepro-regular-webfont.ttf b/www/assets/topcoat-0.7.5/demo/fonts/sourcecodepro-regular-webfont.ttf deleted file mode 100755 index 6eb48e7..0000000 Binary files a/www/assets/topcoat-0.7.5/demo/fonts/sourcecodepro-regular-webfont.ttf and /dev/null differ diff --git a/www/assets/topcoat-0.7.5/demo/fonts/sourcecodepro-regular-webfont.woff b/www/assets/topcoat-0.7.5/demo/fonts/sourcecodepro-regular-webfont.woff deleted file mode 100755 index 2383f47..0000000 Binary files a/www/assets/topcoat-0.7.5/demo/fonts/sourcecodepro-regular-webfont.woff and /dev/null differ diff --git a/www/assets/topcoat-0.7.5/demo/fonts/sourcesanspro-light-webfont.eot b/www/assets/topcoat-0.7.5/demo/fonts/sourcesanspro-light-webfont.eot deleted file mode 100755 index bda2005..0000000 Binary files a/www/assets/topcoat-0.7.5/demo/fonts/sourcesanspro-light-webfont.eot and /dev/null differ diff --git a/www/assets/topcoat-0.7.5/demo/fonts/sourcesanspro-light-webfont.svg b/www/assets/topcoat-0.7.5/demo/fonts/sourcesanspro-light-webfont.svg deleted file mode 100755 index e031390..0000000 --- a/www/assets/topcoat-0.7.5/demo/fonts/sourcesanspro-light-webfont.svg +++ /dev/null @@ -1,243 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/www/assets/topcoat-0.7.5/demo/fonts/sourcesanspro-light-webfont.ttf b/www/assets/topcoat-0.7.5/demo/fonts/sourcesanspro-light-webfont.ttf deleted file mode 100755 index 0959ece..0000000 Binary files a/www/assets/topcoat-0.7.5/demo/fonts/sourcesanspro-light-webfont.ttf and /dev/null differ diff --git a/www/assets/topcoat-0.7.5/demo/fonts/sourcesanspro-light-webfont.woff b/www/assets/topcoat-0.7.5/demo/fonts/sourcesanspro-light-webfont.woff deleted file mode 100755 index 522d5ab..0000000 Binary files a/www/assets/topcoat-0.7.5/demo/fonts/sourcesanspro-light-webfont.woff and /dev/null differ diff --git a/www/assets/topcoat-0.7.5/demo/fonts/sourcesanspro-regular-webfont.eot b/www/assets/topcoat-0.7.5/demo/fonts/sourcesanspro-regular-webfont.eot deleted file mode 100755 index 2b75abb..0000000 Binary files a/www/assets/topcoat-0.7.5/demo/fonts/sourcesanspro-regular-webfont.eot and /dev/null differ diff --git a/www/assets/topcoat-0.7.5/demo/fonts/sourcesanspro-regular-webfont.svg b/www/assets/topcoat-0.7.5/demo/fonts/sourcesanspro-regular-webfont.svg deleted file mode 100755 index 581a849..0000000 --- a/www/assets/topcoat-0.7.5/demo/fonts/sourcesanspro-regular-webfont.svg +++ /dev/null @@ -1,243 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/www/assets/topcoat-0.7.5/demo/fonts/sourcesanspro-regular-webfont.ttf b/www/assets/topcoat-0.7.5/demo/fonts/sourcesanspro-regular-webfont.ttf deleted file mode 100755 index e166286..0000000 Binary files a/www/assets/topcoat-0.7.5/demo/fonts/sourcesanspro-regular-webfont.ttf and /dev/null differ diff --git a/www/assets/topcoat-0.7.5/demo/fonts/sourcesanspro-regular-webfont.woff b/www/assets/topcoat-0.7.5/demo/fonts/sourcesanspro-regular-webfont.woff deleted file mode 100755 index 315c98a..0000000 Binary files a/www/assets/topcoat-0.7.5/demo/fonts/sourcesanspro-regular-webfont.woff and /dev/null differ diff --git a/www/assets/topcoat-0.7.5/demo/fonts/sourcesanspro-semibold-webfont.eot b/www/assets/topcoat-0.7.5/demo/fonts/sourcesanspro-semibold-webfont.eot deleted file mode 100755 index ddf5d11..0000000 Binary files a/www/assets/topcoat-0.7.5/demo/fonts/sourcesanspro-semibold-webfont.eot and /dev/null differ diff --git a/www/assets/topcoat-0.7.5/demo/fonts/sourcesanspro-semibold-webfont.svg b/www/assets/topcoat-0.7.5/demo/fonts/sourcesanspro-semibold-webfont.svg deleted file mode 100755 index 317e536..0000000 --- a/www/assets/topcoat-0.7.5/demo/fonts/sourcesanspro-semibold-webfont.svg +++ /dev/null @@ -1,243 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/www/assets/topcoat-0.7.5/demo/fonts/sourcesanspro-semibold-webfont.ttf b/www/assets/topcoat-0.7.5/demo/fonts/sourcesanspro-semibold-webfont.ttf deleted file mode 100755 index 6d97e7b..0000000 Binary files a/www/assets/topcoat-0.7.5/demo/fonts/sourcesanspro-semibold-webfont.ttf and /dev/null differ diff --git a/www/assets/topcoat-0.7.5/demo/fonts/sourcesanspro-semibold-webfont.woff b/www/assets/topcoat-0.7.5/demo/fonts/sourcesanspro-semibold-webfont.woff deleted file mode 100755 index d844315..0000000 Binary files a/www/assets/topcoat-0.7.5/demo/fonts/sourcesanspro-semibold-webfont.woff and /dev/null differ diff --git a/www/assets/topcoat-0.7.5/demo/fonts/stylesheet.css b/www/assets/topcoat-0.7.5/demo/fonts/stylesheet.css deleted file mode 100755 index 2d66502..0000000 --- a/www/assets/topcoat-0.7.5/demo/fonts/stylesheet.css +++ /dev/null @@ -1,57 +0,0 @@ - -@font-face { - font-family: 'source-sans-pro'; - src: url('sourcesanspro-light-webfont.eot'); - src: url('sourcesanspro-light-webfont.eot?#iefix') format('embedded-opentype'), - url('sourcesanspro-light-webfont.woff') format('woff'), - url('sourcesanspro-light-webfont.ttf') format('truetype'), - url('sourcesanspro-light-webfont.svg#source_sans_prolight') format('svg'); - font-weight: 300; - font-style: normal; - -} - - - - -@font-face { - font-family: 'source-sans-pro'; - src: url('sourcesanspro-regular-webfont.eot'); - src: url('sourcesanspro-regular-webfont.eot?#iefix') format('embedded-opentype'), - url('sourcesanspro-regular-webfont.woff') format('woff'), - url('sourcesanspro-regular-webfont.ttf') format('truetype'), - url('sourcesanspro-regular-webfont.svg#source_sans_proregular') format('svg'); - font-weight: 400; - font-style: normal; - -} - - - - -@font-face { - font-family: 'source-sans-pro'; - src: url('sourcesanspro-semibold-webfont.eot'); - src: url('sourcesanspro-semibold-webfont.eot?#iefix') format('embedded-opentype'), - url('sourcesanspro-semibold-webfont.woff') format('woff'), - url('sourcesanspro-semibold-webfont.ttf') format('truetype'), - url('sourcesanspro-semibold-webfont.svg#source_sans_prosemibold') format('svg'); - font-weight: 600; - font-style: normal; - -} - - - - -@font-face { - font-family: 'source-code-pro'; - src: url('sourcecodepro-regular-webfont.eot'); - src: url('sourcecodepro-regular-webfont.eot?#iefix') format('embedded-opentype'), - url('sourcecodepro-regular-webfont.woff') format('woff'), - url('sourcecodepro-regular-webfont.ttf') format('truetype'), - url('sourcecodepro-regular-webfont.svg#source_code_proregular') format('svg'); - font-weight: normal; - font-style: normal; - -} \ No newline at end of file diff --git a/www/assets/topcoat-0.7.5/demo/index.html b/www/assets/topcoat-0.7.5/demo/index.html deleted file mode 100755 index 00cf38a..0000000 --- a/www/assets/topcoat-0.7.5/demo/index.html +++ /dev/null @@ -1,3167 +0,0 @@ - - - - - - Topcoat - - - - - - - -
- -
-
-
-
-

Topcoat

-

CSS for clean and fast web apps

-
- -
-
-
-
-
-

Button Bar

-
-
-
-

Examples

- -
-
- -
-
-

HTML

-
<div class="topcoat-button-bar">
  <div class="topcoat-button-bar__item">
    <button class="topcoat-button-bar__button">One</button>
  </div>
  <div class="topcoat-button-bar__item">
    <button class="topcoat-button-bar__button">Two</button>
  </div>
  <div class="topcoat-button-bar__item">
    <button class="topcoat-button-bar__button">Three</button>
  </div>
</div>
-
-
-

CSS

-

-.topcoat-button-bar > .topcoat-button-bar__item:first-child {
-  border-top-left-radius: 4px;
-  border-bottom-left-radius: 4px;
-}
-
-.topcoat-button-bar > .topcoat-button-bar__item:last-child {
-  border-top-right-radius: 4px;
-  border-bottom-right-radius: 4px;
-}
-
-.topcoat-button-bar__item:first-child > .topcoat-button-bar__button,
-.topcoat-button-bar__item:first-child > .topcoat-button-bar__button--large {
-  border-right: none;
-}
-
-.topcoat-button-bar__item:last-child > .topcoat-button-bar__button,
-.topcoat-button-bar__item:last-child > .topcoat-button-bar__button--large {
-  border-left: none;
-}
-
-.topcoat-button-bar__button {
-  border-radius: inherit;
-}
-
-.topcoat-button-bar__button:focus,
-.topcoat-button-bar__button--large:focus {
-  z-index: 1;
-}
-
-
-
-
-
-
-
-

Large Button Bar

-
-
-
- -
-
-

HTML

-
<div class="topcoat-button-bar">
  <div class="topcoat-button-bar__item">
    <button class="topcoat-button-bar__button--large">One</button>
  </div>
  <div class="topcoat-button-bar__item">
    <button class="topcoat-button-bar__button--large">Two</button>
  </div>
  <div class="topcoat-button-bar__item">
    <button class="topcoat-button-bar__button--large">Three</button>
  </div>
</div>
-
-
-

CSS

-

-.topcoat-button-bar__button--large {
-  border-radius: inherit;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.button {
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-  text-overflow: ellipsis;
-  white-space: nowrap;
-  overflow: hidden;
-  text-decoration: none;
-}
-
-.button--quiet {
-  background: transparent;
-  border: 1px solid transparent;
-  box-shadow: none;
-}
-
-.button--disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.button,
-.topcoat-button,
-.topcoat-button--quiet,
-.topcoat-button--large,
-.topcoat-button--large--quiet,
-.topcoat-button--cta,
-.topcoat-button--large--cta {
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-  text-overflow: ellipsis;
-  white-space: nowrap;
-  overflow: hidden;
-  text-decoration: none;
-}
-
-.button--quiet {
-  background: transparent;
-  border: 1px solid transparent;
-  box-shadow: none;
-}
-
-.button--disabled,
-.topcoat-button:disabled,
-.topcoat-button--quiet:disabled,
-.topcoat-button--large:disabled,
-.topcoat-button--large--quiet:disabled,
-.topcoat-button--cta:disabled,
-.topcoat-button--large--cta:disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-
-
-
-
-
-
-

Button

-
-
-
-

Examples

- -
-
- -
-
-

HTML

-
<button class="topcoat-button">Button</button>
<button class="topcoat-button" disabled>Button</button>
-
-
-

CSS

-

-.topcoat-button,
-.topcoat-button--quiet,
-.topcoat-button--large,
-.topcoat-button--large--quiet,
-.topcoat-button--cta,
-.topcoat-button--large--cta {
-  padding: 0 0.563rem;
-  font-size: 12px;
-  line-height: 1.313rem;
-  letter-spacing: 0;
-  color: #c6c8c8;
-  text-shadow: 0 -1px rgba(0,0,0,0.69);
-  vertical-align: top;
-  background-color: #595b5b;
-  box-shadow: inset 0 1px #727373;
-  border: 1px solid #303233;
-  border-radius: 4px;
-}
-
-.topcoat-button:hover,
-.topcoat-button--quiet:hover,
-.topcoat-button--large:hover,
-.topcoat-button--large--quiet:hover {
-  background-color: #646666;
-}
-
-.topcoat-button:active,
-.topcoat-button--large:active {
-  background-color: #404141;
-  box-shadow: inset 0 1px rgba(0,0,0,0.18);
-}
-
-.topcoat-button:focus,
-.topcoat-button--quiet:focus,
-.topcoat-button--large:focus,
-.topcoat-button--large--quiet:focus,
-.topcoat-button--cta:focus,
-.topcoat-button--large--cta:focus {
-  border: 1px solid #0940fd;
-  box-shadow: 0 0 0 2px #6fb5f1;
-  outline: 0;
-}
-
-
-
-
-
-
-
-

Quiet Button

-
-
-
- -
-
-

HTML

-
<button class="topcoat-button--quiet">Button</button>
<button class="topcoat-button--quiet" disabled>Button</button>
-
-
-

CSS

-

-.topcoat-button--quiet {
-  background: transparent;
-  border: 1px solid transparent;
-  box-shadow: none;
-}
-
-.topcoat-button--quiet:hover,
-.topcoat-button--large--quiet:hover {
-  text-shadow: 0 -1px rgba(0,0,0,0.69);
-  border: 1px solid #303233;
-  box-shadow: inset 0 1px #727373;
-}
-
-.topcoat-button--quiet:active,
-.topcoat-button--large--quiet:active {
-  color: #c6c8c8;
-  text-shadow: 0 -1px rgba(0,0,0,0.69);
-  background-color: #404141;
-  border: 1px solid #303233;
-  box-shadow: inset 0 1px rgba(0,0,0,0.18);
-}
-
-
-
-
-
-
-
-

Large Button

-
-
-
- -
-
-

HTML

-
<button class="topcoat-button--large" >Button</button>
<button class="topcoat-button--large" disabled>Button</button>
-
-
-

CSS

-

-.topcoat-button--large,
-.topcoat-button--large--quiet {
-  font-size: 0.875rem;
-  font-weight: 600;
-  line-height: 1.688rem;
-  padding: 0 0.875rem;
-}
-
-
-
-
-
-
-
-

Large Quiet Button

-
-
-
- -
-
-

HTML

-
<button class="topcoat-button--large--quiet" >Button</button>
<button class="topcoat-button--large--quiet" disabled>Button</button>
-
-
-

CSS

-

-.topcoat-button--large--quiet {
-  background: transparent;
-  border: 1px solid transparent;
-  box-shadow: none;
-}
-
-
-
-
-
-
-
-

Call To Action Button

-
-
-
- -
-
-

HTML

-
<button class="topcoat-button--cta" >Button</button>
<button class="topcoat-button--cta" disabled>Button</button>
-
-
-

CSS

-

-.topcoat-button--cta,
-.topcoat-button--large--cta {
-  border: 1px solid #143250;
-  background-color: #288edf;
-  box-shadow: inset 0 1px rgba(255,255,255,0.36);
-  color: #fff;
-  font-weight: 500;
-  text-shadow: 0 -1px rgba(0,0,0,0.36);
-}
-
-.topcoat-button--cta:hover,
-.topcoat-button--large--cta:hover {
-  background-color: #509bef;
-}
-
-.topcoat-button--cta:active,
-.topcoat-button--large--cta:active {
-  background-color: #1976c3;
-  box-shadow: inset 0 1px rgba(0,0,0,0.12);
-}
-
-
-
-
-
-
-
-

Large Call To Action Button

-
-
-
- -
-
-

HTML

-
<button class="topcoat-button--large--cta" >Button</button>
<button class="topcoat-button--large--cta" disabled>Button</button>
-
-
-

CSS

-

-.topcoat-button--large--cta {
-  font-size: 0.875rem;
-  font-weight: 600;
-  line-height: 1.688rem;
-  padding: 0 0.875rem;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-input[type="checkbox"] {
-  position: absolute;
-  overflow: hidden;
-  padding: 0;
-  border: 0;
-  opacity: 0.001;
-  z-index: 1;
-  vertical-align: top;
-  outline: none;
-}
-
-.checkbox {
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-}
-
-.checkbox__label {
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-}
-
-.checkbox--disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-.checkbox:before,
-.checkbox:after {
-  content: '';
-  position: absolute;
-}
-
-.checkbox:before {
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-input[type="checkbox"] {
-  position: absolute;
-  overflow: hidden;
-  padding: 0;
-  border: 0;
-  opacity: 0.001;
-  z-index: 1;
-  vertical-align: top;
-  outline: none;
-}
-
-.checkbox,
-.topcoat-checkbox__checkmark {
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-}
-
-.checkbox__label,
-.topcoat-checkbox {
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-}
-
-.checkbox--disabled,
-input[type="checkbox"]:disabled + .topcoat-checkbox__checkmark {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-.checkbox:before,
-.checkbox:after,
-.topcoat-checkbox__checkmark:before,
-.topcoat-checkbox__checkmark:after {
-  content: '';
-  position: absolute;
-}
-
-.checkbox:before,
-.topcoat-checkbox__checkmark:before {
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-}
-
-
-
-
-
-
-
-

Checkbox

-
-


-
-

Examples

- -
-
- -
-
-

HTML

-
<label class="topcoat-checkbox">
  <input type="checkbox">
  <div class="topcoat-checkbox__checkmark"></div>
  Default
</label>
<br>
<br>
<label class="topcoat-checkbox">
  <input type="checkbox" disabled>
  <div class="topcoat-checkbox__checkmark"></div>
  Disabled
</label>
-
-
-

CSS

-

-.topcoat-checkbox__checkmark {
-  height: 1rem;
-}
-
-input[type="checkbox"] {
-  height: 1rem;
-  width: 1rem;
-  margin-top: 0;
-  margin-right: -1rem;
-  margin-bottom: -1rem;
-  margin-left: 0;
-}
-
-input[type="checkbox"]:checked + .topcoat-checkbox__checkmark:after {
-  opacity: 1;
-}
-
-.topcoat-checkbox {
-  line-height: 1rem;
-}
-
-.topcoat-checkbox__checkmark:before {
-  width: 1rem;
-  height: 1rem;
-  background: #595b5b;
-  border: 1px solid #303233;
-  border-radius: 3px;
-  box-shadow: inset 0 1px #727373;
-}
-
-.topcoat-checkbox__checkmark {
-  width: 1rem;
-  height: 1rem;
-}
-
-.topcoat-checkbox__checkmark:after {
-  top: 2px;
-  left: 1px;
-  opacity: 0;
-  width: 14px;
-  height: 4px;
-  background: transparent;
-  border: 7px solid #fff;
-  border-width: 3px;
-  border-top: none;
-  border-right: none;
-  border-radius: 1px;
-  -webkit-transform: rotate(-50deg);
-  -ms-transform: rotate(-50deg);
-  transform: rotate(-50deg);
-}
-
-input[type="checkbox"]:focus + .topcoat-checkbox__checkmark:before {
-  border: 1px solid #0940fd;
-  box-shadow: 0 0 0 2px #6fb5f1;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.button,
-.topcoat-icon-button,
-.topcoat-icon-button--quiet,
-.topcoat-icon-button--large,
-.topcoat-icon-button--large--quiet {
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-  text-overflow: ellipsis;
-  white-space: nowrap;
-  overflow: hidden;
-  text-decoration: none;
-}
-
-.button--quiet {
-  background: transparent;
-  border: 1px solid transparent;
-  box-shadow: none;
-}
-
-.button--disabled,
-.topcoat-icon-button:disabled,
-.topcoat-icon-button--quiet:disabled,
-.topcoat-icon-button--large:disabled,
-.topcoat-icon-button--large--quiet:disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-
-
-
-
-
-
-

Icon Button

-
-
-
- -
-
-

HTML

-
<button class="topcoat-icon-button">
  <span class="topcoat-icon" style="background-color:#A5A7A7;"></span>
</button>
<button class="topcoat-icon-button" disabled>
  <span class="topcoat-icon" style="background-color:#A5A7A7;"></span>
</button>
-
-
-

CSS

-

-.topcoat-icon-button,
-.topcoat-icon-button--quiet,
-.topcoat-icon-button--large,
-.topcoat-icon-button--large--quiet {
-  padding: 0 0.25rem;
-  line-height: 1.313rem;
-  letter-spacing: 0;
-  color: #c6c8c8;
-  text-shadow: 0 -1px rgba(0,0,0,0.69);
-  vertical-align: baseline;
-  background-color: #595b5b;
-  box-shadow: inset 0 1px #727373;
-  border: 1px solid #303233;
-  border-radius: 4px;
-}
-
-.topcoat-icon-button:hover,
-.topcoat-icon-button--quiet:hover,
-.topcoat-icon-button--large:hover,
-.topcoat-icon-button--large--quiet:hover {
-  background-color: #646666;
-}
-
-.topcoat-icon-button:active {
-  background-color: #404141;
-  box-shadow: inset 0 1px rgba(0,0,0,0.18);
-}
-
-.topcoat-icon-button:focus,
-.topcoat-icon-button--quiet:focus,
-.topcoat-icon-button--quiet:hover:focus,
-.topcoat-icon-button--large:focus,
-.topcoat-icon-button--large--quiet:focus,
-.topcoat-icon-button--large--quiet:hover:focus {
-  border: 1px solid #0940fd;
-  box-shadow: 0 0 0 2px #6fb5f1;
-  outline: 0;
-}
-
-
-
-
-
-
-
-

Quiet Icon Button

-
-
-
- -
-
-

HTML

-
<button class="topcoat-icon-button--quiet">
  <span class="topcoat-icon" style="background-color:#A5A7A7;"></span>
</button>
<button class="topcoat-icon-button--quiet" disabled>
  <span class="topcoat-icon" style="background-color:#A5A7A7;"></span>
</button>
-
-
-

CSS

-

-.topcoat-icon-button--quiet {
-  background: transparent;
-  border: 1px solid transparent;
-  box-shadow: none;
-}
-
-.topcoat-icon-button--quiet:hover,
-.topcoat-icon-button--large--quiet:hover {
-  text-shadow: 0 -1px rgba(0,0,0,0.69);
-  border: 1px solid #303233;
-  box-shadow: inset 0 1px #727373;
-}
-
-.topcoat-icon-button--quiet:active,
-.topcoat-icon-button--large--quiet:active {
-  color: #c6c8c8;
-  text-shadow: 0 -1px rgba(0,0,0,0.69);
-  background-color: #404141;
-  border: 1px solid #303233;
-  box-shadow: inset 0 1px rgba(0,0,0,0.18);
-}
-
-
-
-
-
-
-
-

Large Icon Button

-
-
-
- -
-
-

HTML

-
<button class="topcoat-icon-button--large">
  <span class="topcoat-icon--large" style="background-color:#A5A7A7;"></span>
</button>
<button class="topcoat-icon-button--large" disabled>
  <span class="topcoat-icon--large" style="background-color:#A5A7A7;"></span>
</button>
-
-
-

CSS

-

-.topcoat-icon-button--large,
-.topcoat-icon-button--large--quiet {
-  width: 1.688rem;
-  height: 1.688rem;
-  line-height: 1.688rem;
-}
-
-.topcoat-icon-button--large:active {
-  background-color: #404141;
-  box-shadow: inset 0 1px rgba(0,0,0,0.18);
-}
-
-
-
-
-
-
-
-

Large Quiet Icon Button

-
-
-
- -
-
-

HTML

-
<button class="topcoat-icon-button--large--quiet">
  <span class="topcoat-icon--large" style="background-color:#A5A7A7;"></span>
</button>
<button class="topcoat-icon-button--large--quiet" disabled>
  <span class="topcoat-icon--large" style="background-color:#A5A7A7;"></span>
</button>
-
-
-

CSS

-

-.topcoat-icon-button--large--quiet {
-  background: transparent;
-  border: 1px solid transparent;
-  box-shadow: none;
-}
-
-.topcoat-icon,
-.topcoat-icon--large {
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  overflow: hidden;
-  width: 0.81406rem;
-  height: 0.81406rem;
-  vertical-align: middle;
-  top: -1px;
-}
-
-.topcoat-icon--large {
-  width: 1.06344rem;
-  height: 1.06344rem;
-  top: -2px;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.input {
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  vertical-align: top;
-  outline: none;
-}
-
-.input:disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.list {
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-  overflow: auto;
-  -webkit-overflow-scrolling: touch;
-}
-
-.list__header {
-  margin: 0;
-}
-
-.list__container {
-  padding: 0;
-  margin: 0;
-  list-style-type: none;
-}
-
-.list__item {
-  margin: 0;
-  padding: 0;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.navigation-bar {
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  white-space: nowrap;
-  overflow: hidden;
-  word-spacing: 0;
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-}
-
-.navigation-bar__item {
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-}
-
-.navigation-bar__title {
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  text-overflow: ellipsis;
-  white-space: nowrap;
-  overflow: hidden;
-}
-
-/*
-Copyright 2012 Adobe Systems Inc.;
-Licensed under the Apache License, Version 2.0 (the "License");
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
-
-http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.notification {
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-  text-overflow: ellipsis;
-  white-space: nowrap;
-  overflow: hidden;
-  text-decoration: none;
-}
-
-/*
-Copyright 2012 Adobe Systems Inc.;
-Licensed under the Apache License, Version 2.0 (the "License");
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
-
-http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.notification,
-.topcoat-notification {
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-  text-overflow: ellipsis;
-  white-space: nowrap;
-  overflow: hidden;
-  text-decoration: none;
-}
-
-
-
-
-
-
-
-

Notification

-
-
1
-
- -
-
-

HTML

-
<span class="topcoat-notification">1</span>
-
-
-

CSS

-

-.topcoat-notification {
-  padding: 0.15em 0.5em 0.2em;
-  border-radius: 2px;
-  background-color: #ec514e;
-  color: #fff;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-input[type="radio"] {
-  position: absolute;
-  overflow: hidden;
-  padding: 0;
-  border: 0;
-  opacity: 0.001;
-  z-index: 1;
-  vertical-align: top;
-  outline: none;
-}
-
-.radio-button {
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-}
-
-.radio-button__label {
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-}
-
-.radio-button:before,
-.radio-button:after {
-  content: '';
-  position: absolute;
-  border-radius: 100%;
-}
-
-.radio-button:after {
-  top: 50%;
-  left: 50%;
-  -webkit-transform: translate(-50%, -50%);
-  -ms-transform: translate(-50%, -50%);
-  transform: translate(-50%, -50%);
-}
-
-.radio-button:before {
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-}
-
-.radio-button--disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-input[type="radio"] {
-  position: absolute;
-  overflow: hidden;
-  padding: 0;
-  border: 0;
-  opacity: 0.001;
-  z-index: 1;
-  vertical-align: top;
-  outline: none;
-}
-
-.radio-button,
-.topcoat-radio-button__checkmark {
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-}
-
-.radio-button__label,
-.topcoat-radio-button {
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-}
-
-.radio-button:before,
-.radio-button:after,
-.topcoat-radio-button__checkmark:before,
-.topcoat-radio-button__checkmark:after {
-  content: '';
-  position: absolute;
-  border-radius: 100%;
-}
-
-.radio-button:after,
-.topcoat-radio-button__checkmark:after {
-  top: 50%;
-  left: 50%;
-  -webkit-transform: translate(-50%, -50%);
-  -ms-transform: translate(-50%, -50%);
-  transform: translate(-50%, -50%);
-}
-
-.radio-button:before,
-.topcoat-radio-button__checkmark:before {
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-}
-
-.radio-button--disabled,
-input[type="radio"]:disabled + .topcoat-radio-button__checkmark {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-
-
-
-
-
-
-

Radio Button

-
-






-
-

Examples

- -
-
- -
-
-

HTML

-
<!-- NO LABEL -->
<label class="topcoat-radio-button">
  <input type="radio" name="topcoat">
  <div class="topcoat-radio-button__checkmark"></div>
</label>
<br>
<br>
<!-- LEFT LABEL -->
<label class="topcoat-radio-button">
  Left label
  <input type="radio" name="topcoat">
  <div class="topcoat-radio-button__checkmark"></div>
</label>
<br>
<br>
<!-- RIGHT LABEL -->
<label class="topcoat-radio-button">
  <input type="radio" name="topcoat">
  <div class="topcoat-radio-button__checkmark"></div>
  Right label
</label>
<br>
<br>
<!-- DISABLED -->
<label class="topcoat-radio-button">
  <input type="radio" name="topcoat" Disabled>
  <div class="topcoat-radio-button__checkmark"></div>
  Disabled
</label>
-
-
-

CSS

-

-input[type="radio"] {
-  height: 1.063rem;
-  width: 1.063rem;
-  margin-top: 0;
-  margin-right: -1.063rem;
-  margin-bottom: -1.063rem;
-  margin-left: 0;
-}
-
-input[type="radio"]:checked + .topcoat-radio-button__checkmark:after {
-  opacity: 1;
-}
-
-.topcoat-radio-button {
-  color: #c6c8c8;
-  line-height: 1.063rem;
-}
-
-.topcoat-radio-button__checkmark:before {
-  width: 1.063rem;
-  height: 1.063rem;
-  background: #595b5b;
-  border: 1px solid #303233;
-  box-shadow: inset 0 1px #727373;
-}
-
-.topcoat-radio-button__checkmark {
-  position: relative;
-  width: 1.063rem;
-  height: 1.063rem;
-}
-
-.topcoat-radio-button__checkmark:after {
-  opacity: 0;
-  width: 0.313rem;
-  height: 0.313rem;
-  background: #fff;
-  border: 1px solid rgba(255,255,255,0.1);
-  box-shadow: 0 1px rgba(255,255,255,0.5);
-  -webkit-transform: none;
-  -ms-transform: none;
-  transform: none;
-  top: 0.313rem;
-  left: 0.313rem;
-}
-
-input[type="radio"]:focus + .topcoat-radio-button__checkmark:before {
-  border: 1px solid #0940fd;
-  box-shadow: 0 0 0 2px #6fb5f1;
-}
-
-/*
-Copyright 2012 Adobe Systems Inc.;
-Licensed under the Apache License, Version 2.0 (the "License");
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
-
-http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
-*/
-
-/*
-Copyright 2012 Adobe Systems Inc.;
-Licensed under the Apache License, Version 2.0 (the "License");
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
-
-http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
-*/
-
-.range {
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  vertical-align: top;
-  outline: none;
-  -webkit-appearance: none;
-}
-
-.range__thumb {
-  cursor: pointer;
-}
-
-.range__thumb--webkit {
-  cursor: pointer;
-  -webkit-appearance: none;
-}
-
-.range:disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-/*
-Copyright 2012 Adobe Systems Inc.;
-Licensed under the Apache License, Version 2.0 (the "License");
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
-
-http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
-*/
-
-/*
-Copyright 2012 Adobe Systems Inc.;
-Licensed under the Apache License, Version 2.0 (the "License");
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
-
-http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
-*/
-
-.range,
-.topcoat-range {
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  vertical-align: top;
-  outline: none;
-  -webkit-appearance: none;
-}
-
-.range__thumb,
-.topcoat-range::-moz-range-thumb {
-  cursor: pointer;
-}
-
-.range__thumb--webkit,
-.topcoat-range::-webkit-slider-thumb {
-  cursor: pointer;
-  -webkit-appearance: none;
-}
-
-.range:disabled,
-.topcoat-range:disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-
-
-
-
-
-
-

Range

-
-
-
-

Examples

- -
-
- -
-
-

HTML

-
<input type="range" class="topcoat-range">
<input type="range" class="topcoat-range" disabled>
-
-
-

CSS

-

-.topcoat-range {
-  border-radius: 4px;
-  border: 1px solid #303233;
-  background-color: #424546;
-  height: 0.5rem;
-  border-radius: 15px;
-}
-
-.topcoat-range::-moz-range-track {
-  border-radius: 4px;
-  border: 1px solid #303233;
-  background-color: #424546;
-  height: 0.5rem;
-  border-radius: 15px;
-}
-
-.topcoat-range::-webkit-slider-thumb {
-  height: 1.313rem;
-  width: 0.75rem;
-  background-color: #595b5b;
-  border: 1px solid #303233;
-  border-radius: 4px;
-  box-shadow: inset 0 1px #727373;
-}
-
-.topcoat-range::-moz-range-thumb {
-  height: 1.313rem;
-  width: 0.75rem;
-  background-color: #595b5b;
-  border: 1px solid #303233;
-  border-radius: 4px;
-  box-shadow: inset 0 1px #727373;
-}
-
-.topcoat-range:focus::-webkit-slider-thumb {
-  border: 1px solid #0940fd;
-  box-shadow: 0 0 0 2px #6fb5f1;
-}
-
-.topcoat-range:focus::-moz-range-thumb {
-  border: 1px solid #0940fd;
-  box-shadow: 0 0 0 2px #6fb5f1;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.search-input {
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  vertical-align: top;
-  outline: none;
-  -webkit-appearance: none;
-}
-
-input[type="search"]::-webkit-search-cancel-button {
-  -webkit-appearance: none;
-}
-
-.search-input:disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.search-input,
-.topcoat-search-input,
-.topcoat-search-input--large {
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  vertical-align: top;
-  outline: none;
-  -webkit-appearance: none;
-}
-
-input[type="search"]::-webkit-search-cancel-button {
-  -webkit-appearance: none;
-}
-
-.search-input:disabled,
-.topcoat-search-input:disabled,
-.topcoat-search-input--large:disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-
-
-
-
-
-
-

Search Input

-
-
-
- -
-
-

HTML

-
<input type="search" value="" placeholder="search" class="topcoat-search-input">
<input type="search" value="" placeholder="search" class="topcoat-search-input" disabled>
-
-
-

CSS

-

-.topcoat-search-input,
-.topcoat-search-input--large {
-  line-height: 1.313rem;
-  font-size: 12px;
-  border: 1px solid #303233;
-  background-color: #404141;
-  box-shadow: inset 0 1px rgba(0,0,0,0.18);
-  color: #c6c8c8;
-  padding: 0 0 0 1.3rem;
-  border-radius: 15px;
-  background-image: url("../img/search.svg");
-  background-position: 1em center;
-  background-repeat: no-repeat;
-  background-size: 12px;
-}
-
-.topcoat-search-input:focus,
-.topcoat-search-input--large:focus {
-  background-image: url("../img/search_dark.svg");
-  background-color: #646666;
-  color: #fff;
-  border: 1px solid #0940fd;
-  box-shadow: 0 0 0 2px #6fb5f1;
-}
-
-.topcoat-search-input::-webkit-search-cancel-button,
-.topcoat-search-input::-webkit-search-decoration,
-.topcoat-search-input--large::-webkit-search-cancel-button,
-.topcoat-search-input--large::-webkit-search-decoration {
-  margin-right: 5px;
-}
-
-.topcoat-search-input:focus::-webkit-input-placeholder,
-.topcoat-search-input:focus::-webkit-input-placeholder {
-  color: #c6c8c8;
-}
-
-.topcoat-search-input:disabled::-webkit-input-placeholder {
-  color: #fff;
-}
-
-.topcoat-search-input:disabled::-moz-placeholder {
-  color: #fff;
-}
-
-.topcoat-search-input:disabled:-ms-input-placeholder {
-  color: #fff;
-}
-
-
-
-
-
-
-
-

Large Search Input

-
-
-
- -
-
-

HTML

-
<input type="search" value="" placeholder="search" class="topcoat-search-input--large">
<input type="search" value="" placeholder="search" class="topcoat-search-input--large" disabled>
-
-
-

CSS

-

-.topcoat-search-input--large {
-  line-height: 1.688rem;
-  font-size: 0.875rem;
-  font-weight: 400;
-  padding: 0 0 0 1.8rem;
-  border-radius: 25px;
-  background-position: 1.2em center;
-  background-size: 0.875rem;
-}
-
-.topcoat-search-input--large:disabled {
-  color: #fff;
-}
-
-.topcoat-search-input--large:disabled::-webkit-input-placeholder {
-  color: #fff;
-}
-
-.topcoat-search-input--large:disabled::-moz-placeholder {
-  color: #fff;
-}
-
-.topcoat-search-input--large:disabled:-ms-input-placeholder {
-  color: #fff;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.switch {
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-}
-
-.switch__input {
-  position: absolute;
-  overflow: hidden;
-  padding: 0;
-  border: 0;
-  opacity: 0.001;
-  z-index: 1;
-  vertical-align: top;
-  outline: none;
-}
-
-.switch__toggle {
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-}
-
-.switch__toggle:before,
-.switch__toggle:after {
-  content: '';
-  position: absolute;
-  z-index: -1;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-}
-
-.switch--disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.switch,
-.topcoat-switch {
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-}
-
-.switch__input,
-.topcoat-switch__input {
-  position: absolute;
-  overflow: hidden;
-  padding: 0;
-  border: 0;
-  opacity: 0.001;
-  z-index: 1;
-  vertical-align: top;
-  outline: none;
-}
-
-.switch__toggle,
-.topcoat-switch__toggle {
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-}
-
-.switch__toggle:before,
-.switch__toggle:after,
-.topcoat-switch__toggle:before,
-.topcoat-switch__toggle:after {
-  content: '';
-  position: absolute;
-  z-index: -1;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-}
-
-.switch--disabled,
-.topcoat-switch__input:disabled + .topcoat-switch__toggle {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-
-
-
-
-
-
-

Switch

-
-




-
-

Examples

- -
-
- -
-
-

HTML

-
<label class="topcoat-switch">
  <input type="checkbox" class="topcoat-switch__input">
  <div class="topcoat-switch__toggle"></div>
</label>
<br>
<br>
<label class="topcoat-switch">
  <input type="checkbox" class="topcoat-switch__input" checked>
  <div class="topcoat-switch__toggle"></div>
</label>
<br>
<br>
<label class="topcoat-switch">
  <input type="checkbox" class="topcoat-switch__input" disabled>
  <div class="topcoat-switch__toggle"></div>
</label>
-
-
-

CSS

-

-.topcoat-switch {
-  font-size: 12px;
-  padding: 0 0.563rem;
-  border-radius: 4px;
-  border: 1px solid #303233;
-  overflow: hidden;
-  width: 3.5rem;
-}
-
-.topcoat-switch__toggle:before,
-.topcoat-switch__toggle:after {
-  top: -1px;
-  width: 2.6rem;
-}
-
-.topcoat-switch__toggle:before {
-  content: 'ON';
-  color: #5dc1ff;
-  background-color: #404141;
-  right: 0.8rem;
-  padding-left: 0.75rem;
-}
-
-.topcoat-switch__toggle {
-  line-height: 1.313rem;
-  height: 1.313rem;
-  width: 1rem;
-  border-radius: 4px;
-  color: #c6c8c8;
-  text-shadow: 0 -1px rgba(0,0,0,0.69);
-  background-color: #595b5b;
-  border: 1px solid #303233;
-  margin-left: -0.6rem;
-  margin-bottom: -1px;
-  margin-top: -1px;
-  box-shadow: inset 0 1px #727373;
-  -webkit-transition: margin-left 0.05s ease-in-out;
-  transition: margin-left 0.05s ease-in-out;
-}
-
-.topcoat-switch__toggle:after {
-  content: 'OFF';
-  background-color: #404141;
-  left: 0.8rem;
-  padding-left: 0.6rem;
-}
-
-.topcoat-switch__input:checked + .topcoat-switch__toggle {
-  margin-left: 1.85rem;
-}
-
-.topcoat-switch__input:focus + .topcoat-switch__toggle {
-  border: 1px solid #0940fd;
-  box-shadow: 0 0 0 2px #6fb5f1;
-}
-
-.topcoat-switch__input:disabled + .topcoat-switch__toggle:after,
-.topcoat-switch__input:disabled + .topcoat-switch__toggle:before {
-  background: transparent;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.button,
-.topcoat-tab-bar__button {
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-  text-overflow: ellipsis;
-  white-space: nowrap;
-  overflow: hidden;
-  text-decoration: none;
-}
-
-.button--quiet {
-  background: transparent;
-  border: 1px solid transparent;
-  box-shadow: none;
-}
-
-.button--disabled,
-.topcoat-tab-bar__button:disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-.button-bar,
-.topcoat-tab-bar {
-  display: table;
-  table-layout: fixed;
-  white-space: nowrap;
-  margin: 0;
-  padding: 0;
-}
-
-.button-bar__item,
-.topcoat-tab-bar__item {
-  display: table-cell;
-  width: auto;
-  border-radius: 0;
-}
-
-.button-bar__item > input,
-.topcoat-tab-bar__item > input {
-  position: absolute;
-  overflow: hidden;
-  padding: 0;
-  border: 0;
-  opacity: 0.001;
-  z-index: 1;
-  vertical-align: top;
-  outline: none;
-}
-
-.button-bar__button {
-  border-radius: inherit;
-}
-
-.button-bar__item:disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-
-
-
-
-
-
-

Tab Bar

-
-
-
-

Examples

- -
-
- -
-
-

HTML

-
<div class="topcoat-tab-bar">
  <label class="topcoat-tab-bar__item">
    <input type="radio" name="tab-bar">
    <button class="topcoat-tab-bar__button">One</button>
  </label>
  <label class="topcoat-tab-bar__item">
    <input type="radio" name="tab-bar">
    <button class="topcoat-tab-bar__button">Two</button>
  </label>
  <label class="topcoat-tab-bar__item">
    <input type="radio" name="tab-bar">
    <button class="topcoat-tab-bar__button">Three</button>
  </label>
</div>
-
-
-

CSS

-

-.topcoat-tab-bar__button {
-  padding: 0 0.563rem;
-  height: 1.313rem;
-  line-height: 1.313rem;
-  letter-spacing: 0;
-  color: #c6c8c8;
-  text-shadow: 0 -1px rgba(0,0,0,0.69);
-  vertical-align: top;
-  background-color: #595b5b;
-  box-shadow: inset 0 1px #727373;
-  border-top: 1px solid #303233;
-}
-
-.topcoat-tab-bar__button:active,
-.topcoat-tab-bar__button--large:active,
-:checked + .topcoat-tab-bar__button {
-  color: #5dc1ff;
-  background-color: #404141;
-  box-shadow: inset 0 0 2px #313231;
-}
-
-.topcoat-tab-bar__button:focus,
-.topcoat-tab-bar__button--large:focus {
-  z-index: 1;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.input,
-.topcoat-text-input,
-.topcoat-text-input--large {
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  vertical-align: top;
-  outline: none;
-}
-
-.input:disabled,
-.topcoat-text-input:disabled,
-.topcoat-text-input--large:disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-
-
-
-
-
-
-

Text input

-
-




-
- -
-
-

HTML

-
<input type="text" class="topcoat-text-input" placeholder="text" value="">
<br>
<br>
<input type="text" class="topcoat-text-input" placeholder="text" value="" disabled>
<br>
<br>
<input type="text" class="topcoat-text-input" placeholder="text" value="fail" pattern="not-fail">
-
-
-

CSS

-

-.topcoat-text-input,
-.topcoat-text-input--large {
-  line-height: 1.313rem;
-  font-size: 12px;
-  letter-spacing: 0;
-  padding: 0 0.563rem;
-  border: 1px solid #303233;
-  border-radius: 4px;
-  background-color: #404141;
-  box-shadow: inset 0 1px rgba(0,0,0,0.18);
-  color: #c6c8c8;
-  vertical-align: top;
-}
-
-.topcoat-text-input:focus,
-.topcoat-text-input--large:focus {
-  background-color: #646666;
-  color: #fff;
-  border: 1px solid #0940fd;
-  box-shadow: 0 0 0 2px #6fb5f1;
-}
-
-.topcoat-text-input:disabled::-webkit-input-placeholder {
-  color: #fff;
-}
-
-.topcoat-text-input:disabled::-moz-placeholder {
-  color: #fff;
-}
-
-.topcoat-text-input:disabled:-ms-input-placeholder {
-  color: #fff;
-}
-
-.topcoat-text-input:invalid {
-  border: 1px solid #d83b75;
-}
-
-
-
-
-
-
-
-

Large Text Input

-
-




-
- -
-
-

HTML

-
<input type="text" class="topcoat-text-input--large" value="" placeholder="text">
<br>
<br>
<input type="text" class="topcoat-text-input--large" value="" placeholder="text" disabled>
<br>
<br>
<input type="text" class="topcoat-text-input--large" placeholder="text" value="fail" pattern="not-fail">
-
-
-

CSS

-

-.topcoat-text-input--large {
-  line-height: 1.688rem;
-  font-size: 0.875rem;
-}
-
-.topcoat-text-input--large:disabled {
-  color: #fff;
-}
-
-.topcoat-text-input--large:disabled::-webkit-input-placeholder {
-  color: #fff;
-}
-
-.topcoat-text-input--large:disabled::-moz-placeholder {
-  color: #fff;
-}
-
-.topcoat-text-input--large:disabled:-ms-input-placeholder {
-  color: #fff;
-}
-
-.topcoat-text-input--large:invalid {
-  border: 1px solid #d83b75;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.textarea {
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  vertical-align: top;
-  resize: none;
-  outline: none;
-}
-
-.textarea:disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.textarea,
-.topcoat-textarea,
-.topcoat-textarea--large {
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  vertical-align: top;
-  resize: none;
-  outline: none;
-}
-
-.textarea:disabled,
-.topcoat-textarea:disabled,
-.topcoat-textarea--large:disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-
-
-
-
-
-
-

Textarea

-
-


-
- -
-
-

HTML

-
<textarea class="topcoat-textarea" rows="6" cols="36" placeholder="Textarea"></textarea>
<br>
<br>
<textarea class="topcoat-textarea" rows="6" cols="36" placeholder="Textarea" disabled></textarea>
-
-
-

CSS

-

-.topcoat-textarea,
-.topcoat-textarea--large {
-  padding: 1rem;
-  font-size: 1rem;
-  font-weight: 400;
-  border-radius: 4px;
-  line-height: 1.313rem;
-  border: 1px solid #303233;
-  background-color: #404141;
-  box-shadow: inset 0 1px rgba(0,0,0,0.18);
-  color: #c6c8c8;
-  letter-spacing: 0;
-}
-
-.topcoat-textarea:focus,
-.topcoat-textarea--large:focus {
-  background-color: #646666;
-  color: #fff;
-  border: 1px solid #0940fd;
-  box-shadow: 0 0 0 2px #6fb5f1;
-}
-
-.topcoat-textarea:disabled::-webkit-input-placeholder {
-  color: #fff;
-}
-
-.topcoat-textarea:disabled::-moz-placeholder {
-  color: #fff;
-}
-
-.topcoat-textarea:disabled:-ms-input-placeholder {
-  color: #fff;
-}
-
-
-
-
-
-
-
-

Large Textarea

-
-


-
- -
-
-

HTML

-
<textarea class="topcoat-textarea--large" rows="6" cols="36" placeholder="Textarea"></textarea>
<br>
<br>
<textarea class="topcoat-textarea--large" rows="6" cols="36" placeholder="Textarea" disabled></textarea>
-
-
-

CSS

-

-.topcoat-textarea--large {
-  font-size: 1.3rem;
-  line-height: 1.688rem;
-}
-
-.topcoat-textarea--large:disabled {
-  color: #fff;
-}
-
-.topcoat-textarea--large:disabled::-webkit-input-placeholder {
-  color: #fff;
-}
-
-.topcoat-textarea--large:disabled::-moz-placeholder {
-  color: #fff;
-}
-
-.topcoat-textarea--large:disabled:-ms-input-placeholder {
-  color: #fff;
-}
-
-@font-face {
-  font-family: "Source Sans";
-  src: url("../font/SourceSansPro-Regular.otf");
-}
-
-@font-face {
-  font-family: "Source Sans";
-  src: url("../font/SourceSansPro-Light.otf");
-  font-weight: 200;
-}
-
-@font-face {
-  font-family: "Source Sans";
-  src: url("../font/SourceSansPro-Semibold.otf");
-  font-weight: 600;
-}
-
-body {
-  margin: 0;
-  padding: 0;
-  background: #4b4d4e;
-  color: #000;
-  font: 16px "Source Sans", helvetica, arial, sans-serif;
-  font-weight: 200;
-}
-
-:focus {
-  outline-color: transparent;
-  outline-style: none;
-}
-
-.topcoat-icon--menu-stack {
-  background: url("../img/hamburger_light.svg") no-repeat;
-  background-size: cover;
-}
-
-.quarter {
-  width: 25%;
-}
-
-.half {
-  width: 50%;
-}
-
-.three-quarters {
-  width: 75%;
-}
-
-.third {
-  width: 33.333%;
-}
-
-.two-thirds {
-  width: 66.666%;
-}
-
-.full {
-  width: 100%;
-}
-
-.left {
-  text-align: left;
-}
-
-.center {
-  text-align: center;
-}
-
-.right {
-  text-align: right;
-}
-
-.reset-ui {
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-  text-overflow: ellipsis;
-  white-space: nowrap;
-  overflow: hidden;
-}
-
-/* This file should include color and image variables corresponding to the dark theme */
-
-/* Call To Action */
-
-/* Icons */
-
-/* Navigation Bar */
-
-/* Text Input */
-
-/* Search Input */
-
-/* List */
-
-/* Checkbox */
-
-/* Overlay */
-
-/* Progress bar */
-
-/* Checkbox */
-
-/* Radio Button */
-
-/* Tab bar */
-
-/* Switch */
-
-/* Icon Button */
-
-/* Navigation bar */
-
-/* List */
-
-/* Search Input */
-
-/* Textarea */
-
-/* Checkbox */
-
-/* Radio */
-
-/* Range input */
-
-/* Search Input */
-
-/* Switch */
-
-/* This file should include color and image variables corresponding to the light theme */
-
-/* Call To Action */
-
-/* Icons */
-
-/* Navigation Bar */
-
-/* Text Input */
-
-/* List */
-
-/* Overlay */
-
-/* Progress bar */
-
-/* Checkbox */
-
-/* Range input */
-
-/* Radio Button */
-
-/* Tab bar */
-
-/* Switch */
-
-/* Containers */
-
-/* Icon Button */
-
-/* Navigation bar */
-
-/* List */
-
-/* Search Input */
-
-/* Text Area */
-
-/* Checkbox */
-
-/* Radio */
-
-/* Range input */
-
-/* Search Input */
-
-/* Switch */
-
-/* Text Input */
-
-/* Radio input */
-
-/* Overlay */
-
-/* Textarea */
-
-/* Progress bar container */
-
-/* Progress bar progress */
-
-/* Search input */
-
-/* Switch */
-
-/* Notification */
-
-
-
-
-
-
-
-
- - - - \ No newline at end of file diff --git a/www/assets/topcoat-0.7.5/demo/js/main.js b/www/assets/topcoat-0.7.5/demo/js/main.js deleted file mode 100755 index 6dcdbd8..0000000 --- a/www/assets/topcoat-0.7.5/demo/js/main.js +++ /dev/null @@ -1,44 +0,0 @@ -window.onload = function(){ - var showCodeDivs = document.getElementsByClassName('showcode'); - for (var i = showCodeDivs.length - 1; i >= 0; i--) { - showCodeDivs[i].firstChild.onclick = function(e) { - var element = e.target.parentNode.nextSibling.nextSibling; - var style = window.getComputedStyle(element); - if(style.getPropertyValue('display') == 'none'){ - e.target.innerHTML = 'Hide code snippets'; - element.style.display = 'block'; - } else { - e.target.innerHTML = 'Show code snippets'; - element.style.display = 'none'; - } - return false; - }; - }; - var slideMenuButton = document.getElementById('slide-menu-button'); - slideMenuButton.onclick = function(e) { - var site = document.getElementById('site'); - var cl = site.classList; - if (cl.contains('open')) { - cl.remove('open'); - } else { - cl.add('open'); - } - }; - var docNavs = document.getElementsByClassName('docNav'); - for (var j = docNavs.length - 1; j >= 0; j--) { - docNavs[j].onchange = function(e){ - window.location.href = e.target[e.target.selectedIndex].value; - }; - }; - var pageNav = document.getElementById('pageNav'); - var pageLinks = pageNav.getElementsByTagName('a'); - for (var k = pageLinks.length - 1; k >= 0; k--) { - pageLinks[k].onclick = function(e) { - var site = document.getElementById('site'); - var cl = site.classList; - if (cl.contains('open')) { - cl.remove('open'); - } - }; - }; -} \ No newline at end of file diff --git a/www/assets/topcoat-0.7.5/demo/js/rainbow-custom.min.js b/www/assets/topcoat-0.7.5/demo/js/rainbow-custom.min.js deleted file mode 100755 index a25e178..0000000 --- a/www/assets/topcoat-0.7.5/demo/js/rainbow-custom.min.js +++ /dev/null @@ -1,11 +0,0 @@ -/* Rainbow v1.2 rainbowco.de | included languages: html, css */ -window.Rainbow=function(){function q(a){var b,c=a.getAttribute&&a.getAttribute("data-language")||0;if(!c){a=a.attributes;for(b=0;b=f[d][c])delete f[d][c],delete j[d][c];if(a>=c&&ac&&b'+b+""}function s(a,b,c,i){var e=a.exec(c);if(e){++t;!b.name&&"string"==typeof b.matches[0]&&(b.name=b.matches[0],delete b.matches[0]);var k=e[0],g=e.index,u=e[0].length+g,h=function(){function e(){s(a,b,c,i)}t%100>0?e():setTimeout(e,0)};if(C(g,u))h();else{var m=v(b.matches),l=function(a,c,i){if(a>=c.length)i(k);else{var d=e[c[a]];if(d){var g=b.matches[c[a]],f=g.language,h=g.name&&g.matches? -g.matches:g,j=function(b,d,g){var f;f=0;var h;for(h=1;h/g,">").replace(/&(?![\w\#]+;)/g, -"&"),b,c)}function o(a,b,c){if(b - - - - - Topcoat - - - - - - - -
- -
-
-
-
-

Topcoat

-

CSS for clean and fast web apps

-
- -
-
-
-
-
-

Button Bar

-
-
-
-

Examples

- -
-
- -
-
-

HTML

-
<div class="topcoat-button-bar">
  <div class="topcoat-button-bar__item">
    <button class="topcoat-button-bar__button">One</button>
  </div>
  <div class="topcoat-button-bar__item">
    <button class="topcoat-button-bar__button">Two</button>
  </div>
  <div class="topcoat-button-bar__item">
    <button class="topcoat-button-bar__button">Three</button>
  </div>
</div>
-
-
-

CSS

-

-.topcoat-button-bar > .topcoat-button-bar__item:first-child {
-  border-top-left-radius: 4px;
-  border-bottom-left-radius: 4px;
-}
-
-.topcoat-button-bar > .topcoat-button-bar__item:last-child {
-  border-top-right-radius: 4px;
-  border-bottom-right-radius: 4px;
-}
-
-.topcoat-button-bar__item:first-child > .topcoat-button-bar__button,
-.topcoat-button-bar__item:first-child > .topcoat-button-bar__button--large {
-  border-right: none;
-}
-
-.topcoat-button-bar__item:last-child > .topcoat-button-bar__button,
-.topcoat-button-bar__item:last-child > .topcoat-button-bar__button--large {
-  border-left: none;
-}
-
-.topcoat-button-bar__button {
-  border-radius: inherit;
-}
-
-.topcoat-button-bar__button:focus,
-.topcoat-button-bar__button--large:focus {
-  z-index: 1;
-}
-
-
-
-
-
-
-
-

Large Button Bar

-
-
-
- -
-
-

HTML

-
<div class="topcoat-button-bar">
  <div class="topcoat-button-bar__item">
    <button class="topcoat-button-bar__button--large">One</button>
  </div>
  <div class="topcoat-button-bar__item">
    <button class="topcoat-button-bar__button--large">Two</button>
  </div>
  <div class="topcoat-button-bar__item">
    <button class="topcoat-button-bar__button--large">Three</button>
  </div>
</div>
-
-
-

CSS

-

-.topcoat-button-bar__button--large {
-  border-radius: inherit;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.button {
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-  text-overflow: ellipsis;
-  white-space: nowrap;
-  overflow: hidden;
-  text-decoration: none;
-}
-
-.button--quiet {
-  background: transparent;
-  border: 1px solid transparent;
-  box-shadow: none;
-}
-
-.button--disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.button,
-.topcoat-button,
-.topcoat-button--quiet,
-.topcoat-button--large,
-.topcoat-button--large--quiet,
-.topcoat-button--cta,
-.topcoat-button--large--cta {
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-  text-overflow: ellipsis;
-  white-space: nowrap;
-  overflow: hidden;
-  text-decoration: none;
-}
-
-.button--quiet {
-  background: transparent;
-  border: 1px solid transparent;
-  box-shadow: none;
-}
-
-.button--disabled,
-.topcoat-button:disabled,
-.topcoat-button--quiet:disabled,
-.topcoat-button--large:disabled,
-.topcoat-button--large--quiet:disabled,
-.topcoat-button--cta:disabled,
-.topcoat-button--large--cta:disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-
-
-
-
-
-
-

Button

-
-
-
-

Examples

- -
-
- -
-
-

HTML

-
<button class="topcoat-button">Button</button>
<button class="topcoat-button" disabled>Button</button>
-
-
-

CSS

-

-.topcoat-button,
-.topcoat-button--quiet,
-.topcoat-button--large,
-.topcoat-button--large--quiet,
-.topcoat-button--cta,
-.topcoat-button--large--cta {
-  padding: 0 0.563rem;
-  font-size: 12px;
-  line-height: 1.313rem;
-  letter-spacing: 0;
-  color: #454545;
-  text-shadow: 0 1px #fff;
-  vertical-align: top;
-  background-color: #e5e9e8;
-  box-shadow: inset 0 1px #fff;
-  border: 1px solid #a5a8a8;
-  border-radius: 4px;
-}
-
-.topcoat-button:hover,
-.topcoat-button--quiet:hover,
-.topcoat-button--large:hover,
-.topcoat-button--large--quiet:hover {
-  background-color: #edf1f1;
-}
-
-.topcoat-button:active,
-.topcoat-button--large:active {
-  background-color: #d3d7d7;
-  box-shadow: inset 0 1px rgba(0,0,0,0.12);
-}
-
-.topcoat-button:focus,
-.topcoat-button--quiet:focus,
-.topcoat-button--large:focus,
-.topcoat-button--large--quiet:focus,
-.topcoat-button--cta:focus,
-.topcoat-button--large--cta:focus {
-  border: 1px solid #0940fd;
-  box-shadow: 0 0 0 2px #6fb5f1;
-  outline: 0;
-}
-
-
-
-
-
-
-
-

Quiet Button

-
-
-
- -
-
-

HTML

-
<button class="topcoat-button--quiet">Button</button>
<button class="topcoat-button--quiet" disabled>Button</button>
-
-
-

CSS

-

-.topcoat-button--quiet {
-  background: transparent;
-  border: 1px solid transparent;
-  box-shadow: none;
-}
-
-.topcoat-button--quiet:hover,
-.topcoat-button--large--quiet:hover {
-  text-shadow: 0 1px #fff;
-  border: 1px solid #a5a8a8;
-  box-shadow: inset 0 1px #fff;
-}
-
-.topcoat-button--quiet:active,
-.topcoat-button--large--quiet:active {
-  color: #454545;
-  text-shadow: 0 1px #fff;
-  background-color: #d3d7d7;
-  border: 1px solid #a5a8a8;
-  box-shadow: inset 0 1px rgba(0,0,0,0.12);
-}
-
-
-
-
-
-
-
-

Large Button

-
-
-
- -
-
-

HTML

-
<button class="topcoat-button--large" >Button</button>
<button class="topcoat-button--large" disabled>Button</button>
-
-
-

CSS

-

-.topcoat-button--large,
-.topcoat-button--large--quiet {
-  font-size: 0.875rem;
-  font-weight: 600;
-  line-height: 1.688rem;
-  padding: 0 0.875rem;
-}
-
-
-
-
-
-
-
-

Large Quiet Button

-
-
-
- -
-
-

HTML

-
<button class="topcoat-button--large--quiet" >Button</button>
<button class="topcoat-button--large--quiet" disabled>Button</button>
-
-
-

CSS

-

-.topcoat-button--large--quiet {
-  background: transparent;
-  border: 1px solid transparent;
-  box-shadow: none;
-}
-
-
-
-
-
-
-
-

Call To Action Button

-
-
-
- -
-
-

HTML

-
<button class="topcoat-button--cta" >Button</button>
<button class="topcoat-button--cta" disabled>Button</button>
-
-
-

CSS

-

-.topcoat-button--cta,
-.topcoat-button--large--cta {
-  border: 1px solid #143250;
-  background-color: #288edf;
-  box-shadow: inset 0 1px rgba(255,255,255,0.36);
-  color: #fff;
-  font-weight: 500;
-  text-shadow: 0 -1px rgba(0,0,0,0.36);
-}
-
-.topcoat-button--cta:hover,
-.topcoat-button--large--cta:hover {
-  background-color: #509bef;
-}
-
-.topcoat-button--cta:active,
-.topcoat-button--large--cta:active {
-  background-color: #0380e8;
-  box-shadow: inset 0 1px rgba(0,0,0,0.12);
-}
-
-
-
-
-
-
-
-

Large Call To Action Button

-
-
-
- -
-
-

HTML

-
<button class="topcoat-button--large--cta" >Button</button>
<button class="topcoat-button--large--cta" disabled>Button</button>
-
-
-

CSS

-

-.topcoat-button--large--cta {
-  font-size: 0.875rem;
-  font-weight: 600;
-  line-height: 1.688rem;
-  padding: 0 0.875rem;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-input[type="checkbox"] {
-  position: absolute;
-  overflow: hidden;
-  padding: 0;
-  border: 0;
-  opacity: 0.001;
-  z-index: 1;
-  vertical-align: top;
-  outline: none;
-}
-
-.checkbox {
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-}
-
-.checkbox__label {
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-}
-
-.checkbox--disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-.checkbox:before,
-.checkbox:after {
-  content: '';
-  position: absolute;
-}
-
-.checkbox:before {
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-input[type="checkbox"] {
-  position: absolute;
-  overflow: hidden;
-  padding: 0;
-  border: 0;
-  opacity: 0.001;
-  z-index: 1;
-  vertical-align: top;
-  outline: none;
-}
-
-.checkbox,
-.topcoat-checkbox__checkmark {
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-}
-
-.checkbox__label,
-.topcoat-checkbox {
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-}
-
-.checkbox--disabled,
-input[type="checkbox"]:disabled + .topcoat-checkbox__checkmark {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-.checkbox:before,
-.checkbox:after,
-.topcoat-checkbox__checkmark:before,
-.topcoat-checkbox__checkmark:after {
-  content: '';
-  position: absolute;
-}
-
-.checkbox:before,
-.topcoat-checkbox__checkmark:before {
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-}
-
-
-
-
-
-
-
-

Checkbox

-
-


-
-

Examples

- -
-
- -
-
-

HTML

-
<label class="topcoat-checkbox">
  <input type="checkbox">
  <div class="topcoat-checkbox__checkmark"></div>
  Default
</label>
<br>
<br>
<label class="topcoat-checkbox">
  <input type="checkbox" disabled>
  <div class="topcoat-checkbox__checkmark"></div>
  Disabled
</label>
-
-
-

CSS

-

-.topcoat-checkbox__checkmark {
-  height: 1rem;
-}
-
-input[type="checkbox"] {
-  height: 1rem;
-  width: 1rem;
-  margin-top: 0;
-  margin-right: -1rem;
-  margin-bottom: -1rem;
-  margin-left: 0;
-}
-
-input[type="checkbox"]:checked + .topcoat-checkbox__checkmark:after {
-  opacity: 1;
-}
-
-.topcoat-checkbox {
-  line-height: 1rem;
-}
-
-.topcoat-checkbox__checkmark:before {
-  width: 1rem;
-  height: 1rem;
-  background: #e5e9e8;
-  border: 1px solid #a5a8a8;
-  border-radius: 3px;
-  box-shadow: inset 0 1px #fff;
-}
-
-.topcoat-checkbox__checkmark {
-  width: 1rem;
-  height: 1rem;
-}
-
-.topcoat-checkbox__checkmark:after {
-  top: 2px;
-  left: 1px;
-  opacity: 0;
-  width: 14px;
-  height: 4px;
-  background: transparent;
-  border: 7px solid #666;
-  border-width: 3px;
-  border-top: none;
-  border-right: none;
-  border-radius: 1px;
-  -webkit-transform: rotate(-50deg);
-  -ms-transform: rotate(-50deg);
-  transform: rotate(-50deg);
-}
-
-input[type="checkbox"]:focus + .topcoat-checkbox__checkmark:before {
-  border: 1px solid #0940fd;
-  box-shadow: 0 0 0 2px #6fb5f1;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.button,
-.topcoat-icon-button,
-.topcoat-icon-button--quiet,
-.topcoat-icon-button--large,
-.topcoat-icon-button--large--quiet {
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-  text-overflow: ellipsis;
-  white-space: nowrap;
-  overflow: hidden;
-  text-decoration: none;
-}
-
-.button--quiet {
-  background: transparent;
-  border: 1px solid transparent;
-  box-shadow: none;
-}
-
-.button--disabled,
-.topcoat-icon-button:disabled,
-.topcoat-icon-button--quiet:disabled,
-.topcoat-icon-button--large:disabled,
-.topcoat-icon-button--large--quiet:disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-
-
-
-
-
-
-

Icon Button

-
-
-
- -
-
-

HTML

-
<button class="topcoat-icon-button">
  <span class="topcoat-icon" style="background-color:#A5A7A7;"></span>
</button>
<button class="topcoat-icon-button" disabled>
  <span class="topcoat-icon" style="background-color:#A5A7A7;"></span>
</button>
-
-
-

CSS

-

-.topcoat-icon-button,
-.topcoat-icon-button--quiet,
-.topcoat-icon-button--large,
-.topcoat-icon-button--large--quiet {
-  padding: 0 0.25rem;
-  line-height: 1.313rem;
-  letter-spacing: 0;
-  color: #454545;
-  text-shadow: 0 1px #fff;
-  vertical-align: baseline;
-  background-color: #e5e9e8;
-  box-shadow: inset 0 1px #fff;
-  border: 1px solid #a5a8a8;
-  border-radius: 4px;
-}
-
-.topcoat-icon-button:hover,
-.topcoat-icon-button--quiet:hover,
-.topcoat-icon-button--large:hover,
-.topcoat-icon-button--large--quiet:hover {
-  background-color: #edf1f1;
-}
-
-.topcoat-icon-button:active {
-  background-color: #d3d7d7;
-  box-shadow: inset 0 1px rgba(0,0,0,0.12);
-}
-
-.topcoat-icon-button:focus,
-.topcoat-icon-button--quiet:focus,
-.topcoat-icon-button--quiet:hover:focus,
-.topcoat-icon-button--large:focus,
-.topcoat-icon-button--large--quiet:focus,
-.topcoat-icon-button--large--quiet:hover:focus {
-  border: 1px solid #0940fd;
-  box-shadow: 0 0 0 2px #6fb5f1;
-  outline: 0;
-}
-
-
-
-
-
-
-
-

Quiet Icon Button

-
-
-
- -
-
-

HTML

-
<button class="topcoat-icon-button--quiet">
  <span class="topcoat-icon" style="background-color:#A5A7A7;"></span>
</button>
<button class="topcoat-icon-button--quiet" disabled>
  <span class="topcoat-icon" style="background-color:#A5A7A7;"></span>
</button>
-
-
-

CSS

-

-.topcoat-icon-button--quiet {
-  background: transparent;
-  border: 1px solid transparent;
-  box-shadow: none;
-}
-
-.topcoat-icon-button--quiet:hover,
-.topcoat-icon-button--large--quiet:hover {
-  text-shadow: 0 1px #fff;
-  border: 1px solid #a5a8a8;
-  box-shadow: inset 0 1px #fff;
-}
-
-.topcoat-icon-button--quiet:active,
-.topcoat-icon-button--large--quiet:active {
-  color: #454545;
-  text-shadow: 0 1px #fff;
-  background-color: #d3d7d7;
-  border: 1px solid #a5a8a8;
-  box-shadow: inset 0 1px rgba(0,0,0,0.12);
-}
-
-
-
-
-
-
-
-

Large Icon Button

-
-
-
- -
-
-

HTML

-
<button class="topcoat-icon-button--large">
  <span class="topcoat-icon--large" style="background-color:#A5A7A7;"></span>
</button>
<button class="topcoat-icon-button--large" disabled>
  <span class="topcoat-icon--large" style="background-color:#A5A7A7;"></span>
</button>
-
-
-

CSS

-

-.topcoat-icon-button--large,
-.topcoat-icon-button--large--quiet {
-  width: 1.688rem;
-  height: 1.688rem;
-  line-height: 1.688rem;
-}
-
-.topcoat-icon-button--large:active {
-  background-color: #d3d7d7;
-  box-shadow: inset 0 1px rgba(0,0,0,0.12);
-}
-
-
-
-
-
-
-
-

Large Quiet Icon Button

-
-
-
- -
-
-

HTML

-
<button class="topcoat-icon-button--large--quiet">
  <span class="topcoat-icon--large" style="background-color:#A5A7A7;"></span>
</button>
<button class="topcoat-icon-button--large--quiet" disabled>
  <span class="topcoat-icon--large" style="background-color:#A5A7A7;"></span>
</button>
-
-
-

CSS

-

-.topcoat-icon-button--large--quiet {
-  background: transparent;
-  border: 1px solid transparent;
-  box-shadow: none;
-}
-
-.topcoat-icon,
-.topcoat-icon--large {
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  overflow: hidden;
-  width: 0.81406rem;
-  height: 0.81406rem;
-  vertical-align: middle;
-  top: -1px;
-}
-
-.topcoat-icon--large {
-  width: 1.06344rem;
-  height: 1.06344rem;
-  top: -2px;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.input {
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  vertical-align: top;
-  outline: none;
-}
-
-.input:disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.list {
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-  overflow: auto;
-  -webkit-overflow-scrolling: touch;
-}
-
-.list__header {
-  margin: 0;
-}
-
-.list__container {
-  padding: 0;
-  margin: 0;
-  list-style-type: none;
-}
-
-.list__item {
-  margin: 0;
-  padding: 0;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.navigation-bar {
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  white-space: nowrap;
-  overflow: hidden;
-  word-spacing: 0;
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-}
-
-.navigation-bar__item {
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-}
-
-.navigation-bar__title {
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  text-overflow: ellipsis;
-  white-space: nowrap;
-  overflow: hidden;
-}
-
-/*
-Copyright 2012 Adobe Systems Inc.;
-Licensed under the Apache License, Version 2.0 (the "License");
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
-
-http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.notification {
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-  text-overflow: ellipsis;
-  white-space: nowrap;
-  overflow: hidden;
-  text-decoration: none;
-}
-
-/*
-Copyright 2012 Adobe Systems Inc.;
-Licensed under the Apache License, Version 2.0 (the "License");
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
-
-http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.notification,
-.topcoat-notification {
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-  text-overflow: ellipsis;
-  white-space: nowrap;
-  overflow: hidden;
-  text-decoration: none;
-}
-
-
-
-
-
-
-
-

Notification

-
-
1
-
- -
-
-

HTML

-
<span class="topcoat-notification">1</span>
-
-
-

CSS

-

-.topcoat-notification {
-  padding: 0.15em 0.5em 0.2em;
-  border-radius: 2px;
-  background-color: #ec514e;
-  color: #fff;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-input[type="radio"] {
-  position: absolute;
-  overflow: hidden;
-  padding: 0;
-  border: 0;
-  opacity: 0.001;
-  z-index: 1;
-  vertical-align: top;
-  outline: none;
-}
-
-.radio-button {
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-}
-
-.radio-button__label {
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-}
-
-.radio-button:before,
-.radio-button:after {
-  content: '';
-  position: absolute;
-  border-radius: 100%;
-}
-
-.radio-button:after {
-  top: 50%;
-  left: 50%;
-  -webkit-transform: translate(-50%, -50%);
-  -ms-transform: translate(-50%, -50%);
-  transform: translate(-50%, -50%);
-}
-
-.radio-button:before {
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-}
-
-.radio-button--disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-input[type="radio"] {
-  position: absolute;
-  overflow: hidden;
-  padding: 0;
-  border: 0;
-  opacity: 0.001;
-  z-index: 1;
-  vertical-align: top;
-  outline: none;
-}
-
-.radio-button,
-.topcoat-radio-button__checkmark {
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-}
-
-.radio-button__label,
-.topcoat-radio-button {
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-}
-
-.radio-button:before,
-.radio-button:after,
-.topcoat-radio-button__checkmark:before,
-.topcoat-radio-button__checkmark:after {
-  content: '';
-  position: absolute;
-  border-radius: 100%;
-}
-
-.radio-button:after,
-.topcoat-radio-button__checkmark:after {
-  top: 50%;
-  left: 50%;
-  -webkit-transform: translate(-50%, -50%);
-  -ms-transform: translate(-50%, -50%);
-  transform: translate(-50%, -50%);
-}
-
-.radio-button:before,
-.topcoat-radio-button__checkmark:before {
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-}
-
-.radio-button--disabled,
-input[type="radio"]:disabled + .topcoat-radio-button__checkmark {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-
-
-
-
-
-
-

Radio Button

-
-






-
-

Examples

- -
-
- -
-
-

HTML

-
<!-- NO LABEL -->
<label class="topcoat-radio-button">
  <input type="radio" name="topcoat">
  <div class="topcoat-radio-button__checkmark"></div>
</label>
<br>
<br>
<!-- LEFT LABEL -->
<label class="topcoat-radio-button">
  Left label
  <input type="radio" name="topcoat">
  <div class="topcoat-radio-button__checkmark"></div>
</label>
<br>
<br>
<!-- RIGHT LABEL -->
<label class="topcoat-radio-button">
  <input type="radio" name="topcoat">
  <div class="topcoat-radio-button__checkmark"></div>
  Right label
</label>
<br>
<br>
<!-- DISABLED -->
<label class="topcoat-radio-button">
  <input type="radio" name="topcoat" Disabled>
  <div class="topcoat-radio-button__checkmark"></div>
  Disabled
</label>
-
-
-

CSS

-

-input[type="radio"] {
-  height: 1.063rem;
-  width: 1.063rem;
-  margin-top: 0;
-  margin-right: -1.063rem;
-  margin-bottom: -1.063rem;
-  margin-left: 0;
-}
-
-input[type="radio"]:checked + .topcoat-radio-button__checkmark:after {
-  opacity: 1;
-}
-
-.topcoat-radio-button {
-  color: #454545;
-  line-height: 1.063rem;
-}
-
-.topcoat-radio-button__checkmark:before {
-  width: 1.063rem;
-  height: 1.063rem;
-  background: #e5e9e8;
-  border: 1px solid #a5a8a8;
-  box-shadow: inset 0 1px #fff;
-}
-
-.topcoat-radio-button__checkmark {
-  position: relative;
-  width: 1.063rem;
-  height: 1.063rem;
-}
-
-.topcoat-radio-button__checkmark:after {
-  opacity: 0;
-  width: 0.313rem;
-  height: 0.313rem;
-  background: #666;
-  border: 1px solid rgba(0,0,0,0.1);
-  box-shadow: 0 1px rgba(255,255,255,0.5);
-  -webkit-transform: none;
-  -ms-transform: none;
-  transform: none;
-  top: 0.313rem;
-  left: 0.313rem;
-}
-
-input[type="radio"]:focus + .topcoat-radio-button__checkmark:before {
-  border: 1px solid #0940fd;
-  box-shadow: 0 0 0 2px #6fb5f1;
-}
-
-/*
-Copyright 2012 Adobe Systems Inc.;
-Licensed under the Apache License, Version 2.0 (the "License");
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
-
-http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
-*/
-
-/*
-Copyright 2012 Adobe Systems Inc.;
-Licensed under the Apache License, Version 2.0 (the "License");
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
-
-http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
-*/
-
-.range {
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  vertical-align: top;
-  outline: none;
-  -webkit-appearance: none;
-}
-
-.range__thumb {
-  cursor: pointer;
-}
-
-.range__thumb--webkit {
-  cursor: pointer;
-  -webkit-appearance: none;
-}
-
-.range:disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-/*
-Copyright 2012 Adobe Systems Inc.;
-Licensed under the Apache License, Version 2.0 (the "License");
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
-
-http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
-*/
-
-/*
-Copyright 2012 Adobe Systems Inc.;
-Licensed under the Apache License, Version 2.0 (the "License");
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
-
-http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
-*/
-
-.range,
-.topcoat-range {
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  vertical-align: top;
-  outline: none;
-  -webkit-appearance: none;
-}
-
-.range__thumb,
-.topcoat-range::-moz-range-thumb {
-  cursor: pointer;
-}
-
-.range__thumb--webkit,
-.topcoat-range::-webkit-slider-thumb {
-  cursor: pointer;
-  -webkit-appearance: none;
-}
-
-.range:disabled,
-.topcoat-range:disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-
-
-
-
-
-
-

Range

-
-
-
-

Examples

- -
-
- -
-
-

HTML

-
<input type="range" class="topcoat-range">
<input type="range" class="topcoat-range" disabled>
-
-
-

CSS

-

-.topcoat-range {
-  border-radius: 4px;
-  border: 1px solid #a5a8a8;
-  background-color: #d3d7d7;
-  height: 0.5rem;
-  border-radius: 15px;
-}
-
-.topcoat-range::-moz-range-track {
-  border-radius: 4px;
-  border: 1px solid #a5a8a8;
-  background-color: #d3d7d7;
-  height: 0.5rem;
-  border-radius: 15px;
-}
-
-.topcoat-range::-webkit-slider-thumb {
-  height: 1.313rem;
-  width: 0.75rem;
-  background-color: #e5e9e8;
-  border: 1px solid #a5a8a8;
-  border-radius: 4px;
-  box-shadow: inset 0 1px #fff;
-}
-
-.topcoat-range::-moz-range-thumb {
-  height: 1.313rem;
-  width: 0.75rem;
-  background-color: #e5e9e8;
-  border: 1px solid #a5a8a8;
-  border-radius: 4px;
-  box-shadow: inset 0 1px #fff;
-}
-
-.topcoat-range:focus::-webkit-slider-thumb {
-  border: 1px solid #0940fd;
-  box-shadow: 0 0 0 2px #6fb5f1;
-}
-
-.topcoat-range:focus::-moz-range-thumb {
-  border: 1px solid #0940fd;
-  box-shadow: 0 0 0 2px #6fb5f1;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.search-input {
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  vertical-align: top;
-  outline: none;
-  -webkit-appearance: none;
-}
-
-input[type="search"]::-webkit-search-cancel-button {
-  -webkit-appearance: none;
-}
-
-.search-input:disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.search-input,
-.topcoat-search-input,
-.topcoat-search-input--large {
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  vertical-align: top;
-  outline: none;
-  -webkit-appearance: none;
-}
-
-input[type="search"]::-webkit-search-cancel-button {
-  -webkit-appearance: none;
-}
-
-.search-input:disabled,
-.topcoat-search-input:disabled,
-.topcoat-search-input--large:disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-
-
-
-
-
-
-

Search Input

-
-
-
- -
-
-

HTML

-
<input type="search" value="" placeholder="search" class="topcoat-search-input">
<input type="search" value="" placeholder="search" class="topcoat-search-input" disabled>
-
-
-

CSS

-

-.topcoat-search-input,
-.topcoat-search-input--large {
-  line-height: 1.313rem;
-  font-size: 12px;
-  border: 1px solid #a5a8a8;
-  background-color: #d3d7d7;
-  box-shadow: inset 0 1px rgba(0,0,0,0.12);
-  color: #454545;
-  padding: 0 0 0 1.3rem;
-  border-radius: 15px;
-  background-image: url("../img/search.svg");
-  background-position: 1em center;
-  background-repeat: no-repeat;
-  background-size: 12px;
-}
-
-.topcoat-search-input:focus,
-.topcoat-search-input--large:focus {
-  background-image: url("../img/search_dark.svg");
-  background-color: #edf1f1;
-  color: #000;
-  border: 1px solid #0940fd;
-  box-shadow: 0 0 0 2px #6fb5f1;
-}
-
-.topcoat-search-input::-webkit-search-cancel-button,
-.topcoat-search-input::-webkit-search-decoration,
-.topcoat-search-input--large::-webkit-search-cancel-button,
-.topcoat-search-input--large::-webkit-search-decoration {
-  margin-right: 5px;
-}
-
-.topcoat-search-input:focus::-webkit-input-placeholder,
-.topcoat-search-input:focus::-webkit-input-placeholder {
-  color: #c6c8c8;
-}
-
-.topcoat-search-input:disabled::-webkit-input-placeholder {
-  color: #000;
-}
-
-.topcoat-search-input:disabled::-moz-placeholder {
-  color: #000;
-}
-
-.topcoat-search-input:disabled:-ms-input-placeholder {
-  color: #000;
-}
-
-
-
-
-
-
-
-

Large Search Input

-
-
-
- -
-
-

HTML

-
<input type="search" value="" placeholder="search" class="topcoat-search-input--large">
<input type="search" value="" placeholder="search" class="topcoat-search-input--large" disabled>
-
-
-

CSS

-

-.topcoat-search-input--large {
-  line-height: 1.688rem;
-  font-size: 0.875rem;
-  font-weight: 400;
-  padding: 0 0 0 1.8rem;
-  border-radius: 25px;
-  background-position: 1.2em center;
-  background-size: 0.875rem;
-}
-
-.topcoat-search-input--large:disabled {
-  color: #000;
-}
-
-.topcoat-search-input--large:disabled::-webkit-input-placeholder {
-  color: #000;
-}
-
-.topcoat-search-input--large:disabled::-moz-placeholder {
-  color: #000;
-}
-
-.topcoat-search-input--large:disabled:-ms-input-placeholder {
-  color: #000;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.switch {
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-}
-
-.switch__input {
-  position: absolute;
-  overflow: hidden;
-  padding: 0;
-  border: 0;
-  opacity: 0.001;
-  z-index: 1;
-  vertical-align: top;
-  outline: none;
-}
-
-.switch__toggle {
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-}
-
-.switch__toggle:before,
-.switch__toggle:after {
-  content: '';
-  position: absolute;
-  z-index: -1;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-}
-
-.switch--disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.switch,
-.topcoat-switch {
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-}
-
-.switch__input,
-.topcoat-switch__input {
-  position: absolute;
-  overflow: hidden;
-  padding: 0;
-  border: 0;
-  opacity: 0.001;
-  z-index: 1;
-  vertical-align: top;
-  outline: none;
-}
-
-.switch__toggle,
-.topcoat-switch__toggle {
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-}
-
-.switch__toggle:before,
-.switch__toggle:after,
-.topcoat-switch__toggle:before,
-.topcoat-switch__toggle:after {
-  content: '';
-  position: absolute;
-  z-index: -1;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-}
-
-.switch--disabled,
-.topcoat-switch__input:disabled + .topcoat-switch__toggle {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-
-
-
-
-
-
-

Switch

-
-




-
-

Examples

- -
-
- -
-
-

HTML

-
<label class="topcoat-switch">
  <input type="checkbox" class="topcoat-switch__input">
  <div class="topcoat-switch__toggle"></div>
</label>
<br>
<br>
<label class="topcoat-switch">
  <input type="checkbox" class="topcoat-switch__input" checked>
  <div class="topcoat-switch__toggle"></div>
</label>
<br>
<br>
<label class="topcoat-switch">
  <input type="checkbox" class="topcoat-switch__input" disabled>
  <div class="topcoat-switch__toggle"></div>
</label>
-
-
-

CSS

-

-.topcoat-switch {
-  font-size: 12px;
-  padding: 0 0.563rem;
-  border-radius: 4px;
-  border: 1px solid #a5a8a8;
-  overflow: hidden;
-  width: 3.5rem;
-}
-
-.topcoat-switch__toggle:before,
-.topcoat-switch__toggle:after {
-  top: -1px;
-  width: 2.6rem;
-}
-
-.topcoat-switch__toggle:before {
-  content: 'ON';
-  color: #0083e8;
-  background-color: #e0f0fa;
-  right: 0.8rem;
-  padding-left: 0.75rem;
-}
-
-.topcoat-switch__toggle {
-  line-height: 1.313rem;
-  height: 1.313rem;
-  width: 1rem;
-  border-radius: 4px;
-  color: #454545;
-  text-shadow: 0 1px #fff;
-  background-color: #e5e9e8;
-  border: 1px solid #a5a8a8;
-  margin-left: -0.6rem;
-  margin-bottom: -1px;
-  margin-top: -1px;
-  box-shadow: inset 0 1px #fff;
-  -webkit-transition: margin-left 0.05s ease-in-out;
-  transition: margin-left 0.05s ease-in-out;
-}
-
-.topcoat-switch__toggle:after {
-  content: 'OFF';
-  background-color: #d3d7d7;
-  left: 0.8rem;
-  padding-left: 0.6rem;
-}
-
-.topcoat-switch__input:checked + .topcoat-switch__toggle {
-  margin-left: 1.85rem;
-}
-
-.topcoat-switch__input:focus + .topcoat-switch__toggle {
-  border: 1px solid #0940fd;
-  box-shadow: 0 0 0 2px #6fb5f1;
-}
-
-.topcoat-switch__input:disabled + .topcoat-switch__toggle:after,
-.topcoat-switch__input:disabled + .topcoat-switch__toggle:before {
-  background: transparent;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.button,
-.topcoat-tab-bar__button {
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-  text-overflow: ellipsis;
-  white-space: nowrap;
-  overflow: hidden;
-  text-decoration: none;
-}
-
-.button--quiet {
-  background: transparent;
-  border: 1px solid transparent;
-  box-shadow: none;
-}
-
-.button--disabled,
-.topcoat-tab-bar__button:disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-.button-bar,
-.topcoat-tab-bar {
-  display: table;
-  table-layout: fixed;
-  white-space: nowrap;
-  margin: 0;
-  padding: 0;
-}
-
-.button-bar__item,
-.topcoat-tab-bar__item {
-  display: table-cell;
-  width: auto;
-  border-radius: 0;
-}
-
-.button-bar__item > input,
-.topcoat-tab-bar__item > input {
-  position: absolute;
-  overflow: hidden;
-  padding: 0;
-  border: 0;
-  opacity: 0.001;
-  z-index: 1;
-  vertical-align: top;
-  outline: none;
-}
-
-.button-bar__button {
-  border-radius: inherit;
-}
-
-.button-bar__item:disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-
-
-
-
-
-
-

Tab Bar

-
-
-
-

Examples

- -
-
- -
-
-

HTML

-
<div class="topcoat-tab-bar">
  <label class="topcoat-tab-bar__item">
    <input type="radio" name="tab-bar">
    <button class="topcoat-tab-bar__button">One</button>
  </label>
  <label class="topcoat-tab-bar__item">
    <input type="radio" name="tab-bar">
    <button class="topcoat-tab-bar__button">Two</button>
  </label>
  <label class="topcoat-tab-bar__item">
    <input type="radio" name="tab-bar">
    <button class="topcoat-tab-bar__button">Three</button>
  </label>
</div>
-
-
-

CSS

-

-.topcoat-tab-bar__button {
-  padding: 0 0.563rem;
-  height: 1.313rem;
-  line-height: 1.313rem;
-  letter-spacing: 0;
-  color: #454545;
-  text-shadow: 0 1px #fff;
-  vertical-align: top;
-  background-color: #e5e9e8;
-  box-shadow: inset 0 1px #fff;
-  border-top: 1px solid #a5a8a8;
-}
-
-.topcoat-tab-bar__button:active,
-.topcoat-tab-bar__button--large:active,
-:checked + .topcoat-tab-bar__button {
-  color: #0083e8;
-  background-color: #e0f0fa;
-  box-shadow: inset 0 0 2px #c0ced8;
-}
-
-.topcoat-tab-bar__button:focus,
-.topcoat-tab-bar__button--large:focus {
-  z-index: 1;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.input,
-.topcoat-text-input,
-.topcoat-text-input--large {
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  vertical-align: top;
-  outline: none;
-}
-
-.input:disabled,
-.topcoat-text-input:disabled,
-.topcoat-text-input--large:disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-
-
-
-
-
-
-

Text input

-
-




-
- -
-
-

HTML

-
<input type="text" class="topcoat-text-input" placeholder="text" value="">
<br>
<br>
<input type="text" class="topcoat-text-input" placeholder="text" value="" disabled>
<br>
<br>
<input type="text" class="topcoat-text-input" placeholder="text" value="fail" pattern="not-fail">
-
-
-

CSS

-

-.topcoat-text-input,
-.topcoat-text-input--large {
-  line-height: 1.313rem;
-  font-size: 12px;
-  letter-spacing: 0;
-  padding: 0 0.563rem;
-  border: 1px solid #a5a8a8;
-  border-radius: 4px;
-  background-color: #d3d7d7;
-  box-shadow: inset 0 1px rgba(0,0,0,0.12);
-  color: #454545;
-  vertical-align: top;
-}
-
-.topcoat-text-input:focus,
-.topcoat-text-input--large:focus {
-  background-color: #edf1f1;
-  color: #000;
-  border: 1px solid #0940fd;
-  box-shadow: 0 0 0 2px #6fb5f1;
-}
-
-.topcoat-text-input:disabled::-webkit-input-placeholder {
-  color: #000;
-}
-
-.topcoat-text-input:disabled::-moz-placeholder {
-  color: #000;
-}
-
-.topcoat-text-input:disabled:-ms-input-placeholder {
-  color: #000;
-}
-
-.topcoat-text-input:invalid {
-  border: 1px solid #d83b75;
-}
-
-
-
-
-
-
-
-

Large Text Input

-
-




-
- -
-
-

HTML

-
<input type="text" class="topcoat-text-input--large" value="" placeholder="text">
<br>
<br>
<input type="text" class="topcoat-text-input--large" value="" placeholder="text" disabled>
<br>
<br>
<input type="text" class="topcoat-text-input--large" placeholder="text" value="fail" pattern="not-fail">
-
-
-

CSS

-

-.topcoat-text-input--large {
-  line-height: 1.688rem;
-  font-size: 0.875rem;
-}
-
-.topcoat-text-input--large:disabled {
-  color: #000;
-}
-
-.topcoat-text-input--large:disabled::-webkit-input-placeholder {
-  color: #000;
-}
-
-.topcoat-text-input--large:disabled::-moz-placeholder {
-  color: #000;
-}
-
-.topcoat-text-input--large:disabled:-ms-input-placeholder {
-  color: #000;
-}
-
-.topcoat-text-input--large:invalid {
-  border: 1px solid #d83b75;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.textarea {
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  vertical-align: top;
-  resize: none;
-  outline: none;
-}
-
-.textarea:disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.textarea,
-.topcoat-textarea,
-.topcoat-textarea--large {
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  vertical-align: top;
-  resize: none;
-  outline: none;
-}
-
-.textarea:disabled,
-.topcoat-textarea:disabled,
-.topcoat-textarea--large:disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-
-
-
-
-
-
-

Textarea

-
-


-
- -
-
-

HTML

-
<textarea class="topcoat-textarea" rows="6" cols="36" placeholder="Textarea"></textarea>
<br>
<br>
<textarea class="topcoat-textarea" rows="6" cols="36" placeholder="Textarea" disabled></textarea>
-
-
-

CSS

-

-.topcoat-textarea,
-.topcoat-textarea--large {
-  padding: 1rem;
-  font-size: 1rem;
-  font-weight: 400;
-  border-radius: 4px;
-  line-height: 1.313rem;
-  border: 1px solid #a5a8a8;
-  background-color: #d3d7d7;
-  box-shadow: inset 0 1px rgba(0,0,0,0.12);
-  color: #454545;
-  letter-spacing: 0;
-}
-
-.topcoat-textarea:focus,
-.topcoat-textarea--large:focus {
-  background-color: #edf1f1;
-  color: #000;
-  border: 1px solid #0940fd;
-  box-shadow: 0 0 0 2px #6fb5f1;
-}
-
-.topcoat-textarea:disabled::-webkit-input-placeholder {
-  color: #000;
-}
-
-.topcoat-textarea:disabled::-moz-placeholder {
-  color: #000;
-}
-
-.topcoat-textarea:disabled:-ms-input-placeholder {
-  color: #000;
-}
-
-
-
-
-
-
-
-

Large Textarea

-
-


-
- -
-
-

HTML

-
<textarea class="topcoat-textarea--large" rows="6" cols="36" placeholder="Textarea"></textarea>
<br>
<br>
<textarea class="topcoat-textarea--large" rows="6" cols="36" placeholder="Textarea" disabled></textarea>
-
-
-

CSS

-

-.topcoat-textarea--large {
-  font-size: 1.3rem;
-  line-height: 1.688rem;
-}
-
-.topcoat-textarea--large:disabled {
-  color: #000;
-}
-
-.topcoat-textarea--large:disabled::-webkit-input-placeholder {
-  color: #000;
-}
-
-.topcoat-textarea--large:disabled::-moz-placeholder {
-  color: #000;
-}
-
-.topcoat-textarea--large:disabled:-ms-input-placeholder {
-  color: #000;
-}
-
-@font-face {
-  font-family: "Source Sans";
-  src: url("../font/SourceSansPro-Regular.otf");
-}
-
-@font-face {
-  font-family: "Source Sans";
-  src: url("../font/SourceSansPro-Light.otf");
-  font-weight: 200;
-}
-
-@font-face {
-  font-family: "Source Sans";
-  src: url("../font/SourceSansPro-Semibold.otf");
-  font-weight: 600;
-}
-
-body {
-  margin: 0;
-  padding: 0;
-  background: #dfe2e2;
-  color: #000;
-  font: 16px "Source Sans", helvetica, arial, sans-serif;
-  font-weight: 200;
-}
-
-:focus {
-  outline-color: transparent;
-  outline-style: none;
-}
-
-.topcoat-icon--menu-stack {
-  background: url("../img/hamburger_dark.svg") no-repeat;
-  background-size: cover;
-}
-
-.quarter {
-  width: 25%;
-}
-
-.half {
-  width: 50%;
-}
-
-.three-quarters {
-  width: 75%;
-}
-
-.third {
-  width: 33.333%;
-}
-
-.two-thirds {
-  width: 66.666%;
-}
-
-.full {
-  width: 100%;
-}
-
-.left {
-  text-align: left;
-}
-
-.center {
-  text-align: center;
-}
-
-.right {
-  text-align: right;
-}
-
-.reset-ui {
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-  text-overflow: ellipsis;
-  white-space: nowrap;
-  overflow: hidden;
-}
-
-/* This file should include color and image variables corresponding to the dark theme */
-
-/* Call To Action */
-
-/* Icons */
-
-/* Navigation Bar */
-
-/* Text Input */
-
-/* Search Input */
-
-/* List */
-
-/* Checkbox */
-
-/* Overlay */
-
-/* Progress bar */
-
-/* Checkbox */
-
-/* Radio Button */
-
-/* Tab bar */
-
-/* Switch */
-
-/* Icon Button */
-
-/* Navigation bar */
-
-/* List */
-
-/* Search Input */
-
-/* Textarea */
-
-/* Checkbox */
-
-/* Radio */
-
-/* Range input */
-
-/* Search Input */
-
-/* Switch */
-
-/* This file should include color and image variables corresponding to the light theme */
-
-/* Call To Action */
-
-/* Icons */
-
-/* Navigation Bar */
-
-/* Text Input */
-
-/* List */
-
-/* Overlay */
-
-/* Progress bar */
-
-/* Checkbox */
-
-/* Range input */
-
-/* Radio Button */
-
-/* Tab bar */
-
-/* Switch */
-
-/* Containers */
-
-/* Icon Button */
-
-/* Navigation bar */
-
-/* List */
-
-/* Search Input */
-
-/* Text Area */
-
-/* Checkbox */
-
-/* Radio */
-
-/* Range input */
-
-/* Search Input */
-
-/* Switch */
-
-/* Text Input */
-
-/* Radio input */
-
-/* Overlay */
-
-/* Textarea */
-
-/* Progress bar container */
-
-/* Progress bar progress */
-
-/* Search input */
-
-/* Switch */
-
-/* Notification */
-
-
-
-
-
-
-
-
- - - - \ No newline at end of file diff --git a/www/assets/topcoat-0.7.5/demo/topcoat-mobile-dark.html b/www/assets/topcoat-0.7.5/demo/topcoat-mobile-dark.html deleted file mode 100755 index 327aeae..0000000 --- a/www/assets/topcoat-0.7.5/demo/topcoat-mobile-dark.html +++ /dev/null @@ -1,3417 +0,0 @@ - - - - - - Topcoat - - - - - - - -
- -
-
-
-
-

Topcoat

-

CSS for clean and fast web apps

-
- -
-
-
-
-
-

Button Bar

-
-
-
-

Examples

- -
-
- -
-
-

HTML

-
<div class="topcoat-button-bar">
  <div class="topcoat-button-bar__item">
    <button class="topcoat-button-bar__button">One</button>
  </div>
  <div class="topcoat-button-bar__item">
    <button class="topcoat-button-bar__button">Two</button>
  </div>
  <div class="topcoat-button-bar__item">
    <button class="topcoat-button-bar__button">Three</button>
  </div>
</div>
-
-
-

CSS

-

-.topcoat-button-bar > .topcoat-button-bar__item:first-child {
-  border-top-left-radius: 6px;
-  border-bottom-left-radius: 6px;
-}
-
-.topcoat-button-bar > .topcoat-button-bar__item:last-child {
-  border-top-right-radius: 6px;
-  border-bottom-right-radius: 6px;
-}
-
-.topcoat-button-bar__item:first-child > .topcoat-button-bar__button,
-.topcoat-button-bar__item:first-child > .topcoat-button-bar__button--large {
-  border-right: none;
-}
-
-.topcoat-button-bar__item:last-child > .topcoat-button-bar__button,
-.topcoat-button-bar__item:last-child > .topcoat-button-bar__button--large {
-  border-left: none;
-}
-
-.topcoat-button-bar__button {
-  border-radius: inherit;
-}
-
-.topcoat-button-bar__button:focus,
-.topcoat-button-bar__button--large:focus {
-  z-index: 1;
-}
-
-
-
-
-
-
-
-

Large Button Bar

-
-
-
- -
-
-

HTML

-
<div class="topcoat-button-bar">
  <div class="topcoat-button-bar__item">
    <button class="topcoat-button-bar__button--large">One</button>
  </div>
  <div class="topcoat-button-bar__item">
    <button class="topcoat-button-bar__button--large">Two</button>
  </div>
  <div class="topcoat-button-bar__item">
    <button class="topcoat-button-bar__button--large">Three</button>
  </div>
</div>
-
-
-

CSS

-

-.topcoat-button-bar__button--large {
-  border-radius: inherit;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.button {
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-  text-overflow: ellipsis;
-  white-space: nowrap;
-  overflow: hidden;
-  text-decoration: none;
-}
-
-.button--quiet {
-  background: transparent;
-  border: 1px solid transparent;
-  box-shadow: none;
-}
-
-.button--disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.button,
-.topcoat-button,
-.topcoat-button--quiet,
-.topcoat-button--large,
-.topcoat-button--large--quiet,
-.topcoat-button--cta,
-.topcoat-button--large--cta {
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-  text-overflow: ellipsis;
-  white-space: nowrap;
-  overflow: hidden;
-  text-decoration: none;
-}
-
-.button--quiet {
-  background: transparent;
-  border: 1px solid transparent;
-  box-shadow: none;
-}
-
-.button--disabled,
-.topcoat-button:disabled,
-.topcoat-button--quiet:disabled,
-.topcoat-button--large:disabled,
-.topcoat-button--large--quiet:disabled,
-.topcoat-button--cta:disabled,
-.topcoat-button--large--cta:disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-
-
-
-
-
-
-

Button

-
-
-
-

Examples

- -
-
- -
-
-

HTML

-
<button class="topcoat-button">Button</button>
<button class="topcoat-button" disabled>Button</button>
-
-
-

CSS

-

-.topcoat-button,
-.topcoat-button--quiet,
-.topcoat-button--large,
-.topcoat-button--large--quiet,
-.topcoat-button--cta,
-.topcoat-button--large--cta {
-  padding: 0 1.25rem;
-  font-size: 16px;
-  line-height: 3rem;
-  letter-spacing: 1px;
-  color: #c6c8c8;
-  text-shadow: 0 -1px rgba(0,0,0,0.69);
-  vertical-align: top;
-  background-color: #595b5b;
-  box-shadow: inset 0 1px #727373;
-  border: 1px solid #303233;
-  border-radius: 6px;
-}
-
-.topcoat-button:hover,
-.topcoat-button--quiet:hover,
-.topcoat-button--large:hover,
-.topcoat-button--large--quiet:hover {
-  background-color: #646666;
-}
-
-.topcoat-button:active,
-.topcoat-button--large:active {
-  background-color: #404141;
-  box-shadow: inset 0 1px rgba(0,0,0,0.18);
-}
-
-.topcoat-button:focus,
-.topcoat-button--quiet:focus,
-.topcoat-button--large:focus,
-.topcoat-button--large--quiet:focus,
-.topcoat-button--cta:focus,
-.topcoat-button--large--cta:focus {
-  border: 1px solid #0940fd;
-  box-shadow: 0 0 0 2px #6fb5f1;
-  outline: 0;
-}
-
-
-
-
-
-
-
-

Quiet Button

-
-
-
- -
-
-

HTML

-
<button class="topcoat-button--quiet">Button</button>
<button class="topcoat-button--quiet" disabled>Button</button>
-
-
-

CSS

-

-.topcoat-button--quiet {
-  background: transparent;
-  border: 1px solid transparent;
-  box-shadow: none;
-}
-
-.topcoat-button--quiet:hover,
-.topcoat-button--large--quiet:hover {
-  text-shadow: 0 -1px rgba(0,0,0,0.69);
-  border: 1px solid #303233;
-  box-shadow: inset 0 1px #727373;
-}
-
-.topcoat-button--quiet:active,
-.topcoat-button--large--quiet:active {
-  color: #c6c8c8;
-  text-shadow: 0 -1px rgba(0,0,0,0.69);
-  background-color: #404141;
-  border: 1px solid #303233;
-  box-shadow: inset 0 1px rgba(0,0,0,0.18);
-}
-
-
-
-
-
-
-
-

Large Button

-
-
-
- -
-
-

HTML

-
<button class="topcoat-button--large" >Button</button>
<button class="topcoat-button--large" disabled>Button</button>
-
-
-

CSS

-

-.topcoat-button--large,
-.topcoat-button--large--quiet {
-  font-size: 1.3rem;
-  font-weight: 400;
-  line-height: 4.375rem;
-  padding: 0 1.25rem;
-}
-
-
-
-
-
-
-
-

Large Quiet Button

-
-
-
- -
-
-

HTML

-
<button class="topcoat-button--large--quiet" >Button</button>
<button class="topcoat-button--large--quiet" disabled>Button</button>
-
-
-

CSS

-

-.topcoat-button--large--quiet {
-  background: transparent;
-  border: 1px solid transparent;
-  box-shadow: none;
-}
-
-
-
-
-
-
-
-

Call To Action Button

-
-
-
- -
-
-

HTML

-
<button class="topcoat-button--cta" >Button</button>
<button class="topcoat-button--cta" disabled>Button</button>
-
-
-

CSS

-

-.topcoat-button--cta,
-.topcoat-button--large--cta {
-  border: 1px solid #143250;
-  background-color: #288edf;
-  box-shadow: inset 0 1px rgba(255,255,255,0.36);
-  color: #fff;
-  font-weight: 500;
-  text-shadow: 0 -1px rgba(0,0,0,0.36);
-}
-
-.topcoat-button--cta:hover,
-.topcoat-button--large--cta:hover {
-  background-color: #509bef;
-}
-
-.topcoat-button--cta:active,
-.topcoat-button--large--cta:active {
-  background-color: #1976c3;
-  box-shadow: inset 0 1px rgba(0,0,0,0.12);
-}
-
-
-
-
-
-
-
-

Large Call To Action Button

-
-
-
- -
-
-

HTML

-
<button class="topcoat-button--large--cta" >Button</button>
<button class="topcoat-button--large--cta" disabled>Button</button>
-
-
-

CSS

-

-.topcoat-button--large--cta {
-  font-size: 1.3rem;
-  font-weight: 400;
-  line-height: 4.375rem;
-  padding: 0 1.25rem;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-input[type="checkbox"] {
-  position: absolute;
-  overflow: hidden;
-  padding: 0;
-  border: 0;
-  opacity: 0.001;
-  z-index: 1;
-  vertical-align: top;
-  outline: none;
-}
-
-.checkbox {
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-}
-
-.checkbox__label {
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-}
-
-.checkbox--disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-.checkbox:before,
-.checkbox:after {
-  content: '';
-  position: absolute;
-}
-
-.checkbox:before {
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-input[type="checkbox"] {
-  position: absolute;
-  overflow: hidden;
-  padding: 0;
-  border: 0;
-  opacity: 0.001;
-  z-index: 1;
-  vertical-align: top;
-  outline: none;
-}
-
-.checkbox,
-.topcoat-checkbox__checkmark {
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-}
-
-.checkbox__label,
-.topcoat-checkbox {
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-}
-
-.checkbox--disabled,
-input[type="checkbox"]:disabled + .topcoat-checkbox__checkmark {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-.checkbox:before,
-.checkbox:after,
-.topcoat-checkbox__checkmark:before,
-.topcoat-checkbox__checkmark:after {
-  content: '';
-  position: absolute;
-}
-
-.checkbox:before,
-.topcoat-checkbox__checkmark:before {
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-}
-
-
-
-
-
-
-
-

Checkbox

-
-


-
-

Examples

- -
-
- -
-
-

HTML

-
<label class="topcoat-checkbox">
  <input type="checkbox">
  <div class="topcoat-checkbox__checkmark"></div>
  Default
</label>
<br>
<br>
<label class="topcoat-checkbox">
  <input type="checkbox" disabled>
  <div class="topcoat-checkbox__checkmark"></div>
  Disabled
</label>
-
-
-

CSS

-

-.topcoat-checkbox__checkmark {
-  height: 2rem;
-}
-
-input[type="checkbox"] {
-  height: 2rem;
-  width: 2rem;
-  margin-top: 0;
-  margin-right: -2rem;
-  margin-bottom: -2rem;
-  margin-left: 0;
-}
-
-input[type="checkbox"]:checked + .topcoat-checkbox__checkmark:after {
-  opacity: 1;
-}
-
-.topcoat-checkbox {
-  line-height: 2rem;
-}
-
-.topcoat-checkbox__checkmark:before {
-  width: 2rem;
-  height: 2rem;
-  background: #595b5b;
-  border: 1px solid #303233;
-  border-radius: 3px;
-  box-shadow: inset 0 1px #727373;
-}
-
-.topcoat-checkbox__checkmark {
-  width: 2rem;
-  height: 2rem;
-}
-
-.topcoat-checkbox__checkmark:after {
-  top: 1px;
-  left: 2px;
-  opacity: 0;
-  width: 28px;
-  height: 11px;
-  background: transparent;
-  border: 7px solid #fff;
-  border-width: 7px;
-  border-top: none;
-  border-right: none;
-  border-radius: 2px;
-  -webkit-transform: rotate(-50deg);
-  -ms-transform: rotate(-50deg);
-  transform: rotate(-50deg);
-}
-
-input[type="checkbox"]:focus + .topcoat-checkbox__checkmark:before {
-  border: 1px solid #0940fd;
-  box-shadow: 0 0 0 2px #6fb5f1;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.button,
-.topcoat-icon-button,
-.topcoat-icon-button--quiet,
-.topcoat-icon-button--large,
-.topcoat-icon-button--large--quiet {
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-  text-overflow: ellipsis;
-  white-space: nowrap;
-  overflow: hidden;
-  text-decoration: none;
-}
-
-.button--quiet {
-  background: transparent;
-  border: 1px solid transparent;
-  box-shadow: none;
-}
-
-.button--disabled,
-.topcoat-icon-button:disabled,
-.topcoat-icon-button--quiet:disabled,
-.topcoat-icon-button--large:disabled,
-.topcoat-icon-button--large--quiet:disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-
-
-
-
-
-
-

Icon Button

-
-
-
- -
-
-

HTML

-
<button class="topcoat-icon-button">
  <span class="topcoat-icon" style="background-color:#A5A7A7;"></span>
</button>
<button class="topcoat-icon-button" disabled>
  <span class="topcoat-icon" style="background-color:#A5A7A7;"></span>
</button>
-
-
-

CSS

-

-.topcoat-icon-button,
-.topcoat-icon-button--quiet,
-.topcoat-icon-button--large,
-.topcoat-icon-button--large--quiet {
-  padding: 0 0.75rem;
-  line-height: 3rem;
-  letter-spacing: 1px;
-  color: #c6c8c8;
-  text-shadow: 0 -1px rgba(0,0,0,0.69);
-  vertical-align: baseline;
-  background-color: #595b5b;
-  box-shadow: inset 0 1px #727373;
-  border: 1px solid #303233;
-  border-radius: 6px;
-}
-
-.topcoat-icon-button:hover,
-.topcoat-icon-button--quiet:hover,
-.topcoat-icon-button--large:hover,
-.topcoat-icon-button--large--quiet:hover {
-  background-color: #646666;
-}
-
-.topcoat-icon-button:active {
-  background-color: #404141;
-  box-shadow: inset 0 1px rgba(0,0,0,0.18);
-}
-
-.topcoat-icon-button:focus,
-.topcoat-icon-button--quiet:focus,
-.topcoat-icon-button--quiet:hover:focus,
-.topcoat-icon-button--large:focus,
-.topcoat-icon-button--large--quiet:focus,
-.topcoat-icon-button--large--quiet:hover:focus {
-  border: 1px solid #0940fd;
-  box-shadow: 0 0 0 2px #6fb5f1;
-  outline: 0;
-}
-
-
-
-
-
-
-
-

Quiet Icon Button

-
-
-
- -
-
-

HTML

-
<button class="topcoat-icon-button--quiet">
  <span class="topcoat-icon" style="background-color:#A5A7A7;"></span>
</button>
<button class="topcoat-icon-button--quiet" disabled>
  <span class="topcoat-icon" style="background-color:#A5A7A7;"></span>
</button>
-
-
-

CSS

-

-.topcoat-icon-button--quiet {
-  background: transparent;
-  border: 1px solid transparent;
-  box-shadow: none;
-}
-
-.topcoat-icon-button--quiet:hover,
-.topcoat-icon-button--large--quiet:hover {
-  text-shadow: 0 -1px rgba(0,0,0,0.69);
-  border: 1px solid #303233;
-  box-shadow: inset 0 1px #727373;
-}
-
-.topcoat-icon-button--quiet:active,
-.topcoat-icon-button--large--quiet:active {
-  color: #c6c8c8;
-  text-shadow: 0 -1px rgba(0,0,0,0.69);
-  background-color: #404141;
-  border: 1px solid #303233;
-  box-shadow: inset 0 1px rgba(0,0,0,0.18);
-}
-
-
-
-
-
-
-
-

Large Icon Button

-
-
-
- -
-
-

HTML

-
<button class="topcoat-icon-button--large">
  <span class="topcoat-icon--large" style="background-color:#A5A7A7;"></span>
</button>
<button class="topcoat-icon-button--large" disabled>
  <span class="topcoat-icon--large" style="background-color:#A5A7A7;"></span>
</button>
-
-
-

CSS

-

-.topcoat-icon-button--large,
-.topcoat-icon-button--large--quiet {
-  width: 4.375rem;
-  height: 4.375rem;
-  line-height: 4.375rem;
-}
-
-.topcoat-icon-button--large:active {
-  background-color: #404141;
-  box-shadow: inset 0 1px rgba(0,0,0,0.18);
-}
-
-
-
-
-
-
-
-

Large Quiet Icon Button

-
-
-
- -
-
-

HTML

-
<button class="topcoat-icon-button--large--quiet">
  <span class="topcoat-icon--large" style="background-color:#A5A7A7;"></span>
</button>
<button class="topcoat-icon-button--large--quiet" disabled>
  <span class="topcoat-icon--large" style="background-color:#A5A7A7;"></span>
</button>
-
-
-

CSS

-

-.topcoat-icon-button--large--quiet {
-  background: transparent;
-  border: 1px solid transparent;
-  box-shadow: none;
-}
-
-.topcoat-icon,
-.topcoat-icon--large {
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  overflow: hidden;
-  width: 1.62rem;
-  height: 1.62rem;
-  vertical-align: middle;
-  top: -1px;
-}
-
-.topcoat-icon--large {
-  width: 2.499999998125rem;
-  height: 2.499999998125rem;
-  top: -2px;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.input {
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  vertical-align: top;
-  outline: none;
-}
-
-.input:disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.list {
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-  overflow: auto;
-  -webkit-overflow-scrolling: touch;
-}
-
-.list__header {
-  margin: 0;
-}
-
-.list__container {
-  padding: 0;
-  margin: 0;
-  list-style-type: none;
-}
-
-.list__item {
-  margin: 0;
-  padding: 0;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.list,
-.topcoat-list {
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-  overflow: auto;
-  -webkit-overflow-scrolling: touch;
-}
-
-.list__header,
-.topcoat-list__header {
-  margin: 0;
-}
-
-.list__container,
-.topcoat-list__container {
-  padding: 0;
-  margin: 0;
-  list-style-type: none;
-}
-
-.list__item,
-.topcoat-list__item {
-  margin: 0;
-  padding: 0;
-}
-
-
-
-
-
-
-
-

List

-
-

Category

  • Item
  • Item
  • Item
-
- -
-
-

HTML

-
<div class="topcoat-list">
  <h3 class="topcoat-list__header">Category</h3>
  <ul class="topcoat-list__container">
    <li class="topcoat-list__item">
      Item
    </li>
    <li class="topcoat-list__item">
      Item
    </li>
    <li class="topcoat-list__item">
      Item
    </li>
  </ul>
</div>
-
-
-

CSS

-

-.topcoat-list {
-  border-top: 1px solid #2f3234;
-  border-bottom: 1px solid #5e6061;
-  background-color: #444849;
-}
-
-.topcoat-list__header {
-  padding: 4px 20px;
-  font-size: 0.9em;
-  font-weight: 400;
-  background-color: #3b3e40;
-  color: #868888;
-  text-shadow: 0 -1px 0 rgba(0,0,0,0.3);
-  border-top: solid 1px rgba(255,255,255,0.1);
-  border-bottom: solid 1px rgba(255,255,255,0.05);
-}
-
-.topcoat-list__container {
-  border-top: 1px solid #2f3234;
-  color: #c6c8c8;
-}
-
-.topcoat-list__item {
-  padding: 1.25rem;
-  border-top: 1px solid #5e6061;
-  border-bottom: 1px solid #2f3234;
-}
-
-.topcoat-list__item:first-child {
-  border-top: 1px solid rgba(0,0,0,0.05);
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.navigation-bar {
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  white-space: nowrap;
-  overflow: hidden;
-  word-spacing: 0;
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-}
-
-.navigation-bar__item {
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-}
-
-.navigation-bar__title {
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  text-overflow: ellipsis;
-  white-space: nowrap;
-  overflow: hidden;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.navigation-bar,
-.topcoat-navigation-bar {
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  white-space: nowrap;
-  overflow: hidden;
-  word-spacing: 0;
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-}
-
-.navigation-bar__item,
-.topcoat-navigation-bar__item {
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-}
-
-.navigation-bar__title,
-.topcoat-navigation-bar__title {
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  text-overflow: ellipsis;
-  white-space: nowrap;
-  overflow: hidden;
-}
-
-
-
-
-
- -
-
-

Notification

-
-
1
-
- -
-
-

HTML

-
<span class="topcoat-notification">1</span>
-
-
-

CSS

-

-.topcoat-notification {
-  padding: 0.15em 0.5em 0.2em;
-  border-radius: 2px;
-  background-color: #ec514e;
-  color: #fff;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-input[type="radio"] {
-  position: absolute;
-  overflow: hidden;
-  padding: 0;
-  border: 0;
-  opacity: 0.001;
-  z-index: 1;
-  vertical-align: top;
-  outline: none;
-}
-
-.radio-button {
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-}
-
-.radio-button__label {
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-}
-
-.radio-button:before,
-.radio-button:after {
-  content: '';
-  position: absolute;
-  border-radius: 100%;
-}
-
-.radio-button:after {
-  top: 50%;
-  left: 50%;
-  -webkit-transform: translate(-50%, -50%);
-  -ms-transform: translate(-50%, -50%);
-  transform: translate(-50%, -50%);
-}
-
-.radio-button:before {
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-}
-
-.radio-button--disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-input[type="radio"] {
-  position: absolute;
-  overflow: hidden;
-  padding: 0;
-  border: 0;
-  opacity: 0.001;
-  z-index: 1;
-  vertical-align: top;
-  outline: none;
-}
-
-.radio-button,
-.topcoat-radio-button__checkmark {
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-}
-
-.radio-button__label,
-.topcoat-radio-button {
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-}
-
-.radio-button:before,
-.radio-button:after,
-.topcoat-radio-button__checkmark:before,
-.topcoat-radio-button__checkmark:after {
-  content: '';
-  position: absolute;
-  border-radius: 100%;
-}
-
-.radio-button:after,
-.topcoat-radio-button__checkmark:after {
-  top: 50%;
-  left: 50%;
-  -webkit-transform: translate(-50%, -50%);
-  -ms-transform: translate(-50%, -50%);
-  transform: translate(-50%, -50%);
-}
-
-.radio-button:before,
-.topcoat-radio-button__checkmark:before {
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-}
-
-.radio-button--disabled,
-input[type="radio"]:disabled + .topcoat-radio-button__checkmark {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-
-
-
-
-
-
-

Radio Button

-
-






-
-

Examples

- -
-
- -
-
-

HTML

-
<!-- NO LABEL -->
<label class="topcoat-radio-button">
  <input type="radio" name="topcoat">
  <div class="topcoat-radio-button__checkmark"></div>
</label>
<br>
<br>
<!-- LEFT LABEL -->
<label class="topcoat-radio-button">
  Left label
  <input type="radio" name="topcoat">
  <div class="topcoat-radio-button__checkmark"></div>
</label>
<br>
<br>
<!-- RIGHT LABEL -->
<label class="topcoat-radio-button">
  <input type="radio" name="topcoat">
  <div class="topcoat-radio-button__checkmark"></div>
  Right label
</label>
<br>
<br>
<!-- DISABLED -->
<label class="topcoat-radio-button">
  <input type="radio" name="topcoat" Disabled>
  <div class="topcoat-radio-button__checkmark"></div>
  Disabled
</label>
-
-
-

CSS

-

-input[type="radio"] {
-  height: 1.875rem;
-  width: 1.875rem;
-  margin-top: 0;
-  margin-right: -1.875rem;
-  margin-bottom: -1.875rem;
-  margin-left: 0;
-}
-
-input[type="radio"]:checked + .topcoat-radio-button__checkmark:after {
-  opacity: 1;
-}
-
-.topcoat-radio-button {
-  color: #c6c8c8;
-  line-height: 1.875rem;
-}
-
-.topcoat-radio-button__checkmark:before {
-  width: 1.875rem;
-  height: 1.875rem;
-  background: #595b5b;
-  border: 1px solid #303233;
-  box-shadow: inset 0 1px #727373;
-}
-
-.topcoat-radio-button__checkmark {
-  position: relative;
-  width: 1.875rem;
-  height: 1.875rem;
-}
-
-.topcoat-radio-button__checkmark:after {
-  opacity: 0;
-  width: 0.875rem;
-  height: 0.875rem;
-  background: #fff;
-  border: 1px solid rgba(255,255,255,0.1);
-  box-shadow: 0 1px rgba(255,255,255,0.5);
-  -webkit-transform: none;
-  -ms-transform: none;
-  transform: none;
-  top: 7px;
-  left: 7px;
-}
-
-input[type="radio"]:focus + .topcoat-radio-button__checkmark:before {
-  border: 1px solid #0940fd;
-  box-shadow: 0 0 0 2px #6fb5f1;
-}
-
-/*
-Copyright 2012 Adobe Systems Inc.;
-Licensed under the Apache License, Version 2.0 (the "License");
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
-
-http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
-*/
-
-/*
-Copyright 2012 Adobe Systems Inc.;
-Licensed under the Apache License, Version 2.0 (the "License");
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
-
-http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
-*/
-
-.range {
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  vertical-align: top;
-  outline: none;
-  -webkit-appearance: none;
-}
-
-.range__thumb {
-  cursor: pointer;
-}
-
-.range__thumb--webkit {
-  cursor: pointer;
-  -webkit-appearance: none;
-}
-
-.range:disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-/*
-Copyright 2012 Adobe Systems Inc.;
-Licensed under the Apache License, Version 2.0 (the "License");
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
-
-http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
-*/
-
-/*
-Copyright 2012 Adobe Systems Inc.;
-Licensed under the Apache License, Version 2.0 (the "License");
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
-
-http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
-*/
-
-.range,
-.topcoat-range {
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  vertical-align: top;
-  outline: none;
-  -webkit-appearance: none;
-}
-
-.range__thumb,
-.topcoat-range::-moz-range-thumb {
-  cursor: pointer;
-}
-
-.range__thumb--webkit,
-.topcoat-range::-webkit-slider-thumb {
-  cursor: pointer;
-  -webkit-appearance: none;
-}
-
-.range:disabled,
-.topcoat-range:disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-
-
-
-
-
-
-

Range

-
-
-
-

Examples

- -
-
- -
-
-

HTML

-
<input type="range" class="topcoat-range">
<input type="range" class="topcoat-range" disabled>
-
-
-

CSS

-

-.topcoat-range {
-  border-radius: 6px;
-  border: 1px solid #303233;
-  background-color: #424546;
-  height: 1rem;
-  border-radius: 30px;
-}
-
-.topcoat-range::-moz-range-track {
-  border-radius: 6px;
-  border: 1px solid #303233;
-  background-color: #424546;
-  height: 1rem;
-  border-radius: 30px;
-}
-
-.topcoat-range::-webkit-slider-thumb {
-  height: 3rem;
-  width: 2rem;
-  background-color: #595b5b;
-  border: 1px solid #303233;
-  border-radius: 6px;
-  box-shadow: inset 0 1px #727373;
-}
-
-.topcoat-range::-moz-range-thumb {
-  height: 3rem;
-  width: 2rem;
-  background-color: #595b5b;
-  border: 1px solid #303233;
-  border-radius: 6px;
-  box-shadow: inset 0 1px #727373;
-}
-
-.topcoat-range:focus::-webkit-slider-thumb {
-  border: 1px solid #0940fd;
-  box-shadow: 0 0 0 2px #6fb5f1;
-}
-
-.topcoat-range:focus::-moz-range-thumb {
-  border: 1px solid #0940fd;
-  box-shadow: 0 0 0 2px #6fb5f1;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.search-input {
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  vertical-align: top;
-  outline: none;
-  -webkit-appearance: none;
-}
-
-input[type="search"]::-webkit-search-cancel-button {
-  -webkit-appearance: none;
-}
-
-.search-input:disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.search-input,
-.topcoat-search-input,
-.topcoat-search-input--large {
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  vertical-align: top;
-  outline: none;
-  -webkit-appearance: none;
-}
-
-input[type="search"]::-webkit-search-cancel-button {
-  -webkit-appearance: none;
-}
-
-.search-input:disabled,
-.topcoat-search-input:disabled,
-.topcoat-search-input--large:disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-
-
-
-
-
-
-

Search Input

-
-
-
- -
-
-

HTML

-
<input type="search" value="" placeholder="search" class="topcoat-search-input">
<input type="search" value="" placeholder="search" class="topcoat-search-input" disabled>
-
-
-

CSS

-

-.topcoat-search-input,
-.topcoat-search-input--large {
-  line-height: 3rem;
-  font-size: 16px;
-  border: 1px solid #303233;
-  background-color: #404141;
-  box-shadow: inset 0 1px rgba(0,0,0,0.18);
-  color: #c6c8c8;
-  padding: 0 0 0 2rem;
-  border-radius: 30px;
-  background-image: url("../img/search.svg");
-  background-position: 1em center;
-  background-repeat: no-repeat;
-  background-size: 16px;
-}
-
-.topcoat-search-input:focus,
-.topcoat-search-input--large:focus {
-  background-image: url("../img/search_dark.svg");
-  background-color: #646666;
-  color: #fff;
-  border: 1px solid #0940fd;
-  box-shadow: 0 0 0 2px #6fb5f1;
-}
-
-.topcoat-search-input::-webkit-search-cancel-button,
-.topcoat-search-input::-webkit-search-decoration,
-.topcoat-search-input--large::-webkit-search-cancel-button,
-.topcoat-search-input--large::-webkit-search-decoration {
-  margin-right: 5px;
-}
-
-.topcoat-search-input:focus::-webkit-input-placeholder,
-.topcoat-search-input:focus::-webkit-input-placeholder {
-  color: #c6c8c8;
-}
-
-.topcoat-search-input:disabled::-webkit-input-placeholder {
-  color: #fff;
-}
-
-.topcoat-search-input:disabled::-moz-placeholder {
-  color: #fff;
-}
-
-.topcoat-search-input:disabled:-ms-input-placeholder {
-  color: #fff;
-}
-
-
-
-
-
-
-
-

Large Search Input

-
-
-
- -
-
-

HTML

-
<input type="search" value="" placeholder="search" class="topcoat-search-input--large">
<input type="search" value="" placeholder="search" class="topcoat-search-input--large" disabled>
-
-
-

CSS

-

-.topcoat-search-input--large {
-  line-height: 4.375rem;
-  font-size: 1.3rem;
-  font-weight: 200;
-  padding: 0 0 0 2.9rem;
-  border-radius: 40px;
-  background-position: 1.2em center;
-  background-size: 1.3rem;
-}
-
-.topcoat-search-input--large:disabled {
-  color: #fff;
-}
-
-.topcoat-search-input--large:disabled::-webkit-input-placeholder {
-  color: #fff;
-}
-
-.topcoat-search-input--large:disabled::-moz-placeholder {
-  color: #fff;
-}
-
-.topcoat-search-input--large:disabled:-ms-input-placeholder {
-  color: #fff;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.switch {
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-}
-
-.switch__input {
-  position: absolute;
-  overflow: hidden;
-  padding: 0;
-  border: 0;
-  opacity: 0.001;
-  z-index: 1;
-  vertical-align: top;
-  outline: none;
-}
-
-.switch__toggle {
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-}
-
-.switch__toggle:before,
-.switch__toggle:after {
-  content: '';
-  position: absolute;
-  z-index: -1;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-}
-
-.switch--disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.switch,
-.topcoat-switch {
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-}
-
-.switch__input,
-.topcoat-switch__input {
-  position: absolute;
-  overflow: hidden;
-  padding: 0;
-  border: 0;
-  opacity: 0.001;
-  z-index: 1;
-  vertical-align: top;
-  outline: none;
-}
-
-.switch__toggle,
-.topcoat-switch__toggle {
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-}
-
-.switch__toggle:before,
-.switch__toggle:after,
-.topcoat-switch__toggle:before,
-.topcoat-switch__toggle:after {
-  content: '';
-  position: absolute;
-  z-index: -1;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-}
-
-.switch--disabled,
-.topcoat-switch__input:disabled + .topcoat-switch__toggle {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-
-
-
-
-
-
-

Switch

-
-




-
-

Examples

- -
-
- -
-
-

HTML

-
<label class="topcoat-switch">
  <input type="checkbox" class="topcoat-switch__input">
  <div class="topcoat-switch__toggle"></div>
</label>
<br>
<br>
<label class="topcoat-switch">
  <input type="checkbox" class="topcoat-switch__input" checked>
  <div class="topcoat-switch__toggle"></div>
</label>
<br>
<br>
<label class="topcoat-switch">
  <input type="checkbox" class="topcoat-switch__input" disabled>
  <div class="topcoat-switch__toggle"></div>
</label>
-
-
-

CSS

-

-.topcoat-switch {
-  font-size: 16px;
-  padding: 0 1.25rem;
-  border-radius: 6px;
-  border: 1px solid #303233;
-  overflow: hidden;
-  width: 6rem;
-}
-
-.topcoat-switch__toggle:before,
-.topcoat-switch__toggle:after {
-  top: -1px;
-  width: 5rem;
-}
-
-.topcoat-switch__toggle:before {
-  content: 'ON';
-  color: #5dc1ff;
-  background-color: #404141;
-  right: 1rem;
-  padding-left: 1.5rem;
-}
-
-.topcoat-switch__toggle {
-  line-height: 3rem;
-  height: 3rem;
-  width: 2rem;
-  border-radius: 6px;
-  color: #c6c8c8;
-  text-shadow: 0 -1px rgba(0,0,0,0.69);
-  background-color: #595b5b;
-  border: 1px solid #303233;
-  margin-left: -1.3rem;
-  margin-bottom: -1px;
-  margin-top: -1px;
-  box-shadow: inset 0 1px #727373;
-  -webkit-transition: margin-left 0.05s ease-in-out;
-  transition: margin-left 0.05s ease-in-out;
-}
-
-.topcoat-switch__toggle:after {
-  content: 'OFF';
-  background-color: #404141;
-  left: 1rem;
-  padding-left: 2rem;
-}
-
-.topcoat-switch__input:checked + .topcoat-switch__toggle {
-  margin-left: 2.7rem;
-}
-
-.topcoat-switch__input:focus + .topcoat-switch__toggle {
-  border: 1px solid #0940fd;
-  box-shadow: 0 0 0 2px #6fb5f1;
-}
-
-.topcoat-switch__input:disabled + .topcoat-switch__toggle:after,
-.topcoat-switch__input:disabled + .topcoat-switch__toggle:before {
-  background: transparent;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.button,
-.topcoat-tab-bar__button {
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-  text-overflow: ellipsis;
-  white-space: nowrap;
-  overflow: hidden;
-  text-decoration: none;
-}
-
-.button--quiet {
-  background: transparent;
-  border: 1px solid transparent;
-  box-shadow: none;
-}
-
-.button--disabled,
-.topcoat-tab-bar__button:disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-.button-bar,
-.topcoat-tab-bar {
-  display: table;
-  table-layout: fixed;
-  white-space: nowrap;
-  margin: 0;
-  padding: 0;
-}
-
-.button-bar__item,
-.topcoat-tab-bar__item {
-  display: table-cell;
-  width: auto;
-  border-radius: 0;
-}
-
-.button-bar__item > input,
-.topcoat-tab-bar__item > input {
-  position: absolute;
-  overflow: hidden;
-  padding: 0;
-  border: 0;
-  opacity: 0.001;
-  z-index: 1;
-  vertical-align: top;
-  outline: none;
-}
-
-.button-bar__button {
-  border-radius: inherit;
-}
-
-.button-bar__item:disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-
-
-
-
-
-
-

Tab Bar

-
-
-
-

Examples

- -
-
- -
-
-

HTML

-
<div class="topcoat-tab-bar">
  <label class="topcoat-tab-bar__item">
    <input type="radio" name="tab-bar">
    <button class="topcoat-tab-bar__button">One</button>
  </label>
  <label class="topcoat-tab-bar__item">
    <input type="radio" name="tab-bar">
    <button class="topcoat-tab-bar__button">Two</button>
  </label>
  <label class="topcoat-tab-bar__item">
    <input type="radio" name="tab-bar">
    <button class="topcoat-tab-bar__button">Three</button>
  </label>
</div>
-
-
-

CSS

-

-.topcoat-tab-bar__button {
-  padding: 0 1.25rem;
-  height: 3rem;
-  line-height: 3rem;
-  letter-spacing: 1px;
-  color: #c6c8c8;
-  text-shadow: 0 -1px rgba(0,0,0,0.69);
-  vertical-align: top;
-  background-color: #595b5b;
-  box-shadow: inset 0 1px #727373;
-  border-top: 1px solid #303233;
-}
-
-.topcoat-tab-bar__button:active,
-.topcoat-tab-bar__button--large:active,
-:checked + .topcoat-tab-bar__button {
-  color: #5dc1ff;
-  background-color: #404141;
-  box-shadow: inset 0 0 2px #313231;
-}
-
-.topcoat-tab-bar__button:focus,
-.topcoat-tab-bar__button--large:focus {
-  z-index: 1;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.input,
-.topcoat-text-input,
-.topcoat-text-input--large {
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  vertical-align: top;
-  outline: none;
-}
-
-.input:disabled,
-.topcoat-text-input:disabled,
-.topcoat-text-input--large:disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-
-
-
-
-
-
-

Text input

-
-




-
- -
-
-

HTML

-
<input type="text" class="topcoat-text-input" placeholder="text" value="">
<br>
<br>
<input type="text" class="topcoat-text-input" placeholder="text" value="" disabled>
<br>
<br>
<input type="text" class="topcoat-text-input" placeholder="text" value="fail" pattern="not-fail">
-
-
-

CSS

-

-.topcoat-text-input,
-.topcoat-text-input--large {
-  line-height: 3rem;
-  font-size: 16px;
-  letter-spacing: 1px;
-  padding: 0 1.25rem;
-  border: 1px solid #303233;
-  border-radius: 6px;
-  background-color: #404141;
-  box-shadow: inset 0 1px rgba(0,0,0,0.18);
-  color: #c6c8c8;
-  vertical-align: top;
-}
-
-.topcoat-text-input:focus,
-.topcoat-text-input--large:focus {
-  background-color: #646666;
-  color: #fff;
-  border: 1px solid #0940fd;
-  box-shadow: 0 0 0 2px #6fb5f1;
-}
-
-.topcoat-text-input:disabled::-webkit-input-placeholder {
-  color: #fff;
-}
-
-.topcoat-text-input:disabled::-moz-placeholder {
-  color: #fff;
-}
-
-.topcoat-text-input:disabled:-ms-input-placeholder {
-  color: #fff;
-}
-
-.topcoat-text-input:invalid {
-  border: 1px solid #d83b75;
-}
-
-
-
-
-
-
-
-

Large Text Input

-
-




-
- -
-
-

HTML

-
<input type="text" class="topcoat-text-input--large" value="" placeholder="text">
<br>
<br>
<input type="text" class="topcoat-text-input--large" value="" placeholder="text" disabled>
<br>
<br>
<input type="text" class="topcoat-text-input--large" placeholder="text" value="fail" pattern="not-fail">
-
-
-

CSS

-

-.topcoat-text-input--large {
-  line-height: 4.375rem;
-  font-size: 1.3rem;
-}
-
-.topcoat-text-input--large:disabled {
-  color: #fff;
-}
-
-.topcoat-text-input--large:disabled::-webkit-input-placeholder {
-  color: #fff;
-}
-
-.topcoat-text-input--large:disabled::-moz-placeholder {
-  color: #fff;
-}
-
-.topcoat-text-input--large:disabled:-ms-input-placeholder {
-  color: #fff;
-}
-
-.topcoat-text-input--large:invalid {
-  border: 1px solid #d83b75;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.textarea {
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  vertical-align: top;
-  resize: none;
-  outline: none;
-}
-
-.textarea:disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.textarea,
-.topcoat-textarea,
-.topcoat-textarea--large {
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  vertical-align: top;
-  resize: none;
-  outline: none;
-}
-
-.textarea:disabled,
-.topcoat-textarea:disabled,
-.topcoat-textarea--large:disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-
-
-
-
-
-
-

Textarea

-
-


-
- -
-
-

HTML

-
<textarea class="topcoat-textarea" rows="6" cols="36" placeholder="Textarea"></textarea>
<br>
<br>
<textarea class="topcoat-textarea" rows="6" cols="36" placeholder="Textarea" disabled></textarea>
-
-
-

CSS

-

-.topcoat-textarea,
-.topcoat-textarea--large {
-  padding: 2rem;
-  font-size: 2.5rem;
-  font-weight: 200;
-  border-radius: 6px;
-  line-height: 3rem;
-  border: 1px solid #303233;
-  background-color: #404141;
-  box-shadow: inset 0 1px rgba(0,0,0,0.18);
-  color: #c6c8c8;
-  letter-spacing: 1px;
-}
-
-.topcoat-textarea:focus,
-.topcoat-textarea--large:focus {
-  background-color: #646666;
-  color: #fff;
-  border: 1px solid #0940fd;
-  box-shadow: 0 0 0 2px #6fb5f1;
-}
-
-.topcoat-textarea:disabled::-webkit-input-placeholder {
-  color: #fff;
-}
-
-.topcoat-textarea:disabled::-moz-placeholder {
-  color: #fff;
-}
-
-.topcoat-textarea:disabled:-ms-input-placeholder {
-  color: #fff;
-}
-
-
-
-
-
-
-
-

Large Textarea

-
-


-
- -
-
-

HTML

-
<textarea class="topcoat-textarea--large" rows="6" cols="36" placeholder="Textarea"></textarea>
<br>
<br>
<textarea class="topcoat-textarea--large" rows="6" cols="36" placeholder="Textarea" disabled></textarea>
-
-
-

CSS

-

-.topcoat-textarea--large {
-  font-size: 3rem;
-  line-height: 4.375rem;
-}
-
-.topcoat-textarea--large:disabled {
-  color: #fff;
-}
-
-.topcoat-textarea--large:disabled::-webkit-input-placeholder {
-  color: #fff;
-}
-
-.topcoat-textarea--large:disabled::-moz-placeholder {
-  color: #fff;
-}
-
-.topcoat-textarea--large:disabled:-ms-input-placeholder {
-  color: #fff;
-}
-
-@font-face {
-  font-family: "Source Sans";
-  src: url("../font/SourceSansPro-Regular.otf");
-}
-
-@font-face {
-  font-family: "Source Sans";
-  src: url("../font/SourceSansPro-Light.otf");
-  font-weight: 200;
-}
-
-@font-face {
-  font-family: "Source Sans";
-  src: url("../font/SourceSansPro-Semibold.otf");
-  font-weight: 600;
-}
-
-body {
-  margin: 0;
-  padding: 0;
-  background: #4b4d4e;
-  color: #000;
-  font: 16px "Source Sans", helvetica, arial, sans-serif;
-  font-weight: 200;
-}
-
-:focus {
-  outline-color: transparent;
-  outline-style: none;
-}
-
-.topcoat-icon--menu-stack {
-  background: url("../img/hamburger_light.svg") no-repeat;
-  background-size: cover;
-}
-
-.quarter {
-  width: 25%;
-}
-
-.half {
-  width: 50%;
-}
-
-.three-quarters {
-  width: 75%;
-}
-
-.third {
-  width: 33.333%;
-}
-
-.two-thirds {
-  width: 66.666%;
-}
-
-.full {
-  width: 100%;
-}
-
-.left {
-  text-align: left;
-}
-
-.center {
-  text-align: center;
-}
-
-.right {
-  text-align: right;
-}
-
-.reset-ui {
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-  text-overflow: ellipsis;
-  white-space: nowrap;
-  overflow: hidden;
-}
-
-/* This file should include color and image variables corresponding to the dark theme */
-
-/* Call To Action */
-
-/* Icons */
-
-/* Navigation Bar */
-
-/* Text Input */
-
-/* Search Input */
-
-/* List */
-
-/* Checkbox */
-
-/* Overlay */
-
-/* Progress bar */
-
-/* Checkbox */
-
-/* Radio Button */
-
-/* Tab bar */
-
-/* Switch */
-
-/* Icon Button */
-
-/* Navigation bar */
-
-/* List */
-
-/* Search Input */
-
-/* Textarea */
-
-/* Checkbox */
-
-/* Radio */
-
-/* Range input */
-
-/* Search Input */
-
-/* Switch */
-
-/* This file should include color and image variables corresponding to the light theme */
-
-/* Call To Action */
-
-/* Icons */
-
-/* Navigation Bar */
-
-/* Text Input */
-
-/* List */
-
-/* Overlay */
-
-/* Progress bar */
-
-/* Checkbox */
-
-/* Range input */
-
-/* Radio Button */
-
-/* Tab bar */
-
-/* Switch */
-
-/* Containers */
-
-/* Icon Button */
-
-/* Navigation bar */
-
-/* List */
-
-/* Search Input */
-
-/* Text Area */
-
-/* Checkbox */
-
-/* Radio */
-
-/* Range input */
-
-/* Search Input */
-
-/* Switch */
-
-/* Text Input */
-
-/* Radio input */
-
-/* Overlay */
-
-/* Textarea */
-
-/* Progress bar container */
-
-/* Progress bar progress */
-
-/* Search input */
-
-/* Switch */
-
-/* Notification */
-
-
-
-
-
-
-
-
- - - - \ No newline at end of file diff --git a/www/assets/topcoat-0.7.5/demo/topcoat-mobile-light.html b/www/assets/topcoat-0.7.5/demo/topcoat-mobile-light.html deleted file mode 100755 index f67a519..0000000 --- a/www/assets/topcoat-0.7.5/demo/topcoat-mobile-light.html +++ /dev/null @@ -1,3417 +0,0 @@ - - - - - - Topcoat - - - - - - - -
- -
-
-
-
-

Topcoat

-

CSS for clean and fast web apps

-
- -
-
-
-
-
-

Button Bar

-
-
-
-

Examples

- -
-
- -
-
-

HTML

-
<div class="topcoat-button-bar">
  <div class="topcoat-button-bar__item">
    <button class="topcoat-button-bar__button">One</button>
  </div>
  <div class="topcoat-button-bar__item">
    <button class="topcoat-button-bar__button">Two</button>
  </div>
  <div class="topcoat-button-bar__item">
    <button class="topcoat-button-bar__button">Three</button>
  </div>
</div>
-
-
-

CSS

-

-.topcoat-button-bar > .topcoat-button-bar__item:first-child {
-  border-top-left-radius: 6px;
-  border-bottom-left-radius: 6px;
-}
-
-.topcoat-button-bar > .topcoat-button-bar__item:last-child {
-  border-top-right-radius: 6px;
-  border-bottom-right-radius: 6px;
-}
-
-.topcoat-button-bar__item:first-child > .topcoat-button-bar__button,
-.topcoat-button-bar__item:first-child > .topcoat-button-bar__button--large {
-  border-right: none;
-}
-
-.topcoat-button-bar__item:last-child > .topcoat-button-bar__button,
-.topcoat-button-bar__item:last-child > .topcoat-button-bar__button--large {
-  border-left: none;
-}
-
-.topcoat-button-bar__button {
-  border-radius: inherit;
-}
-
-.topcoat-button-bar__button:focus,
-.topcoat-button-bar__button--large:focus {
-  z-index: 1;
-}
-
-
-
-
-
-
-
-

Large Button Bar

-
-
-
- -
-
-

HTML

-
<div class="topcoat-button-bar">
  <div class="topcoat-button-bar__item">
    <button class="topcoat-button-bar__button--large">One</button>
  </div>
  <div class="topcoat-button-bar__item">
    <button class="topcoat-button-bar__button--large">Two</button>
  </div>
  <div class="topcoat-button-bar__item">
    <button class="topcoat-button-bar__button--large">Three</button>
  </div>
</div>
-
-
-

CSS

-

-.topcoat-button-bar__button--large {
-  border-radius: inherit;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.button {
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-  text-overflow: ellipsis;
-  white-space: nowrap;
-  overflow: hidden;
-  text-decoration: none;
-}
-
-.button--quiet {
-  background: transparent;
-  border: 1px solid transparent;
-  box-shadow: none;
-}
-
-.button--disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.button,
-.topcoat-button,
-.topcoat-button--quiet,
-.topcoat-button--large,
-.topcoat-button--large--quiet,
-.topcoat-button--cta,
-.topcoat-button--large--cta {
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-  text-overflow: ellipsis;
-  white-space: nowrap;
-  overflow: hidden;
-  text-decoration: none;
-}
-
-.button--quiet {
-  background: transparent;
-  border: 1px solid transparent;
-  box-shadow: none;
-}
-
-.button--disabled,
-.topcoat-button:disabled,
-.topcoat-button--quiet:disabled,
-.topcoat-button--large:disabled,
-.topcoat-button--large--quiet:disabled,
-.topcoat-button--cta:disabled,
-.topcoat-button--large--cta:disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-
-
-
-
-
-
-

Button

-
-
-
-

Examples

- -
-
- -
-
-

HTML

-
<button class="topcoat-button">Button</button>
<button class="topcoat-button" disabled>Button</button>
-
-
-

CSS

-

-.topcoat-button,
-.topcoat-button--quiet,
-.topcoat-button--large,
-.topcoat-button--large--quiet,
-.topcoat-button--cta,
-.topcoat-button--large--cta {
-  padding: 0 1.25rem;
-  font-size: 16px;
-  line-height: 3rem;
-  letter-spacing: 1px;
-  color: #454545;
-  text-shadow: 0 1px #fff;
-  vertical-align: top;
-  background-color: #e5e9e8;
-  box-shadow: inset 0 1px #fff;
-  border: 1px solid #a5a8a8;
-  border-radius: 6px;
-}
-
-.topcoat-button:hover,
-.topcoat-button--quiet:hover,
-.topcoat-button--large:hover,
-.topcoat-button--large--quiet:hover {
-  background-color: #edf1f1;
-}
-
-.topcoat-button:active,
-.topcoat-button--large:active {
-  background-color: #d3d7d7;
-  box-shadow: inset 0 1px rgba(0,0,0,0.12);
-}
-
-.topcoat-button:focus,
-.topcoat-button--quiet:focus,
-.topcoat-button--large:focus,
-.topcoat-button--large--quiet:focus,
-.topcoat-button--cta:focus,
-.topcoat-button--large--cta:focus {
-  border: 1px solid #0940fd;
-  box-shadow: 0 0 0 2px #6fb5f1;
-  outline: 0;
-}
-
-
-
-
-
-
-
-

Quiet Button

-
-
-
- -
-
-

HTML

-
<button class="topcoat-button--quiet">Button</button>
<button class="topcoat-button--quiet" disabled>Button</button>
-
-
-

CSS

-

-.topcoat-button--quiet {
-  background: transparent;
-  border: 1px solid transparent;
-  box-shadow: none;
-}
-
-.topcoat-button--quiet:hover,
-.topcoat-button--large--quiet:hover {
-  text-shadow: 0 1px #fff;
-  border: 1px solid #a5a8a8;
-  box-shadow: inset 0 1px #fff;
-}
-
-.topcoat-button--quiet:active,
-.topcoat-button--large--quiet:active {
-  color: #454545;
-  text-shadow: 0 1px #fff;
-  background-color: #d3d7d7;
-  border: 1px solid #a5a8a8;
-  box-shadow: inset 0 1px rgba(0,0,0,0.12);
-}
-
-
-
-
-
-
-
-

Large Button

-
-
-
- -
-
-

HTML

-
<button class="topcoat-button--large" >Button</button>
<button class="topcoat-button--large" disabled>Button</button>
-
-
-

CSS

-

-.topcoat-button--large,
-.topcoat-button--large--quiet {
-  font-size: 1.3rem;
-  font-weight: 400;
-  line-height: 4.375rem;
-  padding: 0 1.25rem;
-}
-
-
-
-
-
-
-
-

Large Quiet Button

-
-
-
- -
-
-

HTML

-
<button class="topcoat-button--large--quiet" >Button</button>
<button class="topcoat-button--large--quiet" disabled>Button</button>
-
-
-

CSS

-

-.topcoat-button--large--quiet {
-  background: transparent;
-  border: 1px solid transparent;
-  box-shadow: none;
-}
-
-
-
-
-
-
-
-

Call To Action Button

-
-
-
- -
-
-

HTML

-
<button class="topcoat-button--cta" >Button</button>
<button class="topcoat-button--cta" disabled>Button</button>
-
-
-

CSS

-

-.topcoat-button--cta,
-.topcoat-button--large--cta {
-  border: 1px solid #143250;
-  background-color: #288edf;
-  box-shadow: inset 0 1px rgba(255,255,255,0.36);
-  color: #fff;
-  font-weight: 500;
-  text-shadow: 0 -1px rgba(0,0,0,0.36);
-}
-
-.topcoat-button--cta:hover,
-.topcoat-button--large--cta:hover {
-  background-color: #509bef;
-}
-
-.topcoat-button--cta:active,
-.topcoat-button--large--cta:active {
-  background-color: #0380e8;
-  box-shadow: inset 0 1px rgba(0,0,0,0.12);
-}
-
-
-
-
-
-
-
-

Large Call To Action Button

-
-
-
- -
-
-

HTML

-
<button class="topcoat-button--large--cta" >Button</button>
<button class="topcoat-button--large--cta" disabled>Button</button>
-
-
-

CSS

-

-.topcoat-button--large--cta {
-  font-size: 1.3rem;
-  font-weight: 400;
-  line-height: 4.375rem;
-  padding: 0 1.25rem;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-input[type="checkbox"] {
-  position: absolute;
-  overflow: hidden;
-  padding: 0;
-  border: 0;
-  opacity: 0.001;
-  z-index: 1;
-  vertical-align: top;
-  outline: none;
-}
-
-.checkbox {
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-}
-
-.checkbox__label {
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-}
-
-.checkbox--disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-.checkbox:before,
-.checkbox:after {
-  content: '';
-  position: absolute;
-}
-
-.checkbox:before {
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-input[type="checkbox"] {
-  position: absolute;
-  overflow: hidden;
-  padding: 0;
-  border: 0;
-  opacity: 0.001;
-  z-index: 1;
-  vertical-align: top;
-  outline: none;
-}
-
-.checkbox,
-.topcoat-checkbox__checkmark {
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-}
-
-.checkbox__label,
-.topcoat-checkbox {
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-}
-
-.checkbox--disabled,
-input[type="checkbox"]:disabled + .topcoat-checkbox__checkmark {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-.checkbox:before,
-.checkbox:after,
-.topcoat-checkbox__checkmark:before,
-.topcoat-checkbox__checkmark:after {
-  content: '';
-  position: absolute;
-}
-
-.checkbox:before,
-.topcoat-checkbox__checkmark:before {
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-}
-
-
-
-
-
-
-
-

Checkbox

-
-


-
-

Examples

- -
-
- -
-
-

HTML

-
<label class="topcoat-checkbox">
  <input type="checkbox">
  <div class="topcoat-checkbox__checkmark"></div>
  Default
</label>
<br>
<br>
<label class="topcoat-checkbox">
  <input type="checkbox" disabled>
  <div class="topcoat-checkbox__checkmark"></div>
  Disabled
</label>
-
-
-

CSS

-

-.topcoat-checkbox__checkmark {
-  height: 2rem;
-}
-
-input[type="checkbox"] {
-  height: 2rem;
-  width: 2rem;
-  margin-top: 0;
-  margin-right: -2rem;
-  margin-bottom: -2rem;
-  margin-left: 0;
-}
-
-input[type="checkbox"]:checked + .topcoat-checkbox__checkmark:after {
-  opacity: 1;
-}
-
-.topcoat-checkbox {
-  line-height: 2rem;
-}
-
-.topcoat-checkbox__checkmark:before {
-  width: 2rem;
-  height: 2rem;
-  background: #e5e9e8;
-  border: 1px solid #a5a8a8;
-  border-radius: 3px;
-  box-shadow: inset 0 1px #fff;
-}
-
-.topcoat-checkbox__checkmark {
-  width: 2rem;
-  height: 2rem;
-}
-
-.topcoat-checkbox__checkmark:after {
-  top: 1px;
-  left: 2px;
-  opacity: 0;
-  width: 28px;
-  height: 11px;
-  background: transparent;
-  border: 7px solid #666;
-  border-width: 7px;
-  border-top: none;
-  border-right: none;
-  border-radius: 2px;
-  -webkit-transform: rotate(-50deg);
-  -ms-transform: rotate(-50deg);
-  transform: rotate(-50deg);
-}
-
-input[type="checkbox"]:focus + .topcoat-checkbox__checkmark:before {
-  border: 1px solid #0940fd;
-  box-shadow: 0 0 0 2px #6fb5f1;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.button,
-.topcoat-icon-button,
-.topcoat-icon-button--quiet,
-.topcoat-icon-button--large,
-.topcoat-icon-button--large--quiet {
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-  text-overflow: ellipsis;
-  white-space: nowrap;
-  overflow: hidden;
-  text-decoration: none;
-}
-
-.button--quiet {
-  background: transparent;
-  border: 1px solid transparent;
-  box-shadow: none;
-}
-
-.button--disabled,
-.topcoat-icon-button:disabled,
-.topcoat-icon-button--quiet:disabled,
-.topcoat-icon-button--large:disabled,
-.topcoat-icon-button--large--quiet:disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-
-
-
-
-
-
-

Icon Button

-
-
-
- -
-
-

HTML

-
<button class="topcoat-icon-button">
  <span class="topcoat-icon" style="background-color:#A5A7A7;"></span>
</button>
<button class="topcoat-icon-button" disabled>
  <span class="topcoat-icon" style="background-color:#A5A7A7;"></span>
</button>
-
-
-

CSS

-

-.topcoat-icon-button,
-.topcoat-icon-button--quiet,
-.topcoat-icon-button--large,
-.topcoat-icon-button--large--quiet {
-  padding: 0 0.75rem;
-  line-height: 3rem;
-  letter-spacing: 1px;
-  color: #454545;
-  text-shadow: 0 1px #fff;
-  vertical-align: baseline;
-  background-color: #e5e9e8;
-  box-shadow: inset 0 1px #fff;
-  border: 1px solid #a5a8a8;
-  border-radius: 6px;
-}
-
-.topcoat-icon-button:hover,
-.topcoat-icon-button--quiet:hover,
-.topcoat-icon-button--large:hover,
-.topcoat-icon-button--large--quiet:hover {
-  background-color: #edf1f1;
-}
-
-.topcoat-icon-button:active {
-  background-color: #d3d7d7;
-  box-shadow: inset 0 1px rgba(0,0,0,0.12);
-}
-
-.topcoat-icon-button:focus,
-.topcoat-icon-button--quiet:focus,
-.topcoat-icon-button--quiet:hover:focus,
-.topcoat-icon-button--large:focus,
-.topcoat-icon-button--large--quiet:focus,
-.topcoat-icon-button--large--quiet:hover:focus {
-  border: 1px solid #0940fd;
-  box-shadow: 0 0 0 2px #6fb5f1;
-  outline: 0;
-}
-
-
-
-
-
-
-
-

Quiet Icon Button

-
-
-
- -
-
-

HTML

-
<button class="topcoat-icon-button--quiet">
  <span class="topcoat-icon" style="background-color:#A5A7A7;"></span>
</button>
<button class="topcoat-icon-button--quiet" disabled>
  <span class="topcoat-icon" style="background-color:#A5A7A7;"></span>
</button>
-
-
-

CSS

-

-.topcoat-icon-button--quiet {
-  background: transparent;
-  border: 1px solid transparent;
-  box-shadow: none;
-}
-
-.topcoat-icon-button--quiet:hover,
-.topcoat-icon-button--large--quiet:hover {
-  text-shadow: 0 1px #fff;
-  border: 1px solid #a5a8a8;
-  box-shadow: inset 0 1px #fff;
-}
-
-.topcoat-icon-button--quiet:active,
-.topcoat-icon-button--large--quiet:active {
-  color: #454545;
-  text-shadow: 0 1px #fff;
-  background-color: #d3d7d7;
-  border: 1px solid #a5a8a8;
-  box-shadow: inset 0 1px rgba(0,0,0,0.12);
-}
-
-
-
-
-
-
-
-

Large Icon Button

-
-
-
- -
-
-

HTML

-
<button class="topcoat-icon-button--large">
  <span class="topcoat-icon--large" style="background-color:#A5A7A7;"></span>
</button>
<button class="topcoat-icon-button--large" disabled>
  <span class="topcoat-icon--large" style="background-color:#A5A7A7;"></span>
</button>
-
-
-

CSS

-

-.topcoat-icon-button--large,
-.topcoat-icon-button--large--quiet {
-  width: 4.375rem;
-  height: 4.375rem;
-  line-height: 4.375rem;
-}
-
-.topcoat-icon-button--large:active {
-  background-color: #d3d7d7;
-  box-shadow: inset 0 1px rgba(0,0,0,0.12);
-}
-
-
-
-
-
-
-
-

Large Quiet Icon Button

-
-
-
- -
-
-

HTML

-
<button class="topcoat-icon-button--large--quiet">
  <span class="topcoat-icon--large" style="background-color:#A5A7A7;"></span>
</button>
<button class="topcoat-icon-button--large--quiet" disabled>
  <span class="topcoat-icon--large" style="background-color:#A5A7A7;"></span>
</button>
-
-
-

CSS

-

-.topcoat-icon-button--large--quiet {
-  background: transparent;
-  border: 1px solid transparent;
-  box-shadow: none;
-}
-
-.topcoat-icon,
-.topcoat-icon--large {
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  overflow: hidden;
-  width: 1.62rem;
-  height: 1.62rem;
-  vertical-align: middle;
-  top: -1px;
-}
-
-.topcoat-icon--large {
-  width: 2.499999998125rem;
-  height: 2.499999998125rem;
-  top: -2px;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.input {
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  vertical-align: top;
-  outline: none;
-}
-
-.input:disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.list {
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-  overflow: auto;
-  -webkit-overflow-scrolling: touch;
-}
-
-.list__header {
-  margin: 0;
-}
-
-.list__container {
-  padding: 0;
-  margin: 0;
-  list-style-type: none;
-}
-
-.list__item {
-  margin: 0;
-  padding: 0;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.list,
-.topcoat-list {
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-  overflow: auto;
-  -webkit-overflow-scrolling: touch;
-}
-
-.list__header,
-.topcoat-list__header {
-  margin: 0;
-}
-
-.list__container,
-.topcoat-list__container {
-  padding: 0;
-  margin: 0;
-  list-style-type: none;
-}
-
-.list__item,
-.topcoat-list__item {
-  margin: 0;
-  padding: 0;
-}
-
-
-
-
-
-
-
-

List

-
-

Category

  • Item
  • Item
  • Item
-
- -
-
-

HTML

-
<div class="topcoat-list">
  <h3 class="topcoat-list__header">Category</h3>
  <ul class="topcoat-list__container">
    <li class="topcoat-list__item">
      Item
    </li>
    <li class="topcoat-list__item">
      Item
    </li>
    <li class="topcoat-list__item">
      Item
    </li>
  </ul>
</div>
-
-
-

CSS

-

-.topcoat-list {
-  border-top: 1px solid #bcbfbf;
-  border-bottom: 1px solid #eff1f1;
-  background-color: #dfe2e2;
-}
-
-.topcoat-list__header {
-  padding: 4px 20px;
-  font-size: 0.9em;
-  font-weight: 400;
-  background-color: #cccfcf;
-  color: #656565;
-  text-shadow: 0 1px 0 rgba(255,255,255,0.5);
-  border-top: 1px solid rgba(255,255,255,0.5);
-  border-bottom: 1px solid rgba(255,255,255,0.23);
-}
-
-.topcoat-list__container {
-  border-top: 1px solid #bcbfbf;
-  color: #454545;
-}
-
-.topcoat-list__item {
-  padding: 1.25rem;
-  border-top: 1px solid #eff1f1;
-  border-bottom: 1px solid #bcbfbf;
-}
-
-.topcoat-list__item:first-child {
-  border-top: 1px solid rgba(0,0,0,0.05);
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.navigation-bar {
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  white-space: nowrap;
-  overflow: hidden;
-  word-spacing: 0;
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-}
-
-.navigation-bar__item {
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-}
-
-.navigation-bar__title {
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  text-overflow: ellipsis;
-  white-space: nowrap;
-  overflow: hidden;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.navigation-bar,
-.topcoat-navigation-bar {
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  white-space: nowrap;
-  overflow: hidden;
-  word-spacing: 0;
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-}
-
-.navigation-bar__item,
-.topcoat-navigation-bar__item {
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-}
-
-.navigation-bar__title,
-.topcoat-navigation-bar__title {
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  text-overflow: ellipsis;
-  white-space: nowrap;
-  overflow: hidden;
-}
-
-
-
-
-
- -
-
-

Notification

-
-
1
-
- -
-
-

HTML

-
<span class="topcoat-notification">1</span>
-
-
-

CSS

-

-.topcoat-notification {
-  padding: 0.15em 0.5em 0.2em;
-  border-radius: 2px;
-  background-color: #ec514e;
-  color: #fff;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-input[type="radio"] {
-  position: absolute;
-  overflow: hidden;
-  padding: 0;
-  border: 0;
-  opacity: 0.001;
-  z-index: 1;
-  vertical-align: top;
-  outline: none;
-}
-
-.radio-button {
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-}
-
-.radio-button__label {
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-}
-
-.radio-button:before,
-.radio-button:after {
-  content: '';
-  position: absolute;
-  border-radius: 100%;
-}
-
-.radio-button:after {
-  top: 50%;
-  left: 50%;
-  -webkit-transform: translate(-50%, -50%);
-  -ms-transform: translate(-50%, -50%);
-  transform: translate(-50%, -50%);
-}
-
-.radio-button:before {
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-}
-
-.radio-button--disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-input[type="radio"] {
-  position: absolute;
-  overflow: hidden;
-  padding: 0;
-  border: 0;
-  opacity: 0.001;
-  z-index: 1;
-  vertical-align: top;
-  outline: none;
-}
-
-.radio-button,
-.topcoat-radio-button__checkmark {
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-}
-
-.radio-button__label,
-.topcoat-radio-button {
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-}
-
-.radio-button:before,
-.radio-button:after,
-.topcoat-radio-button__checkmark:before,
-.topcoat-radio-button__checkmark:after {
-  content: '';
-  position: absolute;
-  border-radius: 100%;
-}
-
-.radio-button:after,
-.topcoat-radio-button__checkmark:after {
-  top: 50%;
-  left: 50%;
-  -webkit-transform: translate(-50%, -50%);
-  -ms-transform: translate(-50%, -50%);
-  transform: translate(-50%, -50%);
-}
-
-.radio-button:before,
-.topcoat-radio-button__checkmark:before {
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-}
-
-.radio-button--disabled,
-input[type="radio"]:disabled + .topcoat-radio-button__checkmark {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-
-
-
-
-
-
-

Radio Button

-
-






-
-

Examples

- -
-
- -
-
-

HTML

-
<!-- NO LABEL -->
<label class="topcoat-radio-button">
  <input type="radio" name="topcoat">
  <div class="topcoat-radio-button__checkmark"></div>
</label>
<br>
<br>
<!-- LEFT LABEL -->
<label class="topcoat-radio-button">
  Left label
  <input type="radio" name="topcoat">
  <div class="topcoat-radio-button__checkmark"></div>
</label>
<br>
<br>
<!-- RIGHT LABEL -->
<label class="topcoat-radio-button">
  <input type="radio" name="topcoat">
  <div class="topcoat-radio-button__checkmark"></div>
  Right label
</label>
<br>
<br>
<!-- DISABLED -->
<label class="topcoat-radio-button">
  <input type="radio" name="topcoat" Disabled>
  <div class="topcoat-radio-button__checkmark"></div>
  Disabled
</label>
-
-
-

CSS

-

-input[type="radio"] {
-  height: 1.875rem;
-  width: 1.875rem;
-  margin-top: 0;
-  margin-right: -1.875rem;
-  margin-bottom: -1.875rem;
-  margin-left: 0;
-}
-
-input[type="radio"]:checked + .topcoat-radio-button__checkmark:after {
-  opacity: 1;
-}
-
-.topcoat-radio-button {
-  color: #454545;
-  line-height: 1.875rem;
-}
-
-.topcoat-radio-button__checkmark:before {
-  width: 1.875rem;
-  height: 1.875rem;
-  background: #e5e9e8;
-  border: 1px solid #a5a8a8;
-  box-shadow: inset 0 1px #fff;
-}
-
-.topcoat-radio-button__checkmark {
-  position: relative;
-  width: 1.875rem;
-  height: 1.875rem;
-}
-
-.topcoat-radio-button__checkmark:after {
-  opacity: 0;
-  width: 0.875rem;
-  height: 0.875rem;
-  background: #666;
-  border: 1px solid rgba(0,0,0,0.1);
-  box-shadow: 0 1px rgba(255,255,255,0.5);
-  -webkit-transform: none;
-  -ms-transform: none;
-  transform: none;
-  top: 7px;
-  left: 7px;
-}
-
-input[type="radio"]:focus + .topcoat-radio-button__checkmark:before {
-  border: 1px solid #0940fd;
-  box-shadow: 0 0 0 2px #6fb5f1;
-}
-
-/*
-Copyright 2012 Adobe Systems Inc.;
-Licensed under the Apache License, Version 2.0 (the "License");
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
-
-http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
-*/
-
-/*
-Copyright 2012 Adobe Systems Inc.;
-Licensed under the Apache License, Version 2.0 (the "License");
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
-
-http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
-*/
-
-.range {
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  vertical-align: top;
-  outline: none;
-  -webkit-appearance: none;
-}
-
-.range__thumb {
-  cursor: pointer;
-}
-
-.range__thumb--webkit {
-  cursor: pointer;
-  -webkit-appearance: none;
-}
-
-.range:disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-/*
-Copyright 2012 Adobe Systems Inc.;
-Licensed under the Apache License, Version 2.0 (the "License");
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
-
-http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
-*/
-
-/*
-Copyright 2012 Adobe Systems Inc.;
-Licensed under the Apache License, Version 2.0 (the "License");
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
-
-http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
-*/
-
-.range,
-.topcoat-range {
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  vertical-align: top;
-  outline: none;
-  -webkit-appearance: none;
-}
-
-.range__thumb,
-.topcoat-range::-moz-range-thumb {
-  cursor: pointer;
-}
-
-.range__thumb--webkit,
-.topcoat-range::-webkit-slider-thumb {
-  cursor: pointer;
-  -webkit-appearance: none;
-}
-
-.range:disabled,
-.topcoat-range:disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-
-
-
-
-
-
-

Range

-
-
-
-

Examples

- -
-
- -
-
-

HTML

-
<input type="range" class="topcoat-range">
<input type="range" class="topcoat-range" disabled>
-
-
-

CSS

-

-.topcoat-range {
-  border-radius: 6px;
-  border: 1px solid #a5a8a8;
-  background-color: #d3d7d7;
-  height: 1rem;
-  border-radius: 30px;
-}
-
-.topcoat-range::-moz-range-track {
-  border-radius: 6px;
-  border: 1px solid #a5a8a8;
-  background-color: #d3d7d7;
-  height: 1rem;
-  border-radius: 30px;
-}
-
-.topcoat-range::-webkit-slider-thumb {
-  height: 3rem;
-  width: 2rem;
-  background-color: #e5e9e8;
-  border: 1px solid #a5a8a8;
-  border-radius: 6px;
-  box-shadow: inset 0 1px #fff;
-}
-
-.topcoat-range::-moz-range-thumb {
-  height: 3rem;
-  width: 2rem;
-  background-color: #e5e9e8;
-  border: 1px solid #a5a8a8;
-  border-radius: 6px;
-  box-shadow: inset 0 1px #fff;
-}
-
-.topcoat-range:focus::-webkit-slider-thumb {
-  border: 1px solid #0940fd;
-  box-shadow: 0 0 0 2px #6fb5f1;
-}
-
-.topcoat-range:focus::-moz-range-thumb {
-  border: 1px solid #0940fd;
-  box-shadow: 0 0 0 2px #6fb5f1;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.search-input {
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  vertical-align: top;
-  outline: none;
-  -webkit-appearance: none;
-}
-
-input[type="search"]::-webkit-search-cancel-button {
-  -webkit-appearance: none;
-}
-
-.search-input:disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.search-input,
-.topcoat-search-input,
-.topcoat-search-input--large {
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  vertical-align: top;
-  outline: none;
-  -webkit-appearance: none;
-}
-
-input[type="search"]::-webkit-search-cancel-button {
-  -webkit-appearance: none;
-}
-
-.search-input:disabled,
-.topcoat-search-input:disabled,
-.topcoat-search-input--large:disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-
-
-
-
-
-
-

Search Input

-
-
-
- -
-
-

HTML

-
<input type="search" value="" placeholder="search" class="topcoat-search-input">
<input type="search" value="" placeholder="search" class="topcoat-search-input" disabled>
-
-
-

CSS

-

-.topcoat-search-input,
-.topcoat-search-input--large {
-  line-height: 3rem;
-  font-size: 16px;
-  border: 1px solid #a5a8a8;
-  background-color: #d3d7d7;
-  box-shadow: inset 0 1px rgba(0,0,0,0.12);
-  color: #454545;
-  padding: 0 0 0 2rem;
-  border-radius: 30px;
-  background-image: url("../img/search.svg");
-  background-position: 1em center;
-  background-repeat: no-repeat;
-  background-size: 16px;
-}
-
-.topcoat-search-input:focus,
-.topcoat-search-input--large:focus {
-  background-image: url("../img/search_dark.svg");
-  background-color: #edf1f1;
-  color: #000;
-  border: 1px solid #0940fd;
-  box-shadow: 0 0 0 2px #6fb5f1;
-}
-
-.topcoat-search-input::-webkit-search-cancel-button,
-.topcoat-search-input::-webkit-search-decoration,
-.topcoat-search-input--large::-webkit-search-cancel-button,
-.topcoat-search-input--large::-webkit-search-decoration {
-  margin-right: 5px;
-}
-
-.topcoat-search-input:focus::-webkit-input-placeholder,
-.topcoat-search-input:focus::-webkit-input-placeholder {
-  color: #c6c8c8;
-}
-
-.topcoat-search-input:disabled::-webkit-input-placeholder {
-  color: #000;
-}
-
-.topcoat-search-input:disabled::-moz-placeholder {
-  color: #000;
-}
-
-.topcoat-search-input:disabled:-ms-input-placeholder {
-  color: #000;
-}
-
-
-
-
-
-
-
-

Large Search Input

-
-
-
- -
-
-

HTML

-
<input type="search" value="" placeholder="search" class="topcoat-search-input--large">
<input type="search" value="" placeholder="search" class="topcoat-search-input--large" disabled>
-
-
-

CSS

-

-.topcoat-search-input--large {
-  line-height: 4.375rem;
-  font-size: 1.3rem;
-  font-weight: 200;
-  padding: 0 0 0 2.9rem;
-  border-radius: 40px;
-  background-position: 1.2em center;
-  background-size: 1.3rem;
-}
-
-.topcoat-search-input--large:disabled {
-  color: #000;
-}
-
-.topcoat-search-input--large:disabled::-webkit-input-placeholder {
-  color: #000;
-}
-
-.topcoat-search-input--large:disabled::-moz-placeholder {
-  color: #000;
-}
-
-.topcoat-search-input--large:disabled:-ms-input-placeholder {
-  color: #000;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.switch {
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-}
-
-.switch__input {
-  position: absolute;
-  overflow: hidden;
-  padding: 0;
-  border: 0;
-  opacity: 0.001;
-  z-index: 1;
-  vertical-align: top;
-  outline: none;
-}
-
-.switch__toggle {
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-}
-
-.switch__toggle:before,
-.switch__toggle:after {
-  content: '';
-  position: absolute;
-  z-index: -1;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-}
-
-.switch--disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.switch,
-.topcoat-switch {
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-}
-
-.switch__input,
-.topcoat-switch__input {
-  position: absolute;
-  overflow: hidden;
-  padding: 0;
-  border: 0;
-  opacity: 0.001;
-  z-index: 1;
-  vertical-align: top;
-  outline: none;
-}
-
-.switch__toggle,
-.topcoat-switch__toggle {
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-}
-
-.switch__toggle:before,
-.switch__toggle:after,
-.topcoat-switch__toggle:before,
-.topcoat-switch__toggle:after {
-  content: '';
-  position: absolute;
-  z-index: -1;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-}
-
-.switch--disabled,
-.topcoat-switch__input:disabled + .topcoat-switch__toggle {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-
-
-
-
-
-
-

Switch

-
-




-
-

Examples

- -
-
- -
-
-

HTML

-
<label class="topcoat-switch">
  <input type="checkbox" class="topcoat-switch__input">
  <div class="topcoat-switch__toggle"></div>
</label>
<br>
<br>
<label class="topcoat-switch">
  <input type="checkbox" class="topcoat-switch__input" checked>
  <div class="topcoat-switch__toggle"></div>
</label>
<br>
<br>
<label class="topcoat-switch">
  <input type="checkbox" class="topcoat-switch__input" disabled>
  <div class="topcoat-switch__toggle"></div>
</label>
-
-
-

CSS

-

-.topcoat-switch {
-  font-size: 16px;
-  padding: 0 1.25rem;
-  border-radius: 6px;
-  border: 1px solid #a5a8a8;
-  overflow: hidden;
-  width: 6rem;
-}
-
-.topcoat-switch__toggle:before,
-.topcoat-switch__toggle:after {
-  top: -1px;
-  width: 5rem;
-}
-
-.topcoat-switch__toggle:before {
-  content: 'ON';
-  color: #0083e8;
-  background-color: #e0f0fa;
-  right: 1rem;
-  padding-left: 1.5rem;
-}
-
-.topcoat-switch__toggle {
-  line-height: 3rem;
-  height: 3rem;
-  width: 2rem;
-  border-radius: 6px;
-  color: #454545;
-  text-shadow: 0 1px #fff;
-  background-color: #e5e9e8;
-  border: 1px solid #a5a8a8;
-  margin-left: -1.3rem;
-  margin-bottom: -1px;
-  margin-top: -1px;
-  box-shadow: inset 0 1px #fff;
-  -webkit-transition: margin-left 0.05s ease-in-out;
-  transition: margin-left 0.05s ease-in-out;
-}
-
-.topcoat-switch__toggle:after {
-  content: 'OFF';
-  background-color: #d3d7d7;
-  left: 1rem;
-  padding-left: 2rem;
-}
-
-.topcoat-switch__input:checked + .topcoat-switch__toggle {
-  margin-left: 2.7rem;
-}
-
-.topcoat-switch__input:focus + .topcoat-switch__toggle {
-  border: 1px solid #0940fd;
-  box-shadow: 0 0 0 2px #6fb5f1;
-}
-
-.topcoat-switch__input:disabled + .topcoat-switch__toggle:after,
-.topcoat-switch__input:disabled + .topcoat-switch__toggle:before {
-  background: transparent;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.button,
-.topcoat-tab-bar__button {
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-  text-overflow: ellipsis;
-  white-space: nowrap;
-  overflow: hidden;
-  text-decoration: none;
-}
-
-.button--quiet {
-  background: transparent;
-  border: 1px solid transparent;
-  box-shadow: none;
-}
-
-.button--disabled,
-.topcoat-tab-bar__button:disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-.button-bar,
-.topcoat-tab-bar {
-  display: table;
-  table-layout: fixed;
-  white-space: nowrap;
-  margin: 0;
-  padding: 0;
-}
-
-.button-bar__item,
-.topcoat-tab-bar__item {
-  display: table-cell;
-  width: auto;
-  border-radius: 0;
-}
-
-.button-bar__item > input,
-.topcoat-tab-bar__item > input {
-  position: absolute;
-  overflow: hidden;
-  padding: 0;
-  border: 0;
-  opacity: 0.001;
-  z-index: 1;
-  vertical-align: top;
-  outline: none;
-}
-
-.button-bar__button {
-  border-radius: inherit;
-}
-
-.button-bar__item:disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-
-
-
-
-
-
-

Tab Bar

-
-
-
-

Examples

- -
-
- -
-
-

HTML

-
<div class="topcoat-tab-bar">
  <label class="topcoat-tab-bar__item">
    <input type="radio" name="tab-bar">
    <button class="topcoat-tab-bar__button">One</button>
  </label>
  <label class="topcoat-tab-bar__item">
    <input type="radio" name="tab-bar">
    <button class="topcoat-tab-bar__button">Two</button>
  </label>
  <label class="topcoat-tab-bar__item">
    <input type="radio" name="tab-bar">
    <button class="topcoat-tab-bar__button">Three</button>
  </label>
</div>
-
-
-

CSS

-

-.topcoat-tab-bar__button {
-  padding: 0 1.25rem;
-  height: 3rem;
-  line-height: 3rem;
-  letter-spacing: 1px;
-  color: #454545;
-  text-shadow: 0 1px #fff;
-  vertical-align: top;
-  background-color: #e5e9e8;
-  box-shadow: inset 0 1px #fff;
-  border-top: 1px solid #a5a8a8;
-}
-
-.topcoat-tab-bar__button:active,
-.topcoat-tab-bar__button--large:active,
-:checked + .topcoat-tab-bar__button {
-  color: #0083e8;
-  background-color: #e0f0fa;
-  box-shadow: inset 0 0 2px #c0ced8;
-}
-
-.topcoat-tab-bar__button:focus,
-.topcoat-tab-bar__button--large:focus {
-  z-index: 1;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.input,
-.topcoat-text-input,
-.topcoat-text-input--large {
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  vertical-align: top;
-  outline: none;
-}
-
-.input:disabled,
-.topcoat-text-input:disabled,
-.topcoat-text-input--large:disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-
-
-
-
-
-
-

Text input

-
-




-
- -
-
-

HTML

-
<input type="text" class="topcoat-text-input" placeholder="text" value="">
<br>
<br>
<input type="text" class="topcoat-text-input" placeholder="text" value="" disabled>
<br>
<br>
<input type="text" class="topcoat-text-input" placeholder="text" value="fail" pattern="not-fail">
-
-
-

CSS

-

-.topcoat-text-input,
-.topcoat-text-input--large {
-  line-height: 3rem;
-  font-size: 16px;
-  letter-spacing: 1px;
-  padding: 0 1.25rem;
-  border: 1px solid #a5a8a8;
-  border-radius: 6px;
-  background-color: #d3d7d7;
-  box-shadow: inset 0 1px rgba(0,0,0,0.12);
-  color: #454545;
-  vertical-align: top;
-}
-
-.topcoat-text-input:focus,
-.topcoat-text-input--large:focus {
-  background-color: #edf1f1;
-  color: #000;
-  border: 1px solid #0940fd;
-  box-shadow: 0 0 0 2px #6fb5f1;
-}
-
-.topcoat-text-input:disabled::-webkit-input-placeholder {
-  color: #000;
-}
-
-.topcoat-text-input:disabled::-moz-placeholder {
-  color: #000;
-}
-
-.topcoat-text-input:disabled:-ms-input-placeholder {
-  color: #000;
-}
-
-.topcoat-text-input:invalid {
-  border: 1px solid #d83b75;
-}
-
-
-
-
-
-
-
-

Large Text Input

-
-




-
- -
-
-

HTML

-
<input type="text" class="topcoat-text-input--large" value="" placeholder="text">
<br>
<br>
<input type="text" class="topcoat-text-input--large" value="" placeholder="text" disabled>
<br>
<br>
<input type="text" class="topcoat-text-input--large" placeholder="text" value="fail" pattern="not-fail">
-
-
-

CSS

-

-.topcoat-text-input--large {
-  line-height: 4.375rem;
-  font-size: 1.3rem;
-}
-
-.topcoat-text-input--large:disabled {
-  color: #000;
-}
-
-.topcoat-text-input--large:disabled::-webkit-input-placeholder {
-  color: #000;
-}
-
-.topcoat-text-input--large:disabled::-moz-placeholder {
-  color: #000;
-}
-
-.topcoat-text-input--large:disabled:-ms-input-placeholder {
-  color: #000;
-}
-
-.topcoat-text-input--large:invalid {
-  border: 1px solid #d83b75;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.textarea {
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  vertical-align: top;
-  resize: none;
-  outline: none;
-}
-
-.textarea:disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-/**
-*
-* Copyright 2012 Adobe Systems Inc.;
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
-
-.textarea,
-.topcoat-textarea,
-.topcoat-textarea--large {
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  vertical-align: top;
-  resize: none;
-  outline: none;
-}
-
-.textarea:disabled,
-.topcoat-textarea:disabled,
-.topcoat-textarea--large:disabled {
-  opacity: 0.3;
-  cursor: default;
-  pointer-events: none;
-}
-
-
-
-
-
-
-
-

Textarea

-
-


-
- -
-
-

HTML

-
<textarea class="topcoat-textarea" rows="6" cols="36" placeholder="Textarea"></textarea>
<br>
<br>
<textarea class="topcoat-textarea" rows="6" cols="36" placeholder="Textarea" disabled></textarea>
-
-
-

CSS

-

-.topcoat-textarea,
-.topcoat-textarea--large {
-  padding: 2rem;
-  font-size: 2.5rem;
-  font-weight: 200;
-  border-radius: 6px;
-  line-height: 3rem;
-  border: 1px solid #a5a8a8;
-  background-color: #d3d7d7;
-  box-shadow: inset 0 1px rgba(0,0,0,0.12);
-  color: #454545;
-  letter-spacing: 1px;
-}
-
-.topcoat-textarea:focus,
-.topcoat-textarea--large:focus {
-  background-color: #edf1f1;
-  color: #000;
-  border: 1px solid #0940fd;
-  box-shadow: 0 0 0 2px #6fb5f1;
-}
-
-.topcoat-textarea:disabled::-webkit-input-placeholder {
-  color: #000;
-}
-
-.topcoat-textarea:disabled::-moz-placeholder {
-  color: #000;
-}
-
-.topcoat-textarea:disabled:-ms-input-placeholder {
-  color: #000;
-}
-
-
-
-
-
-
-
-

Large Textarea

-
-


-
- -
-
-

HTML

-
<textarea class="topcoat-textarea--large" rows="6" cols="36" placeholder="Textarea"></textarea>
<br>
<br>
<textarea class="topcoat-textarea--large" rows="6" cols="36" placeholder="Textarea" disabled></textarea>
-
-
-

CSS

-

-.topcoat-textarea--large {
-  font-size: 3rem;
-  line-height: 4.375rem;
-}
-
-.topcoat-textarea--large:disabled {
-  color: #000;
-}
-
-.topcoat-textarea--large:disabled::-webkit-input-placeholder {
-  color: #000;
-}
-
-.topcoat-textarea--large:disabled::-moz-placeholder {
-  color: #000;
-}
-
-.topcoat-textarea--large:disabled:-ms-input-placeholder {
-  color: #000;
-}
-
-@font-face {
-  font-family: "Source Sans";
-  src: url("../font/SourceSansPro-Regular.otf");
-}
-
-@font-face {
-  font-family: "Source Sans";
-  src: url("../font/SourceSansPro-Light.otf");
-  font-weight: 200;
-}
-
-@font-face {
-  font-family: "Source Sans";
-  src: url("../font/SourceSansPro-Semibold.otf");
-  font-weight: 600;
-}
-
-body {
-  margin: 0;
-  padding: 0;
-  background: #dfe2e2;
-  color: #000;
-  font: 16px "Source Sans", helvetica, arial, sans-serif;
-  font-weight: 200;
-}
-
-:focus {
-  outline-color: transparent;
-  outline-style: none;
-}
-
-.topcoat-icon--menu-stack {
-  background: url("../img/hamburger_dark.svg") no-repeat;
-  background-size: cover;
-}
-
-.quarter {
-  width: 25%;
-}
-
-.half {
-  width: 50%;
-}
-
-.three-quarters {
-  width: 75%;
-}
-
-.third {
-  width: 33.333%;
-}
-
-.two-thirds {
-  width: 66.666%;
-}
-
-.full {
-  width: 100%;
-}
-
-.left {
-  text-align: left;
-}
-
-.center {
-  text-align: center;
-}
-
-.right {
-  text-align: right;
-}
-
-.reset-ui {
-  -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  background-clip: padding-box;
-  position: relative;
-  display: inline-block;
-  vertical-align: top;
-  padding: 0;
-  margin: 0;
-  font: inherit;
-  color: inherit;
-  background: transparent;
-  border: none;
-  cursor: default;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-  text-overflow: ellipsis;
-  white-space: nowrap;
-  overflow: hidden;
-}
-
-/* This file should include color and image variables corresponding to the dark theme */
-
-/* Call To Action */
-
-/* Icons */
-
-/* Navigation Bar */
-
-/* Text Input */
-
-/* Search Input */
-
-/* List */
-
-/* Checkbox */
-
-/* Overlay */
-
-/* Progress bar */
-
-/* Checkbox */
-
-/* Radio Button */
-
-/* Tab bar */
-
-/* Switch */
-
-/* Icon Button */
-
-/* Navigation bar */
-
-/* List */
-
-/* Search Input */
-
-/* Textarea */
-
-/* Checkbox */
-
-/* Radio */
-
-/* Range input */
-
-/* Search Input */
-
-/* Switch */
-
-/* This file should include color and image variables corresponding to the light theme */
-
-/* Call To Action */
-
-/* Icons */
-
-/* Navigation Bar */
-
-/* Text Input */
-
-/* List */
-
-/* Overlay */
-
-/* Progress bar */
-
-/* Checkbox */
-
-/* Range input */
-
-/* Radio Button */
-
-/* Tab bar */
-
-/* Switch */
-
-/* Containers */
-
-/* Icon Button */
-
-/* Navigation bar */
-
-/* List */
-
-/* Search Input */
-
-/* Text Area */
-
-/* Checkbox */
-
-/* Radio */
-
-/* Range input */
-
-/* Search Input */
-
-/* Switch */
-
-/* Text Input */
-
-/* Radio input */
-
-/* Overlay */
-
-/* Textarea */
-
-/* Progress bar container */
-
-/* Progress bar progress */
-
-/* Search input */
-
-/* Switch */
-
-/* Notification */
-
-
-
-
-
-
-
-
- - - - \ No newline at end of file diff --git a/www/assets/topcoat-0.7.5/dev/build/styleguide.css b/www/assets/topcoat-0.7.5/dev/build/styleguide.css deleted file mode 100755 index bcbf2a8..0000000 --- a/www/assets/topcoat-0.7.5/dev/build/styleguide.css +++ /dev/null @@ -1,495 +0,0 @@ -/*! -Copyright 2012 Adobe Systems Inc.; -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - -http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ -/* Styleguide CSS here pls ------------------------------------------------------------------------------- */ - -html { - height: 100%; - width: 100%; - position: absolute; -} - -body { - color: #444; - font: 14px "source-sans-pro", "source", helvetica, arial, sans-serif; - line-height: 21px; - margin: 0; - padding: 0; - -webkit-font-smoothing: subpixel-antialiased; -} - -.guides { -/* border: 1px solid red;*/ -} - -.space { - height: 90px; -} - -#container { - min-width: 600px; -} - -#test-container { - padding: 0 120px 30px 30px ; -} - -h1,h2,h3,h4,h5,h6 { - color: #000; - font-family: "source-l", helvetica, arial, sans-serif; - font-weight: normal; - margin: 0; -} - -h4 { - border-bottom: 1px solid #d7d7d7; - font-size: 30px; - margin: 20px 0; -} - -h5 { - font-size: 21px; -} - -h4 span { - background: #fff; - padding: 0 7px 0 0; - position: relative; - bottom: -10px; -} - -.tabular { - border: 1px solid rgba(0,0,0,0.09); - border-spacing: 0; - margin: 14px 0; -} - -th, td, .tabular td.var { - border-bottom: 1px solid #eee; - font-size: 15px; - font-weight: normal; - padding: 5px 10px; - text-align: left; -} - -th { - white-space: nowrap; -} - -.tabular tr:last-child td { - border: none; -} - -.tabular td { - font-size: 12px; - padding: 10px; -} - -.images { - width: 100% !important; -} - -.images td, -.images th { - border-right: 1px solid #eee !important; - padding: 18px; - text-align: center; - vertical-align: top; -} - -.images th { - padding: 9px; -} - -.images tr:last-child td, -.images tr th:last-child { - border-right: none !important; -} - -.images img { - width: 300px; -} - -header { - background: #3a3f42 url("../img/bg_dark.png") repeat-x; - bottom: 0; - cursor: default; - left: 0; - overflow-y: scroll; - padding: 0 0 30px 0; - position: absolute; - top: 0; - width: 220px; -} - -#main { - bottom: 0; - left: 220px; - margin: 0; - overflow-y: scroll; - padding: 0 100px 60px 40px; - position: absolute; - right: 0; - top: 0; -} - -header hgroup { - padding: 15px; -} - -header hgroup { - border-bottom: 1px solid rgba(0,0,0,0.36); - box-shadow: 0px 1px 0px rgba(255,255,255,0.11); -} - -header h1 { - color: #fff; - font-size: 18px; - text-shadow: 0 -1px 0 #000; -} - -header h2 { - color: #c7c7c7; - font-size: 12px; - text-shadow: 0 -1px 0 #000; -} - -header h3 { - color: #A4B4B7; - font-size: 14px; - text-shadow: 0 -1px 0 #000; - margin: 15px 0 5px 15px; -} - -header ul { - list-style: none; - margin: 0; - padding: 0; - width: 100%; -} - -header a { - box-sizing: border-box; - border-top: 1px solid rgba(0,0,0,0); - border-bottom: 1px solid rgba(0,0,0,0); - color: #bbb; - display: block; - font-size: 14px; - height: 24px; - line-height: 24px; - padding: 0 15px 0 30px; - text-shadow: 0 1px 0 #000; -} - -header a:link, -header a:visited { - color: #c7c7c7; - text-decoration: none; -} - -header .selected { - background: rgba(112,112,112,0.24); - border-top: 1px solid rgba(0,0,0,0); - border-bottom: 1px solid rgba(0,0,0,0); - color: #fff !important; -} - - -header a:hover { - background: rgba(112,112,112,0.24); - border-top: 1px solid rgba(0,0,0,0); - border-bottom: 1px solid rgba(0,0,0,0); - color: #fff !important; -} - -header a:focus { - border: 1px solid #0940fd; - -webkit-box-shadow: 0 0 4px #0088ff; - box-shadow: 0 0 4px #0088ff; - outline: none; - margin-left: 4px; - margin-right: 4px; - padding: 0 10px 0 25px; - background: rgba(112,112,112,0.24); - color: #fff !important; -} - -header a:active { - background: rgba(0,0,0,0.24); - border-top: 1px solid rgba(0,0,0,0.2); - border-bottom: 1px solid rgba(255,255,255,0.15); - color: #fff; -} - -h4:target span { - -webkit-animation: highlight 5s ease; - -moz-animation: highlight 5s ease; -} - - @-webkit-keyframes highlight { - 0% { color: #0083E8; text-shadow: 0 0 4px rgba(0,136,255,.69); } - 100% { color: #000; text-shadow: none; } - } - -.preview { - border-spacing: 0; - width: auto; -} - -.preview td { - padding: 15px 30px; - -webkit-touch-callout: none; - -webkit-user-select: none; - -khtml-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.bg-light { - background: #f8f8f8; - border: 1px solid rgba(0,0,0,0.09); - font-size: 12px; -} - -.fonts.tabular { - width: 100%; -} - -.fonts.tabular th.bg-white { - border-bottom: 1px solid rgba(0,0,0,0.09); -} - -.fonts.tabular th.bg-lightgray { - border-bottom: 1px solid #bdbdbd; -} - -.fonts.tabular th.bg-slategray { - border-bottom: 1px solid #5c6061; -} - -.fonts.tabular td { - vertical-align: top; - width: 33%; -} - - -/* Selection ------------------------------------------------------------------------------- */ - -::selection { - background: #e0f0fa; - color: #000; -} - -header { - -webkit-touch-callout: none; - -webkit-user-select: none; - -khtml-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -/* Scrollbars ------------------------------------------------------------------------------- */ - -::-webkit-scrollbar { - height: 8px; - width: 8px; -} - -::-webkit-scrollbar-track { - background: rgba(0,0,0,0.1); - box-shadow: inset 0 0 6px rgba(0,0,0,0); - -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0); - border-radius: 4px; - -webkit-border-radius: 4px; -} - -::-webkit-scrollbar-thumb { - border-radius: 4px; - -webkit-border-radius: 4px; - border: 1px solid rgba(255,255,255,0.15); - background: rgba(0,0,0,0.3); - box-shadow: inset 0 0 6px rgba(0,0,0,0); - -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0); -} - -::-webkit-scrollbar-thumb:window-inactive { - background: rgba(0,0,0,0.1); -} - - -/* Scrollbars ------------------------------------------------------------------------------- */ - - -/* Container */ -.modal { - /* Overlay page content */ - position: fixed; - top: 0; - left: 0; - right: 0; - bottom: 0; - background: rgba(0,0,0,0.6); - z-index: 10000; - - /* Transition opacity on open */ - -webkit-transition: opacity 200ms ease-in; - transition: opacity 200ms ease-in; - - /* Hide for now */ - opacity: 0; - pointer-events: none; - - -webkit-touch-callout: none; - -webkit-user-select: none; - -khtml-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -/* Show modal */ -.modal:target { - opacity: 1; - pointer-events: auto; -} - -/* Hide modal */ -.modal:active { - opacity: 0; -} - -/* Content */ -.modal > div { - width: 65%; - background: #fff; - position: relative; - margin: 10% auto; - - /* Default minimise animation */ - -webkit-animation: minimise 500ms linear; - - /* Prettify */ - padding: 12px 15px; - border-radius: 4px; - box-shadow: 0 15px 36px rgba(0,0,0,0.6); - background: #fff; - text-shadow: 0 1px 0 #fff; -} - -/* Override animation on modal open */ -.modal:target > div { - -webkit-animation-name: bounce; - -moz-animation-name: bounce; -} - -.modal h1 { - font-size: 24px; - padding: 0 0 10px; -} - -@-webkit-keyframes bounce { - 0% { - -webkit-transform: scale3d(1,1,1); - } - 55% { - -webkit-transform: scale3d(1,1,1); - } - 100% { - -webkit-transform: scale3d(1,1,1); - } -/* 0% { - -webkit-transform: scale3d(0.1,0.1,1); - box-shadow: 0 3px 20px rgba(0,0,0,0.9); - } - 55% { - -webkit-transform: scale3d(1,1,1); - box-shadow: 0 10px 20px rgba(0,0,0,0); - } - 75% { - -webkit-transform: scale3d(0.95,0.95,1); - box-shadow: 0 0 20px rgba(0,0,0,0.9); - } - 100% { - -webkit-transform: scale3d(1,1,1); - box-shadow: 0 3px 20px rgba(0,0,0,0.9); - } -*/ -} - -@-webkit-keyframes minimise { - 0% { - -webkit-transform: scale3d(1,1,1); - } - 100% { - -webkit-transform: scale3d(0.1,0.1,1); - } -} - -/* Modal close link */ -.modal a[href="#close"] { - position: absolute; - right: 0; - top: 0; - color: transparent; -} - -/* Reset native styles */ - .modal a[href="#close"]:focus { - outline: none; -} - -/* Create close button */ -.modal a[href="#close"]:after { - content: url("../img/close_modal.png"); - display: block; - - /* Position */ - position: absolute; - right: 15px; - top: 15px; - - /* Style */ - font-size: 12px; - text-decoration: none; - text-shadow: none; - text-align: center; - font-weight: bold; - background: #fff; -} - -.modal a[href="#close"]:focus:after, -.modal a[href="#close"]:hover:after { - -} - -.modal a[href="#close"]:focus:after { - outline: 1px solid #000; -} - -.modal a[href="#close"] { - text-shadow: none !important; -} - -/* Open modal */ -a.openmodal { - display: block; - text-align: center; -} - -a.openmodal:hover, -a.openmodal:focus { - -} \ No newline at end of file diff --git a/www/assets/topcoat-0.7.5/dev/build/styleguide.js b/www/assets/topcoat-0.7.5/dev/build/styleguide.js deleted file mode 100755 index 67f89bf..0000000 --- a/www/assets/topcoat-0.7.5/dev/build/styleguide.js +++ /dev/null @@ -1,10 +0,0 @@ -if (!document.querySelector('override')) { - var head = document.querySelector('head'); - var link = document.createElement('link'); - link.id = 'override'; - link.rel = 'stylesheet'; - link.type = 'text/css'; - link.href = '../../release/css/' + location.href.split('/').pop().split('.')[0] + '.css'; - link.media = 'all'; - head.appendChild(link); -} \ No newline at end of file diff --git a/www/assets/topcoat-0.7.5/dev/tasks/checkchromiumsrc.js b/www/assets/topcoat-0.7.5/dev/tasks/checkchromiumsrc.js deleted file mode 100755 index 6c472dd..0000000 --- a/www/assets/topcoat-0.7.5/dev/tasks/checkchromiumsrc.js +++ /dev/null @@ -1,13 +0,0 @@ -var chromiumSrc = process.env.CHROMIUM_SRC; - -module.exports = function(grunt) { - - grunt.registerTask('check_chromium_src', "Internal task to store CHROMIUM_SRC env var into chromiumSrc", function() { - if (!chromiumSrc) { - grunt.fail.warn("Please set the CHROMIUM_SRC env var to the root of your chromium sources(ends in /src)"); - } else { - grunt.log.writeln("CHROMIUM_SRC points to " + chromiumSrc.cyan); - } - }); - -} diff --git a/www/assets/topcoat-0.7.5/dev/tasks/telemetrygentest.js b/www/assets/topcoat-0.7.5/dev/tasks/telemetrygentest.js deleted file mode 100755 index 2b0bb0c..0000000 --- a/www/assets/topcoat-0.7.5/dev/tasks/telemetrygentest.js +++ /dev/null @@ -1,98 +0,0 @@ -var fs = require("fs"), - jade = require("jade"), - path = require("path"); - -module.exports = function (grunt) { - - var TELEMETRY_DIR = 'dev/test/perf/telemetry/perf/page_sets/', - MASTER_JADE = 'topcoat_telemetry.jade'; - - grunt.registerTask('perf', 'Generates performance test', function (platform, theme) { - - var perfJades = findAllPerfJadeFileInSrc(); - - var targetPlatform = platform || 'mobile', - targetTheme = theme || 'light'; - - var targetCSS = prepareCSS(targetPlatform, targetTheme); - - var jadeCompileData = {}; - - grunt.util._.forEach(perfJades, function (jadePath) { - - var jadeFileName = path.basename(jadePath).split('.')[0]; - - prepareJadeCompileData(jadeCompileData, jadePath, - jadeFileName, targetPlatform, targetTheme, targetCSS); - - createTelemetryJSON(jadeFileName); - }); - batchCompileJade(jadeCompileData); - }); - - var findAllPerfJadeFileInSrc = function () { - - var jades = grunt.file.expand('node_modules/topcoat-*/test/perf/topcoat_*.jade') - .concat('node_modules/topcoat-checkbox/test/perf/checkbox-test.jade'); - - if (jades.length === 0){ - throw new Error("ERROR: No jade file is found in src/../test/perf/"); - } - - return jades; - }; - - var prepareCSS = function(platform, theme) { - - return "release/css/topcoat-" + platform + "-" + theme + ".min.css"; - }; - - var prepareJadeCompileData = function (jadeCompileData, jadePath, - caseName, platform, theme, css) { - - var jadeContent = fs.readFileSync(jadePath, "utf8"), - getHtml = jade.compile(jadeContent); - - jadeCompileData[caseName] = { - options: { - data: { - platform: platform, - theme: theme, - css: css, - name: caseName, - componentHTML: getHtml() - } - }, - src: TELEMETRY_DIR + "topcoat/" + MASTER_JADE, - dest: TELEMETRY_DIR + "topcoat/" + caseName + ".test.html" - }; - }; - - var createTelemetryJSON = function (caseName) { - - var jsonContent = { - "description": "Test", - "archive_data_file": "../data/topcoat_buttons.json", - "pages": [ - { - "url": "file:///topcoat/" + caseName + ".test.html", - "smoothness": { - "action": "scrolling_action" - } - } - ] - }; - - var jsonFilePATH = TELEMETRY_DIR + caseName + '.test.json'; - - fs.writeFileSync( - jsonFilePATH, - JSON.stringify(jsonContent, null, 4), - 'utf8'); - }; - - var batchCompileJade = function(data){ - grunt.config('jade', data); - grunt.task.run('jade'); - }; -}; diff --git a/www/assets/topcoat-0.7.5/dev/tasks/telemetrysubmit.js b/www/assets/topcoat-0.7.5/dev/tasks/telemetrysubmit.js deleted file mode 100755 index f9f6fb2..0000000 --- a/www/assets/topcoat-0.7.5/dev/tasks/telemetrysubmit.js +++ /dev/null @@ -1,101 +0,0 @@ -module.exports = function(grunt) { - - grunt.registerTask('telemetry-submit', 'Submit telemetry test results', function(gitCWD) { - - var exec = require("child_process").exec, - commandToBeExecuted = 'git log --pretty=format:"%H %ci" | head -n 1', - done = this.async(); - - var part1 = { - properties: { - path: { - message: 'Path to telemetry output file', - required: true - }, - device: { - message: 'Device on which the test ran', - required: true - } - } - }; - - var part2 = { - properties: { - test: { - message: 'What is the name of the test?', - required: true, - default: '' - }, - type: { - message: 'Is it a test (nightly) ?', - required: true, - default: 'Yes' - } - } - }; - - exec(commandToBeExecuted, { cwd: gitCWD }, function(error, stdout, stderr) { - if (error) { - grunt.log.error('Error'); - console.log(error); - done(); - } else { - - var path = grunt.option('path') - , device = grunt.option('device') - , test = grunt.option('test') - // use env variables to overwrite the location - // where the test results end up, for CI example - , host = process.env.TOPCOAT_BENCHMARK_SERVER - , port = process.env.TOPCOAT_BENCHMARK_PORT - , type = grunt.option('type') - , date = grunt.option('date') - , snapshot - , submitData = require('../test/perf/telemetry/lib/submitData') - , fileName = require('../test/perf/telemetry/lib/extractFileName') - , prompt = require('prompt') - ; - - if (!path || !test || !device) { - // Dummy test to see if it was called without arguments - // in this case we request the user for data - - prompt.start(); - prompt.get(part1, function (err, result) { - var options = result; - - part2.properties.test.default = fileName(result.path); - - prompt.get(part2, function (err, result) { - for (var i in result) - options[i] = result[i]; - - if (options.type.match(/y/gi)) - options.date = 'snapshot ' + new Date().toISOString(); - else - options.date = stdout; - - submitData(options.date, options.path, { - device: options.device, - test: options.test - }, { - host : host, - port : port - }); - }); - }); - } else { - // This is in case for automated tasks that submits the data - submitData(stdout, path, { - device: device, - test: test - }, { - host : host, - port : port - }); - } - } - }); - - }); -}; \ No newline at end of file diff --git a/www/assets/topcoat-0.7.5/dev/test/perf/telemetry/README.md b/www/assets/topcoat-0.7.5/dev/test/perf/telemetry/README.md deleted file mode 100755 index 0fc795e..0000000 --- a/www/assets/topcoat-0.7.5/dev/test/perf/telemetry/README.md +++ /dev/null @@ -1,79 +0,0 @@ -Performance tests based on chromium telemetry (see https://github.com/topcoat/topcoat/wiki/Measuring-performance for details) - -# Preparing to run the tests -A few steps are required before you can run the telemetry tests. - -First of all, you need to download chromium source code locally, as described on http://www.chromium.org/developers/how-tos/get-the-code. No need to compile, just download it. -Then export the location for the 'src' folder in the CHROMIUM_SRC environment variable, like in -``` -export CHROMIUM_SRC = /Users/cataling/work/chromium/home/src_tarball/tarball/chromium/src/ -``` - -Then you need to manually patch a little bit two of the benchmark files (the patches are just one liners, it they get bigger we'll just duplicate the benchmarks in topcoat). Locate the files named `loading_benchmark.py` and `smoothness_benchmark.py` in `$CHROMIUM_SRC/tools/perf/perf_tools`. Inside, look for the method `MeasurePage`, and find an appropriate place to paste `results.Add("UserAgent", "", tab.EvaluateJavaScript("navigator.userAgent"));`. This makes the benchmarks include the user agent string as part of their output, and we need this info to submit the results to the server. - -NOTE: we should make a patch for these modifications - -Next you can prepare the telemetry tests: -``` -grunt telemetry -``` -This does few things: -* it generates html snippets based on grunt template from test/perf/topcoat-*.test.jade of each of Topcoat component. So make sure you build Topcoat first, by ```grunt default```, so that Topcoat components are downloaded into the src folder; -* then it uses that html snippet to generate the actual test file from topcoat/test/perf /telemetry/perf/page_sets/topcoat/topcoat_telemetry.jade; -* last, it copies those test files to the right location in chromium telemetry tests. - -# Running performance tests locally -You can run a telemetry test with: -``` -cd $CHROMIUM_SRC/tools/perf -./run_multipage_benchmarks --browser=system loading_benchmark page_sets/topcoat_buttons-base.test.json -o /tmp/loading_benchmark_topcoat_buttons-base.txt -./run_multipage_benchmarks --browser=system smoothness_benchmark page_sets/topcoat_buttons-base.test.json -o /tmp/smoothness_benchmark_topcoat_buttons-base.txt -``` -We store the benchmark output in a file - the next script will take this output and push it to the server - -For steps of running performance tests on Android: -https://github.com/topcoat/topcoat/wiki/Running-TopCoat-Performance-Test-on-Android - -# Pushing benchmark results to the server - -There is a grunt task that automates the process `$ grunt telemetry-submit --path=test_results.txt --type=sha|snapshot [--device] [--test]` - -Device is an optional parameter and sets the device on which the test ran. -For `type snapshot` you have to send in a date param as well. You have to use: `date -u +"%Y-%m-%dT%H:%M:%SZ"` - -Type is either `sha` or `snapshot`. - - * `sha` is for running the tests on a stable version (in black) - * `snapshot` is for running custom nightly builds of topcoat (in red) - * ![x axis perf view](http://i.imgur.com/DrKxFlI.png) - -Test is an optional parameter and it overrides the default test name ( which is the name of the file from path ). - -There is a `settings.js` file located under `/test/perf/telemetry/lib/` where you can change the address where to submit. It is currently set for http://bench.topcoat.io/v2/benchmark - -If you set an `TOPCOAT_BENCHMARK_SERVER` and `TOPCOAT_BENCHMARK_PORT` env variables you can override the default settings. - -You can view the results at http://bench.topcoat.io - -# Running all tests -There's also a handy script to run all the performance tests and push the results on the server. -It's located at `https://github.com/topcoat/topcoat/blob/master/test/perf/telemetry/bin/runAll.py`. -Check out the script for details on how to run it. - -# Adding a new performance test -Before adding new tests, you should make yourself comfortable with the chromium telemetry framework and running telemetry tests in chrome. - -Topcoat performance tests are located in `test/perf/telemetry/perf/page_sets` (the folder convention matches the one from chromium telemetry tests). When building telemetry with `grunt telemetry` this folder is copied over `page_sets` in chromium src. There is one .json file that describes each test, its structure is as required by chromium telemetry framework. You will need to add a new json file to describe your test - just start from an existing ones. - -The files for the tests are located under the `topcoat` folder. You can either add html file directly, or use jade. Jade files are converted to html when you run `grunt telemetry`. The html files will be generated under `page_sets` in chromium src. Currently, if you're adding a jade file you need to manually add it to `Gruntfile.js` (just look up where topcoat_buttons.jade is added). If future we'll get rid of this. - -Inside the test files (html or jade) you can reference the topcoat assets (css, fonts, images) under "./release/". The whole `./release` folder under topcoat root and all the components are copied there by `grunt telemetry`. - -In the json file you can reference the test file to load using `file:///topcoat/` URLs. Use .html here even if you use .jade for tests - you want to reference the generated html file, not the jade template. When running the tests, telemetry will instantiate a local HTTP server and rewrite the URLs, they will not be loaded with the file protocol. - -From telemetry we're currently using loading and smoothness benchmarks. The runAll.sh script currently runs these two benchmarks on all the .json tests under page_sets. - -Note 1: runAll.py uses CEF ([chromium embedding framework](https://code.google.com/p/chromiumembedded/)) to run the tests on desktop (Win and Mac) by default. This is because the target for TopCoat are web applications, not web sites, and CEF is the preferred way to develop web applications on desktop. -We're currently using a custom CEF build because telemetry does not work in CEF by default. A patch has been submitted to CEF upstream (https://code.google.com/p/chromiumembedded/issues/detail?id=917&sort=-id) to fix this. - -Note 2: part of this will probably change when we switch to the new components/themes architecture. diff --git a/www/assets/topcoat-0.7.5/dev/test/perf/telemetry/bin/runAll.py b/www/assets/topcoat-0.7.5/dev/test/perf/telemetry/bin/runAll.py deleted file mode 100755 index 3dd8aba..0000000 --- a/www/assets/topcoat-0.7.5/dev/test/perf/telemetry/bin/runAll.py +++ /dev/null @@ -1,200 +0,0 @@ -# Copyright 2012 Adobe Systems Inc.; -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - - -# Runs all the telemetry tests and pushes results to the server -# -# Make sure to run in from its folder! -# -# Env vars used: -# - TestHelper.CHROMIUM_SRC: path to chromium src -# - DEVICE_NAME: a label to identify the machine running the tests when submitting results -# - CEF_HOME: path to CEF binaries (needed only if USE_CEF is set to True) -# - USE_CEF: if run with CEF, set this to 'True' -# - -import os -import sys -import shutil -import subprocess -import glob -import platform -import shutil - - -class TestHelper(): - GRUNT = "grunt" - RESULTS_DIR = "/tmp/topcoat-telemetry" - BROWSER = "system" - BROWSER_EXEC = None - SUBMIT_TYPE = "SHA" - - CHROMIUM_SRC = os.environ.get("CHROMIUM_SRC") - DEVICE_NAME = os.environ.get("DEVICE_NAME") - CEF_HOME = os.environ.get("CEF_HOME") - USE_CEF = os.environ.get("USE_CEF") - - @staticmethod - def init(targetPlatform, targetTheme): - TestHelper._checkEnvVars() - TestHelper._prepareProperties() - TestHelper._prepareResultsDir() - TestHelper._cleanTelemetryTests() - TestHelper._prepareTelemetryTests(targetPlatform, targetTheme) - - @staticmethod - def _getPlatform(): - p = platform.platform().lower() - if p.find('windows') != -1: return "Win" - if p.find('darwin') != -1: return "Mac" - if p.find('linux') != -1: return "Lin" - - @staticmethod - def _checkEnvVars(): - if not TestHelper.DEVICE_NAME: - raise RuntimeError("Please set DEVICE_NAME env var (no spaces allowed yet)") - - if not TestHelper.CHROMIUM_SRC: - raise RuntimeError("Please set CHROMIUM_SRC env var.") - - if not TestHelper.USE_CEF: - raise RuntimeError("Please set USE_CEF env var.") - - if (TestHelper.USE_CEF == 'True') and (not TestHelper.CEF_HOME): - raise RuntimeError("Please set CEF_HOME if you set USE_CEF to True") - - @staticmethod - def _prepareProperties(): - p = TestHelper._getPlatform() - - if p == "Win": - TestHelper.GRUNT = "grunt.cmd" - TestHelper.RESULTS_DIR = "C:\\tmp\\topcoat-telemetry" - TestHelper.BROWSER = "exact" - TestHelper.BROWSER_EXEC = "%s\\app\\cefclient.exe" % TestHelper.CEF_HOME - - if p == "Mac": - if TestHelper.USE_CEF: - TestHelper.BROWSER = "exact" - TestHelper.BROWSER_EXEC = "%s/app/cefclient.app/Contents/MacOS/cefclient" % TestHelper.CEF_HOME - - if p == "Lin": - TestHelper.BROWSER = "android-chrome-beta" - - @staticmethod - def _prepareResultsDir(): - print "runAll.py: Preparing results dir %s" % TestHelper.RESULTS_DIR - if os.path.isdir(TestHelper.RESULTS_DIR): - shutil.rmtree(TestHelper.RESULTS_DIR) - os.makedirs(TestHelper.RESULTS_DIR) - - @staticmethod - def _prepareTelemetryTests(targetPlatform, targetTheme): - print "runAll.py: Preparing telemetry tests" - subprocess.check_call([TestHelper.GRUNT, 'telemetry:'+targetPlatform+':'+targetTheme]) - - @staticmethod - def _cleanTelemetryTests(): - print "runAll.py: clean up CHROMIUM_SRC/tools/perf/page_sets/topcoat" - path = TestHelper.CHROMIUM_SRC + "tools/perf/page_sets/topcoat" - if os.path.exists(path): - shutil.rmtree(path) - - @staticmethod - def runTests(user_defined_test_list, how_many_rounds_to_run_the_test): - print "runAll.py: Running telemetry tests, results in %s" % TestHelper.RESULTS_DIR - - telemetry_tests = ["loading_benchmark", "smoothness_benchmark"] - - if user_defined_test_list and len(user_defined_test_list) != 0: - topcoat_test_files = user_defined_test_list - else: - topcoat_test_files = glob.glob(os.getcwd() + "/../perf/page_sets/*.json") - - def genCmd(): - cmd = [ - "python", - TestHelper.CHROMIUM_SRC + "/tools/perf/run_multipage_benchmarks", - "--browser=" + TestHelper.BROWSER, - telemetry_test, - TestHelper.CHROMIUM_SRC + "tools/perf/page_sets/%s" % topcoat_test_file, - "-o", TestHelper.RESULTS_DIR + "/%s_%s-%s.txt" % (telemetry_test, topcoat_test_name, test_round) - ] - if TestHelper.BROWSER_EXEC: - cmd.insert(3, "--browser-executable=" + TestHelper.BROWSER_EXEC) - return cmd - - for tf in topcoat_test_files: - topcoat_test_file = tf.split(os.sep)[-1] - topcoat_test_name = topcoat_test_file.split(".")[0] - print "runAll.py: Running tests for %s" % topcoat_test_name - - for telemetry_test in telemetry_tests: - for test_round in range(how_many_rounds_to_run_the_test): - cmd = genCmd() - subprocess.check_call(cmd) - - @staticmethod - def submitResults(git_cwd): - print "runAll.py: Pushing telemetry data to the server" - result_files = glob.glob(TestHelper.RESULTS_DIR + "/*.txt") - for rf in result_files: - subprocess.check_call([ - TestHelper.GRUNT, - "telemetry-submit:" + git_cwd, - "--path=" + rf, - "--device=" + TestHelper.DEVICE_NAME, - "--test=" + rf.split(os.sep)[-1][:-6], - "--type=" + TestHelper.SUBMIT_TYPE - ]) - - -if __name__ == "__main__": - - # Usage: - # ./python runAll.py --platform=VALUE --theme=VALUE [--gitCWD=VALUE] [--test=VALUE] [--round=VALUE] - # --platform= desktop or mobile - # --theme= light or dark - # [optional] --gitCWD=PATH_WHERE_YOU_WANT_TO_RUN_GIT_LOG, e.g. src/skins/button - # [optional] --test=ONE_OR_MORE_TESTS_YOU_WANT_TO_RUN, e.g. topcoat_button.test.json - # [optional] --test=HOW_MANY_ROUNDS_TO_RUN_THE_TEST, default is 1. - - platfrm = theme = git_cwd = test_list = None - test_round = 1 - - args = sys.argv[1:] - - for arg in args: - arg_key, arg_val = arg.split('=') - if arg_key == '--platform': - platfrm = arg_val - elif arg_key == '--theme': - theme = arg_val - elif arg_key == '--gitCWD': - git_cwd = arg_val - elif arg_key == '--test': - test_list = arg_val.split(',') - elif arg_key == '--round': - test_round = int(arg_val) - else: - print "%s is not recognized." - - if not platform or not theme: - raise RuntimeError("ERROR: --platform and --theme must be set.") - - if not git_cwd: - git_cwd = '' - - TestHelper.init(platfrm, theme) - TestHelper.runTests(test_list, test_round) - TestHelper.submitResults(git_cwd) \ No newline at end of file diff --git a/www/assets/topcoat-0.7.5/dev/test/perf/telemetry/bin/runAll.sh b/www/assets/topcoat-0.7.5/dev/test/perf/telemetry/bin/runAll.sh deleted file mode 100755 index aa088c0..0000000 --- a/www/assets/topcoat-0.7.5/dev/test/perf/telemetry/bin/runAll.sh +++ /dev/null @@ -1,105 +0,0 @@ -#!/bin/sh -# Copyright 2012 Adobe Systems Inc.; -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - - -# Runs all the telemetry tests and pushes results to the server -# -# Make sure to run in from its folder! -# -# Env vars used: -# - CHROMIUM_SRC: path to chromium src -# - DEVICE_NAME: a label to identify the machine running the tests when submitting results -# - CEF_HOME: path to CEF binaries (needed only if USE_CEF is set to True) -# - -RESULTS_DIR=/tmp/topcoat-telemetry -USE_CEF=true - -function checkEnvVars() { - if [ -z "$DEVICE_NAME" ] - then - echo "Please set DEVICE_NAME env var (no spaces allowed yet)" - exit 1 - fi - - if [ -z "$CHROMIUM_SRC" ] - then - echo "Please set CHROMIUM_SRC env var" - exit 1 - fi - - if ($USE_CEF) - then - if [ -z "$CEF_HOME" ] - then - echo "You need to set CEF_HOME if yout set USE_CEF to True" - exit 1 - fi - fi -} - -function prepareResultsDir() { - echo "runAll.sh: Preparing results dir $RESULTS_DIR" - rm -rf $RESULTS_DIR - mkdir $RESULTS_DIR -} - -function prepareTelemetryTests() { - echo "runAll.sh: Preparing telemetry tests" - grunt telemetry -} - -function runTests() { - echo "runAll.sh: Running telemetry tests, resuls in $RESULTS_DIR" - - if ($USE_CEF) - then - browserParams="--browser=exact --browser-executable=$CEF_HOME/app/cefclient.app/Contents/MacOS/cefclient" - else - browserParams="--browser=system" - fi - - testFiles=$(ls ../perf/page_sets/*.json); - - currentDir=`pwd` - cd $CHROMIUM_SRC/tools/perf - - for test in $testFiles - do - testFileBaseName=$(basename $test) #ends with .json - testName=$(echo $testFileBaseName | cut -d '.' -f 1) - echo "runAll.sh: Running tests for $testName" - ./run_multipage_benchmarks $browserParams loading_benchmark page_sets/$testFileBaseName -o $RESULTS_DIR/loading_benchmark_$testName.txt - ./run_multipage_benchmarks $browserParams smoothness_benchmark page_sets/$testFileBaseName -o $RESULTS_DIR/smoothness_benchmark_$testName.txt - done - - cd $currentDir -} - -function submitResults() { - echo "runAll.sh: Pushing telemetry data to the server" - - for resultFile in $RESULTS_DIR/* - do - grunt telemetry-submit --path=$resultFile --device $DEVICE_NAME - done -} - - -checkEnvVars -prepareResultsDir -prepareTelemetryTests -runTests -submitResults - diff --git a/www/assets/topcoat-0.7.5/dev/test/perf/telemetry/lib/csvToJSON.js b/www/assets/topcoat-0.7.5/dev/test/perf/telemetry/lib/csvToJSON.js deleted file mode 100755 index b5d0594..0000000 --- a/www/assets/topcoat-0.7.5/dev/test/perf/telemetry/lib/csvToJSON.js +++ /dev/null @@ -1,56 +0,0 @@ -/* -Copyright 2012 Adobe Systems Inc.; -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - -http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -"use strict"; - -var parseCSV = function(file, cb) { - - var fs = require('fs') - , filename = file - , csv = require('csv') - ; - - var header = []; - var values = []; - var json = {}; - - csv() - .from.stream(fs.createReadStream(file)) - .transform(function(row, index){ - //in case there are blank lines in between key & value on Win7 - if (row[0] == ""){ - return null; - }else{ - return row; - } - }) - .on('record', function(row,index){ - if (index === 0) - header.push(row); - else - values.push(row); - }) - .on('end', function(count){ - header[0].forEach(function (h, idx) { - json[h] = values[0][idx]; - }); - cb(json); - }) - .on('error', function(error){ - console.log(error.message); - }); -}; - -module.exports = parseCSV; \ No newline at end of file diff --git a/www/assets/topcoat-0.7.5/dev/test/perf/telemetry/lib/extractFileName.js b/www/assets/topcoat-0.7.5/dev/test/perf/telemetry/lib/extractFileName.js deleted file mode 100755 index f3446e5..0000000 --- a/www/assets/topcoat-0.7.5/dev/test/perf/telemetry/lib/extractFileName.js +++ /dev/null @@ -1,12 +0,0 @@ -var extractFileName = function (path) { - if (path.split('/').length > 1) { - sep = '/'; - } else if (path.split('\\').length > 1) { - sep = '\\'; - } else { - throw new Error('ERROR: the separator in test result file path is neither "/" nor "\\".'); - } - return path.split(sep).pop().split('.')[0]; -}; - -module.exports = extractFileName; \ No newline at end of file diff --git a/www/assets/topcoat-0.7.5/dev/test/perf/telemetry/lib/settings.js b/www/assets/topcoat-0.7.5/dev/test/perf/telemetry/lib/settings.js deleted file mode 100755 index b701064..0000000 --- a/www/assets/topcoat-0.7.5/dev/test/perf/telemetry/lib/settings.js +++ /dev/null @@ -1,31 +0,0 @@ -/* -Copyright 2012 Adobe Systems Inc.; -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - -http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -function settings (contentLength) { - var post_options = { - host: 'localhost', - port: '3000', - path: '/v2/benchmark', - method: 'POST', - headers: { - 'Content-Type': 'application/x-www-form-urlencoded', - 'Content-Length': contentLength - } - }; - - return post_options; -} - -module.exports = settings; diff --git a/www/assets/topcoat-0.7.5/dev/test/perf/telemetry/lib/submitData.js b/www/assets/topcoat-0.7.5/dev/test/perf/telemetry/lib/submitData.js deleted file mode 100755 index d3f732d..0000000 --- a/www/assets/topcoat-0.7.5/dev/test/perf/telemetry/lib/submitData.js +++ /dev/null @@ -1,61 +0,0 @@ -/* -Copyright 2012 Adobe Systems Inc.; -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - -http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -var submitData = function (stdout, path, args, destination) { - var querystring = require('querystring'); - var http = require('http'); - var fs = require('fs'); - var parse = require('./csvToJSON'); - var postOptions = require('./settings'); - var fileName = require('./extractFileName.js'); - - var post_data = {}; - console.log(path); - parse(path, function (j) { - post_data = { - resultName : j - }; - - var version = stdout.split(' '); - - post_data.commit = version.shift(); - post_data.date = version.join(' '); - post_data.test = args.test || fileName(path); - post_data.device = args.device || 'device?'; - post_data = querystring.stringify({data : JSON.stringify(post_data)}); - post_options = postOptions(post_data.length); - if (destination.host && destination.port) { - var location = destination.host.split('/'); - - post_options.host = location.shift(); - post_options.port = destination.port; - } - // Set up the request - var post_req = http.request(post_options, function(res) { - res.setEncoding('utf8'); - res.on('data', function(chunk) { - console.log(chunk); - }); - }); - - // post the data - post_req.write(post_data); - post_req.end(); - - }); - -}; - -module.exports = submitData; \ No newline at end of file diff --git a/www/assets/topcoat-0.7.5/dev/test/perf/telemetry/perf/page_sets/topcoat/topcoat_telemetry.jade b/www/assets/topcoat-0.7.5/dev/test/perf/telemetry/perf/page_sets/topcoat/topcoat_telemetry.jade deleted file mode 100755 index c38b00f..0000000 --- a/www/assets/topcoat-0.7.5/dev/test/perf/telemetry/perf/page_sets/topcoat/topcoat_telemetry.jade +++ /dev/null @@ -1,17 +0,0 @@ -repeats = 200 - -doctype 5 -html - head - meta(charset="utf-8") - meta(name="format-detection", content="telephone=no") - meta(name="viewport", content="user-scalable=no, initial-scale=1, maximum-scale=1, width=device-width, height=device-width, target-densitydpi=device-dpi") - - title #{name} test - | - - body - -while (repeats > 0) - -var repeats = repeats - 1 - p - | !{componentHTML} diff --git a/www/assets/topcoat-0.7.5/font/LICENSE.txt b/www/assets/topcoat-0.7.5/font/LICENSE.txt deleted file mode 100755 index d154618..0000000 --- a/www/assets/topcoat-0.7.5/font/LICENSE.txt +++ /dev/null @@ -1,93 +0,0 @@ -Copyright 2010, 2012 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name 'Source'. All Rights Reserved. Source is a trademark of Adobe Systems Incorporated in the United States and/or other countries. - -This Font Software is licensed under the SIL Open Font License, Version 1.1. - -This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL - - ------------------------------------------------------------ -SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ------------------------------------------------------------ - -PREAMBLE -The goals of the Open Font License (OFL) are to stimulate worldwide -development of collaborative font projects, to support the font creation -efforts of academic and linguistic communities, and to provide a free and -open framework in which fonts may be shared and improved in partnership -with others. - -The OFL allows the licensed fonts to be used, studied, modified and -redistributed freely as long as they are not sold by themselves. The -fonts, including any derivative works, can be bundled, embedded, -redistributed and/or sold with any software provided that any reserved -names are not used by derivative works. The fonts and derivatives, -however, cannot be released under any other type of license. The -requirement for fonts to remain under this license does not apply -to any document created using the fonts or their derivatives. - -DEFINITIONS -"Font Software" refers to the set of files released by the Copyright -Holder(s) under this license and clearly marked as such. This may -include source files, build scripts and documentation. - -"Reserved Font Name" refers to any names specified as such after the -copyright statement(s). - -"Original Version" refers to the collection of Font Software components as -distributed by the Copyright Holder(s). - -"Modified Version" refers to any derivative made by adding to, deleting, -or substituting -- in part or in whole -- any of the components of the -Original Version, by changing formats or by porting the Font Software to a -new environment. - -"Author" refers to any designer, engineer, programmer, technical -writer or other person who contributed to the Font Software. - -PERMISSION & CONDITIONS -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Font Software, to use, study, copy, merge, embed, modify, -redistribute, and sell modified and unmodified copies of the Font -Software, subject to the following conditions: - -1) Neither the Font Software nor any of its individual components, -in Original or Modified Versions, may be sold by itself. - -2) Original or Modified Versions of the Font Software may be bundled, -redistributed and/or sold with any software, provided that each copy -contains the above copyright notice and this license. These can be -included either as stand-alone text files, human-readable headers or -in the appropriate machine-readable metadata fields within text or -binary files as long as those fields can be easily viewed by the user. - -3) No Modified Version of the Font Software may use the Reserved Font -Name(s) unless explicit written permission is granted by the corresponding -Copyright Holder. This restriction only applies to the primary font name as -presented to the users. - -4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font -Software shall not be used to promote, endorse or advertise any -Modified Version, except to acknowledge the contribution(s) of the -Copyright Holder(s) and the Author(s) or with their explicit written -permission. - -5) The Font Software, modified or unmodified, in part or in whole, -must be distributed entirely under this license, and must not be -distributed under any other license. The requirement for fonts to -remain under this license does not apply to any document created -using the Font Software. - -TERMINATION -This license becomes null and void if any of the above conditions are -not met. - -DISCLAIMER -THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT -OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE -COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL -DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM -OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/www/assets/topcoat-0.7.5/font/SourceCodePro-Black.otf b/www/assets/topcoat-0.7.5/font/SourceCodePro-Black.otf deleted file mode 100755 index ba47f3d..0000000 Binary files a/www/assets/topcoat-0.7.5/font/SourceCodePro-Black.otf and /dev/null differ diff --git a/www/assets/topcoat-0.7.5/font/SourceCodePro-Bold.otf b/www/assets/topcoat-0.7.5/font/SourceCodePro-Bold.otf deleted file mode 100755 index b8a2f57..0000000 Binary files a/www/assets/topcoat-0.7.5/font/SourceCodePro-Bold.otf and /dev/null differ diff --git a/www/assets/topcoat-0.7.5/font/SourceCodePro-ExtraLight.otf b/www/assets/topcoat-0.7.5/font/SourceCodePro-ExtraLight.otf deleted file mode 100755 index 5cb8e5f..0000000 Binary files a/www/assets/topcoat-0.7.5/font/SourceCodePro-ExtraLight.otf and /dev/null differ diff --git a/www/assets/topcoat-0.7.5/font/SourceCodePro-Light.otf b/www/assets/topcoat-0.7.5/font/SourceCodePro-Light.otf deleted file mode 100755 index e3c0a74..0000000 Binary files a/www/assets/topcoat-0.7.5/font/SourceCodePro-Light.otf and /dev/null differ diff --git a/www/assets/topcoat-0.7.5/font/SourceCodePro-Regular.otf b/www/assets/topcoat-0.7.5/font/SourceCodePro-Regular.otf deleted file mode 100755 index 40208be..0000000 Binary files a/www/assets/topcoat-0.7.5/font/SourceCodePro-Regular.otf and /dev/null differ diff --git a/www/assets/topcoat-0.7.5/font/SourceCodePro-Semibold.otf b/www/assets/topcoat-0.7.5/font/SourceCodePro-Semibold.otf deleted file mode 100755 index 65b82d1..0000000 Binary files a/www/assets/topcoat-0.7.5/font/SourceCodePro-Semibold.otf and /dev/null differ diff --git a/www/assets/topcoat-0.7.5/font/SourceSansPro-Black.otf b/www/assets/topcoat-0.7.5/font/SourceSansPro-Black.otf deleted file mode 100755 index 13338c2..0000000 Binary files a/www/assets/topcoat-0.7.5/font/SourceSansPro-Black.otf and /dev/null differ diff --git a/www/assets/topcoat-0.7.5/font/SourceSansPro-BlackIt.otf b/www/assets/topcoat-0.7.5/font/SourceSansPro-BlackIt.otf deleted file mode 100755 index f5a7490..0000000 Binary files a/www/assets/topcoat-0.7.5/font/SourceSansPro-BlackIt.otf and /dev/null differ diff --git a/www/assets/topcoat-0.7.5/font/SourceSansPro-Bold.otf b/www/assets/topcoat-0.7.5/font/SourceSansPro-Bold.otf deleted file mode 100755 index 8998f3d..0000000 Binary files a/www/assets/topcoat-0.7.5/font/SourceSansPro-Bold.otf and /dev/null differ diff --git a/www/assets/topcoat-0.7.5/font/SourceSansPro-BoldIt.otf b/www/assets/topcoat-0.7.5/font/SourceSansPro-BoldIt.otf deleted file mode 100755 index 071d0c3..0000000 Binary files a/www/assets/topcoat-0.7.5/font/SourceSansPro-BoldIt.otf and /dev/null differ diff --git a/www/assets/topcoat-0.7.5/font/SourceSansPro-ExtraLight.otf b/www/assets/topcoat-0.7.5/font/SourceSansPro-ExtraLight.otf deleted file mode 100755 index 43e0c69..0000000 Binary files a/www/assets/topcoat-0.7.5/font/SourceSansPro-ExtraLight.otf and /dev/null differ diff --git a/www/assets/topcoat-0.7.5/font/SourceSansPro-ExtraLightIt.otf b/www/assets/topcoat-0.7.5/font/SourceSansPro-ExtraLightIt.otf deleted file mode 100755 index 01ac876..0000000 Binary files a/www/assets/topcoat-0.7.5/font/SourceSansPro-ExtraLightIt.otf and /dev/null differ diff --git a/www/assets/topcoat-0.7.5/font/SourceSansPro-It.otf b/www/assets/topcoat-0.7.5/font/SourceSansPro-It.otf deleted file mode 100755 index 51577d6..0000000 Binary files a/www/assets/topcoat-0.7.5/font/SourceSansPro-It.otf and /dev/null differ diff --git a/www/assets/topcoat-0.7.5/font/SourceSansPro-Light.otf b/www/assets/topcoat-0.7.5/font/SourceSansPro-Light.otf deleted file mode 100755 index 9d8fb28..0000000 Binary files a/www/assets/topcoat-0.7.5/font/SourceSansPro-Light.otf and /dev/null differ diff --git a/www/assets/topcoat-0.7.5/font/SourceSansPro-LightIt.otf b/www/assets/topcoat-0.7.5/font/SourceSansPro-LightIt.otf deleted file mode 100755 index e03c41c..0000000 Binary files a/www/assets/topcoat-0.7.5/font/SourceSansPro-LightIt.otf and /dev/null differ diff --git a/www/assets/topcoat-0.7.5/font/SourceSansPro-Regular.otf b/www/assets/topcoat-0.7.5/font/SourceSansPro-Regular.otf deleted file mode 100755 index 7b6fa55..0000000 Binary files a/www/assets/topcoat-0.7.5/font/SourceSansPro-Regular.otf and /dev/null differ diff --git a/www/assets/topcoat-0.7.5/font/SourceSansPro-Semibold.otf b/www/assets/topcoat-0.7.5/font/SourceSansPro-Semibold.otf deleted file mode 100755 index 6b39aa4..0000000 Binary files a/www/assets/topcoat-0.7.5/font/SourceSansPro-Semibold.otf and /dev/null differ diff --git a/www/assets/topcoat-0.7.5/font/SourceSansPro-SemiboldIt.otf b/www/assets/topcoat-0.7.5/font/SourceSansPro-SemiboldIt.otf deleted file mode 100755 index 8a668e4..0000000 Binary files a/www/assets/topcoat-0.7.5/font/SourceSansPro-SemiboldIt.otf and /dev/null differ diff --git a/www/assets/topcoat-0.7.5/img/avatar.png b/www/assets/topcoat-0.7.5/img/avatar.png deleted file mode 100755 index c3a1306..0000000 Binary files a/www/assets/topcoat-0.7.5/img/avatar.png and /dev/null differ diff --git a/www/assets/topcoat-0.7.5/img/bg_dark.png b/www/assets/topcoat-0.7.5/img/bg_dark.png deleted file mode 100755 index e44a7c4..0000000 Binary files a/www/assets/topcoat-0.7.5/img/bg_dark.png and /dev/null differ diff --git a/www/assets/topcoat-0.7.5/img/breadcrumb.png b/www/assets/topcoat-0.7.5/img/breadcrumb.png deleted file mode 100755 index b2cf4f3..0000000 Binary files a/www/assets/topcoat-0.7.5/img/breadcrumb.png and /dev/null differ diff --git a/www/assets/topcoat-0.7.5/img/checkbox_checked.png b/www/assets/topcoat-0.7.5/img/checkbox_checked.png deleted file mode 100755 index daaa1a8..0000000 Binary files a/www/assets/topcoat-0.7.5/img/checkbox_checked.png and /dev/null differ diff --git a/www/assets/topcoat-0.7.5/img/checkbox_checked_dark.png b/www/assets/topcoat-0.7.5/img/checkbox_checked_dark.png deleted file mode 100755 index 777ddcf..0000000 Binary files a/www/assets/topcoat-0.7.5/img/checkbox_checked_dark.png and /dev/null differ diff --git a/www/assets/topcoat-0.7.5/img/checkbox_unchecked.png b/www/assets/topcoat-0.7.5/img/checkbox_unchecked.png deleted file mode 100755 index 4ef08dd..0000000 Binary files a/www/assets/topcoat-0.7.5/img/checkbox_unchecked.png and /dev/null differ diff --git a/www/assets/topcoat-0.7.5/img/checkbox_unchecked_dark.png b/www/assets/topcoat-0.7.5/img/checkbox_unchecked_dark.png deleted file mode 100755 index 3f5e6c9..0000000 Binary files a/www/assets/topcoat-0.7.5/img/checkbox_unchecked_dark.png and /dev/null differ diff --git a/www/assets/topcoat-0.7.5/img/checkmark_bw.svg b/www/assets/topcoat-0.7.5/img/checkmark_bw.svg deleted file mode 100755 index f737096..0000000 --- a/www/assets/topcoat-0.7.5/img/checkmark_bw.svg +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - -]> - - - diff --git a/www/assets/topcoat-0.7.5/img/dark-combo-box-bg.png b/www/assets/topcoat-0.7.5/img/dark-combo-box-bg.png deleted file mode 100755 index 9a4e92d..0000000 Binary files a/www/assets/topcoat-0.7.5/img/dark-combo-box-bg.png and /dev/null differ diff --git a/www/assets/topcoat-0.7.5/img/dark-combo-box-bg2x.png b/www/assets/topcoat-0.7.5/img/dark-combo-box-bg2x.png deleted file mode 100755 index 7ab0c5a..0000000 Binary files a/www/assets/topcoat-0.7.5/img/dark-combo-box-bg2x.png and /dev/null differ diff --git a/www/assets/topcoat-0.7.5/img/dark-grips.png b/www/assets/topcoat-0.7.5/img/dark-grips.png deleted file mode 100755 index c52325d..0000000 Binary files a/www/assets/topcoat-0.7.5/img/dark-grips.png and /dev/null differ diff --git a/www/assets/topcoat-0.7.5/img/dark-sprites2x.png b/www/assets/topcoat-0.7.5/img/dark-sprites2x.png deleted file mode 100755 index f9a875b..0000000 Binary files a/www/assets/topcoat-0.7.5/img/dark-sprites2x.png and /dev/null differ diff --git a/www/assets/topcoat-0.7.5/img/dialog-zone-bg.png b/www/assets/topcoat-0.7.5/img/dialog-zone-bg.png deleted file mode 100755 index 6dd0ff8..0000000 Binary files a/www/assets/topcoat-0.7.5/img/dialog-zone-bg.png and /dev/null differ diff --git a/www/assets/topcoat-0.7.5/img/drop-down-triangle-dark.png b/www/assets/topcoat-0.7.5/img/drop-down-triangle-dark.png deleted file mode 100755 index 9af2042..0000000 Binary files a/www/assets/topcoat-0.7.5/img/drop-down-triangle-dark.png and /dev/null differ diff --git a/www/assets/topcoat-0.7.5/img/drop-down-triangle.png b/www/assets/topcoat-0.7.5/img/drop-down-triangle.png deleted file mode 100755 index cb1c968..0000000 Binary files a/www/assets/topcoat-0.7.5/img/drop-down-triangle.png and /dev/null differ diff --git a/www/assets/topcoat-0.7.5/img/hamburger_bw.svg b/www/assets/topcoat-0.7.5/img/hamburger_bw.svg deleted file mode 100755 index c08ff01..0000000 --- a/www/assets/topcoat-0.7.5/img/hamburger_bw.svg +++ /dev/null @@ -1,1912 +0,0 @@ - - - - - - - - - - -]> - - - - - - - - - - - - - - - - - - - - - eJzsvemOJMmRJvgE9g6+PxogB1NBU1PTw7iDBcLj6OEM2V0g2ceiMSgks6LJnM6jkJVFLvfpV75P -RFTV3D2yIo8iie0KrcoIF1dTM9NDVI5PRP/u//jyN19cf/3mdw9fxKv5MP3d3928fXj27s3bnx9I -Pfzi5cvvvn33FqSf/Pqnh5CvZql0/Yv6lVX854e337548/rn/Ooqypf3uPonv/j22e8eXr58OPzy -2euv3/3h2cuHtz89/OSn8v1vX7x7+SA1/vDs1e++e/v7h7dX3/7x9z/1W0tbt8/eyffrz5afhXhY -fj7Hw5e/wtfPXv/x2bffvvh/H3CzWHGv45vvXn/94vXvj2/+HyEevojrIW6HL4p89d9f/Prh2/d8 -f/vm+XevHl6/+/Ltm+cP33578+blm7ff/vxw8+dnrw+/evZ7+ebZ4f+WN3jzp8Px5bPn/zHJW6ev -7l+8fJAXfPXs3SEs6IvrX4Tlq+N3L15+/Q/fvfrdg7x63kiOX7HJf/pW2pJm8TfI5atfvBLKbx7e -vZPnkhuiP3/998fxMYTI8pN/+/XD71+w+6Vb/tdPrdm3b7559eztf+DawxfrfJD/7I6/fXj1zUvp -Pb7uMl+lwxf8t/9p9eQtWOeLJVfplZIPca6HmKp+3/vm4Y8vHv7088M/vHn9oB1w/fbdb3QI1nWe -9V/95tffyRj/0+sX7+TBMkib9sCv3nz98FLqt+vvXz7ji7OE/q9W+O0zmRPvZOzevPzuHWdW9TtI -D//y2Z8fMExBb/CP3zy8/u2bf+YzfrEEaWfZrrbDssobhWVbD6Gy/QWPus3tnqH/q02jITTj7WOG -fCnj9I9vX/z+xeuffxGr9HVcZh3Cv3/74us+guFQ7X9p/KoO/2/+vz6tvPi7dw+v7ell3tz8apgH -89WvfiN3vXv99c2bV+j9bzHBZQK8lrnx8s3v9bv2N7+Ry7/7Rt+An7+Sgfry7YvXaHP6B35Tv/ry -5Xfy1d+/ffPdN794/e9vpp/o0v7nh+eyfmUsvz784+/+t3yQ9cm5efjt22fPpQH53OpcPXvxzU/f -25y83NuHg34pV/Kj//7+q28f/l1WVb9cqXev//jw8s03Q7ONIlzl8C/P3n7z/U1/+fLZ62dvD6S3 -ln/54o/yzTPpqd52pz2hUZkl30jn8BJWObnBeyoMXz3hRs/e/UEY0MPrr79tbevH/YMr7fvb+81z -zMG3h+Pb7779w+G3b968bM3uv2qtG5lU1P/buMeXvOD1P77WDjq/k1U4vZPwn7+5u0jtx+8gX/4t -t37z7OXLF79/++ybP7x4fukGF75vd9LvPmRi/fnV7968fPHtqz6fBsqXz96+e/H85cNv/vztu4dX -Tx7cw93XL4TJPbKM31vnN3969u75H3754ndvn7198fDe1YcB+PcXr7+Wuf+b7168e+gd9ObVN5BS -Dr/5w7NvHvga7/5wz5q/aQ2mr4T1j8z9iy/ew/VDPhxfD9///dtnX7+QDUWErr9/8/Lrh9eHX4O9 -T7tPsn2Vw/Hr6d+m2UpgWQ9/99Xx7fTfpvn0J5yUZSjRymol8X8vGf9P8msspZU6b7tyPZSjlBsr -t0O5m++n+d7L7sHGn2UocSjrriQtE3+VkKUU/q5D2XblOhxbuWnlGG6l+KfbST7ckXQb7scydh0f -zn/iUNahpCWjTPprKUOpyyZF/70eylHL9H9dGsvHRjPuxnMdRrWPrZSpDe86DLKO6ji6VQp+Y1Tr -bny3YYTl38mG2gf72IZZf2OU78bRln/1Z7441su0G+go44rfGFmMcWapHOVyMsLXVvZjK2OJX3cs -tyej6DeNHMM+Zig6SD5kmw2WDNBkY4SxurFyy3Jn5R7FVxZeZhzLwFFareMrO/TIRXLPvln48pmv -t/FVbvnEwZ4wc8rII0y8L+6zxBjXmGMRZWuLRym38V5GO6xxXde0lrWu23q9Htfb9W69l45cUkxr -yqmkLV2nY7pJd+l+kgcKMkvXnHLONW/5Oh/zTb7N9zIXgnTDWlLJpZatHMtNuS33Mk9CXepaU821 -1K1e12O9rXf1XubLMm1xWzdpZ6vbth23m+1uu5dJE67j9XqdrvN1vd6ur6+PUm6ub6/vOJMWeYH1 -mI7lWI+bfHU83hzvjvcyu8LE3o436026kQe42W6ub443Nze3N/cy2QJHYb1Nt/lWHu623m63x9ub -27vb+7tZxiXerXf5rtzVu+1O7nV3c3c73d3d3WNG3EuH3ad7edN7efb7aylyy3u58v7kR8ZyltFs -n++GcjuUm6Ecd+V6KJuXSf6pQylDybuShrIOJQ5FJuB0v7QysrDOfOfx0e/Gn9tdudEy8ddxKNdD -2XalDqUMJQ8lTXeplXVX4lCWoYShzGPRLp+s78enH39uhnLUwpW5G8f96O3HzEdrP0T7YZGhmIbR -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 - - - diff --git a/www/assets/topcoat-0.7.5/img/hamburger_dark.svg b/www/assets/topcoat-0.7.5/img/hamburger_dark.svg deleted file mode 100755 index e698e19..0000000 --- a/www/assets/topcoat-0.7.5/img/hamburger_dark.svg +++ /dev/null @@ -1,1935 +0,0 @@ - - - - - - - - - - -]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - eJzsvemSJLmRJvgE9g6+P1qEHJkKGgCDAcYdWZHwOHo4Q3aXkOxjpWWkJJkVTeZ0HiVZWeRyn371 -+1QVgLl7ZEUeRVK2K1CVEa4Og5nhUOjxqeLv/o8vf/PF9ddvfvfwRbqaD9Pf/d3N24dn7968/fmB -1MMvXr787tt3b0H6ya9/egjr1SyVrn9Rv7KK//zw9tsXb17/nF9dJfnyHlf/5BffPvvdw8uXD4df -Pnv99bs/PHv58Panh5/8VL7/7Yt3Lx+kxh+evfrdd29///D26ts//v6nfmtp6/bZO/l++Vn8WUiH -+PM5Hr78Fb5+9vqPz7799sX/+4CbpYp7Hd989/rrF69/f3zz/wjx8EXKh7Qdvijy1X9/8euHb9/z -/e2b59+9enj97su3b54/fPvtzZuXb95++/PDzZ+fvT786tnv5Ztnh/9b3uDNnw7Hl8+e/8ckb52/ -un/x8kFe8NWzd4cQ0RfXvwjxq+N3L15+/Q/fvfrdg7z6upGcvmKT//SttCXN4m+Qy1e/eCWU3zy8 -eyfPJTdEf/7674/jYwiR5Sf/9uuH379g90u3/K+fWrNv33zz6tnb/8C1hy+W+SD/2R1/+/Dqm5fS -e3zdOF/lwxf8t/9p9eQtWOeLuFbplbIe0lwPKVf9vvfNwx9fPPzp54d/ePP6QTvg+u273+gQLMs8 -67/6za+/kzH+p9cv3smDrSBt2gO/evP1w0up366/f/mML84S+r9a4bfPZE68k7F78/K7d5xZ1e8g -PfzLZ39+wDAFvcE/fvPw+rdv/pnP+EUM0k7crrZDXOSNQtyWQ6hsP+JRt7ndM/R/tWk0hGa8fcyQ -L2Wc/vHti9+/eP3zL1KVvk5x1iH8+7cvvu4jGA7V/pfGr+rw/+b/69PKi7979/Danl7mzc2vhnkw -X/3qN3LXu9df37x5hd7/FhNcJsBrmRsv3/xev2t/8xu5/Ltv9A34+SsZqC/fvniNNqd/4Df1qy9f -fidf/f3bN99984vX//5m+oku7X9+eC7rV8by68M//u5/ywdZn5ybh9++ffZcGpDPrc7Vsxff/PS9 -zcnLvX046JdyJT/67++/+vbh32VV9cuVevf6jw8v33wzNNsowlUO//Ls7Tff3/SXL5+9fvb2QHpr -+Zcv/ijfPJOe6m132hMalVnyjXQOL2GVkxu8p8Lw1RNu9OzdH4QBPbz++tvWtn7cP7jSvr+93zzH -HHx7OL797ts/HH775s3L1uz+q9a6kUlF/b+Ne3zJC17/42vtoPM7WYXTOwn/+Zu7i9R+/A7y5d9y -6zfPXr588fu3z775w4vnl25w4ft2J/3uQybWn1/97s3LF9++6vNpoHz57O27F89fPvzmz9++e3j1 -5ME93H39QpjcI8v4vXV+86dn757/4Zcvfvf22dsXD+9dfRiAf3/x+muZ+7/57sW7h95Bb159Aynl -8Js/PPvmga/x7g/3rPmb1mD+Slj/yNy/+OI9XD+sh+Pr4fu/f/vs6xeyoYjQ9fdvXn798Prwa7D3 -afdJtq9yOH49/ds0Wwksy+Hvvjq+nf7bNJ/+hJMSh5KsLFYy//ey4v9Jfo2ltFLnbVeuh3KUcmPl -dih38/0033vZPdj4E4eShrLsStYy8VcJq5TC33Uo265ch2MrN60cw60U/3Q7yYc7km7D/VjGruPD -+U8ayjKUHFeUSX/FMpQaNyn67/VQjlqm/+vSWD42mmk3nsswqn1spUxteJdhkHVUx9GtUvAbo1p3 -47sNIyz/TjbUPtjHNsz6G6N8N462/Ks/88WxjtNuoJOMK35jZDHGK0vlKJeTEb62sh9bGUv8umO5 -PRlFv2niGPYxQ9FB8iHbbLBkgCYbI4zVjZVbljsr9yi+svAy41gGjtJiHV/ZoUcuknv2TeTLr3y9 -ja9yyycO9oQrp4w8wsT74j4xpbSkNRVRtrZ0lHKb7mW0w5KWZclLWeqyLdfLcbld7pZ76ciYU17y -mkve8nU+5pt8l+8neaAgs3RZ87qudd3W6/W43qy3673MhSDdsJRc1lLLVo7lptyWe5knoca61FzX -WupWr+ux3ta7ei/zJU5b2pZN2tnqtm3H7Wa72+5l0oTrdL1c5+v1ul5v19fXRyk317fXd5xJUV5g -OeZjOdbjJl8djzfHu+O9zK4wsbfTzXKTb+QBbrab65vjzc3N7c29TLbAUVhu8+16Kw93W2+32+Pt -ze3d7f3dLOOS7pa79a7c1bvtTu51d3N3O93d3d1jRtxLh93ne3nTe3n2+2spcst7ufL+5EfGcpbR -bJ/vhnI7lJuhHHfleiibl0n+qUMpQ1l3JQ9lGUoaikzA6T62MrKwznzn8dHvxp/bXbnRMvHXcSjX -Q9l2pQ6lDGUdSp7ucivLrqShxKGEocxj0S6frO/Hpx9/boZy1MKVuRvH/ejtx8xHaz9E+2GRoZiG -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 -5+8WHNujgn37Jvf02foBF49O17EtRgdL6PPOr2X3eTnApGRT1pjj5tvyKZydOhfd8sG4HeMKh/VO -7013OIJF5f3+3OsnvTc1vMU23l1vVJ8w217gxTs3bjan2vPDR86ahVpD/2JkTVDjJsJv+qe1Z/an -yOaVZeNGuLhUMMvf2+8wpQ+OD548yfVhiTMCf1R/efbHf3725Y9ffXK/+fLzb9I/Pqvvfz14fP76 -i1e9333z6Hef3/3koNNsDP9gvv/rQ/P7L77+/vGfn6q/fHH0r0+efj24bGWPHsqn+R2h1O+TZHj4 -8+Grz5M/fH3/340/ff3l5xfDr4d/k/f27nx9/+h3Ay70zWj/1V//fvT1l6o8Puh89efWYaPxyaup -po7a/4D2ssNHd77I/vvx6PDnn/bVf9c/f3DePxrC4I5ef/Zn8/vLR4fqDz/u/9z95Me9O4dnyTen -M5H9ISvOsh/+/s9/PfjuoPHD/Ebjcl/89PWXbx799PUXw8b5Z4ef37l8dPdx+2zvDjHr0f+cPLs8 -PPvpx2y/+3X35Rdn+69HB6+z/xZj7PifPx62xNF/vv7yL5/8aPFAl4cH/3717z58+uN/Dp+0n/xu -v57//IcHx/Xf92wfXjbbl3t3ip/vftZ62NJ/v3vwWp3c//LBnfSPn+1/+/n/fPb1wSffPzooL//0 -5x+++f3r+61W8w1+6nz28OzotW1ZJPea2aDzh//5ovPvb9r73Tt/+aQ++Oxflw+Ojv/4H+z/p1/f -/+Z1unfH3P/hp68f9FqfnH/21dP797Lzf33VybJ7w7P0waD1RHz25gvhMbYOvxn+AGzLPimzH9Ok -/UXn4F4Txlc8/epu/fNyv5s9P7cU/OPoztcHT778/Y8PPy/0EMblyT/N7/+cHfT//dmXP7T/+YU8 -/f1PhPbPvTtA0J/Nn36PQ/JP86P5ew/59Of9N5+aupuaP7SPEvHT758e3mt++cdHv/vsvwfYisEf -/k1YqMjeneT0/z5R9PmzPz/60n368seHf7PFDz5/+D8WmfyHfAJT92Xy2Z///PBzefiXV185PD9+ -9eX99s/f/ptG0ncY8D3b164VKLT/je/AT6ED4u5XL7BQqQimf7d/eEKsPiyHf1Hmv83PrQffHf78 -2eHZvb/952Gz+ckf9s3p938vnt95+f2DZwf7zw/Pjjv/+fo/P33xau/O/2/vy7fTZ3IFn4B3CPsO -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 -wknerg== - - - diff --git a/www/assets/topcoat-0.7.5/img/hamburger_light.svg b/www/assets/topcoat-0.7.5/img/hamburger_light.svg deleted file mode 100755 index 27a1290..0000000 --- a/www/assets/topcoat-0.7.5/img/hamburger_light.svg +++ /dev/null @@ -1,1936 +0,0 @@ - - - - - - - - - - -]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - eJzsvemOJMmRJvgE9g6+PxogB1NBU1PTw7iDBcLj6OEs2V1gsad70RgUklnRZG7nUcjKai736Ve+ -T0RU1dw9siKPIontCq3KCBdXUzPTQ1SOT0T/7n/78qsvrr958/uHL+LVfJj+7u9u3j48e/fm7S8P -pB5+9fLl99+9ewvSz37780PIV7NUuv5V/doq/s+Ht9+9ePP6l/zqKsqX97j6Z7/67tnvH16+fDj8 -+tnrb9798dnLh7c/P/zs5/L97168e/kgNf747NXvv3/7h4e3X7988Yc/vrt69uLnfn9p8PbZO6m0 -/mL5RYiH5ZfzevjyN/j62ev/ePbddy/+3wfcMVbc8Pjm+9ffvHj9h+Ob/0eIhy9iOsTt8EWRr/77 -i98+fPee72/fPP/+1cPrd1++ffP84bvvbt68fPP2u18ebv787PXhN8/+IN88O/xf8hpv/nQ4vnz2 -/N8nefX09f2Llw/ylq+evTuEBR1y/auwfH38/sXLb/7h+1e/f5D3zxvJ8Ws2+U/fSVvSLP4GuXz9 -q1dC+erh3Tt5LrkhOvW3f38cH0OILD/7198+/OEFx0C65X/93Jp9++bbV8/e/juuPXyxzgf5z+74 -u4dX376U3uPrLvNVOnzBf/ufVk/egnW+WHKVXin5EOd6iKnq971vHv7jxcOffnn4hzevH7QDrt++ -+0qHYF3nWf/Vb377vQz0P71+8U4eLIO0aQ/85s03Dy+lfrv+/uUzvjhL6P9qhd89k4nxTsbuzcvv -33F6Vb+D9PCvn/35AcMU9Ab/+O3D69+9+Z98xi+WIO0s29V2WFZ5o7Bs6yFUtr/gUbe53TP0f7Vp -NIRmvH3MkC9lnP7x7Ys/vHj9yy9ilb6Oy6xD+PdvX3zTRzAcqv0vjV/V4f/N/9enlRd/9+7htT29 -zJub3wzzYL76zVdy17vX39y8eYXe/w4TXCbAa5kbL9/8Qb9rf/Mbufz7b/UN+PlrGagv3754jTan -f+A39esvX34vX/392zfff/ur1//2ZvqZru//+fBcFrGM5TeHf/z9/y0fZJFybh5+9/bZc2lAPrc6 -skS//fl7m5OXe/tw0C/lSn703z989e3Dv8mq6pcr9e71fzy8fPPt0GyjCGs5/POzt9/+cNNfvnz2 -+tnbA+mt5V+/+A/55pn0VG+7057QqMySb6VzeAmrnNzgPRWGr55wo2fv/igM6OH1N9+1tvXj/sGV -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 -8xm/zlGv8eucwWv86lmK7Pe2LO38fNRjvM/gMp+zPUe9ruvrPfhZQyXmECh9Pt0czCFP+XQQTBeV -X8g9uB/ja3A/5nMZ56jXBZ8zeN0czHgDgcTXtuT9r09HPcbX4znm61Huo94P/cs98M25nts9V1/P -+MzV52245urLeM/Vl/nM1eeo11x9zuA1V59nfG+734b7qMd4n8FlPmd7vY/nur7egy9vzuvmXM/4 -cmT223A7Msf4cmSO+VzGOep1wecMXjfnPON72/023Ec9xtfjOebrUZ738XroX+7Bz589kMY+Fu2z -BxLml1fRmGL/5JZgtpEe4222IO99VJYurff8H8ZPHsi97fYq7qMe4+sMjvk623PU67q+3IO/+zR5 -pt7XfT2OwvX7x6W4zvQy3ld1mc8duI567tV1Bvd9PY7Cve12Ke6jHuPrDI75Ottz1Ou6vtyD7zJN -ntn3dWuPr3CdwvEqrpO9jPeFXeZzE66jntt1ncF9a4+vcG+7vYr7qMf4OoNjvs72HPW6ri/34O/+ -yp7PAJ/OKF+GgjC/Pu+OUhV7BMfYBQP5NBTgUPUZ76GAzSxSfX+IYfw0FNzb7s/7Pg== - - - 6jG+zuCYr7M9R72u68s9+M6LkdetPd/tdQrnC79O9jLeF3aZz024jnpu13UG96093+297f7C76Me -4+sMjvk623PU67q+3IPvuRh53dfz0V6/fz7v60wv431Vl/ncgeuo515dZ3Df1/PR3tvuz/s+6jG+ -zuCYr7M9R72u68s98NQOshASOJ/8niF8/ifnyQr3t5t1jC+X7JiPh3KOevky5wxefs/XE3M4ZHxx -73nY8mntwxPQttdq4hhfK49jPo74Oerlso8vnv3rdHCK/1yh1n/4+z9/BVr/U+Kv5e8Wf/Ud+xSE -PbFWvGF/xBj7/vTlaCcU+3cOFuLd7Vq9U/lSztyRGesLs+cDECu9zk7tkxFr8trO3GEz1u+jfnsf -tSn9/z4DG/fcscb4tO2Q0vt91GN8ncExX2d7jnpd15d78N3mDvz7p1tLb6J8OgX6HXyxr5O9jPeF -XeZzE66jntt1ncF9a5t1tu9tp4Rq76Me4+sMjvk623PU67q+3IPvMnewauPTfeVp50+vLC+wfHpl -L+N9VZf53IHrqOdeXWdw31f8RO3907bTUobXUY/xdQbHfJ3tOep1XV/uwXcLZKEyyqNnWSccwRaB -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 -3x/Wu/nN/nv9H/gN+An3OrCRH2jT/wGF4u/k - - - diff --git a/www/assets/topcoat-0.7.5/img/light-combo-box-bg.png b/www/assets/topcoat-0.7.5/img/light-combo-box-bg.png deleted file mode 100755 index f619677..0000000 Binary files a/www/assets/topcoat-0.7.5/img/light-combo-box-bg.png and /dev/null differ diff --git a/www/assets/topcoat-0.7.5/img/light-combo-box-bg2x.png b/www/assets/topcoat-0.7.5/img/light-combo-box-bg2x.png deleted file mode 100755 index 57663ca..0000000 Binary files a/www/assets/topcoat-0.7.5/img/light-combo-box-bg2x.png and /dev/null differ diff --git a/www/assets/topcoat-0.7.5/img/light-grips.png b/www/assets/topcoat-0.7.5/img/light-grips.png deleted file mode 100755 index 1692347..0000000 Binary files a/www/assets/topcoat-0.7.5/img/light-grips.png and /dev/null differ diff --git a/www/assets/topcoat-0.7.5/img/light-sprites2x.png b/www/assets/topcoat-0.7.5/img/light-sprites2x.png deleted file mode 100755 index a70f5dc..0000000 Binary files a/www/assets/topcoat-0.7.5/img/light-sprites2x.png and /dev/null differ diff --git a/www/assets/topcoat-0.7.5/img/pop-up-triangle-dark.png b/www/assets/topcoat-0.7.5/img/pop-up-triangle-dark.png deleted file mode 100755 index 53e79bc..0000000 Binary files a/www/assets/topcoat-0.7.5/img/pop-up-triangle-dark.png and /dev/null differ diff --git a/www/assets/topcoat-0.7.5/img/pop-up-triangle.png b/www/assets/topcoat-0.7.5/img/pop-up-triangle.png deleted file mode 100755 index 0467cc5..0000000 Binary files a/www/assets/topcoat-0.7.5/img/pop-up-triangle.png and /dev/null differ diff --git a/www/assets/topcoat-0.7.5/img/search-bg.png b/www/assets/topcoat-0.7.5/img/search-bg.png deleted file mode 100755 index 54181ee..0000000 Binary files a/www/assets/topcoat-0.7.5/img/search-bg.png and /dev/null differ diff --git a/www/assets/topcoat-0.7.5/img/search-bg2x.png b/www/assets/topcoat-0.7.5/img/search-bg2x.png deleted file mode 100755 index f886480..0000000 Binary files a/www/assets/topcoat-0.7.5/img/search-bg2x.png and /dev/null differ diff --git a/www/assets/topcoat-0.7.5/img/search.svg b/www/assets/topcoat-0.7.5/img/search.svg deleted file mode 100755 index d18a4fa..0000000 --- a/www/assets/topcoat-0.7.5/img/search.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - Slice 1 - Created with Sketch (http://www.bohemiancoding.com/sketch) - - - - - - - \ No newline at end of file diff --git a/www/assets/topcoat-0.7.5/img/search_bw.svg b/www/assets/topcoat-0.7.5/img/search_bw.svg deleted file mode 100755 index 9ab9e71..0000000 --- a/www/assets/topcoat-0.7.5/img/search_bw.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - -]> - - - diff --git a/www/assets/topcoat-0.7.5/img/search_dark.svg b/www/assets/topcoat-0.7.5/img/search_dark.svg deleted file mode 100755 index 9ab9e71..0000000 --- a/www/assets/topcoat-0.7.5/img/search_dark.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - -]> - - - diff --git a/www/assets/topcoat-0.7.5/img/search_light.svg b/www/assets/topcoat-0.7.5/img/search_light.svg deleted file mode 100755 index 0c0dff6..0000000 --- a/www/assets/topcoat-0.7.5/img/search_light.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - Slice 1 - Created with Sketch (http://www.bohemiancoding.com/sketch) - - - - - - - \ No newline at end of file diff --git a/www/assets/topcoat-0.7.5/img/spinner.png b/www/assets/topcoat-0.7.5/img/spinner.png deleted file mode 100755 index ae457fa..0000000 Binary files a/www/assets/topcoat-0.7.5/img/spinner.png and /dev/null differ diff --git a/www/assets/topcoat-0.7.5/img/spinner2x.png b/www/assets/topcoat-0.7.5/img/spinner2x.png deleted file mode 100755 index 3b77ee6..0000000 Binary files a/www/assets/topcoat-0.7.5/img/spinner2x.png and /dev/null differ diff --git a/www/assets/topcoat-0.7.5/package.json b/www/assets/topcoat-0.7.5/package.json deleted file mode 100755 index 03c64ef..0000000 --- a/www/assets/topcoat-0.7.5/package.json +++ /dev/null @@ -1,85 +0,0 @@ -{ - "name": "topcoat", - "version": "0.7.5", - "description": "CSS for clean and fast web apps", - "main": "Gruntfile.js", - "directories": { - "doc": "doc", - "test": "test" - }, - "dependencies": { - "topcoat-utils": "~0.1.3", - "topcoat-radio-button-base": "~0.1.1", - "topcoat-button-base": "~0.6.0", - "topcoat-radio-button": "~0.1.2", - "topcoat-navigation-bar-base": "~0.4.0", - "topcoat-navigation-bar": "~0.4.2", - "topcoat-input-base": "~0.4.1", - "topcoat-list-base": "~0.4.1", - "topcoat-list": "~0.5.0", - "topcoat-search-input": "~0.3.0", - "topcoat-search-input-base": "~0.1.2", - "topcoat-checkbox": "~0.4.0", - "topcoat-checkbox-base": "~0.1.3", - "topcoat-button": "~0.5.3", - "topcoat-icon-button": "~0.3.3", - "topcoat-button-bar-base": "~0.1.1", - "topcoat-button-bar": "~0.1.0", - "topcoat-textarea": "~0.3.0", - "topcoat-theme": "~0.5.24", - "topcoat-text-input": "~0.3.4", - "topcoat-textarea-base": "~0.3.2", - "topcoat-notification": "~0.1.1", - "topcoat-notification-base": "0.0.1", - "topcoat-tab-bar": "~0.1.0", - "topcoat-switch": "~0.1.3", - "topcoat-switch-base": "~0.1.0", - "topcoat-range-base": "0.0.3", - "topcoat-range": "~0.1.0" - }, - "devDependencies": { - "grunt": "~0.4.1", - "grunt-contrib-copy": "~0.4.1", - "grunt-contrib-jade": "~0.4.0", - "grunt-contrib-watch": "~0.1.4", - "grunt-contrib-clean": "~0.4.1", - "grunt-exec": "~0.4.2", - "grunt-contrib-cssmin": "~0.5.0", - "jade": "~0.28.2", - "grunt-contrib-stylus": "~0.6.0", - "grunt-contrib-htmlmin": "~0.1.3", - "prompt": "*", - "csv": "*", - "topdoc-theme": "~0.2.7", - "grunt-topdoc": "~0.1.3", - "grunt-autoprefixer": "~0.2.20130806" - }, - "scripts": { - "test": "grunt test", - "prepublish": "grunt" - }, - "repository": { - "type": "git", - "url": "git://github.com/topcoat/topcoat.git" - }, - "bugs": { - "url": "https://github.com/topcoat/topcoat/issues" - }, - "license": { - "type": "Apache", - "url": "https://github.com/topcoat/topcoat/blob/master/LICENSE" - }, - "keywords": [ - "css", - "ui", - "ux", - "pattern", - "library", - "mobile", - "desktop", - "native", - "application", - "web", - "standards" - ] -} diff --git a/www/jasmine_helpers.js b/www/jasmine_helpers.js index 6de0288..1515e21 100644 --- a/www/jasmine_helpers.js +++ b/www/jasmine_helpers.js @@ -1,22 +1,20 @@ /* - * - * 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. - * + 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. */ 'use strict'; @@ -28,7 +26,6 @@ exports.setUpJasmine = function () { var jasmineEnv = jasmine.currentEnv_ = new jasmine.Env(); jasmine.DEFAULT_TIMEOUT_INTERVAL = 5000; - jasmineEnv.catchExceptions(false); // Set up jasmine interface var jasmineInterface = jasmineRequire.interface(jasmine, jasmineEnv); diff --git a/www/main.js b/www/main.js index c664e1e..786678e 100644 --- a/www/main.js +++ b/www/main.js @@ -1,22 +1,20 @@ /* - * - * 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. - * + 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. */ 'use strict'; @@ -171,7 +169,7 @@ function createActionButton (title, callback, appendTo) { e.preventDefault(); callback(); }; - button.classList.add('topcoat-button'); + button.classList.add('cdv-btn'); div.appendChild(button); buttons.appendChild(div); } @@ -217,15 +215,13 @@ function createEnablerList () { enablerList.id = 'test-list'; // Create select/deselect all buttons (in button bar) - var checkButtonBar = document.createElement('ul'); - checkButtonBar.classList.add('topcoat-button-bar'); + var checkButtonBar = document.createElement('div'); + checkButtonBar.classList.add('button-group'); + checkButtonBar.role = 'group'; function createSelectToggleButton (title, selected) { - var barItem = document.createElement('li'); - barItem.classList.add('topcoat-button-bar__item'); - var link = document.createElement('a'); - link.classList.add('topcoat-button-bar__button'); + link.classList.add('cdv-btn'); link.innerText = title; link.href = null; link.onclick = function (e) { @@ -234,9 +230,9 @@ function createEnablerList () { return false; }; - barItem.appendChild(link); - checkButtonBar.appendChild(barItem); + checkButtonBar.appendChild(link); } + createSelectToggleButton('Check all', true); createSelectToggleButton('Uncheck all', false); enablerList.appendChild(checkButtonBar); @@ -301,9 +297,10 @@ function createEnablerCheckbox (api, title, isEnabled, appendTo, callback) { var container = document.getElementById(appendTo); var label = document.createElement('label'); - label.classList.add('topcoat-checkbox'); + label.classList.add('form-check-label'); var checkbox = document.createElement('input'); + checkbox.classList.add('form-check-input'); checkbox.type = 'checkbox'; checkbox.value = api; checkbox.checked = isEnabled; @@ -315,8 +312,6 @@ function createEnablerCheckbox (api, title, isEnabled, appendTo, callback) { }; var div = document.createElement('div'); - div.classList.add('topcoat-checkbox__checkmark'); - var text = document.createElement('span'); text.innerText = title; diff --git a/www/medic.js b/www/medic.js index 0e8b4b2..c7eb4b5 100644 --- a/www/medic.js +++ b/www/medic.js @@ -1,22 +1,20 @@ /* - * - * 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. - * + 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. */ 'use strict'; diff --git a/www/tests.js b/www/tests.js index bf2aaea..1f2136d 100644 --- a/www/tests.js +++ b/www/tests.js @@ -1,22 +1,20 @@ /* - * - * 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. - * + 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. */ 'use strict';