diff --git a/installer/build.sh b/installer/build.sh new file mode 100755 index 0000000..f575242 --- /dev/null +++ b/installer/build.sh @@ -0,0 +1,23 @@ +#!/bin/bash + +VERSION=$(grep '' ../pom.xml | head -1 | egrep -o '[0-9.]+') +echo Generating installer script for pairgoth-$VERSION + +# root files +rm -rf target/* +cp -r resources/files target + +# icon +cp resources/pairgoth.ico target/files + +# java library +mkdir -p target/files/lib +cp ../application/target/pairgoth-engine.jar target/files/lib + +# jre +unzip -d target/files resources/jre.zip + +# installer script +sed -r -e "s/@VERSION@/$VERSION.0.0/g" resources/installer.nsi > target/installer.nsi + +cat target/installer.nsi | makensis -V4 - diff --git a/installer/resources/LICENSE.txt b/installer/resources/LICENSE.txt new file mode 100644 index 0000000..d645695 --- /dev/null +++ b/installer/resources/LICENSE.txt @@ -0,0 +1,202 @@ + + 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. diff --git a/installer/resources/banner.bmp b/installer/resources/banner.bmp new file mode 100644 index 0000000..2919164 Binary files /dev/null and b/installer/resources/banner.bmp differ diff --git a/installer/resources/files/lib/pairgoth-engine.jar b/installer/resources/files/lib/pairgoth-engine.jar new file mode 100644 index 0000000..57c02fb Binary files /dev/null and b/installer/resources/files/lib/pairgoth-engine.jar differ diff --git a/installer/resources/files/pairgoth.properties b/installer/resources/files/pairgoth.properties new file mode 100644 index 0000000..a8cfdf1 --- /dev/null +++ b/installer/resources/files/pairgoth.properties @@ -0,0 +1,2 @@ +auth = none + diff --git a/installer/resources/files/tournamentfiles/000001-frioul-2018.tour b/installer/resources/files/tournamentfiles/000001-frioul-2018.tour new file mode 100644 index 0000000..49c2c16 --- /dev/null +++ b/installer/resources/files/tournamentfiles/000001-frioul-2018.tour @@ -0,0 +1,1757 @@ +{ + "id" : 1, + "type" : "INDIVIDUAL", + "name" : "Frioul 2018", + "shortName" : "frioul-2018", + "startDate" : "2018-09-07", + "endDate" : "2018-09-07", + "country" : "", + "location" : "Frioul", + "online" : false, + "komi" : 7.5, + "rules" : "FRENCH", + "gobanSize" : 19, + "timeSystem" : { + "type" : "CANADIAN", + "mainTime" : 60, + "byoyomi" : 300, + "stones" : 15 + }, + "rounds" : 4, + "pairing" : { + "type" : "MAC_MAHON", + "base" : { + "nx1" : 0.5, + "dupWeight" : 5.0E14, + "random" : 0.0, + "colorBalanceWeight" : 1000000.0 + }, + "main" : { + "catWeight" : 0.0, + "scoreWeight" : 1.0E11, + "upDownWeight" : 1.0E8, + "upDownCompensate" : true, + "upDownLowerMode" : "MIDDLE", + "upDownUpperMode" : "MIDDLE", + "maximizeSeeding" : 5000000.0, + "firstSeedLastRound" : 2, + "firstSeed" : "SPLIT_AND_RANDOM", + "secondSeed" : "SPLIT_AND_SLIP", + "firstSeedAddCrit" : "RATING", + "secondSeedAddCrit" : "NONE" + }, + "secondary" : { + "barThreshold" : true, + "rankThreshold" : 0, + "winsThreshold" : false, + "secWeight" : 1.0E11 + }, + "geo" : { + "weight" : 1.215752192E9, + "mmsDiffCountry" : 1, + "mmsDiffClubGroup" : 2, + "mmsDiffClub" : 3 + }, + "handicap" : { + "weight" : 0.0, + "useMMS" : true, + "threshold" : 0, + "correction" : 1, + "ceiling" : 9 + }, + "placement" : [ + "MMS", + "SOSM", + "SOSOSM" + ], + "mmFloor" : -20, + "mmBar" : 0 + }, + "players" : [ + { + "id" : 1, + "name" : "Mignucci", + "firstname" : "Bernard", + "rating" : 1778, + "rank" : -3, + "country" : "FR", + "club" : "84Av" + }, + { + "id" : 2, + "name" : "Lakssil", + "firstname" : "Maleek", + "rating" : 1917, + "rank" : -2, + "country" : "FR", + "club" : "76Ro" + }, + { + "id" : 3, + "name" : "Tournellec", + "firstname" : "Julien", + "rating" : 2050, + "rank" : 0, + "country" : "FR", + "club" : "92An" + }, + { + "id" : 4, + "name" : "Becker", + "firstname" : "Denis", + "rating" : 1276, + "rank" : -8, + "country" : "FR", + "club" : "38Gr" + }, + { + "id" : 5, + "name" : "Lefebvre", + "firstname" : "Louise", + "rating" : -400, + "rank" : -20, + "country" : "FR", + "club" : "84Av" + }, + { + "id" : 6, + "name" : "Lefebvre", + "firstname" : "Nina", + "rating" : -400, + "rank" : -20, + "country" : "FR", + "club" : "84Av" + }, + { + "id" : 7, + "name" : "Guerre-Genton", + "firstname" : "Philippe", + "rating" : 2064, + "rank" : 0, + "country" : "FR", + "club" : "13Ma", + "skip" : [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20 + ] + }, + { + "id" : 8, + "name" : "Goloubkov", + "firstname" : "Alexandra", + "rating" : 1023, + "rank" : -11, + "country" : "FR", + "club" : "13Ma" + }, + { + "id" : 9, + "name" : "Berreby", + "firstname" : "Monique", + "rating" : 1951, + "rank" : -1, + "country" : "FR", + "club" : "13Ma", + "skip" : [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20 + ] + }, + { + "id" : 10, + "name" : "Marechal", + "firstname" : "Morgane", + "rating" : 696, + "rank" : -14, + "country" : "FR", + "club" : "34Mo" + }, + { + "id" : 11, + "name" : "Crepy", + "firstname" : "Pascal", + "rating" : 1373, + "rank" : -7, + "country" : "FR", + "club" : "13Ma" + }, + { + "id" : 12, + "name" : "Leclercq", + "firstname" : "Philippe", + "rating" : 523, + "rank" : -16, + "country" : "FR", + "club" : "38Gr" + }, + { + "id" : 13, + "name" : "Vaca", + "firstname" : "Jean-François", + "rating" : 100, + "rank" : -20, + "country" : "FR", + "club" : "13Ma" + }, + { + "id" : 14, + "name" : "Detivaud", + "firstname" : "Pierre", + "rating" : 1817, + "rank" : -3, + "country" : "FR", + "club" : "38Gr", + "skip" : [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20 + ] + }, + { + "id" : 15, + "name" : "Nguyen_The", + "firstname" : "Minh", + "rating" : 1559, + "rank" : -5, + "country" : "FR", + "club" : "31To", + "skip" : [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20 + ] + }, + { + "id" : 16, + "name" : "Coppey", + "firstname" : "Philippe", + "rating" : 1317, + "rank" : -8, + "country" : "FR", + "club" : "13Ma" + }, + { + "id" : 17, + "name" : "Cornaggia", + "firstname" : "Rémi", + "rating" : 1841, + "rank" : -3, + "country" : "FR", + "club" : "35Re" + }, + { + "id" : 18, + "name" : "Pastorino", + "firstname" : "Alexandre", + "rating" : 500, + "rank" : -16, + "country" : "Fr", + "club" : "06Pe" + }, + { + "id" : 19, + "name" : "Buffard", + "firstname" : "Yann", + "rating" : -900, + "rank" : -20, + "country" : "FR", + "club" : "13Ma", + "skip" : [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20 + ] + }, + { + "id" : 20, + "name" : "Blanckaert", + "firstname" : "Till", + "rating" : 1392, + "rank" : -7, + "country" : "FR", + "club" : "38Gr" + }, + { + "id" : 21, + "name" : "Martin", + "firstname" : "Yvan", + "rating" : 1567, + "rank" : -5, + "country" : "FR", + "club" : "44Na" + }, + { + "id" : 22, + "name" : "Rioland", + "firstname" : "Florent", + "rating" : 2336, + "rank" : 2, + "country" : "FR", + "club" : "13Ma" + }, + { + "id" : 23, + "name" : "Spano", + "firstname" : "Christelle", + "rating" : 261, + "rank" : -18, + "country" : "FR", + "club" : "34Mo" + }, + { + "id" : 24, + "name" : "Thao", + "firstname" : "Stéphane", + "rating" : 1893, + "rank" : -2, + "country" : "FR", + "club" : "06Pe" + }, + { + "id" : 25, + "name" : "Morel", + "firstname" : "Aurélien", + "rating" : 2119, + "rank" : 0, + "country" : "FR", + "club" : "38GJ" + }, + { + "id" : 26, + "name" : "Damaz", + "firstname" : "Dani", + "rating" : 1785, + "rank" : -3, + "country" : "FR", + "club" : "13Ma" + }, + { + "id" : 27, + "name" : "Betored", + "firstname" : "Didier", + "rating" : 1258, + "rank" : -8, + "country" : "FR", + "club" : "84Av" + }, + { + "id" : 28, + "name" : "Mougin", + "firstname" : "Déborah", + "rating" : 1346, + "rank" : -8, + "country" : "FR", + "club" : "38Gr" + }, + { + "id" : 29, + "name" : "Artigny", + "firstname" : "Julie", + "rating" : 1790, + "rank" : -3, + "country" : "FR", + "club" : "83SA", + "skip" : [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20 + ] + }, + { + "id" : 30, + "name" : "Lefebvre", + "firstname" : "Loïc", + "rating" : 2131, + "rank" : 0, + "country" : "FR", + "club" : "38Gr", + "skip" : [ + 2 + ] + }, + { + "id" : 31, + "name" : "Guibert", + "firstname" : "Cécile", + "rating" : 1850, + "rank" : -2, + "country" : "FR", + "club" : "13Ma", + "skip" : [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20 + ] + }, + { + "id" : 32, + "name" : "Coppe", + "firstname" : "Bernard", + "rating" : 1898, + "rank" : -2, + "country" : "FR", + "club" : "13Ma" + }, + { + "id" : 33, + "name" : "Bonat", + "firstname" : "Axel", + "rating" : 1974, + "rank" : -1, + "country" : "FR", + "club" : "13Mr" + }, + { + "id" : 34, + "name" : "Roubertie", + "firstname" : "Julien", + "rating" : 2382, + "rank" : 3, + "country" : "FR", + "club" : "13Ma" + }, + { + "id" : 35, + "name" : "Lefebvre", + "firstname" : "Antoine", + "rating" : 1941, + "rank" : -2, + "country" : "FR", + "club" : "84Av" + }, + { + "id" : 36, + "name" : "Couffignal", + "firstname" : "Marie", + "rating" : 784, + "rank" : -13, + "country" : "FR", + "club" : "13Ma", + "skip" : [ + 2 + ] + }, + { + "id" : 37, + "name" : "Carbonnel", + "firstname" : "Roland", + "rating" : 1662, + "rank" : -4, + "country" : "FR", + "club" : "38Gr", + "skip" : [ + 3 + ] + }, + { + "id" : 38, + "name" : "Blanco", + "firstname" : "Cyril", + "rating" : 480, + "rank" : -16, + "country" : "FR", + "club" : "06Pe" + }, + { + "id" : 39, + "name" : "Brochet", + "firstname" : "Philippe", + "rating" : 1660, + "rank" : -4, + "country" : "FR", + "club" : "84Va" + }, + { + "id" : 40, + "name" : "Lacroix", + "firstname" : "Caroline", + "rating" : 877, + "rank" : -12, + "country" : "FR", + "club" : "13Ma" + }, + { + "id" : 41, + "name" : "Lextrait", + "firstname" : "Cesar", + "rating" : 2265, + "rank" : 2, + "country" : "FR", + "club" : "13Ma", + "skip" : [ + 1 + ] + }, + { + "id" : 42, + "name" : "le_Lidec", + "firstname" : "Gaël", + "rating" : 1418, + "rank" : -7, + "country" : "FR", + "club" : "13Ma", + "skip" : [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20 + ] + }, + { + "id" : 43, + "name" : "Col", + "firstname" : "Sylvain", + "rating" : 1600, + "rank" : -5, + "country" : "FR", + "club" : "34Mo" + }, + { + "id" : 44, + "name" : "Stieglitz", + "firstname" : "Robin", + "rating" : 1916, + "rank" : -2, + "country" : "FR", + "club" : "38Gr", + "skip" : [ + 2, + 3 + ] + }, + { + "id" : 45, + "name" : "Dumas", + "firstname" : "Olivier", + "rating" : 1271, + "rank" : -8, + "country" : "FR", + "club" : "38Gr" + }, + { + "id" : 46, + "name" : "Passow", + "firstname" : "Adrian", + "rating" : 2354, + "rank" : 3, + "country" : "DE", + "club" : "B", + "skip" : [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20 + ] + }, + { + "id" : 47, + "name" : "Ferreira", + "firstname" : "Joao", + "rating" : 1179, + "rank" : -9, + "country" : "PT", + "club" : "xxxx" + }, + { + "id" : 48, + "name" : "le_Lidec", + "firstname" : "Philémon", + "rating" : -292, + "rank" : -20, + "country" : "FR", + "club" : "13Ma", + "skip" : [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20 + ] + }, + { + "id" : 49, + "name" : "Margouillet", + "firstname" : "Kevin", + "rating" : 290, + "rank" : -16, + "country" : "FR", + "club" : "06Pe" + }, + { + "id" : 50, + "name" : "Pettex", + "firstname" : "Romain", + "rating" : 600, + "rank" : -15, + "country" : "Fr", + "club" : "13Ma" + }, + { + "id" : 51, + "name" : "Imhoff", + "firstname" : "Lisa", + "rating" : 574, + "rank" : -15, + "country" : "FR", + "club" : "34Mo", + "skip" : [ + 2, + 3 + ] + }, + { + "id" : 52, + "name" : "Hueber", + "firstname" : "Jean-Philippe", + "rating" : 1880, + "rank" : -2, + "country" : "FR", + "club" : "84Va" + }, + { + "id" : 53, + "name" : "Camps", + "firstname" : "Marie-Françoise", + "rating" : 1149, + "rank" : -10, + "country" : "FR", + "club" : "34Mo", + "skip" : [ + 2 + ] + }, + { + "id" : 54, + "name" : "Reynal", + "firstname" : "Sylvain", + "rating" : 1078, + "rank" : -10, + "country" : "FR", + "club" : "34Mo", + "skip" : [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20 + ] + }, + { + "id" : 55, + "name" : "Ghyselen", + "firstname" : "Guillaume", + "rating" : 1857, + "rank" : -2, + "country" : "FR", + "club" : "69Ly", + "skip" : [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20 + ] + }, + { + "id" : 56, + "name" : "Fronteri", + "firstname" : "Pierre", + "rating" : 1590, + "rank" : -5, + "country" : "FR", + "club" : "13Ma", + "skip" : [ + 3 + ] + }, + { + "id" : 57, + "name" : "Brisson", + "firstname" : "Claude", + "rating" : 1504, + "rank" : -6, + "country" : "FR", + "club" : "13Ma", + "skip" : [ + 1 + ] + }, + { + "id" : 58, + "name" : "Jumelin", + "firstname" : "Macha", + "rating" : 1421, + "rank" : -7, + "country" : "FR", + "club" : "38Gr" + } + ], + "games" : [ + [ + { + "id" : 1, + "t" : 1, + "w" : 30, + "b" : 34, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2, + "t" : 2, + "w" : 46, + "b" : 33, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 3, + "t" : 3, + "w" : 7, + "b" : 22, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 4, + "t" : 4, + "w" : 3, + "b" : 25, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 5, + "t" : 5, + "w" : 9, + "b" : 24, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 6, + "t" : 6, + "w" : 55, + "b" : 35, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 7, + "t" : 7, + "w" : 2, + "b" : 31, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 8, + "t" : 8, + "w" : 52, + "b" : 44, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 9, + "t" : 9, + "w" : 32, + "b" : 29, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 10, + "t" : 10, + "w" : 17, + "b" : 1, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 11, + "t" : 11, + "w" : 26, + "b" : 14, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 12, + "t" : 12, + "w" : 39, + "b" : 37, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 13, + "t" : 13, + "w" : 21, + "b" : 43, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 14, + "t" : 14, + "w" : 56, + "b" : 15, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 15, + "t" : 15, + "w" : 58, + "b" : 11, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 16, + "t" : 16, + "w" : 20, + "b" : 42, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 17, + "t" : 17, + "w" : 28, + "b" : 27, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 18, + "t" : 18, + "w" : 45, + "b" : 16, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 19, + "t" : 19, + "w" : 4, + "b" : 47, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 20, + "t" : 20, + "w" : 53, + "b" : 40, + "h" : 1, + "r" : "b", + "dd" : 0 + }, + { + "id" : 21, + "t" : 21, + "w" : 8, + "b" : 54, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 22, + "t" : 22, + "w" : 36, + "b" : 10, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 23, + "t" : 23, + "w" : 50, + "b" : 38, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 24, + "t" : 24, + "w" : 51, + "b" : 18, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 25, + "t" : 25, + "w" : 12, + "b" : 49, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 26, + "t" : 26, + "w" : 23, + "b" : 48, + "h" : 1, + "r" : "w", + "dd" : 0 + }, + { + "id" : 27, + "t" : 27, + "w" : 13, + "b" : 6, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 28, + "t" : 28, + "w" : 19, + "b" : 5, + "h" : 0, + "r" : "b", + "dd" : 0 + } + ], + [ + { + "id" : 29, + "t" : 25, + "w" : 38, + "b" : 13, + "h" : 2, + "r" : "b", + "dd" : 0 + }, + { + "id" : 30, + "t" : 26, + "w" : 49, + "b" : 23, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 31, + "t" : 27, + "w" : 5, + "b" : 48, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 32, + "t" : 28, + "w" : 6, + "b" : 19, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 33, + "t" : 1, + "w" : 34, + "b" : 46, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 34, + "t" : 2, + "w" : 22, + "b" : 25, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 35, + "t" : 4, + "w" : 7, + "b" : 3, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 36, + "t" : 5, + "w" : 33, + "b" : 2, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 37, + "t" : 7, + "w" : 35, + "b" : 32, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 38, + "t" : 8, + "w" : 31, + "b" : 24, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 39, + "t" : 9, + "w" : 1, + "b" : 52, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 40, + "t" : 10, + "w" : 14, + "b" : 55, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 41, + "t" : 11, + "w" : 17, + "b" : 39, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 42, + "t" : 12, + "w" : 29, + "b" : 26, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 43, + "t" : 13, + "w" : 37, + "b" : 15, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 44, + "t" : 14, + "w" : 21, + "b" : 56, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 45, + "t" : 15, + "w" : 43, + "b" : 20, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 46, + "t" : 16, + "w" : 27, + "b" : 58, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 47, + "t" : 17, + "w" : 42, + "b" : 4, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 48, + "t" : 18, + "w" : 11, + "b" : 45, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 49, + "t" : 19, + "w" : 16, + "b" : 28, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 50, + "t" : 20, + "w" : 47, + "b" : 8, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 51, + "t" : 22, + "w" : 54, + "b" : 40, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 52, + "t" : 23, + "w" : 10, + "b" : 50, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 53, + "t" : 24, + "w" : 18, + "b" : 12, + "h" : 0, + "r" : "w", + "dd" : 0 + } + ], + [ + { + "id" : 54, + "t" : 1, + "w" : 25, + "b" : 34, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 55, + "t" : 2, + "w" : 3, + "b" : 22, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 56, + "t" : 3, + "w" : 24, + "b" : 30, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 57, + "t" : 4, + "w" : 32, + "b" : 7, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 58, + "t" : 5, + "w" : 52, + "b" : 2, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 59, + "t" : 6, + "w" : 33, + "b" : 1, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 60, + "t" : 7, + "w" : 35, + "b" : 14, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 61, + "t" : 8, + "w" : 31, + "b" : 21, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 62, + "t" : 9, + "w" : 26, + "b" : 17, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 63, + "t" : 10, + "w" : 15, + "b" : 39, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 64, + "t" : 11, + "w" : 58, + "b" : 43, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 65, + "t" : 12, + "w" : 20, + "b" : 11, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 66, + "t" : 13, + "w" : 4, + "b" : 16, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 67, + "t" : 14, + "w" : 42, + "b" : 28, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 68, + "t" : 15, + "w" : 45, + "b" : 27, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 69, + "t" : 16, + "w" : 47, + "b" : 54, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 70, + "t" : 17, + "w" : 53, + "b" : 8, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 71, + "t" : 18, + "w" : 40, + "b" : 10, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 72, + "t" : 19, + "w" : 36, + "b" : 18, + "h" : 1, + "r" : "w", + "dd" : 0 + }, + { + "id" : 73, + "t" : 20, + "w" : 50, + "b" : 12, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 74, + "t" : 21, + "w" : 38, + "b" : 23, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 75, + "t" : 22, + "w" : 49, + "b" : 19, + "h" : 3, + "r" : "w", + "dd" : 0 + }, + { + "id" : 76, + "t" : 23, + "w" : 5, + "b" : 13, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 77, + "t" : 24, + "w" : 48, + "b" : 6, + "h" : 0, + "r" : "b", + "dd" : 0 + } + ], + [ + { + "id" : 78, + "t" : 1, + "w" : 25, + "b" : 32, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 79, + "t" : 2, + "w" : 34, + "b" : 22, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 80, + "t" : 3, + "w" : 30, + "b" : 35, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 81, + "t" : 4, + "w" : 2, + "b" : 3, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 82, + "t" : 5, + "w" : 44, + "b" : 24, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 83, + "t" : 6, + "w" : 33, + "b" : 52, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 84, + "t" : 7, + "w" : 1, + "b" : 26, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 85, + "t" : 8, + "w" : 39, + "b" : 4, + "h" : 2, + "r" : "w", + "dd" : 0 + }, + { + "id" : 86, + "t" : 9, + "w" : 21, + "b" : 17, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 87, + "t" : 10, + "w" : 43, + "b" : 37, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 88, + "t" : 12, + "w" : 56, + "b" : 20, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 89, + "t" : 13, + "w" : 58, + "b" : 16, + "h" : 1, + "r" : "w", + "dd" : 0 + }, + { + "id" : 90, + "t" : 14, + "w" : 11, + "b" : 28, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 91, + "t" : 15, + "w" : 47, + "b" : 45, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 92, + "t" : 17, + "w" : 27, + "b" : 8, + "h" : 1, + "r" : "b", + "dd" : 0 + }, + { + "id" : 93, + "t" : 18, + "w" : 53, + "b" : 36, + "h" : 1, + "r" : "w", + "dd" : 0 + }, + { + "id" : 94, + "t" : 19, + "w" : 40, + "b" : 51, + "h" : 2, + "r" : "b", + "dd" : 0 + }, + { + "id" : 95, + "t" : 20, + "w" : 10, + "b" : 18, + "h" : 2, + "r" : "w", + "dd" : 0 + }, + { + "id" : 96, + "t" : 21, + "w" : 50, + "b" : 49, + "h" : 1, + "r" : "w", + "dd" : 0 + }, + { + "id" : 97, + "t" : 22, + "w" : 12, + "b" : 38, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 98, + "t" : 23, + "w" : 23, + "b" : 13, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 99, + "t" : 24, + "w" : 6, + "b" : 5, + "h" : 0, + "r" : "b", + "dd" : 0 + } + ] + ] +} diff --git a/installer/resources/files/tournamentfiles/000002-paris-2021.tour b/installer/resources/files/tournamentfiles/000002-paris-2021.tour new file mode 100644 index 0000000..435e9f5 --- /dev/null +++ b/installer/resources/files/tournamentfiles/000002-paris-2021.tour @@ -0,0 +1,6199 @@ +{ + "id" : 2, + "type" : "INDIVIDUAL", + "name" : "48th Paris International Tournament 2021", + "shortName" : "paris2021", + "startDate" : "2021-04-03", + "endDate" : "2021-04-05", + "country" : "FR", + "location" : "OGS", + "online" : true, + "komi" : 7.5, + "rules" : "FRENCH", + "gobanSize" : 19, + "timeSystem" : { + "type" : "FISCHER", + "mainTime" : 60, + "increment" : 20 + }, + "rounds" : 6, + "pairing" : { + "type" : "MAC_MAHON", + "base" : { + "nx1" : 0.5, + "dupWeight" : 5.0E14, + "random" : 0.0, + "colorBalanceWeight" : 1000000.0 + }, + "main" : { + "catWeight" : 0.0, + "scoreWeight" : 1.0E11, + "upDownWeight" : 1.0E8, + "upDownCompensate" : true, + "upDownLowerMode" : "MIDDLE", + "upDownUpperMode" : "MIDDLE", + "maximizeSeeding" : 5000000.0, + "firstSeedLastRound" : 2, + "firstSeed" : "SPLIT_AND_RANDOM", + "secondSeed" : "SPLIT_AND_SLIP", + "firstSeedAddCrit" : "RATING", + "secondSeedAddCrit" : "NONE" + }, + "secondary" : { + "barThreshold" : true, + "rankThreshold" : 0, + "winsThreshold" : false, + "secWeight" : 1.0E11 + }, + "geo" : { + "weight" : 1.215752192E9, + "mmsDiffCountry" : 1, + "mmsDiffClubGroup" : 2, + "mmsDiffClub" : 3 + }, + "handicap" : { + "weight" : 0.0, + "useMMS" : true, + "threshold" : 0, + "correction" : 1, + "ceiling" : 9 + }, + "placement" : [ + "MMS", + "SOSM", + "SOSOSM" + ], + "mmFloor" : -20, + "mmBar" : 3 + }, + "players" : [ + { + "id" : 706, + "name" : "Athorne", + "firstname" : "Thomas", + "rating" : 1640, + "rank" : -5, + "country" : "UK", + "club" : "NoCb" + }, + { + "id" : 707, + "name" : "Mignucci", + "firstname" : "Bernard", + "rating" : 1739, + "rank" : -4, + "country" : "FR", + "club" : "84Av" + }, + { + "id" : 708, + "name" : "Pietri", + "firstname" : "Gia", + "rating" : 100, + "rank" : -20, + "country" : "Gr", + "club" : "NoCb" + }, + { + "id" : 709, + "name" : "Soletti", + "firstname" : "Ramon", + "rating" : 2048, + "rank" : -1, + "country" : "IT", + "club" : "Mila" + }, + { + "id" : 710, + "name" : "Olivaux", + "firstname" : "Samuel", + "rating" : 1723, + "rank" : -4, + "country" : "FR", + "club" : "75Al" + }, + { + "id" : 711, + "name" : "Chatterjee", + "firstname" : "Arghya", + "rating" : 100, + "rank" : -20, + "country" : "IN", + "club" : "IAGA" + }, + { + "id" : 712, + "name" : "Parenty", + "firstname" : "Francois", + "rating" : 1700, + "rank" : -4, + "country" : "FR", + "club" : "90Be" + }, + { + "id" : 713, + "name" : "Cacheux", + "firstname" : "Nicolas", + "rating" : 1550, + "rank" : -5, + "country" : "FR", + "club" : "91Or" + }, + { + "id" : 714, + "name" : "Boughida", + "firstname" : "Rafik", + "rating" : 1176, + "rank" : -9, + "country" : "FR", + "club" : "75Ju" + }, + { + "id" : 715, + "name" : "Berreby", + "firstname" : "Monique", + "rating" : 1864, + "rank" : -2, + "country" : "FR", + "club" : "13Ma" + }, + { + "id" : 716, + "name" : "Ishimbaeva", + "firstname" : "Olga", + "rating" : 1495, + "rank" : -6, + "country" : "RU", + "club" : "75Ju", + "skip" : [ + 4, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20 + ] + }, + { + "id" : 717, + "name" : "Nicolasen", + "firstname" : "Gerold", + "rating" : 1049, + "rank" : -11, + "country" : "NL", + "club" : "Utre" + }, + { + "id" : 718, + "name" : "Frangi", + "firstname" : "Manuel", + "rating" : 2257, + "rank" : 2, + "country" : "FR", + "club" : "75Ju", + "skip" : [ + 5, + 6 + ] + }, + { + "id" : 719, + "name" : "Olexa", + "firstname" : "Igor", + "rating" : 1149, + "rank" : -10, + "country" : "SK", + "club" : "Kosi" + }, + { + "id" : 720, + "name" : "Sulak", + "firstname" : "Alper", + "rating" : 1998, + "rank" : -1, + "country" : "TR", + "club" : "Ank", + "skip" : [ + 6 + ] + }, + { + "id" : 721, + "name" : "Brun", + "firstname" : "Mathieu", + "rating" : 100, + "rank" : -20, + "country" : "FR", + "club" : "75Al" + }, + { + "id" : 722, + "name" : "Domig", + "firstname" : "Martin", + "rating" : 637, + "rank" : -14, + "country" : "AT", + "club" : "NoCb", + "skip" : [ + 4 + ] + }, + { + "id" : 723, + "name" : "Khodzher", + "firstname" : "Elfia", + "rating" : 676, + "rank" : -14, + "country" : "RU", + "club" : "27NA" + }, + { + "id" : 724, + "name" : "Payne", + "firstname" : "Rob", + "rating" : 1422, + "rank" : -7, + "country" : "UK", + "club" : "Edin" + }, + { + "id" : 725, + "name" : "Ruhland", + "firstname" : "Martin", + "rating" : 668, + "rank" : -14, + "country" : "DE", + "club" : "NoCb" + }, + { + "id" : 726, + "name" : "Durand", + "firstname" : "Romain", + "rating" : 1278, + "rank" : -8, + "country" : "FR", + "club" : "38Gr" + }, + { + "id" : 727, + "name" : "Onishchenko", + "firstname" : "Yaroslav", + "rating" : 100, + "rank" : -20, + "country" : "RU", + "club" : "77Mo" + }, + { + "id" : 728, + "name" : "Veillerobe", + "firstname" : "Florent", + "rating" : 100, + "rank" : -20, + "country" : "FR", + "club" : "35Re" + }, + { + "id" : 729, + "name" : "Verstappen", + "firstname" : "Marlon", + "rating" : 740, + "rank" : -14, + "country" : "DE", + "club" : "ME" + }, + { + "id" : 730, + "name" : "Winling", + "firstname" : "Miguel-Angel", + "rating" : 1036, + "rank" : -11, + "country" : "FR", + "club" : "75Op" + }, + { + "id" : 731, + "name" : "Pishchalnikov", + "firstname" : "Artemij", + "rating" : 2226, + "rank" : 1, + "country" : "RU", + "club" : "59So" + }, + { + "id" : 732, + "name" : "Chiarini", + "firstname" : "Francesco", + "rating" : 1305, + "rank" : -8, + "country" : "UK", + "club" : "WLon", + "skip" : [ + 4 + ] + }, + { + "id" : 733, + "name" : "Etoubleau", + "firstname" : "Antoine", + "rating" : 215, + "rank" : -19, + "country" : "FR", + "club" : "35Re", + "skip" : [ + 2, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18 + ] + }, + { + "id" : 734, + "name" : "Bocle", + "firstname" : "Milena", + "rating" : 2156, + "rank" : 1, + "country" : "FR", + "club" : "92An", + "skip" : [ + 1 + ] + }, + { + "id" : 735, + "name" : "Potrata", + "firstname" : "Marko", + "rating" : 1131, + "rank" : -10, + "country" : "SI", + "club" : "Port", + "skip" : [ + 3, + 4, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20 + ] + }, + { + "id" : 736, + "name" : "Minjina", + "firstname" : "Dragos_Ioan", + "rating" : 1675, + "rank" : -4, + "country" : "RO", + "club" : "C361" + }, + { + "id" : 737, + "name" : "Nulty", + "firstname" : "Stephen", + "rating" : 1425, + "rank" : -7, + "country" : "IE", + "club" : "Bubl" + }, + { + "id" : 738, + "name" : "Eon", + "firstname" : "Serge", + "rating" : 1573, + "rank" : -5, + "country" : "FR", + "club" : "64Pa" + }, + { + "id" : 739, + "name" : "Coseraru", + "firstname" : "Vasile_Ciprian", + "rating" : 115, + "rank" : -20, + "country" : "RO", + "club" : "C361" + }, + { + "id" : 740, + "name" : "Dupontreue", + "firstname" : "Aurelien", + "rating" : 1768, + "rank" : -3, + "country" : "FR", + "club" : "75Ju" + }, + { + "id" : 741, + "name" : "Zalevskyy", + "firstname" : "Rostyslav", + "rating" : 1091, + "rank" : -10, + "country" : "ES", + "club" : "Alic", + "skip" : [ + 4 + ] + }, + { + "id" : 742, + "name" : "Jansen", + "firstname" : "Katharina", + "rating" : 100, + "rank" : -20, + "country" : "DE", + "club" : "LB" + }, + { + "id" : 743, + "name" : "Pan", + "firstname" : "David", + "rating" : 100, + "rank" : -20, + "country" : "US", + "club" : "Beiy", + "skip" : [ + 2, + 3, + 4, + 5, + 6 + ] + }, + { + "id" : 744, + "name" : "Gacs", + "firstname" : "Istvan", + "rating" : 1642, + "rank" : -5, + "country" : "HU", + "club" : "BuPe" + }, + { + "id" : 745, + "name" : "Berhaut", + "firstname" : "Herve", + "rating" : 1700, + "rank" : -4, + "country" : "FR", + "club" : "17Ro" + }, + { + "id" : 746, + "name" : "Merkiled", + "firstname" : "Yann", + "rating" : 1039, + "rank" : -11, + "country" : "FR", + "club" : "72Ma", + "skip" : [ + 2, + 3, + 4, + 5, + 6 + ] + }, + { + "id" : 747, + "name" : "Filippi", + "firstname" : "Pierre", + "rating" : 2300, + "rank" : 2, + "country" : "FR", + "club" : "76Ha", + "skip" : [ + 5, + 6 + ] + }, + { + "id" : 748, + "name" : "Zhang", + "firstname" : "Shukai_Kirby", + "rating" : 2232, + "rank" : 1, + "country" : "DE", + "club" : "F" + }, + { + "id" : 749, + "name" : "Li", + "firstname" : "Mingda", + "rating" : 2000, + "rank" : -1, + "country" : "CN", + "club" : "A", + "skip" : [ + 5, + 6 + ] + }, + { + "id" : 750, + "name" : "Karch", + "firstname" : "Jonas", + "rating" : 1227, + "rank" : -9, + "country" : "DE", + "club" : "WI", + "skip" : [ + 6 + ] + }, + { + "id" : 751, + "name" : "Cable", + "firstname" : "Matthieu", + "rating" : 1684, + "rank" : -4, + "country" : "FR", + "club" : "00St" + }, + { + "id" : 752, + "name" : "Shehan", + "firstname" : "William", + "rating" : 100, + "rank" : -20, + "country" : "US", + "club" : "AGA", + "skip" : [ + 6 + ] + }, + { + "id" : 753, + "name" : "Demirpolat", + "firstname" : "Ömer", + "rating" : 1300, + "rank" : -8, + "country" : "TR", + "club" : "NoCb", + "skip" : [ + 2, + 3, + 4, + 5, + 6 + ] + }, + { + "id" : 754, + "name" : "Brix", + "firstname" : "Phillip", + "rating" : 1650, + "rank" : -4, + "country" : "US", + "club" : "Orla", + "skip" : [ + 2, + 3, + 4, + 5, + 6 + ] + }, + { + "id" : 755, + "name" : "Savolainen", + "firstname" : "Javier-Aleksi", + "rating" : 2527, + "rank" : 4, + "country" : "FI", + "club" : "YliG" + }, + { + "id" : 756, + "name" : "Samson", + "firstname" : "Elodie", + "rating" : 1400, + "rank" : -7, + "country" : "FR", + "club" : "92An", + "skip" : [ + 2 + ] + }, + { + "id" : 757, + "name" : "Monk", + "firstname" : "Caleb", + "rating" : 1055, + "rank" : -10, + "country" : "UK", + "club" : "Epsm" + }, + { + "id" : 758, + "name" : "Dymowski", + "firstname" : "Pawel", + "rating" : 1500, + "rank" : -6, + "country" : "PL", + "club" : "Szec" + }, + { + "id" : 759, + "name" : "Dao", + "firstname" : "Arthur", + "rating" : 1900, + "rank" : -2, + "country" : "MA", + "club" : "Casa" + }, + { + "id" : 760, + "name" : "Autrique", + "firstname" : "Fabrice", + "rating" : 199, + "rank" : -19, + "country" : "FR", + "club" : "35Re", + "skip" : [ + 2, + 4 + ] + }, + { + "id" : 761, + "name" : "Welticke", + "firstname" : "Jonas", + "rating" : 2544, + "rank" : 4, + "country" : "DE", + "club" : "BN" + }, + { + "id" : 762, + "name" : "Sodoma", + "firstname" : "Werner", + "rating" : 1182, + "rank" : -9, + "country" : "AT", + "club" : "NoCb", + "skip" : [ + 3, + 4 + ] + }, + { + "id" : 763, + "name" : "Zhang", + "firstname" : "Xiang", + "rating" : 2528, + "rank" : 4, + "country" : "SG", + "club" : "Sin" + }, + { + "id" : 764, + "name" : "Tarraf", + "firstname" : "Jamal", + "rating" : 237, + "rank" : -15, + "country" : "FR", + "club" : "31To", + "skip" : [ + 4 + ] + }, + { + "id" : 765, + "name" : "Macek", + "firstname" : "Patrik", + "rating" : 1751, + "rank" : -3, + "country" : "SK", + "club" : "361!", + "skip" : [ + 2, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20 + ] + }, + { + "id" : 766, + "name" : "Koole", + "firstname" : "Paul", + "rating" : 1283, + "rank" : -8, + "country" : "NL", + "club" : "Amvn", + "skip" : [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19 + ] + }, + { + "id" : 767, + "name" : "Nicolas", + "firstname" : "Philippe", + "rating" : 1871, + "rank" : -2, + "country" : "FR", + "club" : "75Op" + }, + { + "id" : 768, + "name" : "Rojas_Carulla", + "firstname" : "Mateo", + "rating" : 2094, + "rank" : 0, + "country" : "CH", + "club" : "NoCb" + }, + { + "id" : 769, + "name" : "Bardsley", + "firstname" : "Oliver", + "rating" : 955, + "rank" : -11, + "country" : "UK", + "club" : "Harp" + }, + { + "id" : 770, + "name" : "Ghetu", + "firstname" : "Denis_Mihai", + "rating" : 288, + "rank" : -18, + "country" : "RO", + "club" : "Cluj" + }, + { + "id" : 771, + "name" : "Ferreira", + "firstname" : "Joao", + "rating" : 1269, + "rank" : -8, + "country" : "PT", + "club" : "Lis", + "skip" : [ + 2, + 6 + ] + }, + { + "id" : 772, + "name" : "Neveu", + "firstname" : "Cedric", + "rating" : 1981, + "rank" : -1, + "country" : "FR", + "club" : "91Or" + }, + { + "id" : 773, + "name" : "Bijvank", + "firstname" : "Roland", + "rating" : 164, + "rank" : -20, + "country" : "NL", + "club" : "Utre" + }, + { + "id" : 774, + "name" : "Ducos", + "firstname" : "Joachim", + "rating" : 1700, + "rank" : -4, + "country" : "FR", + "club" : "31To" + }, + { + "id" : 775, + "name" : "Tran", + "firstname" : "van-Kim", + "rating" : 1115, + "rank" : -10, + "country" : "FR", + "club" : "75Op" + }, + { + "id" : 776, + "name" : "Bernaud", + "firstname" : "Lucie", + "rating" : 483, + "rank" : -16, + "country" : "FR", + "club" : "35Re" + }, + { + "id" : 777, + "name" : "Ketnim", + "firstname" : "Wynn", + "rating" : 2175, + "rank" : 1, + "country" : "TH", + "club" : "NoCb" + }, + { + "id" : 778, + "name" : "le", + "firstname" : "Tam_Loup", + "rating" : 1384, + "rank" : -7, + "country" : "FR", + "club" : "35Re" + }, + { + "id" : 779, + "name" : "Toromanoff", + "firstname" : "Clement", + "rating" : 1939, + "rank" : -2, + "country" : "FR", + "club" : "45Or", + "skip" : [ + 3 + ] + }, + { + "id" : 780, + "name" : "Boyart", + "firstname" : "Christian", + "rating" : 1495, + "rank" : -6, + "country" : "FR", + "club" : "75Al" + }, + { + "id" : 781, + "name" : "Do", + "firstname" : "van_Thuan", + "rating" : 1187, + "rank" : -9, + "country" : "NO", + "club" : "Oslo" + }, + { + "id" : 782, + "name" : "Li", + "firstname" : "Boyuan", + "rating" : 2109, + "rank" : 0, + "country" : "FR", + "club" : "75Op", + "skip" : [ + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20 + ] + }, + { + "id" : 783, + "name" : "Sindler", + "firstname" : "Ondrej", + "rating" : 1658, + "rank" : -5, + "country" : "CZ", + "club" : "Brno", + "skip" : [ + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20 + ] + }, + { + "id" : 784, + "name" : "Chaouki", + "firstname" : "Youness", + "rating" : 1800, + "rank" : -3, + "country" : "MO", + "club" : "NoCb", + "skip" : [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20 + ] + }, + { + "id" : 785, + "name" : "Buchy", + "firstname" : "Vincent", + "rating" : 1086, + "rank" : -10, + "country" : "FR", + "club" : "00ST" + }, + { + "id" : 786, + "name" : "Jansen", + "firstname" : "Uwe", + "rating" : 111, + "rank" : -20, + "country" : "DE", + "club" : "Ludw" + }, + { + "id" : 787, + "name" : "Gajdos", + "firstname" : "Chantal", + "rating" : 1534, + "rank" : -6, + "country" : "FR", + "club" : "63Ce" + }, + { + "id" : 788, + "name" : "Baker", + "firstname" : "Lawrence", + "rating" : 314, + "rank" : -18, + "country" : "UK", + "club" : "Oxfd" + }, + { + "id" : 789, + "name" : "Hitziger", + "firstname" : "Pascal", + "rating" : 1675, + "rank" : -4, + "country" : "DE", + "club" : "P" + }, + { + "id" : 790, + "name" : "Frank", + "firstname" : "Oliver", + "rating" : 100, + "rank" : -20, + "country" : "UK", + "club" : "St A", + "skip" : [ + 5 + ] + }, + { + "id" : 791, + "name" : "Su", + "firstname" : "Jun", + "rating" : 2406, + "rank" : 3, + "country" : "UK", + "club" : "CamU" + }, + { + "id" : 792, + "name" : "Qian", + "firstname" : "Yu", + "rating" : 2501, + "rank" : 4, + "country" : "CN", + "club" : "LCA" + }, + { + "id" : 793, + "name" : "Komin", + "firstname" : "Jan", + "rating" : 400, + "rank" : -17, + "country" : "CZ", + "club" : "APWS" + }, + { + "id" : 794, + "name" : "Chernykh", + "firstname" : "Anton", + "rating" : 2609, + "rank" : 5, + "country" : "RU", + "club" : "50Zh" + }, + { + "id" : 795, + "name" : "Puaud", + "firstname" : "Denis", + "rating" : 1298, + "rank" : -8, + "country" : "FR", + "club" : "31Ba" + }, + { + "id" : 796, + "name" : "Potel", + "firstname" : "Philippe", + "rating" : 693, + "rank" : -14, + "country" : "FR", + "club" : "76Ro" + }, + { + "id" : 797, + "name" : "Lee", + "firstname" : "Jiyu", + "rating" : 2040, + "rank" : -1, + "country" : "NL", + "club" : "Eind" + }, + { + "id" : 798, + "name" : "Beirnaert", + "firstname" : "Sebastien", + "rating" : 1100, + "rank" : -10, + "country" : "FR", + "club" : "66Pe" + }, + { + "id" : 799, + "name" : "Slooven", + "firstname" : "Gerard", + "rating" : 1135, + "rank" : -10, + "country" : "NL", + "club" : "Sall", + "skip" : [ + 2, + 4, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20 + ] + }, + { + "id" : 800, + "name" : "Collins", + "firstname" : "Quinn Michael", + "rating" : 100, + "rank" : -20, + "country" : "US", + "club" : "NoCb" + }, + { + "id" : 801, + "name" : "Rocher", + "firstname" : "Jeremie", + "rating" : 1535, + "rank" : -6, + "country" : "FR", + "club" : "94Ca" + }, + { + "id" : 802, + "name" : "Faubry", + "firstname" : "Emmanuel", + "rating" : 1800, + "rank" : -3, + "country" : "PH", + "club" : "Mani" + }, + { + "id" : 803, + "name" : "Dobrescu", + "firstname" : "Marius-Adrian", + "rating" : 1704, + "rank" : -4, + "country" : "RO", + "club" : "CSRB", + "skip" : [ + 5, + 6 + ] + }, + { + "id" : 804, + "name" : "Xing", + "firstname" : "Yuze", + "rating" : 2117, + "rank" : 0, + "country" : "DE", + "club" : "HD" + }, + { + "id" : 805, + "name" : "Silva", + "firstname" : "Lucas", + "rating" : 1200, + "rank" : -9, + "country" : "PT", + "club" : "APGo", + "skip" : [ + 2, + 4, + 5, + 6 + ] + }, + { + "id" : 806, + "name" : "Yan", + "firstname" : "Zihan", + "rating" : 2504, + "rank" : 4, + "country" : "NL", + "club" : "Leid" + }, + { + "id" : 807, + "name" : "Kolassa", + "firstname" : "Stephan", + "rating" : 2057, + "rank" : 0, + "country" : "DE", + "club" : "Kon" + }, + { + "id" : 808, + "name" : "Touzot", + "firstname" : "Cyan", + "rating" : 2029, + "rank" : -1, + "country" : "FR", + "club" : "75Op" + }, + { + "id" : 809, + "name" : "Grimm", + "firstname" : "Kirsten", + "rating" : 1828, + "rank" : -3, + "country" : "DE", + "club" : "FR", + "skip" : [ + 2, + 4 + ] + }, + { + "id" : 810, + "name" : "le_Galiard", + "firstname" : "Jean-Francois", + "rating" : 1251, + "rank" : -8, + "country" : "FR", + "club" : "92Le", + "skip" : [ + 4, + 6 + ] + }, + { + "id" : 811, + "name" : "Donley", + "firstname" : "Jeremiah", + "rating" : 2342, + "rank" : 2, + "country" : "US", + "club" : "SEAG", + "skip" : [ + 6 + ] + }, + { + "id" : 812, + "name" : "Rosenblatt", + "firstname" : "Simon", + "rating" : 1957, + "rank" : -1, + "country" : "FR", + "club" : "75Op" + }, + { + "id" : 813, + "name" : "Dmitriev", + "firstname" : "Fedor", + "rating" : 1303, + "rank" : -9, + "country" : "RU", + "club" : "18Iz" + }, + { + "id" : 814, + "name" : "Tuohy", + "firstname" : "Niall", + "rating" : 1285, + "rank" : -8, + "country" : "IE", + "club" : "Dubl" + }, + { + "id" : 815, + "name" : "Gurbuzel", + "firstname" : "Sebnem", + "rating" : 1547, + "rank" : -6, + "country" : "TR", + "club" : "Ank" + }, + { + "id" : 816, + "name" : "Vildeuil", + "firstname" : "Vanessa", + "rating" : 600, + "rank" : -15, + "country" : "FR", + "club" : "69Ly" + }, + { + "id" : 817, + "name" : "Ka_Chai", + "firstname" : "Sum", + "rating" : 1500, + "rank" : -6, + "country" : "HK", + "club" : "NoCb" + }, + { + "id" : 818, + "name" : "Palmade", + "firstname" : "Florian", + "rating" : 1024, + "rank" : -11, + "country" : "FR", + "club" : "00St" + }, + { + "id" : 819, + "name" : "Perrin", + "firstname" : "Thibaut", + "rating" : 1459, + "rank" : -6, + "country" : "FR", + "club" : "38Gr" + }, + { + "id" : 820, + "name" : "Jollivet", + "firstname" : "Guy", + "rating" : 170, + "rank" : -19, + "country" : "FR", + "club" : "75Al" + }, + { + "id" : 821, + "name" : "Johnstone", + "firstname" : "John", + "rating" : 876, + "rank" : -12, + "country" : "UK", + "club" : "Bour" + }, + { + "id" : 822, + "name" : "Roullier", + "firstname" : "Louise", + "rating" : 1779, + "rank" : -3, + "country" : "FR", + "club" : "92Le" + }, + { + "id" : 823, + "name" : "Kachanovskyi", + "firstname" : "Artem", + "rating" : 2754, + "rank" : 7, + "country" : "UA", + "club" : "Rivn" + }, + { + "id" : 824, + "name" : "Putnam", + "firstname" : "James", + "rating" : 1800, + "rank" : -3, + "country" : "US", + "club" : "NoCb" + }, + { + "id" : 825, + "name" : "Kim", + "firstname" : "Young-Sam", + "rating" : 2840, + "rank" : 7, + "country" : "DE", + "club" : "JIGS" + }, + { + "id" : 826, + "name" : "Trauwaen", + "firstname" : "Nicolas", + "rating" : 1504, + "rank" : -6, + "country" : "FR", + "club" : "33Bo" + }, + { + "id" : 827, + "name" : "Vuichard", + "firstname" : "Gaël", + "rating" : 1700, + "rank" : -4, + "country" : "FR", + "club" : "35Re" + }, + { + "id" : 828, + "name" : "Dyroff", + "firstname" : "Florian", + "rating" : 1700, + "rank" : -4, + "country" : "DE", + "club" : "Baye" + }, + { + "id" : 829, + "name" : "Duzgungu", + "firstname" : "Altug", + "rating" : 1384, + "rank" : -7, + "country" : "TR", + "club" : "Ist" + }, + { + "id" : 830, + "name" : "Lubczynski", + "firstname" : "Konrad", + "rating" : 1117, + "rank" : -10, + "country" : "PL", + "club" : "Wars", + "skip" : [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20 + ] + }, + { + "id" : 831, + "name" : "Ionita", + "firstname" : "Virgil_Andrei", + "rating" : 100, + "rank" : -20, + "country" : "Ro", + "club" : "361!" + }, + { + "id" : 832, + "name" : "Kanno", + "firstname" : "Hiroki", + "rating" : 2512, + "rank" : 4, + "country" : "HK", + "club" : "NoCb" + }, + { + "id" : 833, + "name" : "Barbati", + "firstname" : "Luciano", + "rating" : 1234, + "rank" : -8, + "country" : "IT", + "club" : "Pisa" + }, + { + "id" : 834, + "name" : "Drabkova", + "firstname" : "Pavla", + "rating" : 353, + "rank" : -17, + "country" : "CZ", + "club" : "Brno" + }, + { + "id" : 835, + "name" : "Williams", + "firstname" : "Colin", + "rating" : 1514, + "rank" : -5, + "country" : "UK", + "club" : "Bris" + }, + { + "id" : 836, + "name" : "Malavasi", + "firstname" : "Mathieu", + "rating" : 1400, + "rank" : -7, + "country" : "FR", + "club" : "73Ch" + }, + { + "id" : 837, + "name" : "Engelhardt", + "firstname" : "Alexander", + "rating" : 1151, + "rank" : -9, + "country" : "DE", + "club" : "M", + "skip" : [ + 4 + ] + }, + { + "id" : 838, + "name" : "Malatesta", + "firstname" : "Sofia", + "rating" : 1875, + "rank" : -2, + "country" : "IT", + "club" : "Roma" + }, + { + "id" : 839, + "name" : "Vasdal", + "firstname" : "Glenn_Kjetil", + "rating" : 2155, + "rank" : 1, + "country" : "NO", + "club" : "Berg", + "skip" : [ + 3, + 4, + 5, + 6 + ] + }, + { + "id" : 840, + "name" : "Menard", + "firstname" : "Clement", + "rating" : 1664, + "rank" : -4, + "country" : "FR", + "club" : "95Va" + }, + { + "id" : 841, + "name" : "Rosbaeck", + "firstname" : "Noel", + "rating" : 100, + "rank" : -20, + "country" : "FI", + "club" : "YliG", + "skip" : [ + 2, + 4, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20 + ] + }, + { + "id" : 842, + "name" : "Kollarik", + "firstname" : "Peter", + "rating" : 1487, + "rank" : -6, + "country" : "SK", + "club" : "Brat" + }, + { + "id" : 843, + "name" : "Surd", + "firstname" : "Justin", + "rating" : 400, + "rank" : -17, + "country" : "US", + "club" : "NoCb", + "skip" : [ + 2, + 3, + 4, + 5, + 6 + ] + }, + { + "id" : 844, + "name" : "Trinite", + "firstname" : "Damien", + "rating" : 1661, + "rank" : -4, + "country" : "FR", + "club" : "92An" + }, + { + "id" : 845, + "name" : "Touzot", + "firstname" : "Soren", + "rating" : 1304, + "rank" : -8, + "country" : "FR", + "club" : "75Op", + "skip" : [ + 2 + ] + }, + { + "id" : 846, + "name" : "Battin", + "firstname" : "Leo", + "rating" : 2022, + "rank" : -1, + "country" : "FR", + "club" : "42Se", + "skip" : [ + 3, + 4 + ] + }, + { + "id" : 847, + "name" : "Kabachenko", + "firstname" : "Vasilij", + "rating" : 1111, + "rank" : -10, + "country" : "RU", + "club" : "50Pr", + "skip" : [ + 5, + 6 + ] + }, + { + "id" : 848, + "name" : "Maurer", + "firstname" : "Frank", + "rating" : 2317, + "rank" : 2, + "country" : "DE", + "club" : "BS" + }, + { + "id" : 849, + "name" : "Limbach", + "firstname" : "Yvonne", + "rating" : 1594, + "rank" : -5, + "country" : "DE", + "club" : "Berl" + }, + { + "id" : 850, + "name" : "Reisenegger", + "firstname" : "Renate", + "rating" : 1999, + "rank" : -1, + "country" : "CL", + "club" : "Teng" + }, + { + "id" : 851, + "name" : "Zhang", + "firstname" : "Mark_Baoliang", + "rating" : 2014, + "rank" : -1, + "country" : "UK", + "club" : "Manc" + }, + { + "id" : 852, + "name" : "Gorza", + "firstname" : "Alexandre", + "rating" : 1556, + "rank" : -5, + "country" : "BE", + "club" : "Bxl", + "skip" : [ + 4, + 6 + ] + }, + { + "id" : 853, + "name" : "Breviere", + "firstname" : "Lionel", + "rating" : 1169, + "rank" : -9, + "country" : "BE", + "club" : "Porc" + }, + { + "id" : 854, + "name" : "Crabtree", + "firstname" : "David", + "rating" : 1323, + "rank" : -8, + "country" : "UK", + "club" : "Manc" + }, + { + "id" : 855, + "name" : "Chicoineau", + "firstname" : "Leo", + "rating" : 1741, + "rank" : -4, + "country" : "FR", + "club" : "00ST" + }, + { + "id" : 856, + "name" : "Kim", + "firstname" : "Seong-Jin", + "rating" : 2803, + "rank" : 7, + "country" : "DE", + "club" : "B" + }, + { + "id" : 857, + "name" : "Ghetu", + "firstname" : "Sara_Maria", + "rating" : 556, + "rank" : -15, + "country" : "RO", + "club" : "Cluj" + }, + { + "id" : 858, + "name" : "Macquet", + "firstname" : "Corentin", + "rating" : 574, + "rank" : -15, + "country" : "FR", + "club" : "00St" + }, + { + "id" : 859, + "name" : "Luovula", + "firstname" : "Elena", + "rating" : 1364, + "rank" : -7, + "country" : "FI", + "club" : "YliG", + "skip" : [ + 3 + ] + }, + { + "id" : 860, + "name" : "Waelzer", + "firstname" : "Karel", + "rating" : 1099, + "rank" : -10, + "country" : "CZ", + "club" : "CPis" + }, + { + "id" : 861, + "name" : "Cary", + "firstname" : "Jack", + "rating" : 1794, + "rank" : -3, + "country" : "US", + "club" : "VGC" + }, + { + "id" : 862, + "name" : "Zeng-Lussereau", + "firstname" : "Eliot", + "rating" : 785, + "rank" : -13, + "country" : "FR", + "club" : "38GJ", + "skip" : [ + 2 + ] + }, + { + "id" : 863, + "name" : "Cuyt", + "firstname" : "Sven", + "rating" : 2104, + "rank" : 0, + "country" : "BE", + "club" : "Leuv", + "skip" : [ + 5, + 6 + ] + }, + { + "id" : 864, + "name" : "Jegou", + "firstname" : "Marc", + "rating" : 943, + "rank" : -12, + "country" : "FR", + "club" : "44Na" + }, + { + "id" : 865, + "name" : "Berceanu", + "firstname" : "Ovidiu", + "rating" : 1191, + "rank" : -9, + "country" : "RO", + "club" : "TMWS" + }, + { + "id" : 866, + "name" : "Zazanis", + "firstname" : "Petros", + "rating" : 1628, + "rank" : -5, + "country" : "GR", + "club" : "Athe", + "skip" : [ + 2, + 3, + 4, + 5, + 6 + ] + }, + { + "id" : 867, + "name" : "Pinchard", + "firstname" : "Alexandre", + "rating" : 1379, + "rank" : -7, + "country" : "FR", + "club" : "92Ge", + "skip" : [ + 2, + 3, + 4, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19 + ] + }, + { + "id" : 868, + "name" : "Derrien", + "firstname" : "Christele", + "rating" : 1087, + "rank" : -10, + "country" : "FR", + "club" : "35Re" + }, + { + "id" : 869, + "name" : "Juldashev", + "firstname" : "Davron", + "rating" : 564, + "rank" : -15, + "country" : "KY", + "club" : "Seng" + }, + { + "id" : 870, + "name" : "Schramm", + "firstname" : "Christina", + "rating" : 416, + "rank" : -17, + "country" : "DE", + "club" : "KI", + "skip" : [ + 4, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20 + ] + }, + { + "id" : 871, + "name" : "Mouial", + "firstname" : "Maxime", + "rating" : 400, + "rank" : -17, + "country" : "FR", + "club" : "75OB" + }, + { + "id" : 872, + "name" : "Butaud", + "firstname" : "Remi", + "rating" : 1540, + "rank" : -6, + "country" : "FR", + "club" : "06Pe" + }, + { + "id" : 873, + "name" : "Tu", + "firstname" : "Jean-Louis", + "rating" : 1471, + "rank" : -6, + "country" : "FR", + "club" : "92An" + }, + { + "id" : 874, + "name" : "Mouhounou", + "firstname" : "Sophie", + "rating" : 1525, + "rank" : -6, + "country" : "FR", + "club" : "91Or" + }, + { + "id" : 875, + "name" : "Miksa", + "firstname" : "Marta", + "rating" : 1331, + "rank" : -9, + "country" : "HR", + "club" : "Inse" + }, + { + "id" : 876, + "name" : "Engelen", + "firstname" : "Gints", + "rating" : 1809, + "rank" : -3, + "country" : "BE", + "club" : "Leuv", + "skip" : [ + 3, + 4 + ] + }, + { + "id" : 877, + "name" : "Rawat", + "firstname" : "Karan", + "rating" : 1600, + "rank" : -5, + "country" : "IN", + "club" : "iaga" + }, + { + "id" : 878, + "name" : "Groot", + "firstname" : "Rene_de", + "rating" : 980, + "rank" : -11, + "country" : "NL", + "club" : "Utre", + "skip" : [ + 4 + ] + }, + { + "id" : 879, + "name" : "Cuello", + "firstname" : "Kevin", + "rating" : 1657, + "rank" : -4, + "country" : "FR", + "club" : "35Re", + "skip" : [ + 3, + 4 + ] + }, + { + "id" : 880, + "name" : "Vandendyck", + "firstname" : "Leo", + "rating" : 861, + "rank" : -12, + "country" : "FR", + "club" : "91Or" + }, + { + "id" : 881, + "name" : "Zach", + "firstname" : "Lukas", + "rating" : 347, + "rank" : -18, + "country" : "CZ", + "club" : "Usti" + } + ], + "games" : [ + [ + { + "id" : 1852, + "t" : 1, + "w" : 794, + "b" : 832, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1853, + "t" : 2, + "w" : 806, + "b" : 823, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1854, + "t" : 3, + "w" : 856, + "b" : 755, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1855, + "t" : 4, + "w" : 825, + "b" : 791, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1856, + "t" : 5, + "w" : 761, + "b" : 792, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1857, + "t" : 6, + "w" : 763, + "b" : 747, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1858, + "t" : 7, + "w" : 718, + "b" : 811, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1859, + "t" : 8, + "w" : 848, + "b" : 777, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1860, + "t" : 9, + "w" : 748, + "b" : 839, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1861, + "t" : 10, + "w" : 731, + "b" : 863, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1862, + "t" : 11, + "w" : 807, + "b" : 782, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1863, + "t" : 12, + "w" : 768, + "b" : 804, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1864, + "t" : 13, + "w" : 846, + "b" : 850, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1865, + "t" : 14, + "w" : 797, + "b" : 812, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1866, + "t" : 15, + "w" : 772, + "b" : 851, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1867, + "t" : 16, + "w" : 720, + "b" : 709, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1868, + "t" : 17, + "w" : 779, + "b" : 749, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1869, + "t" : 18, + "w" : 759, + "b" : 715, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1870, + "t" : 19, + "w" : 767, + "b" : 838, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1871, + "t" : 20, + "w" : 876, + "b" : 861, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1872, + "t" : 21, + "w" : 765, + "b" : 784, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1873, + "t" : 22, + "w" : 802, + "b" : 740, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1874, + "t" : 23, + "w" : 824, + "b" : 822, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1875, + "t" : 24, + "w" : 827, + "b" : 745, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1876, + "t" : 25, + "w" : 754, + "b" : 774, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1877, + "t" : 26, + "w" : 751, + "b" : 712, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1878, + "t" : 27, + "w" : 844, + "b" : 855, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1879, + "t" : 28, + "w" : 879, + "b" : 828, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1880, + "t" : 29, + "w" : 840, + "b" : 803, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1881, + "t" : 30, + "w" : 710, + "b" : 789, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1882, + "t" : 31, + "w" : 707, + "b" : 736, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1883, + "t" : 32, + "w" : 738, + "b" : 706, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1884, + "t" : 33, + "w" : 783, + "b" : 713, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1885, + "t" : 34, + "w" : 744, + "b" : 835, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1886, + "t" : 35, + "w" : 866, + "b" : 852, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1887, + "t" : 36, + "w" : 874, + "b" : 877, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1888, + "t" : 37, + "w" : 716, + "b" : 872, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1889, + "t" : 38, + "w" : 758, + "b" : 819, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1890, + "t" : 39, + "w" : 817, + "b" : 787, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1891, + "t" : 40, + "w" : 873, + "b" : 815, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1892, + "t" : 41, + "w" : 801, + "b" : 842, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1893, + "t" : 42, + "w" : 780, + "b" : 829, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1894, + "t" : 43, + "w" : 737, + "b" : 859, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1895, + "t" : 44, + "w" : 778, + "b" : 724, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1896, + "t" : 45, + "w" : 814, + "b" : 836, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1897, + "t" : 46, + "w" : 845, + "b" : 833, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1898, + "t" : 47, + "w" : 810, + "b" : 732, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1899, + "t" : 48, + "w" : 726, + "b" : 854, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1900, + "t" : 49, + "w" : 753, + "b" : 771, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1901, + "t" : 50, + "w" : 865, + "b" : 795, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1902, + "t" : 51, + "w" : 853, + "b" : 750, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1903, + "t" : 52, + "w" : 813, + "b" : 781, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1904, + "t" : 53, + "w" : 805, + "b" : 837, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1905, + "t" : 54, + "w" : 875, + "b" : 762, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1906, + "t" : 55, + "w" : 798, + "b" : 830, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1907, + "t" : 56, + "w" : 785, + "b" : 719, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1908, + "t" : 57, + "w" : 868, + "b" : 799, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1909, + "t" : 58, + "w" : 757, + "b" : 847, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1910, + "t" : 59, + "w" : 741, + "b" : 735, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1911, + "t" : 60, + "w" : 775, + "b" : 860, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1912, + "t" : 61, + "w" : 769, + "b" : 730, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1913, + "t" : 62, + "w" : 878, + "b" : 746, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1914, + "t" : 63, + "w" : 818, + "b" : 717, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1915, + "t" : 64, + "w" : 864, + "b" : 880, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1916, + "t" : 65, + "w" : 862, + "b" : 821, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1917, + "t" : 66, + "w" : 729, + "b" : 722, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1918, + "t" : 67, + "w" : 796, + "b" : 725, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1919, + "t" : 68, + "w" : 723, + "b" : 858, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1920, + "t" : 69, + "w" : 857, + "b" : 816, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1921, + "t" : 70, + "w" : 764, + "b" : 869, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1922, + "t" : 71, + "w" : 776, + "b" : 793, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1923, + "t" : 72, + "w" : 870, + "b" : 834, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1924, + "t" : 73, + "w" : 871, + "b" : 843, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1925, + "t" : 74, + "w" : 881, + "b" : 770, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1926, + "t" : 75, + "w" : 820, + "b" : 788, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1927, + "t" : 76, + "w" : 831, + "b" : 773, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1928, + "t" : 77, + "w" : 721, + "b" : 752, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1929, + "t" : 78, + "w" : 742, + "b" : 711, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1930, + "t" : 79, + "w" : 728, + "b" : 800, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1931, + "t" : 80, + "w" : 739, + "b" : 841, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1932, + "t" : 81, + "w" : 708, + "b" : 790, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1933, + "t" : 82, + "w" : 786, + "b" : 743, + "h" : 0, + "r" : "w", + "dd" : 0 + } + ], + [ + { + "id" : 1934, + "t" : 25, + "w" : 809, + "b" : 827, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1935, + "t" : 26, + "w" : 828, + "b" : 844, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1936, + "t" : 27, + "w" : 855, + "b" : 840, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1937, + "t" : 28, + "w" : 712, + "b" : 707, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1938, + "t" : 29, + "w" : 745, + "b" : 852, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1939, + "t" : 30, + "w" : 706, + "b" : 751, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1940, + "t" : 31, + "w" : 803, + "b" : 713, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1941, + "t" : 32, + "w" : 789, + "b" : 835, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1942, + "t" : 33, + "w" : 874, + "b" : 738, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1943, + "t" : 34, + "w" : 787, + "b" : 744, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1944, + "t" : 35, + "w" : 872, + "b" : 783, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1945, + "t" : 36, + "w" : 736, + "b" : 780, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1946, + "t" : 37, + "w" : 877, + "b" : 873, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1947, + "t" : 38, + "w" : 819, + "b" : 716, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1948, + "t" : 39, + "w" : 826, + "b" : 817, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1949, + "t" : 40, + "w" : 758, + "b" : 801, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1950, + "t" : 41, + "w" : 815, + "b" : 778, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1951, + "t" : 42, + "w" : 842, + "b" : 737, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1952, + "t" : 43, + "w" : 829, + "b" : 814, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1953, + "t" : 44, + "w" : 724, + "b" : 810, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1954, + "t" : 45, + "w" : 859, + "b" : 854, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1955, + "t" : 46, + "w" : 833, + "b" : 836, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1956, + "t" : 47, + "w" : 732, + "b" : 867, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1957, + "t" : 48, + "w" : 750, + "b" : 726, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1958, + "t" : 49, + "w" : 766, + "b" : 875, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1959, + "t" : 50, + "w" : 795, + "b" : 813, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1960, + "t" : 51, + "w" : 735, + "b" : 865, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1961, + "t" : 52, + "w" : 714, + "b" : 741, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1962, + "t" : 53, + "w" : 781, + "b" : 757, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1963, + "t" : 54, + "w" : 830, + "b" : 853, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1964, + "t" : 55, + "w" : 860, + "b" : 837, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1965, + "t" : 56, + "w" : 762, + "b" : 785, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1966, + "t" : 57, + "w" : 847, + "b" : 868, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1967, + "t" : 58, + "w" : 878, + "b" : 798, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1968, + "t" : 59, + "w" : 719, + "b" : 818, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1969, + "t" : 60, + "w" : 769, + "b" : 775, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1970, + "t" : 61, + "w" : 880, + "b" : 717, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1971, + "t" : 62, + "w" : 730, + "b" : 821, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1972, + "t" : 63, + "w" : 864, + "b" : 729, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1973, + "t" : 64, + "w" : 796, + "b" : 723, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1974, + "t" : 65, + "w" : 816, + "b" : 725, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1975, + "t" : 66, + "w" : 722, + "b" : 764, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1976, + "t" : 67, + "w" : 858, + "b" : 857, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1977, + "t" : 68, + "w" : 869, + "b" : 776, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1978, + "t" : 69, + "w" : 793, + "b" : 870, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1979, + "t" : 70, + "w" : 834, + "b" : 871, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1980, + "t" : 71, + "w" : 788, + "b" : 881, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1981, + "t" : 72, + "w" : 770, + "b" : 820, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1982, + "t" : 73, + "w" : 790, + "b" : 760, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1983, + "t" : 74, + "w" : 773, + "b" : 742, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1984, + "t" : 75, + "w" : 728, + "b" : 786, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1985, + "t" : 76, + "w" : 831, + "b" : 721, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1986, + "t" : 77, + "w" : 711, + "b" : 708, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1987, + "t" : 78, + "w" : 752, + "b" : 739, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1988, + "t" : 79, + "w" : 800, + "b" : 727, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1989, + "t" : 1, + "w" : 823, + "b" : 761, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1990, + "t" : 2, + "w" : 792, + "b" : 806, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1991, + "t" : 3, + "w" : 832, + "b" : 825, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1992, + "t" : 4, + "w" : 856, + "b" : 763, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1993, + "t" : 5, + "w" : 747, + "b" : 794, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1994, + "t" : 6, + "w" : 791, + "b" : 718, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1995, + "t" : 7, + "w" : 755, + "b" : 848, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1996, + "t" : 8, + "w" : 811, + "b" : 748, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1997, + "t" : 9, + "w" : 863, + "b" : 839, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 1998, + "t" : 10, + "w" : 782, + "b" : 777, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 1999, + "t" : 11, + "w" : 804, + "b" : 731, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2000, + "t" : 12, + "w" : 812, + "b" : 807, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2001, + "t" : 13, + "w" : 768, + "b" : 720, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2002, + "t" : 14, + "w" : 808, + "b" : 797, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2003, + "t" : 15, + "w" : 850, + "b" : 851, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2004, + "t" : 16, + "w" : 749, + "b" : 846, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2005, + "t" : 17, + "w" : 838, + "b" : 772, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2006, + "t" : 18, + "w" : 715, + "b" : 709, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2007, + "t" : 19, + "w" : 759, + "b" : 767, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2008, + "t" : 20, + "w" : 822, + "b" : 779, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2009, + "t" : 21, + "w" : 740, + "b" : 876, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2010, + "t" : 22, + "w" : 861, + "b" : 879, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2011, + "t" : 23, + "w" : 774, + "b" : 824, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2012, + "t" : 24, + "w" : 710, + "b" : 802, + "h" : 0, + "r" : "w", + "dd" : 0 + } + ], + [ + { + "id" : 2013, + "t" : 49, + "w" : 853, + "b" : 845, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2014, + "t" : 50, + "w" : 750, + "b" : 805, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2015, + "t" : 51, + "w" : 875, + "b" : 860, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2016, + "t" : 52, + "w" : 837, + "b" : 775, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2017, + "t" : 53, + "w" : 847, + "b" : 785, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2018, + "t" : 54, + "w" : 798, + "b" : 757, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2019, + "t" : 55, + "w" : 799, + "b" : 714, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2020, + "t" : 56, + "w" : 741, + "b" : 818, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2021, + "t" : 57, + "w" : 719, + "b" : 769, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2022, + "t" : 58, + "w" : 717, + "b" : 868, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2023, + "t" : 59, + "w" : 730, + "b" : 878, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2024, + "t" : 60, + "w" : 821, + "b" : 864, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2025, + "t" : 61, + "w" : 880, + "b" : 796, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2026, + "t" : 62, + "w" : 725, + "b" : 862, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2027, + "t" : 63, + "w" : 764, + "b" : 729, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2028, + "t" : 64, + "w" : 723, + "b" : 816, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2029, + "t" : 65, + "w" : 869, + "b" : 858, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2030, + "t" : 66, + "w" : 793, + "b" : 857, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2031, + "t" : 67, + "w" : 722, + "b" : 834, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2032, + "t" : 68, + "w" : 776, + "b" : 881, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2033, + "t" : 69, + "w" : 770, + "b" : 871, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2034, + "t" : 70, + "w" : 788, + "b" : 728, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2035, + "t" : 71, + "w" : 870, + "b" : 721, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2036, + "t" : 72, + "w" : 773, + "b" : 790, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2037, + "t" : 73, + "w" : 742, + "b" : 820, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2038, + "t" : 74, + "w" : 733, + "b" : 786, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2039, + "t" : 75, + "w" : 752, + "b" : 708, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2040, + "t" : 76, + "w" : 841, + "b" : 800, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2041, + "t" : 77, + "w" : 711, + "b" : 739, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2042, + "t" : 78, + "w" : 727, + "b" : 831, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2043, + "t" : 1, + "w" : 823, + "b" : 856, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2044, + "t" : 2, + "w" : 825, + "b" : 806, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2045, + "t" : 3, + "w" : 761, + "b" : 791, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2046, + "t" : 4, + "w" : 832, + "b" : 848, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2047, + "t" : 5, + "w" : 755, + "b" : 747, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2048, + "t" : 6, + "w" : 718, + "b" : 794, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2049, + "t" : 7, + "w" : 763, + "b" : 811, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2050, + "t" : 8, + "w" : 748, + "b" : 792, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2051, + "t" : 9, + "w" : 777, + "b" : 804, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2052, + "t" : 10, + "w" : 812, + "b" : 731, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2053, + "t" : 11, + "w" : 749, + "b" : 863, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2054, + "t" : 12, + "w" : 851, + "b" : 782, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2055, + "t" : 13, + "w" : 797, + "b" : 768, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2056, + "t" : 14, + "w" : 709, + "b" : 807, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2057, + "t" : 15, + "w" : 720, + "b" : 838, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2058, + "t" : 16, + "w" : 715, + "b" : 772, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2059, + "t" : 17, + "w" : 808, + "b" : 759, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2060, + "t" : 18, + "w" : 822, + "b" : 765, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2061, + "t" : 19, + "w" : 850, + "b" : 710, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2062, + "t" : 20, + "w" : 767, + "b" : 855, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2063, + "t" : 21, + "w" : 740, + "b" : 774, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2064, + "t" : 22, + "w" : 712, + "b" : 861, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2065, + "t" : 23, + "w" : 844, + "b" : 802, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2066, + "t" : 24, + "w" : 824, + "b" : 745, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2067, + "t" : 25, + "w" : 803, + "b" : 827, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2068, + "t" : 26, + "w" : 736, + "b" : 840, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2069, + "t" : 27, + "w" : 707, + "b" : 706, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2070, + "t" : 28, + "w" : 713, + "b" : 789, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2071, + "t" : 29, + "w" : 873, + "b" : 751, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2072, + "t" : 30, + "w" : 828, + "b" : 872, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2073, + "t" : 31, + "w" : 835, + "b" : 787, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2074, + "t" : 32, + "w" : 852, + "b" : 801, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2075, + "t" : 33, + "w" : 738, + "b" : 877, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2076, + "t" : 34, + "w" : 849, + "b" : 744, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2077, + "t" : 35, + "w" : 815, + "b" : 874, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2078, + "t" : 36, + "w" : 819, + "b" : 783, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2079, + "t" : 37, + "w" : 826, + "b" : 758, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2080, + "t" : 38, + "w" : 737, + "b" : 780, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2081, + "t" : 39, + "w" : 716, + "b" : 724, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2082, + "t" : 40, + "w" : 814, + "b" : 817, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2083, + "t" : 41, + "w" : 854, + "b" : 842, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2084, + "t" : 42, + "w" : 778, + "b" : 833, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2085, + "t" : 43, + "w" : 771, + "b" : 810, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2086, + "t" : 44, + "w" : 756, + "b" : 766, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2087, + "t" : 45, + "w" : 836, + "b" : 813, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2088, + "t" : 46, + "w" : 726, + "b" : 865, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2089, + "t" : 47, + "w" : 795, + "b" : 829, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2090, + "t" : 48, + "w" : 732, + "b" : 781, + "h" : 0, + "r" : "b", + "dd" : 0 + } + ], + [ + { + "id" : 2091, + "t" : 1, + "w" : 856, + "b" : 832, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2092, + "t" : 2, + "w" : 823, + "b" : 825, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2093, + "t" : 3, + "w" : 791, + "b" : 755, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2094, + "t" : 4, + "w" : 794, + "b" : 761, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2095, + "t" : 5, + "w" : 806, + "b" : 747, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2096, + "t" : 6, + "w" : 848, + "b" : 763, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2097, + "t" : 7, + "w" : 792, + "b" : 811, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2098, + "t" : 8, + "w" : 804, + "b" : 718, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2099, + "t" : 9, + "w" : 731, + "b" : 748, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2100, + "t" : 10, + "w" : 863, + "b" : 777, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2101, + "t" : 11, + "w" : 782, + "b" : 749, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2102, + "t" : 12, + "w" : 851, + "b" : 768, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2103, + "t" : 13, + "w" : 709, + "b" : 812, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2104, + "t" : 14, + "w" : 838, + "b" : 797, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2105, + "t" : 15, + "w" : 807, + "b" : 808, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2106, + "t" : 16, + "w" : 772, + "b" : 850, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2107, + "t" : 17, + "w" : 720, + "b" : 767, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2108, + "t" : 18, + "w" : 822, + "b" : 715, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2109, + "t" : 19, + "w" : 779, + "b" : 712, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2110, + "t" : 20, + "w" : 774, + "b" : 759, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2111, + "t" : 21, + "w" : 809, + "b" : 710, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2112, + "t" : 22, + "w" : 861, + "b" : 745, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2113, + "t" : 23, + "w" : 803, + "b" : 740, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2114, + "t" : 24, + "w" : 789, + "b" : 707, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2115, + "t" : 25, + "w" : 855, + "b" : 736, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2116, + "t" : 26, + "w" : 840, + "b" : 828, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2117, + "t" : 27, + "w" : 802, + "b" : 738, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2118, + "t" : 28, + "w" : 801, + "b" : 824, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2119, + "t" : 29, + "w" : 706, + "b" : 873, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2120, + "t" : 30, + "w" : 787, + "b" : 844, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2121, + "t" : 31, + "w" : 827, + "b" : 758, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2122, + "t" : 32, + "w" : 751, + "b" : 874, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2123, + "t" : 33, + "w" : 713, + "b" : 849, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2124, + "t" : 34, + "w" : 835, + "b" : 819, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2125, + "t" : 35, + "w" : 872, + "b" : 737, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2126, + "t" : 36, + "w" : 877, + "b" : 842, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2127, + "t" : 37, + "w" : 744, + "b" : 826, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2128, + "t" : 38, + "w" : 783, + "b" : 778, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2129, + "t" : 39, + "w" : 724, + "b" : 815, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2130, + "t" : 40, + "w" : 780, + "b" : 814, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2131, + "t" : 41, + "w" : 817, + "b" : 813, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2132, + "t" : 42, + "w" : 829, + "b" : 771, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2133, + "t" : 43, + "w" : 833, + "b" : 865, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2134, + "t" : 44, + "w" : 836, + "b" : 854, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2135, + "t" : 45, + "w" : 781, + "b" : 859, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2136, + "t" : 46, + "w" : 845, + "b" : 750, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2137, + "t" : 47, + "w" : 860, + "b" : 726, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2138, + "t" : 48, + "w" : 766, + "b" : 714, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2139, + "t" : 49, + "w" : 795, + "b" : 847, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2140, + "t" : 50, + "w" : 798, + "b" : 853, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2141, + "t" : 51, + "w" : 818, + "b" : 875, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2142, + "t" : 52, + "w" : 775, + "b" : 719, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2143, + "t" : 53, + "w" : 785, + "b" : 717, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2144, + "t" : 54, + "w" : 868, + "b" : 730, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2145, + "t" : 55, + "w" : 757, + "b" : 864, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2146, + "t" : 56, + "w" : 769, + "b" : 880, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2147, + "t" : 57, + "w" : 821, + "b" : 796, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2148, + "t" : 58, + "w" : 858, + "b" : 725, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2149, + "t" : 59, + "w" : 729, + "b" : 862, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2150, + "t" : 60, + "w" : 816, + "b" : 869, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2151, + "t" : 61, + "w" : 857, + "b" : 723, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2152, + "t" : 62, + "w" : 871, + "b" : 793, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2153, + "t" : 63, + "w" : 834, + "b" : 881, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2154, + "t" : 64, + "w" : 721, + "b" : 770, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2155, + "t" : 65, + "w" : 790, + "b" : 776, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2156, + "t" : 66, + "w" : 820, + "b" : 728, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2157, + "t" : 67, + "w" : 788, + "b" : 773, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2158, + "t" : 68, + "w" : 708, + "b" : 760, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2159, + "t" : 69, + "w" : 786, + "b" : 752, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2160, + "t" : 70, + "w" : 800, + "b" : 831, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2161, + "t" : 71, + "w" : 739, + "b" : 742, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2162, + "t" : 72, + "w" : 727, + "b" : 711, + "h" : 0, + "r" : "w", + "dd" : 0 + } + ], + [ + { + "id" : 2163, + "t" : 1, + "w" : 832, + "b" : 823, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2164, + "t" : 2, + "w" : 794, + "b" : 856, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2165, + "t" : 3, + "w" : 825, + "b" : 755, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2166, + "t" : 4, + "w" : 761, + "b" : 763, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2167, + "t" : 5, + "w" : 848, + "b" : 806, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2168, + "t" : 6, + "w" : 791, + "b" : 748, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2169, + "t" : 7, + "w" : 792, + "b" : 804, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2170, + "t" : 8, + "w" : 811, + "b" : 777, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2171, + "t" : 9, + "w" : 731, + "b" : 851, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2172, + "t" : 10, + "w" : 782, + "b" : 709, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2173, + "t" : 11, + "w" : 768, + "b" : 812, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2174, + "t" : 12, + "w" : 772, + "b" : 797, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2175, + "t" : 13, + "w" : 808, + "b" : 720, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2176, + "t" : 14, + "w" : 838, + "b" : 715, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2177, + "t" : 15, + "w" : 807, + "b" : 846, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2178, + "t" : 16, + "w" : 850, + "b" : 779, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2179, + "t" : 17, + "w" : 759, + "b" : 855, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2180, + "t" : 18, + "w" : 876, + "b" : 822, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2181, + "t" : 19, + "w" : 745, + "b" : 712, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2182, + "t" : 20, + "w" : 789, + "b" : 774, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2183, + "t" : 21, + "w" : 767, + "b" : 802, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2184, + "t" : 22, + "w" : 844, + "b" : 710, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2185, + "t" : 23, + "w" : 740, + "b" : 736, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2186, + "t" : 24, + "w" : 738, + "b" : 861, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2187, + "t" : 25, + "w" : 801, + "b" : 707, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2188, + "t" : 26, + "w" : 828, + "b" : 873, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2189, + "t" : 27, + "w" : 840, + "b" : 758, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2190, + "t" : 28, + "w" : 872, + "b" : 827, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2191, + "t" : 29, + "w" : 824, + "b" : 787, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2192, + "t" : 30, + "w" : 706, + "b" : 819, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2193, + "t" : 31, + "w" : 849, + "b" : 751, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2194, + "t" : 32, + "w" : 713, + "b" : 835, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2195, + "t" : 33, + "w" : 852, + "b" : 826, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2196, + "t" : 34, + "w" : 879, + "b" : 737, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2197, + "t" : 35, + "w" : 877, + "b" : 724, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2198, + "t" : 36, + "w" : 814, + "b" : 778, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2199, + "t" : 37, + "w" : 744, + "b" : 833, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2200, + "t" : 38, + "w" : 854, + "b" : 874, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2201, + "t" : 39, + "w" : 771, + "b" : 815, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2202, + "t" : 40, + "w" : 813, + "b" : 780, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2203, + "t" : 41, + "w" : 842, + "b" : 726, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2204, + "t" : 42, + "w" : 817, + "b" : 845, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2205, + "t" : 43, + "w" : 829, + "b" : 756, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2206, + "t" : 44, + "w" : 865, + "b" : 716, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2207, + "t" : 45, + "w" : 810, + "b" : 781, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2208, + "t" : 46, + "w" : 836, + "b" : 860, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2209, + "t" : 47, + "w" : 714, + "b" : 859, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2210, + "t" : 48, + "w" : 750, + "b" : 818, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2211, + "t" : 49, + "w" : 853, + "b" : 757, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2212, + "t" : 50, + "w" : 775, + "b" : 875, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2213, + "t" : 51, + "w" : 719, + "b" : 795, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2214, + "t" : 52, + "w" : 762, + "b" : 732, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2215, + "t" : 53, + "w" : 717, + "b" : 798, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2216, + "t" : 54, + "w" : 785, + "b" : 735, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2217, + "t" : 55, + "w" : 837, + "b" : 799, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2218, + "t" : 56, + "w" : 730, + "b" : 741, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2219, + "t" : 57, + "w" : 880, + "b" : 868, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2220, + "t" : 58, + "w" : 864, + "b" : 769, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2221, + "t" : 59, + "w" : 796, + "b" : 878, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2222, + "t" : 60, + "w" : 858, + "b" : 821, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2223, + "t" : 61, + "w" : 725, + "b" : 729, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2224, + "t" : 62, + "w" : 862, + "b" : 764, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2225, + "t" : 63, + "w" : 869, + "b" : 723, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2226, + "t" : 64, + "w" : 816, + "b" : 722, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2227, + "t" : 65, + "w" : 881, + "b" : 793, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2228, + "t" : 66, + "w" : 776, + "b" : 834, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2229, + "t" : 67, + "w" : 857, + "b" : 871, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2230, + "t" : 68, + "w" : 721, + "b" : 728, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2231, + "t" : 69, + "w" : 820, + "b" : 870, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2232, + "t" : 70, + "w" : 770, + "b" : 773, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2233, + "t" : 71, + "w" : 786, + "b" : 739, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2234, + "t" : 72, + "w" : 788, + "b" : 733, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2235, + "t" : 73, + "w" : 841, + "b" : 708, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2236, + "t" : 74, + "w" : 831, + "b" : 752, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2237, + "t" : 75, + "w" : 742, + "b" : 727, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2238, + "t" : 76, + "w" : 800, + "b" : 711, + "h" : 0, + "r" : "w", + "dd" : 0 + } + ], + [ + { + "id" : 2239, + "t" : 1, + "w" : 823, + "b" : 794, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2240, + "t" : 2, + "w" : 806, + "b" : 856, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2241, + "t" : 3, + "w" : 763, + "b" : 832, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2242, + "t" : 4, + "w" : 755, + "b" : 761, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2243, + "t" : 5, + "w" : 791, + "b" : 848, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2244, + "t" : 6, + "w" : 825, + "b" : 792, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2245, + "t" : 7, + "w" : 748, + "b" : 804, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2246, + "t" : 8, + "w" : 777, + "b" : 731, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2247, + "t" : 9, + "w" : 797, + "b" : 851, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2248, + "t" : 10, + "w" : 768, + "b" : 772, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2249, + "t" : 11, + "w" : 838, + "b" : 808, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2250, + "t" : 12, + "w" : 709, + "b" : 846, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2251, + "t" : 13, + "w" : 812, + "b" : 759, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2252, + "t" : 14, + "w" : 779, + "b" : 807, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2253, + "t" : 15, + "w" : 850, + "b" : 822, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2254, + "t" : 16, + "w" : 715, + "b" : 789, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2255, + "t" : 17, + "w" : 745, + "b" : 767, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2256, + "t" : 18, + "w" : 710, + "b" : 876, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2257, + "t" : 19, + "w" : 712, + "b" : 809, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2258, + "t" : 20, + "w" : 855, + "b" : 738, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2259, + "t" : 21, + "w" : 873, + "b" : 774, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2260, + "t" : 22, + "w" : 736, + "b" : 801, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2261, + "t" : 23, + "w" : 861, + "b" : 844, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2262, + "t" : 24, + "w" : 751, + "b" : 740, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2263, + "t" : 25, + "w" : 802, + "b" : 879, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2264, + "t" : 26, + "w" : 787, + "b" : 840, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2265, + "t" : 27, + "w" : 819, + "b" : 828, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2266, + "t" : 28, + "w" : 707, + "b" : 872, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2267, + "t" : 29, + "w" : 827, + "b" : 877, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2268, + "t" : 30, + "w" : 874, + "b" : 824, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2269, + "t" : 31, + "w" : 758, + "b" : 849, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2270, + "t" : 32, + "w" : 778, + "b" : 706, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2271, + "t" : 33, + "w" : 835, + "b" : 826, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2272, + "t" : 34, + "w" : 737, + "b" : 713, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2273, + "t" : 35, + "w" : 724, + "b" : 744, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2274, + "t" : 36, + "w" : 813, + "b" : 815, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2275, + "t" : 37, + "w" : 842, + "b" : 814, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2276, + "t" : 38, + "w" : 854, + "b" : 845, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2277, + "t" : 39, + "w" : 865, + "b" : 780, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2278, + "t" : 40, + "w" : 833, + "b" : 756, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2279, + "t" : 41, + "w" : 781, + "b" : 726, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2280, + "t" : 42, + "w" : 836, + "b" : 853, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2281, + "t" : 43, + "w" : 867, + "b" : 817, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2282, + "t" : 44, + "w" : 714, + "b" : 829, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2283, + "t" : 45, + "w" : 860, + "b" : 818, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2284, + "t" : 46, + "w" : 859, + "b" : 798, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2285, + "t" : 47, + "w" : 875, + "b" : 719, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2286, + "t" : 48, + "w" : 757, + "b" : 795, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2287, + "t" : 49, + "w" : 775, + "b" : 762, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2288, + "t" : 50, + "w" : 741, + "b" : 785, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2289, + "t" : 51, + "w" : 717, + "b" : 732, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2290, + "t" : 52, + "w" : 837, + "b" : 730, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2291, + "t" : 53, + "w" : 878, + "b" : 880, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2292, + "t" : 54, + "w" : 868, + "b" : 769, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2293, + "t" : 55, + "w" : 796, + "b" : 858, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2294, + "t" : 56, + "w" : 725, + "b" : 864, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2295, + "t" : 57, + "w" : 821, + "b" : 764, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2296, + "t" : 58, + "w" : 862, + "b" : 869, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2297, + "t" : 59, + "w" : 729, + "b" : 816, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2298, + "t" : 60, + "w" : 723, + "b" : 881, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2299, + "t" : 61, + "w" : 776, + "b" : 857, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2300, + "t" : 62, + "w" : 871, + "b" : 722, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2301, + "t" : 63, + "w" : 793, + "b" : 721, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2302, + "t" : 64, + "w" : 728, + "b" : 834, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2303, + "t" : 65, + "w" : 770, + "b" : 788, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2304, + "t" : 66, + "w" : 831, + "b" : 820, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2305, + "t" : 67, + "w" : 739, + "b" : 773, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2306, + "t" : 68, + "w" : 790, + "b" : 800, + "h" : 0, + "r" : "b", + "dd" : 0 + }, + { + "id" : 2307, + "t" : 69, + "w" : 708, + "b" : 727, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2308, + "t" : 70, + "w" : 760, + "b" : 742, + "h" : 0, + "r" : "w", + "dd" : 0 + }, + { + "id" : 2309, + "t" : 71, + "w" : 786, + "b" : 711, + "h" : 1, + "r" : "w", + "dd" : 0 + } + ] + ] +} diff --git a/installer/resources/files/tournamentfiles/000003-stage-2021.tour b/installer/resources/files/tournamentfiles/000003-stage-2021.tour new file mode 100644 index 0000000..6608df8 --- /dev/null +++ b/installer/resources/files/tournamentfiles/000003-stage-2021.tour @@ -0,0 +1,757 @@ +{ + "id" : 3, + "type" : "INDIVIDUAL", + "name" : "Stage FFG 2021", + "shortName" : "stage-2021", + "startDate" : "2021-07-10", + "endDate" : "2021-07-24", + "country" : "FR", + "location" : "Montcabrier", + "online" : false, + "komi" : 7.5, + "rules" : "FRENCH", + "gobanSize" : 19, + "timeSystem" : { + "type" : "STANDARD", + "mainTime" : 60, + "byoyomi" : 30, + "periods" : 1 + }, + "rounds" : 10, + "pairing" : { + "type" : "MAC_MAHON", + "base" : { + "nx1" : 0.5, + "dupWeight" : 5.0E14, + "random" : 0.0, + "colorBalanceWeight" : 1000000.0 + }, + "main" : { + "catWeight" : 0.0, + "scoreWeight" : 1.0E11, + "upDownWeight" : 1.0E8, + "upDownCompensate" : true, + "upDownLowerMode" : "MIDDLE", + "upDownUpperMode" : "MIDDLE", + "maximizeSeeding" : 5000000.0, + "firstSeedLastRound" : 2, + "firstSeed" : "SPLIT_AND_RANDOM", + "secondSeed" : "SPLIT_AND_SLIP", + "firstSeedAddCrit" : "RATING", + "secondSeedAddCrit" : "NONE" + }, + "secondary" : { + "barThreshold" : true, + "rankThreshold" : 0, + "winsThreshold" : false, + "secWeight" : 1.0E11 + }, + "geo" : { + "weight" : 1.215752192E9, + "mmsDiffCountry" : 1, + "mmsDiffClubGroup" : 2, + "mmsDiffClub" : 3 + }, + "handicap" : { + "weight" : 0.0, + "useMMS" : false, + "threshold" : 0, + "correction" : 1, + "ceiling" : 9 + }, + "placement" : [ + "MMS", + "SOSM", + "SOSOSM" + ], + "mmFloor" : -20, + "mmBar" : 0 + }, + "players" : [ + { + "id" : 706, + "name" : "Evain", + "firstname" : "Andéol", + "rating" : 1982, + "rank" : -1, + "country" : "FR", + "club" : "31To" + }, + { + "id" : 707, + "name" : "Guerre-Genton", + "firstname" : "Philippe", + "rating" : 2080, + "rank" : 0, + "country" : "FR", + "club" : "13Ma" + }, + { + "id" : 708, + "name" : "Ougier", + "firstname" : "Ariane", + "rating" : 2392, + "rank" : 3, + "country" : "FR", + "club" : "38Gr" + }, + { + "id" : 709, + "name" : "Fourcade", + "firstname" : "Annabel", + "rating" : -900, + "rank" : -20, + "country" : "FR", + "club" : "31To" + }, + { + "id" : 710, + "name" : "Bonetti", + "firstname" : "Benoit", + "rating" : -900, + "rank" : -10, + "country" : "FR", + "club" : "31Ba" + }, + { + "id" : 711, + "name" : "Frappart", + "firstname" : "Bastien", + "rating" : 1598, + "rank" : -5, + "country" : "FR", + "club" : "94Ca" + }, + { + "id" : 712, + "name" : "Rosenblatt", + "firstname" : "Simon", + "rating" : 2022, + "rank" : -1, + "country" : "FR", + "club" : "75Op" + }, + { + "id" : 713, + "name" : "Aim", + "firstname" : "Warren", + "rating" : 1877, + "rank" : -2, + "country" : "FR", + "club" : "38Gr" + }, + { + "id" : 714, + "name" : "Perrin", + "firstname" : "Thibaut", + "rating" : 1652, + "rank" : -4, + "country" : "FR", + "club" : "38Gr" + }, + { + "id" : 715, + "name" : "Robichon", + "firstname" : "Benoit", + "rating" : 2046, + "rank" : -1, + "country" : "FR", + "club" : "38Gr" + }, + { + "id" : 716, + "name" : "Ronayette", + "firstname" : "Elodie", + "rating" : 1436, + "rank" : -7, + "country" : "FR", + "club" : "38Gr" + }, + { + "id" : 717, + "name" : "Houari", + "firstname" : "Kevin", + "rating" : 1674, + "rank" : -4, + "country" : "FR", + "club" : "92An" + }, + { + "id" : 718, + "name" : "Stockholm", + "firstname" : "Daniel", + "rating" : 1391, + "rank" : -7, + "country" : "FR", + "club" : "75OB" + }, + { + "id" : 719, + "name" : "le", + "firstname" : "Tâm_Loup", + "rating" : 1492, + "rank" : -6, + "country" : "FR", + "club" : "35Re" + }, + { + "id" : 720, + "name" : "Mezouar", + "firstname" : "Abdallah", + "rating" : 2198, + "rank" : 1, + "country" : "FR", + "club" : "69Ly" + }, + { + "id" : 721, + "name" : "Rioland", + "firstname" : "Florent", + "rating" : 2342, + "rank" : 2, + "country" : "FR", + "club" : "35Re" + }, + { + "id" : 722, + "name" : "Wilhelm", + "firstname" : "Lubin", + "rating" : 2045, + "rank" : -1, + "country" : "FR", + "club" : "69Ly" + }, + { + "id" : 723, + "name" : "Ougier", + "firstname" : "Guillaume", + "rating" : 2418, + "rank" : 3, + "country" : "FR", + "club" : "92An" + }, + { + "id" : 724, + "name" : "Wargny", + "firstname" : "Anaïs", + "rating" : -900, + "rank" : -20, + "country" : "FR", + "club" : "76Ha" + }, + { + "id" : 725, + "name" : "Goossens", + "firstname" : "Sylvie", + "rating" : -101, + "rank" : -22, + "country" : "FR", + "club" : "64Pa" + }, + { + "id" : 726, + "name" : "Vieille", + "firstname" : "Louis", + "rating" : -900, + "rank" : -10, + "country" : "FR", + "club" : "38Gr" + }, + { + "id" : 727, + "name" : "Bouisset", + "firstname" : "Rose-Marie", + "rating" : 1280, + "rank" : -8, + "country" : "FR", + "club" : "75OB" + }, + { + "id" : 728, + "name" : "Johnson", + "firstname" : "Hugo", + "rating" : 1028, + "rank" : -11, + "country" : "FR", + "club" : "34Mo" + }, + { + "id" : 729, + "name" : "Beltran", + "firstname" : "Arnaud", + "rating" : 1989, + "rank" : -1, + "country" : "FR", + "club" : "66Pe" + }, + { + "id" : 730, + "name" : "Gaschignard", + "firstname" : "Jean-Paul", + "rating" : 1925, + "rank" : -2, + "country" : "FR", + "club" : "42Se" + }, + { + "id" : 731, + "name" : "Thomazeau", + "firstname" : "Gregoire", + "rating" : 1774, + "rank" : -3, + "country" : "FR", + "club" : "00St" + }, + { + "id" : 732, + "name" : "Perroux", + "firstname" : "Etienne", + "rating" : 1978, + "rank" : -1, + "country" : "FR", + "club" : "91Or" + }, + { + "id" : 733, + "name" : "Pittonet", + "firstname" : "Jonathan", + "rating" : -900, + "rank" : -6, + "country" : "FR", + "club" : "00St" + }, + { + "id" : 734, + "name" : "Yung", + "firstname" : "Oscar", + "rating" : 1689, + "rank" : -4, + "country" : "FR", + "club" : "10Tr" + }, + { + "id" : 735, + "name" : "Lidureau", + "firstname" : "Nicolas", + "rating" : 777, + "rank" : -13, + "country" : "FR", + "club" : "06Ni" + }, + { + "id" : 736, + "name" : "Lidureau", + "firstname" : "Andrea", + "rating" : -298, + "rank" : -24, + "country" : "FR", + "club" : "06Ni" + }, + { + "id" : 737, + "name" : "Clergue", + "firstname" : "Olivier", + "rating" : 2158, + "rank" : 1, + "country" : "FR", + "club" : "13Ma" + }, + { + "id" : 738, + "name" : "Mir", + "firstname" : "Abel", + "rating" : 1174, + "rank" : -9, + "country" : "FR", + "club" : "75Ju" + }, + { + "id" : 739, + "name" : "Grange-Praderas", + "firstname" : "Jean-Romain", + "rating" : 1250, + "rank" : -8, + "country" : "FR", + "club" : "64Pa" + }, + { + "id" : 740, + "name" : "Doisneau", + "firstname" : "Brigitte", + "rating" : 883, + "rank" : -12, + "country" : "FR", + "club" : "44Na" + }, + { + "id" : 741, + "name" : "Mangin", + "firstname" : "Elian", + "rating" : 2118, + "rank" : 0, + "country" : "FR", + "club" : "38Gr" + }, + { + "id" : 742, + "name" : "Lips", + "firstname" : "Fabien", + "rating" : 2408, + "rank" : 3, + "country" : "FR", + "club" : "75Al" + }, + { + "id" : 743, + "name" : "Battin", + "firstname" : "Léo", + "rating" : 2097, + "rank" : 0, + "country" : "FR", + "club" : "42Se" + }, + { + "id" : 744, + "name" : "Garlatti", + "firstname" : "Gérald", + "rating" : 1745, + "rank" : -4, + "country" : "FR", + "club" : "73Ch" + }, + { + "id" : 745, + "name" : "Teissier", + "firstname" : "Antonin", + "rating" : 605, + "rank" : -15, + "country" : "FR", + "club" : "84Av" + }, + { + "id" : 746, + "name" : "Lemoine", + "firstname" : "Theo", + "rating" : 2172, + "rank" : 1, + "country" : "FR", + "club" : "49An" + }, + { + "id" : 747, + "name" : "Robert", + "firstname" : "Raphaël", + "rating" : 1008, + "rank" : -11, + "country" : "FR", + "club" : "59Li" + }, + { + "id" : 748, + "name" : "Martin-Vallas", + "firstname" : "Bruno", + "rating" : 1050, + "rank" : -10, + "country" : "FR", + "club" : "30LV" + }, + { + "id" : 749, + "name" : "Chauvin", + "firstname" : "Christian", + "rating" : 1650, + "rank" : -4, + "country" : "FR", + "club" : "13Ma" + }, + { + "id" : 750, + "name" : "Papazoglou", + "firstname" : "Alain", + "rating" : 1704, + "rank" : -4, + "country" : "FR", + "club" : "35Re" + }, + { + "id" : 751, + "name" : "Col", + "firstname" : "Sylvain", + "rating" : 1796, + "rank" : -3, + "country" : "FR", + "club" : "34Mo" + }, + { + "id" : 752, + "name" : "Papazoglou", + "firstname" : "Jean-Yves", + "rating" : 1356, + "rank" : -7, + "country" : "FR", + "club" : "31Ba" + }, + { + "id" : 753, + "name" : "Gauthier", + "firstname" : "Henri", + "rating" : 2094, + "rank" : 0, + "country" : "FR", + "club" : "21Di" + }, + { + "id" : 754, + "name" : "Radal", + "firstname" : "Lucien", + "rating" : 1878, + "rank" : -2, + "country" : "FR", + "club" : "38Gr" + }, + { + "id" : 755, + "name" : "Paret", + "firstname" : "Léonard", + "rating" : 910, + "rank" : -12, + "country" : "FR", + "club" : "38GJ" + }, + { + "id" : 756, + "name" : "Saint-Paul", + "firstname" : "Florent", + "rating" : 1410, + "rank" : -7, + "country" : "FR", + "club" : "69Ly" + }, + { + "id" : 757, + "name" : "Goffard", + "firstname" : "Mikaël", + "rating" : 1490, + "rank" : -6, + "country" : "FR", + "club" : "69Ly" + }, + { + "id" : 758, + "name" : "Bisaccia", + "firstname" : "Thomas", + "rating" : 918, + "rank" : -12, + "country" : "FR", + "club" : "42Se" + }, + { + "id" : 759, + "name" : "Willenbucher", + "firstname" : "Antoine", + "rating" : 950, + "rank" : -11, + "country" : "FR", + "club" : "13Ma" + }, + { + "id" : 760, + "name" : "Bernard", + "firstname" : "Gaultier", + "rating" : 1710, + "rank" : -4, + "country" : "FR", + "club" : "92An" + }, + { + "id" : 761, + "name" : "Fiorina", + "firstname" : "Baptiste", + "rating" : 1474, + "rank" : -6, + "country" : "FR", + "club" : "38Gr" + }, + { + "id" : 762, + "name" : "Hautefeuille", + "firstname" : "Octave", + "rating" : 868, + "rank" : -12, + "country" : "FR", + "club" : "31To" + }, + { + "id" : 763, + "name" : "Bakri", + "firstname" : "Adam", + "rating" : -738, + "rank" : -28, + "country" : "FR", + "club" : "77ML" + }, + { + "id" : 764, + "name" : "Girousse", + "firstname" : "Siméon", + "rating" : 2273, + "rank" : 2, + "country" : "FR", + "club" : "64Pa" + }, + { + "id" : 765, + "name" : "Kuperberg", + "firstname" : "Denis", + "rating" : 2250, + "rank" : 2, + "country" : "FR", + "club" : "69Ly" + }, + { + "id" : 766, + "name" : "Lebas_de_Saint_Martin", + "firstname" : "Sophie", + "rating" : 1302, + "rank" : -8, + "country" : "FR", + "club" : "75Al" + }, + { + "id" : 767, + "name" : "Derrien", + "firstname" : "Christele", + "rating" : 835, + "rank" : -13, + "country" : "FR", + "club" : "35Re" + }, + { + "id" : 768, + "name" : "Kunne", + "firstname" : "Stéphan", + "rating" : 2320, + "rank" : 2, + "country" : "FR", + "club" : "91Or" + }, + { + "id" : 769, + "name" : "Forissier", + "firstname" : "Gilles", + "rating" : 402, + "rank" : -17, + "country" : "FR", + "club" : "69Ly" + }, + { + "id" : 770, + "name" : "Ravera", + "firstname" : "Sylvain", + "rating" : 1761, + "rank" : -3, + "country" : "FR", + "club" : "92Le" + }, + { + "id" : 771, + "name" : "Grosdoy", + "firstname" : "Siméon", + "rating" : 1375, + "rank" : -7, + "country" : "FR", + "club" : "31To" + }, + { + "id" : 772, + "name" : "Valot", + "firstname" : "Raphaël", + "rating" : 1718, + "rank" : -4, + "country" : "FR", + "club" : "25Be" + }, + { + "id" : 773, + "name" : "Barcelo", + "firstname" : "Patrice", + "rating" : 1979, + "rank" : -1, + "country" : "FR", + "club" : "34Mo" + }, + { + "id" : 774, + "name" : "Levointurier", + "firstname" : "Christophe", + "rating" : 1365, + "rank" : -7, + "country" : "FR", + "club" : "00St" + }, + { + "id" : 775, + "name" : "Bocquet", + "firstname" : "Jean-François", + "rating" : 1820, + "rank" : -3, + "country" : "FR", + "club" : "92An" + }, + { + "id" : 776, + "name" : "Gzhal", + "firstname" : "Soufiane", + "rating" : 750, + "rank" : -13, + "country" : "FR", + "club" : "63Ce" + }, + { + "id" : 777, + "name" : "Teissier", + "firstname" : "Samuel", + "rating" : 2351, + "rank" : 3, + "country" : "FR", + "club" : "84Av" + }, + { + "id" : 778, + "name" : "Paris", + "firstname" : "Cyriel", + "rating" : 950, + "rank" : -11, + "country" : "FR", + "club" : "31To" + }, + { + "id" : 779, + "name" : "Streicher", + "firstname" : "Frédéric", + "rating" : 2050, + "rank" : 0, + "country" : "FR", + "club" : "38Gr" + }, + { + "id" : 780, + "name" : "Puaud", + "firstname" : "Denis", + "rating" : 1360, + "rank" : -7, + "country" : "FR", + "club" : "31Ba" + }, + { + "id" : 781, + "name" : "Loizance", + "firstname" : "Benjamin", + "rating" : 1603, + "rank" : -5, + "country" : "FR", + "club" : "35Re" + } + ], + "games" : [] +} diff --git a/installer/resources/installer.nsi b/installer/resources/installer.nsi new file mode 100644 index 0000000..49f7505 --- /dev/null +++ b/installer/resources/installer.nsi @@ -0,0 +1,174 @@ +!include MUI2.nsh + +!define APP_NAME "Pairgoth" +!define COMP_NAME "FFG" +!define WEB_SITE "https://pairgoth.jeudego.org" +!define VERSION "@VERSION@" +!define COPYRIGHT "(c) FFG 2024" +!define DESCRIPTION "Go Pairing Software" +!define INSTALLER_NAME "target/install-pairgoth.exe" +!define MAIN_APP_EXE "jre\bin\java.exe" +!define MAIN_APP_ARGS "-jar lib\pairgoth-engine.jar" +!define MAIN_APP_ICO "pairgoth.ico" +!define ICON "resources/pairgoth.ico" +!define BANNER "resources/banner.bmp" +!define LICENSE_TXT "resources/LICENSE.txt" + +!define INSTALL_DIR "$PROGRAMFILES64\${APP_NAME}" +!define INSTALL_TYPE "SetShellVarContext all" +!define REG_ROOT "HKLM" +!define REG_APP_PATH "Software\Microsoft\Windows\CurrentVersion\App Paths\${MAIN_APP_EXE}" +!define UNINSTALL_PATH "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APP_NAME}" +!define REG_START_MENU "Start Menu Folder" + +var SM_Folder + +###################################################################### + +VIProductVersion "${VERSION}" +VIAddVersionKey "ProductName" "${APP_NAME}" +VIAddVersionKey "CompanyName" "${COMP_NAME}" +VIAddVersionKey "LegalCopyright" "${COPYRIGHT}" +VIAddVersionKey "FileDescription" "${DESCRIPTION}" +VIAddVersionKey "FileVersion" "${VERSION}" + +###################################################################### + +SetCompressor /SOLID Lzma +Name "${APP_NAME}" +Caption "${APP_NAME}" +OutFile "${INSTALLER_NAME}" +BrandingText "${APP_NAME}" +InstallDirRegKey "${REG_ROOT}" "${REG_APP_PATH}" "" +InstallDir "${INSTALL_DIR}" + +###################################################################### + +!define MUI_ICON "${ICON}" +!define MUI_UNICON "${ICON}" +!define MUI_WELCOMEFINISHPAGE_BITMAP "${BANNER}" +!define MUI_UNWELCOMEFINISHPAGE_BITMAP "${BANNER}" + +###################################################################### + +!include "MUI2.nsh" + +!define MUI_ABORTWARNING +!define MUI_UNABORTWARNING + +!insertmacro MUI_PAGE_WELCOME + +!ifdef LICENSE_TXT +!insertmacro MUI_PAGE_LICENSE "${LICENSE_TXT}" +!endif + +!insertmacro MUI_PAGE_DIRECTORY + +!ifdef REG_START_MENU +!define MUI_STARTMENUPAGE_DEFAULTFOLDER "${APP_NAME}" +!define MUI_STARTMENUPAGE_REGISTRY_ROOT "${REG_ROOT}" +!define MUI_STARTMENUPAGE_REGISTRY_KEY "${UNINSTALL_PATH}" +!define MUI_STARTMENUPAGE_REGISTRY_VALUENAME "${REG_START_MENU}" +!insertmacro MUI_PAGE_STARTMENU Application $SM_Folder +!endif + +!insertmacro MUI_PAGE_INSTFILES + +!insertmacro MUI_PAGE_FINISH + +!insertmacro MUI_UNPAGE_CONFIRM + +!insertmacro MUI_UNPAGE_INSTFILES + +!insertmacro MUI_UNPAGE_FINISH + +!insertmacro MUI_LANGUAGE "English" + +###################################################################### + +Section -MainProgram + ${INSTALL_TYPE} + + SetOverwrite ifnewer + SetOutPath "$INSTDIR" + File /r "target/files/" + +SectionEnd + +###################################################################### + +Section -Icons_Reg +SetOutPath "$INSTDIR" +WriteUninstaller "$INSTDIR\uninstall.exe" + +!ifdef REG_START_MENU +!insertmacro MUI_STARTMENU_WRITE_BEGIN Application +CreateDirectory "$SMPROGRAMS\$SM_Folder" +CreateShortCut "$SMPROGRAMS\$SM_Folder\${APP_NAME}.lnk" "$INSTDIR\${MAIN_APP_EXE}" "${MAIN_APP_ARGS}" "$INSTDIR/${MAIN_APP_ICO}" +CreateShortCut "$DESKTOP\${APP_NAME}.lnk" "$INSTDIR\${MAIN_APP_EXE}" +CreateShortCut "$SMPROGRAMS\$SM_Folder\Uninstall ${APP_NAME}.lnk" "$INSTDIR\uninstall.exe" + +!ifdef WEB_SITE +WriteIniStr "$INSTDIR\${APP_NAME} website.url" "InternetShortcut" "URL" "${WEB_SITE}" +CreateShortCut "$SMPROGRAMS\$SM_Folder\${APP_NAME} Website.lnk" "$INSTDIR\${APP_NAME} website.url" +!endif +!insertmacro MUI_STARTMENU_WRITE_END +!endif + +!ifndef REG_START_MENU +CreateDirectory "$SMPROGRAMS\${APP_NAME}" +CreateShortCut "$SMPROGRAMS\${APP_NAME}\${APP_NAME}.lnk" "$INSTDIR\${MAIN_APP_EXE}" +CreateShortCut "$DESKTOP\${APP_NAME}.lnk" "$INSTDIR\${MAIN_APP_EXE}" +CreateShortCut "$SMPROGRAMS\${APP_NAME}\Uninstall ${APP_NAME}.lnk" "$INSTDIR\uninstall.exe" + +!ifdef WEB_SITE +WriteIniStr "$INSTDIR\${APP_NAME} website.url" "InternetShortcut" "URL" "${WEB_SITE}" +CreateShortCut "$SMPROGRAMS\${APP_NAME}\${APP_NAME} Website.lnk" "$INSTDIR\${APP_NAME} website.url" +!endif +!endif + +WriteRegStr ${REG_ROOT} "${REG_APP_PATH}" "" "$INSTDIR\${MAIN_APP_EXE}" +WriteRegStr ${REG_ROOT} "${UNINSTALL_PATH}" "DisplayName" "${APP_NAME}" +WriteRegStr ${REG_ROOT} "${UNINSTALL_PATH}" "UninstallString" "$INSTDIR\uninstall.exe" +WriteRegStr ${REG_ROOT} "${UNINSTALL_PATH}" "DisplayIcon" "$INSTDIR\${MAIN_APP_EXE}" +WriteRegStr ${REG_ROOT} "${UNINSTALL_PATH}" "DisplayVersion" "${VERSION}" +WriteRegStr ${REG_ROOT} "${UNINSTALL_PATH}" "Publisher" "${COMP_NAME}" + +!ifdef WEB_SITE +WriteRegStr ${REG_ROOT} "${UNINSTALL_PATH}" "URLInfoAbout" "${WEB_SITE}" +!endif +SectionEnd + +###################################################################### + +Section Uninstall +${INSTALL_TYPE} + +RmDir /r "$INSTDIR" + +!ifdef REG_START_MENU +!insertmacro MUI_STARTMENU_GETFOLDER "Application" $SM_Folder +Delete "$SMPROGRAMS\$SM_Folder\${APP_NAME}.lnk" +Delete "$SMPROGRAMS\$SM_Folder\Uninstall ${APP_NAME}.lnk" +!ifdef WEB_SITE +Delete "$SMPROGRAMS\$SM_Folder\${APP_NAME} Website.lnk" +!endif +Delete "$DESKTOP\${APP_NAME}.lnk" + +RmDir "$SMPROGRAMS\$SM_Folder" +!endif + +!ifndef REG_START_MENU +Delete "$SMPROGRAMS\${APP_NAME}\${APP_NAME}.lnk" +Delete "$SMPROGRAMS\${APP_NAME}\Uninstall ${APP_NAME}.lnk" +!ifdef WEB_SITE +Delete "$SMPROGRAMS\${APP_NAME}\${APP_NAME} Website.lnk" +!endif +Delete "$DESKTOP\${APP_NAME}.lnk" + +RmDir "$SMPROGRAMS\${APP_NAME}" +!endif + +DeleteRegKey ${REG_ROOT} "${REG_APP_PATH}" +DeleteRegKey ${REG_ROOT} "${UNINSTALL_PATH}" +SectionEnd diff --git a/installer/resources/jre.zip b/installer/resources/jre.zip new file mode 100644 index 0000000..473cca3 Binary files /dev/null and b/installer/resources/jre.zip differ diff --git a/installer/resources/pairgoth.ico b/installer/resources/pairgoth.ico new file mode 100644 index 0000000..91f4684 Binary files /dev/null and b/installer/resources/pairgoth.ico differ