polyline-0.10.1/.cargo_vcs_info.json0000644000000001360000000000100127460ustar { "git": { "sha1": "e8eeccd1374ca5f7271a8bd60ecf603a5b234a99" }, "path_in_vcs": "" }polyline-0.10.1/.github/workflows/rust.yml000064400000000000000000000004061046102023000166530ustar 00000000000000on: push name: Run tests jobs: build_and_test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - run: cargo install cargo-all-features - run: cargo build-all-features --verbose - run: cargo test-all-features --verbose polyline-0.10.1/.gitignore000064400000000000000000000000221046102023000135200ustar 00000000000000target Cargo.lock polyline-0.10.1/CHANGELOG.md000064400000000000000000000030071046102023000133470ustar 00000000000000# Changelog ## 0.10.1 * Fix dependencies to officially drop geo-types 0.6 - it was already effectively dropped with the bump to 0.10.0 (it wouldn't compile), so this isn't an additionally breaking change. ## 0.10.0 * Update Coordinates to Coord due to geo-types change * This is a BREAKING change for geo-types 0.6 users * Apply clippy suggestions * Update dependencies * Refactor decoding logic for perf improvement (https://github.com/georust/polyline/pull/28) ## 0.9.0 * Update `geo-types` dependency to allow for 0.6 or 0.7 * Switch CI to Github actions ## 0.8.0 * Bump geo-types dependency to 0.6 ## 0.7.3 * Add note on coordinate order ## 0.7.1 * Bump `geo-types` to [0.5](https://github.com/georust/polyline/pull/21) ## 0.7.0 * [Relicense to MIT / Apache v2](https://github.com/georust/polyline/pull/18) ## 0.6.0 * [Mark `rand` as a dev-dependency.](https://github.com/georust/polyline/pull/12) * [Switch to criterion to enable stable benchmarks](https://github.com/georust/polyline/pull/15) ## 0.5.0 * [`decode_polyline()` now accepts a string slice instead of a `String`](https://github.com/georust/polyline/pull/10). ## 0.4.0 * Now accepts either a slice or a vec as argument to encode_polyline. ## 0.3.0 * [Now tests for invalid coordinates in decoded strings](https://github.com/georust/polyline/pull/4) ## 0.2.0 * [Basic error handling for en– and decoding](https://github.com/tmcw/polyline/pull/3): rust-polyline now returns a `Result` object, allowing it to handle incorrectly encoded polylines. polyline-0.10.1/CODE_OF_CONDUCT.md000064400000000000000000000107201046102023000143350ustar 00000000000000# The GeoRust Code of Conduct This document is based on, and aims to track the [Rust Code of Conduct](https://www.rust-lang.org/conduct.html) ## Conduct **Contact**: [mods@georust.org](mailto:mods@georust.org) * We are committed to providing a friendly, safe and welcoming environment for all, regardless of level of experience, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, religion, nationality, or other similar characteristic. * On IRC, please avoid using overtly sexual nicknames or other nicknames that might detract from a friendly, safe and welcoming environment for all. * Please be kind and courteous. There's no need to be mean or rude. * Respect that people have differences of opinion and that every design or implementation choice carries a trade-off and numerous costs. There is seldom a right answer. * Please keep unstructured critique to a minimum. If you have solid ideas you want to experiment with, make a fork and see how it works. * We will exclude you from interaction if you insult, demean or harass anyone. That is not welcome behavior. We interpret the term "harassment" as including the definition in the Citizen Code of Conduct; if you have any lack of clarity about what might be included in that concept, please read their definition. In particular, we don't tolerate behavior that excludes people in socially marginalized groups. * Private harassment is also unacceptable. No matter who you are, if you feel you have been or are being harassed or made uncomfortable by a community member, please contact one of the channel ops or any of the [GeoRust moderation team][mod_team] immediately. Whether you're a regular contributor or a newcomer, we care about making this community a safe place for you and we've got your back. * Likewise any spamming, trolling, flaming, baiting or other attention-stealing behavior is not welcome. ## Moderation These are the policies for upholding our community's standards of conduct. If you feel that a thread needs moderation, please contact the [GeoRust moderation team][mod_team]. 1. Remarks that violate the Rust standards of conduct, including hateful, hurtful, oppressive, or exclusionary remarks, are not allowed. (Cursing is allowed, but never targeting another user, and never in a hateful manner.) 2. Remarks that moderators find inappropriate, whether listed in the code of conduct or not, are also not allowed. 3. Moderators will first respond to such remarks with a warning. 4. If the warning is unheeded, the user will be "kicked," i.e., kicked out of the communication channel to cool off. 5. If the user comes back and continues to make trouble, they will be banned, i.e., indefinitely excluded. 6. Moderators may choose at their discretion to un-ban the user if it was a first offense and they offer the offended party a genuine apology. 7. If a moderator bans someone and you think it was unjustified, please take it up with that moderator, or with a different moderator, **in private**. Complaints about bans in-channel are not allowed. 8. Moderators are held to a higher standard than other community members. If a moderator creates an inappropriate situation, they should expect less leeway than others. In the GeoRust community we strive to go the extra step to look out for each other. Don't just aim to be technically unimpeachable, try to be your best self. In particular, avoid flirting with offensive or sensitive issues, particularly if they're off-topic; this all too often leads to unnecessary fights, hurt feelings, and damaged trust; worse, it can drive people away from the community entirely. And if someone takes issue with something you said or did, resist the urge to be defensive. Just stop doing what it was they complained about and apologize. Even if you feel you were misinterpreted or unfairly accused, chances are good there was something you could've communicated better — remember that it's your responsibility to make your fellow Rustaceans comfortable. Everyone wants to get along and we are all here first and foremost because we want to talk about cool technology. You will find that people will be eager to assume good intent and forgive as long as you earn their trust. *Adapted from the [Node.js Policy on Trolling](http://blog.izs.me/post/30036893703/policy-on-trolling) as well as the [Contributor Covenant v1.3.0](https://www.contributor-covenant.org/version/1/3/0/).* [mod_team]: mailto:mods@georust.org polyline-0.10.1/Cargo.toml0000644000000020070000000000100107430ustar # THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2018" name = "polyline" version = "0.10.1" authors = [ "Tom MacWright ", "The GeoRust Developers ", ] description = "Encoder and decoder for the Google Encoded Polyline format" readme = "README.md" keywords = [ "polyline", "geo", ] license = "MIT/Apache-2.0" repository = "https://github.com/georust/polyline" [[bench]] name = "benchmarks" harness = false [dependencies.geo-types] version = "0.7.8" [dev-dependencies.criterion] version = "0.4" [dev-dependencies.rand] version = "0.8.5" polyline-0.10.1/Cargo.toml.orig0000644000000007620000000000100117100ustar [package] name = "polyline" description = "Encoder and decoder for the Google Encoded Polyline format" version = "0.10.1" authors = ["Tom MacWright ", "The GeoRust Developers "] repository = "https://github.com/georust/polyline" readme = "README.md" keywords = ["polyline", "geo"] license = "MIT/Apache-2.0" edition = "2018" [dependencies] geo-types = "0.7.8" [dev-dependencies] rand = "0.8.5" criterion = "0.4" [[bench]] name = "benchmarks" harness = false polyline-0.10.1/Cargo.toml.orig000064400000000000000000000007621046102023000144320ustar 00000000000000[package] name = "polyline" description = "Encoder and decoder for the Google Encoded Polyline format" version = "0.10.1" authors = ["Tom MacWright ", "The GeoRust Developers "] repository = "https://github.com/georust/polyline" readme = "README.md" keywords = ["polyline", "geo"] license = "MIT/Apache-2.0" edition = "2018" [dependencies] geo-types = "0.7.8" [dev-dependencies] rand = "0.8.5" criterion = "0.4" [[bench]] name = "benchmarks" harness = false polyline-0.10.1/LICENSE-APACHE000064400000000000000000000251371046102023000134720ustar 00000000000000 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. polyline-0.10.1/LICENSE-MIT000064400000000000000000000020621046102023000131720ustar 00000000000000Copyright (c) 2017 The GeoRust Project Developers 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. polyline-0.10.1/README.md000064400000000000000000000013061046102023000130150ustar 00000000000000# polyline [![Crates.io](https://img.shields.io/crates/d/polyline.svg?maxAge=2592000?style=plastic)](https://crates.io/crates/polyline) [![Build Status](https://travis-ci.org/georust/polyline.svg?branch=master)](https://travis-ci.org/georust/polyline) Google Encoded Polyline encoding & decoding in Rust. ## A Note on Coordinate Order This crate uses `Coord` and `LineString` types from the `geo-types` crate, which encodes coordinates in `(x, y)` order. The Polyline algorithm and first-party documentation assumes the _opposite_ coordinate order. It is thus advisable to pay careful attention to the order of the coordinates you use for encoding and decoding. [Documentation](https://docs.rs/polyline/) polyline-0.10.1/benches/benchmarks.rs000064400000000000000000000044601046102023000156340ustar 00000000000000#[macro_use] extern crate criterion; use criterion::Criterion; use geo_types::LineString; use polyline::{decode_polyline, encode_coordinates}; use rand::distributions::Distribution; use rand::distributions::Uniform; use rand::thread_rng; #[allow(unused_must_use)] fn bench_encode(c: &mut Criterion) { let mut rng = thread_rng(); // These coordinates cover London, approximately let between_lon = Uniform::from(-6.379880..1.768960); let between_lat = Uniform::from(49.871159..55.811741); let mut v: Vec<[f64; 2]> = vec![]; (0..1000).for_each(|_| v.push([between_lon.sample(&mut rng), between_lat.sample(&mut rng)])); let res: LineString = v.into(); c.bench_function("bench encode: 1000 coordinates", move |b| { b.iter(|| { encode_coordinates(res.clone(), 5); }) }); } #[allow(unused_must_use)] fn bench_decode(c: &mut Criterion) { // comparable cpp (see e.g. Valhalla) decodes the same number of coords in around 500 µs let mut rng = thread_rng(); // These coordinates cover London, approximately let between_lon = Uniform::from(-6.379880..1.768960); let between_lat = Uniform::from(49.871159..55.811741); let mut v: Vec<[f64; 2]> = vec![]; (0..21501).for_each(|_| v.push([between_lon.sample(&mut rng), between_lat.sample(&mut rng)])); let res: LineString = v.into(); let encoded = encode_coordinates(res, 6).unwrap(); c.bench_function("bench decode: 21502 coordinates", move |b| { b.iter(|| { decode_polyline(&encoded, 6); }) }); } #[allow(unused_must_use)] fn bench_polyline6_decoding(c: &mut Criterion) { c.bench_function("bench polyline6 decoding", move |b| { b.iter(|| { decode_polyline("_p~iF~ps|U_ulLnnqC_mqNvxq`@", 6).unwrap(); }) }); } #[allow(unused_must_use)] fn bench_polyline6_decoding_huge(c: &mut Criterion) { c.bench_function("bench HUGE polyline6 decoding", move |b| { b.iter(|| { decode_polyline( include_str!("../resources/route-geometry-sweden-west-coast.polyline6"), 6, ) .unwrap(); }) }); } criterion_group!( benches, bench_encode, bench_decode, bench_polyline6_decoding, bench_polyline6_decoding_huge ); criterion_main!(benches); polyline-0.10.1/bors.toml000064400000000000000000000000431046102023000133750ustar 00000000000000status = [ "build_and_test", ] polyline-0.10.1/resources/route-geometry-sweden-west-coast.polyline6000064400000000000000000000561651046102023000237710ustar 00000000000000uvdtnBk|h`UN_Sn@_^jAyTbAuJ~@yN\qNiBub@cEy^kBw^bBmMxm@asAxE_NlFi[zCoVlGed@xDsYZwHI}PMkJFsKZaL|@qKpBkCnDkDlMaJvCeEp@aGfB}Y~@sLpAuCvKoArHo@nMo@~AxAxFgNvOcU|RoQdNuK|[qYbHoRhMk[pJeM`FoOTcSgCgPoF{NgB}ND}SMyNcAeKcCkGyHXcMe@oCeBi@uAcCyHwAgHw@qIMgFK{H`Iu@tL_BbQuDvFiBjKwD`MaGhFqCbDeBrGgDfVoPjLyIxViRzVeTxReP|NgK`JwFhLkG~GcDdLeE~GsBlG_BfNqCxG_A`K{@hPeCvUiCbGUfO_AnFc@xs@cDpFc@~E{@fH{AjIoChDeBpIkFhBsAjGcGnJsJ`K_LbEoEvD_DrB}AfD{AzBy@~EqBrHkCfDgApGiAdH[tKEfGRvMAhFC~LLdGHjBHxBHvGL|KS|UEdH?rE@fGP`BVv@NC~@A~@B~@H|@Jx@Pv@Tn@Xh@Zb@\Xl@Vn@Bn@Mj@a@f@q@`@aAXkAPuA~@JbEh@jIx@bDPtXjB|HZbOAfHi@tTsEhKe@`MQpSZrUzDxr@bPrPnBdTCt\iBhp@iDrUu@nMo@vJg@f^c@~rBk@hr@Wlq@u@nuDkAfaCu@z_Ai@ha@Sh]EdIE~`@WpRGxRIlKFlWBrm@Jxa@|@`Px@zPxAvLdBta@jC`c@nDhJt@bZjCtYhChm@dFjf@jEzZhCxj@`Fpg@zEdTlC~QjDjIhBzD|@rDfApIvCdDdAvDxArGbCxGbCbNfGva@hRbVlKtH|CrLtExGhBpEfA~LxAnLLzEKjJo@pMcBpFcA~P_EjGsBbNqFvLiG|MoHjI{E|VsOla@iYxF_FtGkHdEsFrHeL|DiHfEeJvHkRjC_IhGgTpGoUbBoGzE_QhEmNzI{TnCqFjHsNzEwHdKkNbHmIbLaOjCwD~CuF`CsErC{GvBwGlBkHhBiJzAyJhAeKbAmKfC_ZxAyXpDmz@`@aHpAmJnB{I~BqH|CuGjBsCvB{BzGw@bIYtCMc@sIW_POyWRgNzAsTrAePnBeOnB{L~B}KfCcKtBqDtDaJxCcHbDyD`Bw@`@V^P`@Jv@Bv@Kv@[p@k@n@{@h@gA`@sAZ}APoAHsADsA?uA~AoMtBgK`@wDbCgEzAiCjByBbGmE|EiB|ESdGj@tF`BjHfAzLjGnI`GzEzBdFZ~GmApGqC~FiHfC}EpCyIx@eE~@kHf@_HLqHEuFY{Gy@yHeCgJuBsHeFiHwKgN{BuDqAgDeB}Fs@_Eo@wG[aIEmHL_Jv@yf@Hs^kAox@g@iVIe_@i@so@sLcfC_V}kCqZe}BIi@og@{{D{VqcCsQacCgN}wCG_DwBiv@uAuaAe@iuAFei@Zcm@`A}h@jAuc@xAcb@nBka@dDuj@rDaf@|C__@`Fqf@fH_m@`Iwi@jGm^jBwKxGs]jRo}@jKec@zJa_@~Ncf@nMc`@rKiYlNe^jLsXjLcWlM_WrUca@vOcWjTm\zQqV~NeQb\g^db@}_@tb@u\jc@iYzuAsq@xR{Izk@iZd^sT|e@_]zV_Uj]o]~Zk_@|PgUn^}k@zX}g@hXwk@xP{b@zMy\bPaf@|Nwg@lK{_@~P}s@`Qss@~Qiu@vOwj@tVux@rVcq@lQac@tImQ|Vwh@lUea@dZee@b\uc@hNyQnPcRhW_Wp]}Yf[qTf\uShP}HzRkKnhBux@ry@y^ve@_Trl@mXbl@eWxk@iX~d@sVhSwLrV}QtUgRvZcZ\[j`@kd@pSyXnVe`@pOyVt\op@rYgp@fSgh@bW_u@pYoz@pNac@fYyw@dSga@zUie@t\io@`W_`@``@wh@pJiKtPsPjQ}OrQkNbRcM|QkKjRmKtXyN|LyFhWuO`SaOnPwNxJoJzPkQxIqKbKeM|O{TbJaNpZeg@xXel@~Usk@pVmx@??xRas@xU{aAzSqkAnG_c@nFia@tHir@~Dsb@~Dyf@dEco@tCej@tEibAzEodAnJyuBjFcjAfF}iAhGyuAzFonAfBua@vA_Y~Bee@fCya@rDqe@hAkNv@uIjCmVzBiTdBgNvEmb@`BgJfGo_@zE_YlPkv@~Qar@|K{^xKi\pQ{e@zMoZnN_ZbXqe@fKsOhO}Sl`@mi@x]uc@|X__@dj@ct@fh@io@dRiV|Yk`@~Zib@xUq^|^mm@t`@cp@fd@ct@`Uo_@b_@{k@nZsa@xUsYxYo\dMwMtHsI|HgIzQuRtIwIjS_Tx[y\bu@wt@|t@oq@l\kY~u@ql@r}@at@joAacAta@w_@p^i^~HgInRyRbLgMft@su@vd@_m@p|DecF|[ua@nd@uk@dFkGnZy[`WeX|VaVj_@e\jc@{\vn@kb@nZaP~i@yWvq@eYjs@cZlYmM`V}Ln]}St^}Wh_@{[fl@ol@nu@}|@xb@kd@rP{Odl@oe@bu@oi@vt@kj@ri@of@bc@id@vg@cq@p`@ul@vd@mv@t^_s@~_@wz@zj@apA~`@y|@bu@y`Bn]ms@xg@maApLsTnF}JvLaT`DyFho@yeAno@ucAf}@{nAjt@icA~z@klAvbAg{Anw@{vAndBglDl_@}t@pb@kv@tf@sr@bn@yq@v}@wx@dv@kr@ts@ww@vi@oy@nj@}bA|f@qdAxVch@fJaQ`NaWhIkNtHuLtKePrXsb@dx@}dAxJyKte@ag@|w@cz@h]me@z@mAtd@mo@~aAieBj]ax@j^sz@n_@ocAz^glAxiAa`Ev_@_jAle@snAta@e~@hm@}hAdkAeiBnzCyaEjmA}tBf|@{nBvhAefDzlAgnD~iAomCfvA_uCfvCmvEdk@mx@RW|lAyzAf^_a@nKqK~b@ob@ta@o^rUmRho@{d@jf@{[hU_Mzj@yZtjAeh@bsGwzBj{@oZfhBkx@zqAor@fhB{fA~qBe~ArRqObk@ge@x^e\nZsX|WaWnZwYhLaLzPkQt]g_@z_@wa@|LwNnPgSvP{StOgSff@gr@lf@}t@rWqc@~Wke@pYgj@hS{`@|I}Qv\ou@b]iy@tZov@rUyq@~Ucn@ng@}sAng@uuAfh@kwAdZyw@`Psc@fIeSvWuu@lJsWtVcq@rZou@za@_~@lg@s`AbXcd@jV}_@pUg\xZ{`@jI{Jtf@wj@vd@sb@vLwK|{@ko@rjA{o@rmAed@r`A}Sxb@mHzc@mD`l@uAbd@AthA\~iBAljBqDvfBwKplByUd`BmXvuA}\~tAub@ffAqb@fwAo_Al|@us@zq@qw@fYe^vk@eu@r`@um@l^on@|v@{|A|iAw|Bbe@q|@tf@qy@bi@es@~j@kr@lu@kx@x_@sa@jlCcpCvbBefBfS}S|qAytAjlEuqEpfCmgCncCe|B~gCquBneCelBb`DssBtrAyx@jwA{w@ly@cb@`^qQ|u@e`@|nDcgB`dAch@vqAqw@j`BsgAdoAww@~wEmeCniEybCdjBsaAls@qZtv@eXph@iNbp@qLjx@eLneA{KvAQzUwC~j@aIvuAmXjkAg_@lw@sZrQaHvw@aa@|y@oe@~u@{d@`mAav@zs@s`@vS_JxQoIhK{ElHeCvAs@pBo@tpAmd@dn@iP`G_BhcAiSnbBoRzr@wDbs@q@hFAfJDvkAh@vkAdKvxA`Zbm@fQtq@nVncDdwAf`DpvA|k@fSvXxMdGhCrYjMbEhBzEjBl|@|]`LpFhc@dQnhCxhA`~BdbAv~@h\l_A`WhpAjUbnAbMncBnBd_A_Dt{@qHh|@}MhwAaZzrAoSjyAwJ~mA?~kAtE~fAhHhrAvTxyAl]|qAnc@psArm@|rA`v@xoAh}@dp@ph@tqAxlAfFdEdWrWhb@jc@vOrP~\l_@zf@~k@fNbQ`GpHxPdUtHbKfK~N~Sh[vY|d@zNfVfAhBdRh[Vb@vX~e@hNlV~HdNrOzWlQtYdRtY~NbTj[jc@pOxSbK~LtOzRrPzRxX~ZpS~SrVnVlPlOdRxPtPvN|VxSvWfSrQdM|KpHf^lTtRtK|W~Mt_@tP`VnJlrAr_@tv@`N`}@lI`z@dCts@Wbh@qBpw@Il|@lDf`A|JrVlEbi@tLff@pOpgA|b@ppApk@xwAja@v\zGzn@fJlw@zFt\~@nw@Enm@eC|jBgSpoBsUncByRzScChZkDngBsS~VwCjg@eE``@{Bl`@y@`bA[ja@p@f|AdJn~@lKxb@`I`uAb\dpA`b@`q@xXxs@z]ptAvr@daB~r@vxA`h@fxA~^fbBt[prB|U|w@`I`XjC`CTt\zCxEb@vt@pFbu@lFf[bBfS|@jM^r`@~@bSFz`@TnRAnLSxXQxAI|Qk@f_@}A|TmBrZwBp`@eG|XoFbYsGxQ}EpYyIdXmJl`@_Ptg@kT`f@uRjm@sVr^_Mha@qLbZ{GxJkBzSqDnK{ApMeBhYuCnm@oD~_@u@jr@X|q@zChbAlE~f@xB|m@`Bpf@l@fn@w@xm@uAx{@}EjZkCdm@qGth@{Hf`@{GjtAqY|`@oJd{Aka@vs@aUbs@{Upm@oT~^mNxs@mY~RuIpd@mRrXkMvf@uU`l@iZlZsOlCuAd_@wS|k@w\d`@cUd^_TfYqPf^aRbX_LlYoKxRmG~YiInYuG`SsDfTiClYwCpS{Ab`@wA|RQvSBtg@zAxYnB~_@pEfg@nJrYvGrSnGxDrA~LlEjMxEbIxClZzMrXnN~QdKv^vUt]hWvJ|H~EpEzPtN`KpJlVxUzK~Lna@ne@`V|ZdUv[b`@tk@jUl^fw@jlAxs@|mAv^lo@|h@zaAzl@riAt]|r@j~@nnB`cA`|BxOn_@tLzZbOh^dVlm@xu@dpBjiApaDr{@vnCb[ncA`p@z{BllAdmEt^dtAb^~qAn]rnAtY~|@fZtw@h`@t}@|]xq@`^fn@pe@rr@ja@jg@d\j^dc@ta@h\~W`d@hZ|XbP~e@bU`ZpKhk@pOpb@fIhm@`Hlp@tCdg@w@ve@sDfb@kF~WcFxx@eOjCe@fYcE|K_Bxt@eIvg@oDzf@iB|Rk@n`@SfS@lY\`Zr@pf@zBve@pDlT|Bfg@pGfUrD`c@zHlc@|Jrf@hM`m@dP`iAbWt_@pItZ~F~_@zGpg@vIjg@xJhgAnMxYbDvl@rF`g@|Dhn@nEjm@nCtm@rBxcArBz^b@xsAT`o@_A|n@aBhs@_Dpt@kFrm@gGfq@eKht@gL|g@wGb]oDd`@{Cl[_AhTe@~^d@tTNlZnAt_@jCjZzCzQ~Bl_@tG`[|GtWnGdb@fMxj@xO~a@zKt[zHxSfEb[nFlXfErf@nGdSdBl[jCvd@jBhg@~Afn@Dz`@{@xf@Qxf@g@zc@Mnk@A`^V`i@n@nm@pAhWz@nTt@dg@|B`h@fDrRrAvDXjg@lExm@pF|l@nGda@fEdf@~FrXlDnTjCdYdD~XrDhMfAjM~@|QjChp@`JzQdC``@dGftAxSnm@jJr`@dF`h@vEzs@~Cbo@Nrj@oAhq@uDvS{Bb[oDpf@}J`_@kIhQkEro@mRvl@_Vz]gPf~@uc@lc@iUjjAcp@z]sTl}@al@pdA_t@hoAk_A|aAis@x_A}m@dkAcs@hfAgk@n^mRlf@yU`c@gR~w@u\bt@}Wn^_Olq@yX|e@gTzcA}i@lSaM~cAwo@~bAmz@re@_c@`ZyYrNwNbJiJlf@ei@zk@gq@ts@gaAl]ag@f]wh@x[we@r]gk@nd@ct@`}AgdCnd@yq@xZ{c@bU_[f]ke@pr@a}@vw@_`AnmAetAhu@su@jaAk~@lqBgbBhr@qg@rc@yZneAsq@z`Aik@p{@ei@`dA_q@`iAiv@`kA_z@||@sr@d}AowAfb@gd@xlAevA|Yo^t\{c@rt@weAphAghB`Z}g@~oCaoFliCskFzZ_q@ne@wbAj~@k{Bnu@iwBh]ymAbV{`Axv@oaDrt@euClt@ynCvRsr@|g@ifBhj@}fB`~@ytCb}@shCj`AukClqA{cDlxA}hD`nAcmCn_@kv@zQe_@|]ss@ptAmiCnrAk~B|@}AttAc{Bz}A{`CroBwrC|v@ucA|aAgzAvn@aeA`k@ggAlj@ioAnk@atApa@ygAtHqUzg@y{AVu@blAmcEhTyr@tR}k@jUsp@~Okd@lCeHnKeZfMqZjHsQzP_`@dOg\bR{]rM}VhJiP`JaOlKmR~OoTdGkI~CuEtJ}MbJ{KnPsS`QqR`I{IhIgIhGeGpMoLzSwQ~RyNrGgB~DmDzsAgy@|x@cf@~i@q[zrAk`Af`@a\~l@gn@rk@uo@|cAmkA|e@ao@jVs_@|R_\tSw`@`Wwh@|Vwk@rR{h@jVqs@tUav@lY{jA~Lak@zEsTdUciAjl@mqCzXcjAvi@aiBl\kcAd`@mdAlT}f@|c@ueAto@uuAxs@auArh@_`Atr@wkAlu@}iA~x@mhApv@c~@rWcWb_@w]fcAwv@tb@uYjy@yb@xi@mVzbAcd@`HsCv]eNfT}Ih[qKfj@gQte@gMvYcHpf@mJpZgFzYwD|m@cG|f@aDj`@iAnm@eA|a@Rfm@zAvf@|Bbh@xEnYnCpm@bGjh@lFrm@dGhg@zEft@jH`g@hFjAJdKfApm@|Frg@hFp_@rDbNrAnf@tEvg@jDvn@zCbZhAdg@`Bd`@^za@RrhA}@dm@}A~eA_FfcAuIls@qHljEwh@xeGss@dtAoPbgBkSj~@_LdpBwUdI_Ata@yEn_A}KvRsA~VqAzTSxc@[zb@z@ri@fCn[rCfm@xIzk@vL~SlFjPrEnYtJdA^vIvC~i@bUvl@lZfj@|]ldA`r@rv@bg@`f@`[bi@l]fGlDx@d@pj@t[zb@jTpg@tVrYdLff@~QbA^xFxBr[lJn`@dLzz@`Rlv@pOd_A~Ltb@lEf~@nKdmAdNzn@tHn_Fbl@v[vE`}@`PbrAnZdpDj_A~n@hO`yBpk@f~DjcAvwFbyAl_@fJdnA|XxUjE`Cb@nGjAll@hLx_@bGr`@bFj`AjKnr@xEpYdAbg@tBzPv@pMJdYTrq@g@`GAfAA`gAQf^PdUrAbOz@|YdD~m@xHvBVxBX~{@nPb{@xTldC|m@f]|Iv`@hKpY`Jnv@~Udx@tRhTjFxgDrz@bCl@~zGjcBzj@dRpGrBfz@lYvKpD|Bt@xJbDnOhHxi@rYn]vOfChAvAn@pTnNj]bSbB`A|LdH`QnJtR~I~\~GfOzFnBt@~DzAvd@fUrHrD`SjJlB|@pQlIva@lTfe@|OlLbCrK^rLu@tI{A~HqDrIaH~FoHlCuDvEaIpCwF|BsEhHgPzG}OdCyFpF{MxBkFzCgH~CqHdDaItF_NpEsI`DcGxsBauD~_BkwCtQ_[xNgVrEkHpEgH|DaG~DyFzGmKnIuL|OaRjNgOtMeM`N{LnK{I~FkElIwGxIkGpI{Fz`@eTfJsDdBs@vDyArLgEpMgEvIaBzBa@lGkAtQ_C~PkChRwKlL{CzZkFtLgC~D{@xDy@fGmBlHeCtGkDzGyE|HsHrGiIlSw[pMq\|HcQlIkPzFqIdF}F|GeFpGqD~GcCjHaB|Gw@hH_@nLd@|Kv@nNpCh^hJtM~ChXrGjHdBxwA|[hSdDt@Nfn@bLvc@~G`fAnQ~AVpb@fH|W~Dfb@dGxId@vMd@nLAbhBoLvVcB~AKnt@aFvz@gHta@}Hb\cK~N{F`PwHd^iRnKaFzLwE|OgDpNeDjPeDbNqC`Q_ElOsEjTuGzXyJr@WphBkn@fa@sUxMoIdMmJbPeNdZi\tUeW|@aA^a@xN_NxQqP`NoJpGqExTwPf@_@rmAg_Ax_Ait@``@oZ|@q@r|@gr@jhA_{@zu@qk@tZcT|J{GDCnKiHpLoH`LgHlJuFdBkAnA{@tFyDfF}CnLcHhZ_P`RcK|PkHlQ_HtSqG~Q_GhZqJ~LcFjM}FzZsPbBcAxHcFrYqPhjA}q@nl@k^v]wSpQ_KnUyLlm@_Zr[kOba@_Qj\mLfo@cUbzA_h@ne@mPbN}E~RqG|Q{F|ZwGd`A_OpWiEtd@mKfo@wQpBm@`l@oQzhAwYlbAkTzaBcYf|AcWx~A{[rVgH`U}F~lAq\v_AkZnWiJhj@_T`[aMx^qOry@k^dUwI|ZcNffAee@zf@wXdbA_d@zb@iRfm@cYdX}Nba@mWhQkL~XuR~Q_Q|\s\f~@}|@d{@e|@fq@mo@pyAitAjz@us@r|@mt@xyBmbBx^oWvQ{Ll[cRx[sPlj@kVhc@kPdn@yQto@eNbf@wHt]kDld@oDbmAuGdk@gDtj@{Eho@mD~cA}Fhe@wE~Q{Cl\_GfM_DrWyIjVaK|QiJpYuQlViRna@o_@|Ys\hWw\`Yc^lq@ez@b_@u`@hN{Nz^s]~SaR`]aYpf@}]lZmRb^kStb@yTxb@}P~~Aal@ng@_Rpi@aRfa@eP|Y}LJExm@w[f`@iUnd@_\va@q[hn@_k@hb@sd@|`@wd@n]}c@p[ic@p[qf@xYke@jYch@zs@wqAxY}h@|\og@zWg[pXkYzVkTtWeRbXiOx\kOrp@uUn]sN|TgLfTqMff@c[`|AuaAhyAe`AfpAgx@lx@{g@zb@uVlZiNpk@}S|e@wLbh@cIje@sD|\_@r_@b@xe@jC`f@hGzlAhXpyCtv@pyAxa@v|B`r@hqBzp@zj@vRfgA|_@hhBvq@~iA|e@pTdJ~q@h]te@~WntCjgB`{@ph@vx@xb@pe@pSxe@jPrc@dMfc@nKv`ApNldArGln@z@`n@iAtcC_H|x@qC`nA_EpyB{FtiAgAlnALzg@ZvnAnCtx@zCxwAzGbk@vCteC|PbeCvT|rCh[l|C`b@zqBz[zdCtc@p~AnYz_AdPd}@dJfjAfGhy@jAxnA{Als@wD|r@oFx}@eI`~@gJpsAsPny@uLtiBuZfuAmTdVmDhWsDtv@yKdi@iHpfBeSvyAyO~_@_D`xAqLn`@{Cxi@aEph@uCxTsAbY_B|s@uCxRUb`@Bdg@r@`g@nAbn@xDni@|Ebl@hIzq@`M`q@bPli@xNlb@tMf_@hM`a@dOf[vMvc@xQbeArg@dn@nZxeB|z@d`CbjA|hAhi@ny@j^tn@hWr|@`]lt@pWbg@rPjXjJvgAb\xNvD`YxFz\bF`X~BnSp@|\Fn^}Axc@kFva@qIv`@eNxh@yUda@kWnYeUd^y[l^sa@jg@sr@h_@}n@r`@_z@p\{z@pYy|@jVc~@ja@cjBp^ufBh[}zApIya@|Mwo@jNcq@d\kzA|Oiq@b_@uyAzYieAxX__AnRom@hR{j@`j@a|Atk@gwAho@kyAty@ckBl{@gjBxKgUnxAszC|yAczCjxAguCtIcQ`dD{nGnwDqfHlbAwhBpkAcwBdbA{mBns@m|A`e@efAt^m}@rt@mnB`y@k`C~pBceG|k@giB|d@ozAdeAqkDbaA}dDz}@abDld@}cBr`@kaBn^{cBx`@{tB`RggAzN__A`Ne_AbOiiAf@}Dp`@wbD~BmTnQs~A|UexBvi@gkFf^}gDzOmpApO}kAlJyp@zG_c@lHic@lGo^hE_VnKii@jIk`@~Hw^|Lyg@bLce@~DqO~Js^tNuf@|FoRrLw_@pWiv@fRig@fPqa@|Rwd@~Xan@tNmY|N_ZdOsXhOcXzUo`@db@un@xd@qn@ns@}y@xm@om@`q@sk@dlAu{@bmAcy@`w@yf@\UfdBwbAtsAqs@lgAki@xx@oa@ftAkq@hlAil@~mAap@zxAy}@jq@se@ns@ej@~r@km@du@wq@xx@sy@zt@wx@fb@ag@j_@_e@h_AwoAnq@{bAjs@{hAr|@_zAv]_l@d_@}j@`\ed@f\ea@d\y^h]c^~\e[t^cYv^sUf^eRbd@mQhd@wMrb@mIx`@qD~XiBhYQfm@dBrm@dEfXpAbW\z[o@~RmA~XyDtV}Exa@{Kbl@{Tdi@mUbx@e_@tiA{j@zx@cb@f{@ee@lZyPti@c[fmAau@b}@cm@|h@e`@pv@{k@jb@_\zk@_b@zlCyiB|pAsz@byA}~@~b@uXr_Aqk@dbCgvA`vBakAdz@cc@~z@wa@lv@e^pv@e]|v@s[bx@qY|eAo\xdA_Y~aAuTtcA}Qzv@eLrw@kJfn@iFhm@cEbw@{Czy@Qp}@nC~y@zGft@jJh]rGb[hHlcB|d@v`Bfd@l`Bf`@`cBv]tpA|SppAnOx`AhIhbAlFz]nAvZx@ry@p@~jAm@f`AoA||AoExf@yBtt@uDzvA{JbvAgNfRyBhTkCd[wDhvAsT|w@}L|RaDpi@yIx|AwY`RsDneAgUfe@qKzkAoZxeAoZbeAe\h_Ay[b_Ay]ps@qXnt@aZrt@eYvt@eXh_A}Yd`AiWda@oJv`@oI|bA_Rvr@eKtxAiPftA}J~tAgIrfAmFdqBiJzi@{Ch~AkIzz@eEfcBmI|pAcFxpA}ChfAkAdhAYjgChBtoBjF~nBfIliBtHthAjDziA`DtkAvBjy@vA~bCbB``CHd}Ak@ddA{@fg@i@pg@y@bq@qApoBkFnrA_FbrAuFlxAyHxbBoKn|AyKdz@cHdgA}JdjAgL`uBqUh`CyZjxAqShjAyQ|_@iGzsA{TthA}SjZsFjbBm\~jAeWtf@uKnp@yP|^{KrlAa`@n]aM~pAgh@xoCutAje@oXdd@uXt}@ul@py@kl@LKdf@k`@be@i_@tHsGdTaRf{@sv@`p@an@zp@qn@z~Ac|Apo@cl@np@ul@l{@}r@b{@un@fbAeq@tcAon@|fAmm@hfAmh@faC}cAldAed@xs@w[xfC}jAj_A_d@p|@cc@taAqf@`aAgh@lr@ga@zq@gc@vr@ye@tr@ah@n`@}Z``@_\x_@e\|_@}\tbAo}@n_@_\pb@i^`y@yn@zy@ml@~x@qi@`{@yg@|z@ce@v}@cd@jaAif@r`@qTj`@sUja@yWtb@wZna@m[la@o]jx@kt@lw@qy@n_@ac@z`@kf@t`AgnArc@ql@ha@ik@fa@_l@`c@io@hc@ap@tb@yq@tb@{q@lb@ys@~f@oz@lf@k|@j_AscBxKaS~FiJrYqd@t`@il@vl@su@hn@ur@da@o_@jb@o_@~h@ga@~o@ud@vvA{aAzi@k_@hkB{oA|a@eXba@iW~ToNjgBofAdo@w^ta@uVvqByoA|U}Olg@{\jsAy`AftAmdAvfAk|@rbAm{@vh@ee@`h@qe@xd@ac@vl@yk@nuAosAhj@ki@hk@ki@zsAkoAjk@sh@`}AquA|o@uk@liBg~AvkBw}A|s@ml@~r@gk@z}@ws@t}@yr@l_Aus@x~@cr@ju@kj@~AkAt}B_`BjaAio@drAky@|h@e[ni@wZjlAap@lv@ma@~OiIpMyGfp@m^b^cUh`@{Vjp@{d@vw@cn@lt@co@f]w[bf@gf@xs@aw@fq@sx@fl@ku@dVy[z_@}i@`_@}j@hh@yy@b_Ag`Bvj@ebAfk@o_Apo@u`Ap~@}mA~i@uo@do@as@lq@ep@fq@cl@xp@ch@nn@}b@dt@id@tu@y`@dx@a^fhBcu@ft@_Z|cCqeAzkBsz@zs@o\ls@{\~w@_`@ju@a_@tkB{_ArhB_`AtpAcr@`i@gZ`k@s[dhAyn@tgA_p@bxC}gBfw@cf@rm@y]lVqMzX{MpXgMdXgL`p@kVdt@aUnhAiXrgAiRjq@qKpq@mLn`BmZj~@eRpjB{a@nn@mO~mCmt@no@aRh_AkYv_@_M~cAe]nr@sVpl@eTfLmE``Aq^|pAsh@tz@s^zo@wYnt@u\`bA{e@hZ}N|a@cT~}@ge@jbA{i@fyA}y@`gAgp@lt@kd@v`@eWbbAwo@pi@q^tdAgt@fy@wl@jz@on@tuA_gAjo@_h@f^_Zld@i_@z|AwpAlz@es@zs@an@dhBo}A`EmDrmBgdB`lB_hBxt@au@ft@su@~hB_pBxfB{rBtfBqsB`p@yu@xu@sx@|\q]`[oZhw@yr@zbAay@ngAcw@~_Aun@haA}n@lcAoo@teAyp@|yB}rAtcFiuCbdAcm@x|BeuAnaBceArbB{fAxrAq}@`jAex@`lAwz@rjB_uAj[}Ud\}Vrw@mm@tp@{h@tq@}i@|`BatAvbEgoDjfD}{CpbFo_FhRwRdn@ao@btBeyBheAejAjyAiaB~yCqlD~b@_h@hxA_gBjtAwcBdYy^zrAqeBdnC_qDnjDy_FtzAk}BlqAutBxuCs_FjqC_gFjyCq}FtoBkzD|kB}tDfkD}fHjcD{bH~eDkrHnpBovEVm@jrAudD|q@mhBvPad@pi@qzAh~AqqEbxA}oExrAumE|zAsoF`bAqwDx{AejGbgBqyHfnAssFbQsv@fOkr@nH{[ns@c~Cvr@iwCpZsnArl@}`Cj_A_qDdjB_|GjiBqlGprBmvGpiA}lD`t@cwBbwBwhGr_BqmEfoBihFv{Am}DjvDakJ|pCavG`]yw@tuAg`Djb@m`AdJwSddDggHlaCuaF|q@{vAxcBaiDhm@yiAvmAovBn~@swAfaA_tAncA}pAlm@}r@dN{OdlAcvAtmA__BfnAmiBrSe\ffA{iBj^mq@fr@ktAbf@_dAre@{fAnTih@lQgd@jZyv@bSoh@n]q`AjRsi@fjA{iDh~Am{EpfC{_InlAc{Dz_@{oA`eAcoD|u@gkCbz@qyCddAgwDbq@{hCbg@eqBre@_qBpR}z@jYsqApf@a_Ctd@s_CreAcvFl[axAvYckAd@kBrUuw@pVut@jO{b@tOu`@dTkg@~Qaa@l_@qt@r^sn@~a@}n@pdAovA|aBiuBvYa_@jyAwkBhoAydBzoAqkBjVw_@veA_fBb[ij@lQ}\hZum@xTkf@lUui@f_@m_AtKm\bS{l@pN{d@dVoy@fVk_AbTq~@Jc@zb@urBf`@{mBdk@gqCjg@swBdq@kbCvx@sbCzk@i{Arh@glAbf@oaA~c@uz@bf@{x@ni@uy@fl@gx@fa@eg@na@{d@zd@_f@dq@kn@dz@cq@n\{Uv[}Srl@g]vn@i[h\oNzb@qPj]qLvhAwYvl@_Llk@}HxkA_J``AkBvvA@|q@\vgAqA~q@aE|r@kJpe@}Jz^yJj`@gMh]_N`b@wRbg@oX|_@yVna@iZzd@w`@|f@gf@ba@id@ln@cx@pi@ox@bd@ov@nc@yx@lf@eaA`s@s}Azx@arBrc@goAjf@uzA|c@k|AbVy~@pLgd@lPas@~Lyh@z\i_BnM{q@xZafBlL{s@xLay@zH{k@nMqaApOmsAhNiuAfKygA~Dsg@dIeeAbJ}vAzLwwB|KgrBrNijChJiyAxBy[fLm|A`Nm{AnNmuA`OwoAzO{lAnV}bBrWu~Ahi@spCx`@wgBpa@icB`_@{wA|q@edCljAcvD`uAccEltAgtDbaB}`EtyAweDvrAkoCxw@w|AjjAwuBfbBerCx|@suAv`AwwAtkAoaBjgAuwAj|@ufAf_AoeAxu@cx@hv@qu@ld@ib@pNcMfqAsgA`pAa`AznByqA|GsEdHwElsBauArv@kk@p^yZje@gd@dl@iq@jc@ql@b`@cm@x_@ir@j`@ux@p[iu@dd@ooA~Uyv@nWo`AnTc_AxL{l@fLgo@vLct@rI_m@bI_o@dMkgAp[ywCxN_mAfKcw@zJwp@zN_}@lVopArUyfAhTe}@hp@qaCl[agApUiv@fp@epBxh@k|Ad^gaAv}@w~BpcAmcC~aAywBtfAqxB`eAyoBtAiCjyBsrDzeC{xD`zBk~CvtB}oCxmCybDfUmWdFyF||@ybAbfBekBxkBwjBdrBgkB~zA}pAp_Aav@nlAk_Ah}AuhA|xAibAjmAiv@pzAs|@zcCirAfkAgl@tsAwm@daBoq@ls@uW|GeCls@sUp}@cXd|@aUlx@wRdNuCxyAi[jtBqb@vTsEnMkChMkCrf@uKjoBw`@jtCwl@jnDox@zpCyq@~yBsj@pnBeh@vjAgWnr@gMrq@mJxp@_Ils@kGbs@oErz@{Cpb@gAps@iCj\_@fNOtz@oBpb@cAn]w@xzFwNxq@wAnp@sE|\wDxZyEjJyAdc@eJlb@mLfZuJbYaKdl@sWx[mPhVqN~j@__@l]kWb^iY|NoLhF_EpUqQha@s[x{@_r@ji@qb@~OcMjM}Jdx@sn@tkBgzAre@s]bb@kXla@yUbm@iY~k@}T~e@cOfm@wNbc@aInk@eHno@iEzg@eAbn@Prh@tB~f@bEnt@xXhj@vY~j@le@tm@`z@zUdc@pDzKpAfJDhCRdC\|Bh@tBp@dBz@tA`AbAfAn@hAVjABnAUlAm@fAeA|@yAv@mBh@{B\gCPoCBsCKqChDeX`a@yiAvToo@xU{s@pG{RnGkShFgQxNic@dFiNtGgRz@iC~DmNxCeLfD}M~SsbAbFoWvN_u@zK{g@vOen@vPuh@rPac@xRka@lGoEfBDnAg@zAmB~@wC\{C^sGtZoa@xSoTt`@g[~aBihAn`EmrCjiBwwAnN}JrLaLhJgKrBaCrDcD`BuAbCwAtBq@hCy@VXZP^J`@B^G^Q\YZa@Vk@Ro@Ji@Fk@rC{DnBkBxUuV~KsL|T{YzScUff@wl@b\ac@lzCmhEveAe{AjWi_@dc@ko@rNgTtMwOrVyZvVuYlUiWvvCs}Crd@}h@h`@ch@xd@e~@b]gx@xX{x@xMqg@pQsu@lm@arC~yA}eHv`@siBdO_k@dRkl@`]cz@jQo^`Uua@fZse@dWu\vT}U`RoPrYqTvSgM~VoLxVgKjPoEbJkCfa@uGvF{@fXiAdj@^b`@rDtc@hIfSpGt`@pPvo@hXlX`KhZfIba@dErc@jBxQUfV_BzMkBrXeGnm@oRpYaM|SwNrs@mm@n`BocBnuAuwAtKqLdm@su@l^ui@rYmh@x_AkmBlg@kfAdYqk@pgCefFz[_m@nkBgbD}BgHmHuUmWcy@kNse@qs@oxBig@o{A`BmDtM}XjD_LlDeRtBqUn@qWX}_@b@ao@`@m`@Rqo@BcIj@_q@VcURuMRuJr@{RhCad@|Am\PuMW}X]mNk@i\}Aww@MuGpA}tChDy}JjDw[d@qa@sA{t@p@acBzNacNbMinLi@ysAFal@d@uPrIkDtQbIdzIpvGrE~CdCPfBuA~AaFdqA}tHnB}GhBkAnCh@h\jY~dDttCfa@h^zIfKd_@tk@|FvJdDrFjNdZ~]dz@|u@vhB|T`l@jGbMnIlIrJzEjKx@xHq@bDs@bDcBtDaDtEuFdKkPd[sf@t]ui@x`@gm@joDqyFhHjKdv@~kAr[nd@x@Z~WwYjWsMvQj@dFlD|AdFa\|fAao@n{CiPzn@sTfp@}Rfg@qUfd@mx@jtAcu@r|Ae}At|DeClGmnLrjZqLhY`ZpX|SjWbMnSlO|WrIvJbHrFtJhEbWbK`oAvg@l|Afb@pxBvc@d`Dto@nmBj`@xkBja@~^|K`UjNbZzZrRnVxe@hq@xHtKbN~PlXf]hYb\~MdKnKxGbQtInGbC`~DzlA~PhFpu@hQbjDreAtmBlp@dzBzl@|@VvqEjtAxwBdp@v`Bdf@zjAn_@d}Bxo@~aCvs@|MjEdNzCfQvAtOOhOiArOmDvNeFzPsJjLcJ|MyMhMwPdLyRfIkQhJcUjPwg@bSim@jEnJbEhNdAjJj@rKAnO}@vRaAdQSzIAzGVnGl@zHfDp]bAtK|@`HzAzEjBnDhB|BpBvAvAVnBFpCSdJsAhJyBbJcCpOcC`QqC~Ca@rBo@dBoAbBuBjAeChAiE\kCJ}@VeFDoGDgHIkMlJ_DbHaCbDw@~Dm@`H[|b@yBha@uA|f@aCh_AaDdVbCvXpErWxFtc@jL`vAjd@l`Bnh@hsApb@fc@lN~iAf_@bdA`Yhu@tOjh@hHvf@pFru@rEh`@xA|rAjBtgDtCnvAfDxqAdHvvAvMbsA~QnzA~XnyAz]hw@jU`r@xTfZpK~SrH|wApj@fZtLboA|f@fmAhd@|mApb@pdAt\bOjEv_A`YtuBzi@xXbH|iBze@hwBvo@ncBhm@doBhx@``Bdv@neAfj@djCr{A`nD|zB`cArn@zaB|aAxhCpuA~wBfeAxtBx~@diCrgA~gBpt@`_AxYho@`Px~@vQvn@fJ|~@tIjqA|FnuACz_A}Ct_AuHxaA}MrAQdfAoT`a@mKhf@wNzHsCv~@u\lzAur@~gAap@lr@ye@neAsx@lgAm{@lt@mk@~EyDrIyGlZaVz{@er@rViRdlAm`Ats@yi@nd@{[nc@mXnh@mXnh@kUpe@{Pfq@qRhi@_L|i@_IlSuBnp@gEnr@{A`IEt_@Xtp@`D|eDf]nvDre@twAzRtqBxZbb@lGh~Bh`@d~Bha@ppA~VhgBh_@pOfDz|Av\~_B|\|jB`a@zvBrd@~dCpi@zl@xNl}@jVzbBbh@jzAlh@`i@bRhg@jO|s@rRvq@pKbt@xHvjB`R`}AdUhtAfV~xBtc@pmAnXtm@vLfnAjTvoAxVjVbF`jAfX~fAzZnxAxf@nz@f]niAbe@|bAba@lfAh`@bn@xTvy@`XxpBtj@rdA`WpfAvUdtBp_@x_ArM|YnDbw@fI`q@hFpw@dEdz@jCzqB~@l{@uAfz@_D`qBsMd_CqSbCUv~Iav@xnA}I`Su@bb@\bYxBh`@rF~`@hJvP~FxTnJfi@tXh^pWdWdUd_@b`@za@nh@xYzd@f_@hq@fXxl@fYvv@jSro@vS|x@da@tbBhYdbAdUxp@hZju@`\bp@xYxf@xVv]`Zt^t^|^fh@nc@flBt|A`vA~fAfhAnr@jk@tYfq@|Wlm@zRzp@nP~m@`K|n@bHzp@hDf}@XdyCeDn{CyDdtBoClhBmB~`B~@fYnA`^|Abi@xCbp@bGn{@jKvv@fM`v@bOl`A`W~~@hWf~Cp|@taA|XtqFd}Avr@~RneAhZdbKpvCh|Ajd@ruIfjChuKliD|uCz_AnbDbfAdsG~wB`nArb@jxAzf@riDbjA|r@bTrx@tR`tA`UdfAxKvdAlEpUZnDDtbAE|n@}Azs@qEn}@iJv`AmOhn@iNvj@oNxr@kT~n@wVx_Bcp@r~@}^dn@wTzb@iMtk@_Ovx@kOtj@kIxz@sIthBqGx`BwDrmDiG`_B_B|aGoFncByA|`B_@xsAbBlvAhEfxAvG`Qx@llDxPblAvFr}Ivb@nRz@rg@rDfg@|Ip_@`L`]tN|[dPda@hXr]nYf\r\nZb_@t_CldD|qE`oGpxBf{CrdAxxAr`@xp@h_@`w@noA~uCzuA~aDjwD`yIlwCv|Gpb@t}@tc@~y@n`An|Ahh@~r@bj@~o@~\d^be@zc@reAr}@p\tXd{CpfCbeDxoCht@jm@hv@zn@~XhUrVjPtY~O|SzJb\vLjcA|^znEd~A`t@dWbo@pTbaBzk@`}@vZfz@|Wv|@|Uhp@fObo@zMfoAzS`mGvv@v@Jz_KjmAv|BrXds@vHrp@nEnk@tBbs@l@br@a@vm@uBdhD_QxiDgQrmByJ~Yo@nJU|z@Tdn@`D~o@|Gdm@rKxU~EdXfH|r@dUr[nMr\dOri@zYlj@n]|u@vk@fq@bl@xj@bm@fr@pv@bnCv|CxwChgDnbCpoCtCbD~~AdiBvcAnnAfw@rbAr{@hjAvGhJdrCp`EdmA~fB|kAddBn_@ph@d_@df@na@nf@x`@~c@rUxVxV|Vzf@xd@ti@fe@le@|^zr@pg@ju@|d@fzAxy@lnA`r@zn@|]|WlOnq@n`@zf@`]te@h_@jh@le@jm@jo@r]xa@tW`]d^pg@tg@`w@bYfg@j\ln@jg@zeAxDhItFlLp_AbqB`c@z~@vXpl@`qArpC~~A`iDn}Bz~ErSxb@fT`c@|Xhh@jGvLl\jj@~CrF~Vb`@dLfPll@nw@hl@vp@xh@ji@nc@``@le@j_@dsAf{@lQ~J~a@tThSpKnOnHf]hPjf@pSvPjHl]jMjWnJnYpJ|e@dO|k@vOzp@pOr[rGpi@bK`j@|HrbAjL~]tC|v@vEr_ArCnWR`y@Tni@y@jm@oBli@yCrh@_E`_@aDtt@eJ`T{Czy@gOdASte@yJtf@eL~gAuWbvBmg@|xBgg@lUaFtVqFrp@aN|r@yNf|@_QraBoZ|aAcQhkA}RbjBeYjrAiRjzAaSnjBsTfkAiMfe@cFnp@qGvtAiMv}@iHhYcCf~AyKvf@iD`gBoKfvBsJbqAuDvr@}@lpAUffA~@ze@jA`g@pA`nAvFhsBtOr{@lJd{@jKbY|Ddx@jLdgA~QfgAhSvuArZbcC|n@bnAp]thAxZpiAzWpl@rMfvAjXdz@nN|q@zJbt@lJl\|DfgAzK|]vCx_@fDj|AvIpjAlErRh@zb@lAtw@|@zgB\h~Ae@n}Aq@dwCeArn@Mpo@W|i@Wtk@U`uBq@zfA_Adn@iBlp@_Ddu@}Eby@cIpmAeOnjAqRju@aPnw@}Sl\mKd^uLbmAwd@nmA_l@hvAsu@lzAgy@xdCuuAvhCu{AbNcIhtAiz@JGl`BkdA`X_Qf_BufAhiBaqAvu@ek@xz@gp@l|AknAlu@ao@hhAcaAzYoWjmAuhAv`@c_@ne@_d@`e@gb@ld@o^l]kVvMaKtf@_[jc@gWbr@_^xt@o`@naA_h@t{@qd@bq@ua@nq@yd@bw@im@`y@us@~h@sh@pg@ii@lp@{v@jp@{y@pdB{yB~k@mr@vX}Zny@mz@zZuXrn@gj@z^oYj_@oX~t@gf@vkAmp@dv@{a@fqAcr@dWgObj@a^|f@a^nx@kp@fo@om@vUwU`r@iw@xk@wt@`{@ynAft@emAniA{wBbiAuxB|s@auAhv@gyAxnAuaCrj@_fA`{AwuClm@yjAxfCc}Ep}AcyCfjBimD`t@epA`q@}gAdl@}}@~e@os@hw@{gA~_AwmA~j@oq@r_AafAjrAktAbgAccAnw@qp@la@i]vaAut@p|@mm@x_A}l@`pA{r@n}@md@paAec@ziAyc@hoBwq@riC}_Ajl@mWh[kP~p@a`@bv@ih@||@ys@|lDk~Crq@om@jr@qi@lk@s^lg@oYdi@eV|h@cTd]_Krq@gQfd@uIx_@mFdf@kEvc@{BvqDcPrsIw_@|j@eDfq@aGbr@mJxs@aN|aAuVjnAmb@zMoFrYwLzQoI|`Awh@vm@sa@th@ka@hm@ci@ln@qn@~_@{b@tb@ii@v\{d@vZcd@~kAwpB`_Au`BvkAysBd]im@dpI{_OpbAkeBh_AkfBvaAaqBv_A}tBvx@_oBbx@esBlwAacE~bAswCh\i`Af]m~@nb@ccAjb@i}@xe@i}@vd@ou@hb@qn@nk@mu@bf@}i@hb@uc@xj@_g@zm@we@vx@wg@xw@}e@`hD{pB|XmPnyA}{@ncC}xA|_@qUdxA_{@zeCuzA`v@cg@hm@qd@djAcaAf{@mz@bm@qp@lk@cr@bgAuzAlWa`@|rE__H~dCguDdtIynM|g@ct@bf@ul@jk@in@xo@cm@dg@ca@vs@{f@`k@k[~e@wUhr@qXhaAmYdjD{}@boB_i@v|C_y@r|DoeAd`EyeAbxBio@vz@u]~k@mZx~@ol@dl@ge@`IoGhb@{_@~c@qd@b_AiiAhi@wu@|z@_wArr@upAzRo^`mCm`FpdAwlBtw@uxA`aA_aBfo@e`Anh@qq@pg@ml@ncAccAhh@md@zrAegAhgAm}@zd@y_@z|Ao{Axk@_r@jl@}y@pg@az@dh@uaAzb@ubAj_@}aAj]seA`\{hA|\kqAzYgoA\{Ajq@wzCh_AegE~bA_rEpJcc@~yAozG|k@alCj_AqpEli@aqCvm@}fDrd@clCrj@_hDxn@}{DluBctMlzAkgJdbDwcSjiCg}OtIsf@|U_kAl^k~A~YkiAd]_jA~Wa|@zZk|@lb@ogAb\}v@n^aw@p^us@rd@}x@tu@ulA`i@gt@lm@ov@p]q`@de@if@dd@ob@`\aXd[aWtdA{s@vt@_b@fIgE~q@c[xh@eSr`Bqi@`}Aig@pgIolCblCy{@ddA_]|bAkYrg@iMr}@{Qz}@{NvnAqNtbAyGnhAgEdcA[ht@?dbBZzO@bcEbAf{Bh@hcDn@|TKfoASngE_JtmDaRbh@{CjuBkM~oBcLnxFq[jNu@jaBkI~pAgJ||@oGzeBoGheBVrx@jBvp@~CziBzN~Y~AjUfB|wGpe@|`Fv[fw@c@di@gBfUcArLkAzVoEv_@iFtLmCrGsAr[uHbn@kVrUsJbXyMlY_PvU_OzMkJhd@m]jh@wb@zl@}d@t[gStl@g[nk@kWfm@yVvl@eU`rCkhAf`Bun@feAg^pbBck@xeBkk@dz@}VdcAsZpj@sPjmBij@|hBu_@bnEggApwBse@rb@aItTcDrP}CbAQx^mGdMwBvx@yLzK_Bri@mHp@Mvl@sIf_@cE`\oD~zAeSj`A}Nl`@cG~l@wIzy@kOrg@wIpp@gMf^iInj@cMzc@yKn[uHp]iJrWgGn`@kJ~ZaH`a@cIzg@aJl[kEhYiDrWqClgAuOfiAaGnhAkDpjByErxAzAvyAtB|b@lA`_A|Dxe@lCzXrBxSxBxStBf[xDvc@xGbUdEt_@rG|ThEb_AtRnfAn^|PxEdSlHrG~BdYbK`e@pPzt@vY~NrGhc@~Pvn@`[|jAhe@|cAzi@jy@|e@bz@pl@~cA~u@xz@zs@jAbA|~@raApAtAt^j`@tFxGlYb]dTfXvYdb@bc@dp@n\bj@t]`p@~Zfn@bZto@hb@vdAhZhx@bi@laB`h@jeBRr@`EjNvSxs@bNre@bg@vaBrh@naBn_@fhAtS|k@tc@~jAf]jz@pSle@pSpc@`LfVzQr^p^~q@pp@piAvJpOno@x`AnfAb|AvYzb@lf@~q@tiArdBz{@fvAps@toAbdAjmBpa@lx@`c@~`A~c@~bAxLpYlZvr@xZbx@zW~u@zGtR|IdZjP`j@nFbSdKta@bPvn@pMpk@le@hhClNf|@fMr}@xFhf@pO|vArLtwAvLjhB`Hh}ApCh|@hBteAp@tm@x@fgA@pw@kAlpCw@nhBw@jiB{@~lBa@jw@Yx{@I`u@Txh@^hj@`@la@b@v\`Fl~BzFzfCzF`tB|A`k@pCdz@lB`i@~D`gArCx|@pE`aAjF~`AdClg@lD`n@hEjv@rKrhBpEdv@jIdtAjCli@nEr}@fEvgA|Avh@x@zh@{@tvAm@pp@k@zh@]nl@h@fb@\fOh@jYr@f]dB`k@lAhg@x@vh@l@jaB|AfcBkBja@q@`Ks@lHsArH_AdDoA~EoAzCoC`DiB~A_Bz@{Bt@sBLeBEkBW{Bi@qB_BmBkBeA}A_BwC}@yBs@yCs@}Dq@{EUsFCqHNqDZkEn@uDv@{DhAyCzAsD~A}C~LiMjSiIvtAch@vI_DbSuFvO_EnKyBlIyBhJkDxPcGpVyLb}@{c@|O_IzPuIjs@s_@nr@aUx]gK`o@gQ`oAaYd`BoYhq@cJzo@wHbbAoHtg@oD~k@_CrhAcEz_AoDv}EiQ`dA{Fpc@}Dpc@oEtq@yI~r@qKhg@oJjVeF~gAuWn`AqX|v@eW`i@_Srh@ySlm@eXx{@mb@nx@ic@z_GsbDfs@w^vy@w`@nn@aYfu@kZpv@wY~{@_Zf}@gYxcAuXflAcXdm@_Mro@yL|aCca@|r@aKlfAkNpbBmRbiAuKdhCeS~jBkJt|@wAhf@jAdk@|Cvf@vFn\xFxZlGf]|IpYbJv[bLpZtMfYbNtYpO|YtQ|_@tWzZ`Vz]tZnSpRdVpVha@fe@|c@fi@`[``@vv@d_AVXj_@za@ze@bf@ja@t^jUbSfUlQxUlQ|MpJh]xT|a@xVn_@hS~c@tSjk@~UdYhKhp@rRbXfHv_@vHxUhEhYxDb]~C|YbBd]r@la@Ova@qBf_@{CtWgDnWyEdc@eKf]qK|TqI|P_HfTaKrPyI|ReLxQkLt[}TnWaSnOcNrr@yn@~z@ex@dz@cy@tlAqmAruA}xAve@ah@rWqYvg@kk@zl@oq@ve@sk@lf@{l@`OwQxRmVjYa^lPcThUiZxl@mw@ni@{t@v`AosA~bAsyArtAkrB`_Bq_CrzAozBtg@ot@|g@gs@nx@waAth@uk@jh@{h@d}AexAv]_]fs@_t@x\}]xm@gq@bi@mn@rg@an@fVkZt`AepAbn@ox@jg@wm@tVcYzyDefE`~@gcAnXq\v^ye@la@ok@f_@wk@tk@gaAvd@g{@~e@kbAfe@qfApSef@~Rmc@fTcb@rSi]rXu`@rTiXfT{TtQgPtXuTbc@}X``@aSz\kNdg@uOz\uHj]}Ef[iCz`@oBjzBwKjyAcHja@qAh_@]~WLn`@dA~c@lCjw@rIps@rJp^`E~R`BdZx@jQBtRWxYoAvNkArTcCpSgDdSiEvPqEhYyJdQqHxRcKxQkLlPgMzQsOfUuUzTaXdf@gq@tb@wl@fYo^rSiVrY{ZlY}X~VwTh`@a[xrDskC|zA}fApn@yc@rl@qb@dg@o^nd@c]lYeVdEqDjSkQrVgUfO}NdPyPzHcInTaVrY{\xLaOzc@sl@h[gc@hVk_@`T{\|^_m@ne@kv@bIyMfDsGdF_LnC{FvAwBfB_CnAgA`BaAtAk@~@StB_@dAbAfAp@pAb@tAJrAIrA_@nAs@hAiA`A{Az@kBf@eBb@mBVuBPyBH{B|EmQvEiP`EyLfGsP`GkOtv@}oA~y@atAfx@aqAhh@e{@dPuYjOkZP_@`MgYdKwZlJ{[|Kob@tKif@`Jqd@nHua@bJqj@vHqj@lNmoAnCiYnDy`@rAqP`F_o@dF{o@p@qJ|B_Z`E_m@jEsp@xDcq@xCcm@zCsq@bFqxAlC_cAlBc_AhAk{@bA{lA^e_ATmeDh@abEVql@f@{h@f@_d@nAeq@dAq`@`B_h@nCun@lDgw@t@kP`@oInCwq@~Cy{@nEacBbSkmEvKoiCxFq}AhEinArMgcC`@aJXuHZaI`@_L`E{gAnAgl@`Awg@xE{qA~DigA@sAt@{p@LsHlBehAb@{hARc^`Aqj@dBqh@lAkYvC}i@hEys@h@yHXkEhDyk@h@gQ~FqrBdF_rBjCkh@lCo\fAgNtA_ObF_i@fBkRxC}YvFec@~B_NdAmGtBoLxBgNlDqZnAaU`AsHhB_NnDaVnEgY`Kqo@vHue@~AsJl@uDlMkw@fDaSbCkNhCwIfAaGv@aEjOe|@jFg\x@uFtDmX~Dw\zBoQjG{o@~ImdAxRmyBlGu_AtAoVXgFpAq[lAs_@vAs_Ax@s_AYkeAeAkz@c@k^i@q]kAkw@sBewAgAidADqh@^ee@t@ev@c@_YdAkKzBwApBgD~@oDf@iIKqDYiCaAuDB_SQgJAuTd@os@d@wUNwVbHywB|c@s{M~F}eBhBoi@dYulGbEmy@v@wO|McsC|CibAt@mUvAkd@zKmcCbRiaE~HwsA~Ja{A~LyaBjW}yCfJix@tJky@tS{eBzKix@pVk{ApQq~@zOmu@nRqz@rWkbA~Wm}@zm@kiB`|AcbEn`@qmAxm@sxBjm@kyBlk@gdCjQ_y@lVukApVgpAf[mcBv[ucBnLsl@xKig@dNsg@pMo`@~N{^dOi\pPk[fO}VvOoSfReU|l@}m@rR{UbK}OfCkEhDoGzFqMlB}D|F{O|EyNjK{`@jJ{c@lKyh@`Nos@dPoy@bTgbA~s@wpD`ZkxA`Qsw@fA_FlGmYr~AorHvMgn@zSsqA~SevA~J}n@jG}i@`Fs{@~@oPr@uLnGuhAxKglBhC_d@tEk|@xIozAzI}xAr@aM|Jc}AjC_c@~E}w@d@cQ~@gmADeVBeKLms@vAo~Br@uqC?q@lA}sCxAioDFkMDqI@_F\}`AJs\HgR@wBp@{gBd@ktA?mHAaCEsEG_IsAis@q@y\w@gv@MeX?}X`@_h@v@m~Ab@uh@ToX~B{`BpCqhBj@sS|@sTxBkYrKenAb@{EzHwgAdA{N|@sQxDqm@tWecDZ{EfBoYxAgX|OqzCpNsrBvPsbB`i@alFjSkhBdIcv@`Iex@fHcp@hAkIdAaIl]wgCpKqw@xM_dAzGwg@polyline-0.10.1/src/lib.rs000064400000000000000000000155331046102023000134500ustar 00000000000000//! # Google Encoded Polyline encoding & decoding in Rust //! //! [Polyline](https://developers.google.com/maps/documentation/utilities/polylinealgorithm) //! is a lossy compression algorithm that allows you to store a series of coordinates as a //! single string. //! //! # Example //! //! ``` //! use polyline; //! use geo_types::line_string; //! //! let coord = line_string![(x: -120.2, y: 38.5), (x: -120.95, y: 40.7), (x: -126.453, y: 43.252)]; //! let output = "_p~iF~ps|U_ulLnnqC_mqNvxq`@"; //! let result = polyline::encode_coordinates(coord, 5).unwrap(); //! assert_eq!(result, output) //! ``` //! //!# A Note on Coordinate Order //! //! This crate uses `Coordinate` and `LineString` types from the `geo-types` crate, which encodes coordinates //! in `(x, y)` order. The Polyline algorithm and first-party documentation assumes the _opposite_ coordinate order. //! It is thus advisable to pay careful attention to the order of the coordinates you use for encoding and decoding. use geo_types::{Coord, LineString}; use std::{char, cmp}; const MIN_LONGITUDE: f64 = -180.0; const MAX_LONGITUDE: f64 = 180.0; const MIN_LATITUDE: f64 = -90.0; const MAX_LATITUDE: f64 = 90.0; fn scale(n: f64, factor: i32) -> i64 { let scaled = n * (f64::from(factor)); scaled.round() as i64 } // Bounds checking for input values fn check(to_check: T, bounds: (T, T)) -> Result where T: cmp::PartialOrd + Copy, { match to_check { to_check if bounds.0 <= to_check && to_check <= bounds.1 => Ok(to_check), _ => Err(to_check), } } fn encode(current: f64, previous: f64, factor: i32) -> Result { let current = scale(current, factor); let previous = scale(previous, factor); let mut coordinate = (current - previous) << 1; if (current - previous) < 0 { coordinate = !coordinate; } let mut output: String = "".to_string(); while coordinate >= 0x20 { let from_char = char::from_u32(((0x20 | (coordinate & 0x1f)) + 63) as u32) .ok_or("Couldn't convert character")?; output.push(from_char); coordinate >>= 5; } let from_char = char::from_u32((coordinate + 63) as u32).ok_or("Couldn't convert character")?; output.push(from_char); Ok(output) } /// Encodes a Google Encoded Polyline. /// /// # Examples /// /// ``` /// use polyline; /// use geo_types::line_string; /// /// let coords = line_string![(x: 2.0, y: 1.0), (x: 4.0, y: 3.0)]; /// let encoded_vec = polyline::encode_coordinates(coords, 5).unwrap(); /// ``` pub fn encode_coordinates(coordinates: C, precision: u32) -> Result where C: IntoIterator>, { let base: i32 = 10; let factor: i32 = base.pow(precision); let mut output = "".to_string(); let mut b = Coord { x: 0.0, y: 0.0 }; for (i, a) in coordinates.into_iter().enumerate() { check(a.y, (MIN_LATITUDE, MAX_LATITUDE)) .map_err(|e| format!("Latitude error at position {0}: {1}", i, e))?; check(a.x, (MIN_LONGITUDE, MAX_LONGITUDE)) .map_err(|e| format!("Longitude error at position {0}: {1}", i, e))?; output = output + &encode(a.y, b.y, factor)?; output = output + &encode(a.x, b.x, factor)?; b = a; } Ok(output) } /// Decodes a Google Encoded Polyline. /// /// # Examples /// /// ``` /// use polyline; /// /// let decodedPolyline = polyline::decode_polyline(&"_p~iF~ps|U_ulLnnqC_mqNvxq`@", 5); /// ``` pub fn decode_polyline(polyline: &str, precision: u32) -> Result, String> { let mut index = 0; let mut lat: i64 = 0; let mut lng: i64 = 0; let mut coordinates = vec![]; let base: i32 = 10; let factor = i64::from(base.pow(precision)); let chars = polyline.as_bytes(); while index < chars.len() { let (latitude_change, new_index) = trans(chars, index); if new_index >= chars.len() { break; } let (longitude_change, new_index) = trans(chars, new_index); index = new_index; lat += latitude_change; lng += longitude_change; coordinates.push([lng as f64 / factor as f64, lat as f64 / factor as f64]); } Ok(coordinates.into()) } fn trans(chars: &[u8], mut index: usize) -> (i64, usize) { let mut at_index; let mut shift = 0; let mut result = 0; let mut byte; loop { at_index = chars[index]; byte = (at_index as u64).saturating_sub(63); index += 1; result |= (byte & 0x1f) << shift; shift += 5; if byte < 0x20 { break; } } let coordinate_change = if (result & 1) > 0 { !(result >> 1) } else { result >> 1 } as i64; (coordinate_change, index) } #[cfg(test)] mod tests { use super::decode_polyline; use super::encode_coordinates; use geo_types::LineString; struct TestCase { input: LineString, output: &'static str, } #[test] fn it_works() { let test_cases = vec![ TestCase { input: vec![[2.0, 1.0], [4.0, 3.0]].into(), output: "_ibE_seK_seK_seK", }, TestCase { input: vec![[-120.2, 38.5], [-120.95, 40.7], [-126.453, 43.252]].into(), output: "_p~iF~ps|U_ulLnnqC_mqNvxq`@", }, ]; for test_case in test_cases { assert_eq!( encode_coordinates(test_case.input.clone(), 5).unwrap(), test_case.output ); assert_eq!( decode_polyline(test_case.output, 5).unwrap(), test_case.input ); } } #[test] // coordinates close to each other (below precision) should work fn rounding_error() { let poly = "cr_iI}co{@?dB"; let res: LineString = vec![[9.9131118, 54.0702648], [9.9126013, 54.0702578]].into(); assert_eq!(encode_coordinates(res, 5).unwrap(), poly); assert_eq!( decode_polyline(poly, 5).unwrap(), vec![[9.91311, 54.07026], [9.91260, 54.07026]].into() ); } #[test] #[should_panic] // emoji can't be decoded fn broken_string() { let s = "_p~iF~ps|U_u🗑lLnnqC_mqNvxq`@"; let res = vec![[-120.2, 38.5], [-120.95, 40.7], [-126.453, 43.252]].into(); assert_eq!(decode_polyline(s, 5).unwrap(), res); } #[test] #[should_panic] // Can't have a latitude > 90.0 fn bad_coords() { let s = "_p~iF~ps|U_ulLnnqC_mqNvxq`@"; let res: LineString = vec![[-120.2, 38.5], [-120.95, 40.7], [-126.453, 430.252]].into(); assert_eq!(encode_coordinates(res, 5).unwrap(), s); } #[test] fn should_not_trigger_overflow() { decode_polyline( include_str!("../resources/route-geometry-sweden-west-coast.polyline6"), 6, ) .unwrap(); } }