├── .gitignore ├── LICENSE ├── PasswordGenerator.sln ├── PasswordGenerator ├── AboutForm.Designer.cs ├── AboutForm.cs ├── AboutForm.resx ├── App.config ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── PasswordGenerator.csproj ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ ├── Settings.settings │ └── app.manifest ├── Settings.cs ├── ico.ico └── ico_s.ico ├── README.md └── screenshots └── main_window.jpg /.gitignore: -------------------------------------------------------------------------------- 1 | ## Ignore Visual Studio temporary files, build results, and 2 | ## files generated by popular Visual Studio add-ons. 3 | ## 4 | ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore 5 | 6 | # User-specific files 7 | *.suo 8 | *.user 9 | *.userosscache 10 | *.sln.docstates 11 | 12 | # User-specific files (MonoDevelop/Xamarin Studio) 13 | *.userprefs 14 | 15 | # Build results 16 | [Dd]ebug/ 17 | [Dd]ebugPublic/ 18 | [Rr]elease/ 19 | [Rr]eleases/ 20 | x64/ 21 | x86/ 22 | bld/ 23 | [Bb]in/ 24 | [Oo]bj/ 25 | [Ll]og/ 26 | 27 | # Visual Studio 2015/2017 cache/options directory 28 | .vs/ 29 | # Uncomment if you have tasks that create the project's static files in wwwroot 30 | #wwwroot/ 31 | 32 | # Visual Studio 2017 auto generated files 33 | Generated\ Files/ 34 | 35 | # MSTest test Results 36 | [Tt]est[Rr]esult*/ 37 | [Bb]uild[Ll]og.* 38 | 39 | # NUNIT 40 | *.VisualState.xml 41 | TestResult.xml 42 | 43 | # Build Results of an ATL Project 44 | [Dd]ebugPS/ 45 | [Rr]eleasePS/ 46 | dlldata.c 47 | 48 | # Benchmark Results 49 | BenchmarkDotNet.Artifacts/ 50 | 51 | # .NET Core 52 | project.lock.json 53 | project.fragment.lock.json 54 | artifacts/ 55 | **/Properties/launchSettings.json 56 | 57 | # StyleCop 58 | StyleCopReport.xml 59 | 60 | # Files built by Visual Studio 61 | *_i.c 62 | *_p.c 63 | *_i.h 64 | *.ilk 65 | *.meta 66 | *.obj 67 | *.iobj 68 | *.pch 69 | *.pdb 70 | *.ipdb 71 | *.pgc 72 | *.pgd 73 | *.rsp 74 | *.sbr 75 | *.tlb 76 | *.tli 77 | *.tlh 78 | *.tmp 79 | *.tmp_proj 80 | *.log 81 | *.vspscc 82 | *.vssscc 83 | .builds 84 | *.pidb 85 | *.svclog 86 | *.scc 87 | 88 | # Chutzpah Test files 89 | _Chutzpah* 90 | 91 | # Visual C++ cache files 92 | ipch/ 93 | *.aps 94 | *.ncb 95 | *.opendb 96 | *.opensdf 97 | *.sdf 98 | *.cachefile 99 | *.VC.db 100 | *.VC.VC.opendb 101 | 102 | # Visual Studio profiler 103 | *.psess 104 | *.vsp 105 | *.vspx 106 | *.sap 107 | 108 | # Visual Studio Trace Files 109 | *.e2e 110 | 111 | # TFS 2012 Local Workspace 112 | $tf/ 113 | 114 | # Guidance Automation Toolkit 115 | *.gpState 116 | 117 | # ReSharper is a .NET coding add-in 118 | _ReSharper*/ 119 | *.[Rr]e[Ss]harper 120 | *.DotSettings.user 121 | 122 | # JustCode is a .NET coding add-in 123 | .JustCode 124 | 125 | # TeamCity is a build add-in 126 | _TeamCity* 127 | 128 | # DotCover is a Code Coverage Tool 129 | *.dotCover 130 | 131 | # AxoCover is a Code Coverage Tool 132 | .axoCover/* 133 | !.axoCover/settings.json 134 | 135 | # Visual Studio code coverage results 136 | *.coverage 137 | *.coveragexml 138 | 139 | # NCrunch 140 | _NCrunch_* 141 | .*crunch*.local.xml 142 | nCrunchTemp_* 143 | 144 | # MightyMoose 145 | *.mm.* 146 | AutoTest.Net/ 147 | 148 | # Web workbench (sass) 149 | .sass-cache/ 150 | 151 | # Installshield output folder 152 | [Ee]xpress/ 153 | 154 | # DocProject is a documentation generator add-in 155 | DocProject/buildhelp/ 156 | DocProject/Help/*.HxT 157 | DocProject/Help/*.HxC 158 | DocProject/Help/*.hhc 159 | DocProject/Help/*.hhk 160 | DocProject/Help/*.hhp 161 | DocProject/Help/Html2 162 | DocProject/Help/html 163 | 164 | # Click-Once directory 165 | publish/ 166 | 167 | # Publish Web Output 168 | *.[Pp]ublish.xml 169 | *.azurePubxml 170 | # Note: Comment the next line if you want to checkin your web deploy settings, 171 | # but database connection strings (with potential passwords) will be unencrypted 172 | *.pubxml 173 | *.publishproj 174 | 175 | # Microsoft Azure Web App publish settings. Comment the next line if you want to 176 | # checkin your Azure Web App publish settings, but sensitive information contained 177 | # in these scripts will be unencrypted 178 | PublishScripts/ 179 | 180 | # NuGet Packages 181 | *.nupkg 182 | # The packages folder can be ignored because of Package Restore 183 | **/[Pp]ackages/* 184 | # except build/, which is used as an MSBuild target. 185 | !**/[Pp]ackages/build/ 186 | # Uncomment if necessary however generally it will be regenerated when needed 187 | #!**/[Pp]ackages/repositories.config 188 | # NuGet v3's project.json files produces more ignorable files 189 | *.nuget.props 190 | *.nuget.targets 191 | 192 | # Microsoft Azure Build Output 193 | csx/ 194 | *.build.csdef 195 | 196 | # Microsoft Azure Emulator 197 | ecf/ 198 | rcf/ 199 | 200 | # Windows Store app package directories and files 201 | AppPackages/ 202 | BundleArtifacts/ 203 | Package.StoreAssociation.xml 204 | _pkginfo.txt 205 | *.appx 206 | 207 | # Visual Studio cache files 208 | # files ending in .cache can be ignored 209 | *.[Cc]ache 210 | # but keep track of directories ending in .cache 211 | !*.[Cc]ache/ 212 | 213 | # Others 214 | ClientBin/ 215 | ~$* 216 | *~ 217 | *.dbmdl 218 | *.dbproj.schemaview 219 | *.jfm 220 | *.pfx 221 | *.publishsettings 222 | orleans.codegen.cs 223 | 224 | # Including strong name files can present a security risk 225 | # (https://github.com/github/gitignore/pull/2483#issue-259490424) 226 | #*.snk 227 | 228 | # Since there are multiple workflows, uncomment next line to ignore bower_components 229 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) 230 | #bower_components/ 231 | 232 | # RIA/Silverlight projects 233 | Generated_Code/ 234 | 235 | # Backup & report files from converting an old project file 236 | # to a newer Visual Studio version. Backup files are not needed, 237 | # because we have git ;-) 238 | _UpgradeReport_Files/ 239 | Backup*/ 240 | UpgradeLog*.XML 241 | UpgradeLog*.htm 242 | ServiceFabricBackup/ 243 | *.rptproj.bak 244 | 245 | # SQL Server files 246 | *.mdf 247 | *.ldf 248 | *.ndf 249 | 250 | # Business Intelligence projects 251 | *.rdl.data 252 | *.bim.layout 253 | *.bim_*.settings 254 | *.rptproj.rsuser 255 | 256 | # Microsoft Fakes 257 | FakesAssemblies/ 258 | 259 | # GhostDoc plugin setting file 260 | *.GhostDoc.xml 261 | 262 | # Node.js Tools for Visual Studio 263 | .ntvs_analysis.dat 264 | node_modules/ 265 | 266 | # Visual Studio 6 build log 267 | *.plg 268 | 269 | # Visual Studio 6 workspace options file 270 | *.opt 271 | 272 | # Visual Studio 6 auto-generated workspace file (contains which files were open etc.) 273 | *.vbw 274 | 275 | # Visual Studio LightSwitch build output 276 | **/*.HTMLClient/GeneratedArtifacts 277 | **/*.DesktopClient/GeneratedArtifacts 278 | **/*.DesktopClient/ModelManifest.xml 279 | **/*.Server/GeneratedArtifacts 280 | **/*.Server/ModelManifest.xml 281 | _Pvt_Extensions 282 | 283 | # Paket dependency manager 284 | .paket/paket.exe 285 | paket-files/ 286 | 287 | # FAKE - F# Make 288 | .fake/ 289 | 290 | # JetBrains Rider 291 | .idea/ 292 | *.sln.iml 293 | 294 | # CodeRush 295 | .cr/ 296 | 297 | # Python Tools for Visual Studio (PTVS) 298 | __pycache__/ 299 | *.pyc 300 | 301 | # Cake - Uncomment if you are using it 302 | # tools/** 303 | # !tools/packages.config 304 | 305 | # Tabs Studio 306 | *.tss 307 | 308 | # Telerik's JustMock configuration file 309 | *.jmconfig 310 | 311 | # BizTalk build output 312 | *.btp.cs 313 | *.btm.cs 314 | *.odx.cs 315 | *.xsd.cs 316 | 317 | # OpenCover UI analysis results 318 | OpenCover/ 319 | 320 | # Azure Stream Analytics local run output 321 | ASALocalRun/ 322 | 323 | # MSBuild Binary and Structured Log 324 | *.binlog 325 | 326 | # NVidia Nsight GPU debugger configuration file 327 | *.nvuser 328 | 329 | # MFractors (Xamarin productivity tool) working folder 330 | .mfractor/ 331 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /PasswordGenerator.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 14 4 | VisualStudioVersion = 14.0.25420.1 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PasswordGenerator", "PasswordGenerator\PasswordGenerator.csproj", "{B0A5FC75-B8E5-4DCD-81B7-6CBF013F8FC5}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {B0A5FC75-B8E5-4DCD-81B7-6CBF013F8FC5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {B0A5FC75-B8E5-4DCD-81B7-6CBF013F8FC5}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {B0A5FC75-B8E5-4DCD-81B7-6CBF013F8FC5}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {B0A5FC75-B8E5-4DCD-81B7-6CBF013F8FC5}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /PasswordGenerator/AboutForm.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace PasswordGenerator 2 | { 3 | partial class AboutForm 4 | { 5 | /// 6 | /// 必需的设计器变量。 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// 清理所有正在使用的资源。 12 | /// 13 | protected override void Dispose(bool disposing) 14 | { 15 | if (disposing && (components != null)) 16 | { 17 | components.Dispose(); 18 | } 19 | base.Dispose(disposing); 20 | } 21 | 22 | #region Windows 窗体设计器生成的代码 23 | 24 | /// 25 | /// 设计器支持所需的方法 - 不要修改 26 | /// 使用代码编辑器修改此方法的内容。 27 | /// 28 | private void InitializeComponent() 29 | { 30 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AboutForm)); 31 | this.tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel(); 32 | this.logoPictureBox = new System.Windows.Forms.PictureBox(); 33 | this.labelProductName = new System.Windows.Forms.Label(); 34 | this.labelVersion = new System.Windows.Forms.Label(); 35 | this.labelCopyright = new System.Windows.Forms.Label(); 36 | this.labelCompileTime = new System.Windows.Forms.Label(); 37 | this.textBoxDescription = new System.Windows.Forms.TextBox(); 38 | this.okButton = new System.Windows.Forms.Button(); 39 | this.tableLayoutPanel.SuspendLayout(); 40 | ((System.ComponentModel.ISupportInitialize)(this.logoPictureBox)).BeginInit(); 41 | this.SuspendLayout(); 42 | // 43 | // tableLayoutPanel 44 | // 45 | this.tableLayoutPanel.ColumnCount = 2; 46 | this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33F)); 47 | this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 67F)); 48 | this.tableLayoutPanel.Controls.Add(this.logoPictureBox, 0, 0); 49 | this.tableLayoutPanel.Controls.Add(this.labelProductName, 1, 0); 50 | this.tableLayoutPanel.Controls.Add(this.labelVersion, 1, 1); 51 | this.tableLayoutPanel.Controls.Add(this.labelCopyright, 1, 2); 52 | this.tableLayoutPanel.Controls.Add(this.labelCompileTime, 1, 3); 53 | this.tableLayoutPanel.Controls.Add(this.textBoxDescription, 1, 4); 54 | this.tableLayoutPanel.Controls.Add(this.okButton, 1, 5); 55 | this.tableLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill; 56 | this.tableLayoutPanel.Location = new System.Drawing.Point(9, 9); 57 | this.tableLayoutPanel.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4); 58 | this.tableLayoutPanel.Name = "tableLayoutPanel"; 59 | this.tableLayoutPanel.RowCount = 6; 60 | this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10.52632F)); 61 | this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10.52632F)); 62 | this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10.52632F)); 63 | this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 11.05263F)); 64 | this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 38.94737F)); 65 | this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 17.89474F)); 66 | this.tableLayoutPanel.Size = new System.Drawing.Size(406, 268); 67 | this.tableLayoutPanel.TabIndex = 0; 68 | // 69 | // logoPictureBox 70 | // 71 | this.logoPictureBox.Dock = System.Windows.Forms.DockStyle.Fill; 72 | this.logoPictureBox.Image = ((System.Drawing.Image)(resources.GetObject("logoPictureBox.Image"))); 73 | this.logoPictureBox.Location = new System.Drawing.Point(2, 4); 74 | this.logoPictureBox.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4); 75 | this.logoPictureBox.Name = "logoPictureBox"; 76 | this.tableLayoutPanel.SetRowSpan(this.logoPictureBox, 6); 77 | this.logoPictureBox.Size = new System.Drawing.Size(129, 260); 78 | this.logoPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; 79 | this.logoPictureBox.TabIndex = 12; 80 | this.logoPictureBox.TabStop = false; 81 | // 82 | // labelProductName 83 | // 84 | this.labelProductName.AutoSize = true; 85 | this.labelProductName.Dock = System.Windows.Forms.DockStyle.Fill; 86 | this.labelProductName.Location = new System.Drawing.Point(139, 0); 87 | this.labelProductName.Margin = new System.Windows.Forms.Padding(6, 0, 2, 0); 88 | this.labelProductName.MaximumSize = new System.Drawing.Size(0, 21); 89 | this.labelProductName.Name = "labelProductName"; 90 | this.labelProductName.Size = new System.Drawing.Size(265, 21); 91 | this.labelProductName.TabIndex = 19; 92 | this.labelProductName.Text = "产品名称"; 93 | this.labelProductName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; 94 | // 95 | // labelVersion 96 | // 97 | this.labelVersion.AutoSize = true; 98 | this.labelVersion.Dock = System.Windows.Forms.DockStyle.Fill; 99 | this.labelVersion.Location = new System.Drawing.Point(139, 28); 100 | this.labelVersion.Margin = new System.Windows.Forms.Padding(6, 0, 2, 0); 101 | this.labelVersion.MaximumSize = new System.Drawing.Size(0, 21); 102 | this.labelVersion.Name = "labelVersion"; 103 | this.labelVersion.Size = new System.Drawing.Size(265, 21); 104 | this.labelVersion.TabIndex = 0; 105 | this.labelVersion.Text = "版本"; 106 | this.labelVersion.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; 107 | // 108 | // labelCopyright 109 | // 110 | this.labelCopyright.AutoSize = true; 111 | this.labelCopyright.Dock = System.Windows.Forms.DockStyle.Fill; 112 | this.labelCopyright.Location = new System.Drawing.Point(139, 56); 113 | this.labelCopyright.Margin = new System.Windows.Forms.Padding(6, 0, 2, 0); 114 | this.labelCopyright.MaximumSize = new System.Drawing.Size(0, 21); 115 | this.labelCopyright.Name = "labelCopyright"; 116 | this.labelCopyright.Size = new System.Drawing.Size(265, 21); 117 | this.labelCopyright.TabIndex = 21; 118 | this.labelCopyright.Text = "版权"; 119 | this.labelCopyright.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; 120 | // 121 | // labelCompileTime 122 | // 123 | this.labelCompileTime.AutoSize = true; 124 | this.labelCompileTime.Dock = System.Windows.Forms.DockStyle.Fill; 125 | this.labelCompileTime.Location = new System.Drawing.Point(139, 84); 126 | this.labelCompileTime.Margin = new System.Windows.Forms.Padding(6, 0, 2, 0); 127 | this.labelCompileTime.MaximumSize = new System.Drawing.Size(0, 21); 128 | this.labelCompileTime.Name = "labelCompileTime"; 129 | this.labelCompileTime.Size = new System.Drawing.Size(265, 21); 130 | this.labelCompileTime.TabIndex = 22; 131 | this.labelCompileTime.Text = "最后编译日期"; 132 | this.labelCompileTime.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; 133 | // 134 | // textBoxDescription 135 | // 136 | this.textBoxDescription.Dock = System.Windows.Forms.DockStyle.Fill; 137 | this.textBoxDescription.Location = new System.Drawing.Point(139, 117); 138 | this.textBoxDescription.Margin = new System.Windows.Forms.Padding(6, 4, 2, 4); 139 | this.textBoxDescription.Multiline = true; 140 | this.textBoxDescription.Name = "textBoxDescription"; 141 | this.textBoxDescription.ReadOnly = true; 142 | this.textBoxDescription.ScrollBars = System.Windows.Forms.ScrollBars.Both; 143 | this.textBoxDescription.Size = new System.Drawing.Size(265, 96); 144 | this.textBoxDescription.TabIndex = 23; 145 | this.textBoxDescription.TabStop = false; 146 | this.textBoxDescription.Text = "说明"; 147 | // 148 | // okButton 149 | // 150 | this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); 151 | this.okButton.DialogResult = System.Windows.Forms.DialogResult.Cancel; 152 | this.okButton.Location = new System.Drawing.Point(298, 228); 153 | this.okButton.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4); 154 | this.okButton.Name = "okButton"; 155 | this.okButton.Size = new System.Drawing.Size(106, 36); 156 | this.okButton.TabIndex = 24; 157 | this.okButton.Text = "确定(&O)"; 158 | // 159 | // AboutForm 160 | // 161 | this.AcceptButton = this.okButton; 162 | this.AutoScaleDimensions = new System.Drawing.SizeF(120F, 120F); 163 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; 164 | this.ClientSize = new System.Drawing.Size(424, 286); 165 | this.Controls.Add(this.tableLayoutPanel); 166 | this.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); 167 | this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; 168 | this.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4); 169 | this.MaximizeBox = false; 170 | this.MinimizeBox = false; 171 | this.Name = "AboutForm"; 172 | this.Padding = new System.Windows.Forms.Padding(9, 9, 9, 9); 173 | this.ShowIcon = false; 174 | this.ShowInTaskbar = false; 175 | this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; 176 | this.Text = "AboutForm"; 177 | this.tableLayoutPanel.ResumeLayout(false); 178 | this.tableLayoutPanel.PerformLayout(); 179 | ((System.ComponentModel.ISupportInitialize)(this.logoPictureBox)).EndInit(); 180 | this.ResumeLayout(false); 181 | 182 | } 183 | 184 | #endregion 185 | 186 | private System.Windows.Forms.TableLayoutPanel tableLayoutPanel; 187 | private System.Windows.Forms.PictureBox logoPictureBox; 188 | private System.Windows.Forms.Label labelProductName; 189 | private System.Windows.Forms.Label labelVersion; 190 | private System.Windows.Forms.Label labelCopyright; 191 | private System.Windows.Forms.Label labelCompileTime; 192 | private System.Windows.Forms.TextBox textBoxDescription; 193 | private System.Windows.Forms.Button okButton; 194 | } 195 | } 196 | -------------------------------------------------------------------------------- /PasswordGenerator/AboutForm.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Drawing; 5 | using System.Linq; 6 | using System.Reflection; 7 | using System.Threading.Tasks; 8 | using System.Windows.Forms; 9 | 10 | namespace PasswordGenerator 11 | { 12 | partial class AboutForm : Form 13 | { 14 | public AboutForm() 15 | { 16 | InitializeComponent(); 17 | this.Text = String.Format("关于 {0}", AssemblyTitle); 18 | this.labelProductName.Text = AssemblyProduct; 19 | this.labelVersion.Text = String.Format("版本 {0}", AssemblyVersion); 20 | this.labelCopyright.Text = AssemblyCopyright; 21 | this.labelCompileTime.Text = "最后编译日期: 2020/08/07"; 22 | this.textBoxDescription.Text = AssemblyDescription; 23 | } 24 | 25 | #region 程序集特性访问器 26 | 27 | public string AssemblyTitle 28 | { 29 | get 30 | { 31 | object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyTitleAttribute), false); 32 | if (attributes.Length > 0) 33 | { 34 | AssemblyTitleAttribute titleAttribute = (AssemblyTitleAttribute)attributes[0]; 35 | if (titleAttribute.Title != "") 36 | { 37 | return titleAttribute.Title; 38 | } 39 | } 40 | return System.IO.Path.GetFileNameWithoutExtension(Assembly.GetExecutingAssembly().CodeBase); 41 | } 42 | } 43 | 44 | public string AssemblyVersion 45 | { 46 | get 47 | { 48 | return Assembly.GetExecutingAssembly().GetName().Version.ToString(); 49 | } 50 | } 51 | 52 | public string AssemblyDescription 53 | { 54 | get 55 | { 56 | object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyDescriptionAttribute), false); 57 | if (attributes.Length == 0) 58 | { 59 | return ""; 60 | } 61 | return ((AssemblyDescriptionAttribute)attributes[0]).Description; 62 | } 63 | } 64 | 65 | public string AssemblyProduct 66 | { 67 | get 68 | { 69 | object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyProductAttribute), false); 70 | if (attributes.Length == 0) 71 | { 72 | return ""; 73 | } 74 | return ((AssemblyProductAttribute)attributes[0]).Product; 75 | } 76 | } 77 | 78 | public string AssemblyCopyright 79 | { 80 | get 81 | { 82 | object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyCopyrightAttribute), false); 83 | if (attributes.Length == 0) 84 | { 85 | return ""; 86 | } 87 | return ((AssemblyCopyrightAttribute)attributes[0]).Copyright; 88 | } 89 | } 90 | 91 | public string AssemblyCompany 92 | { 93 | get 94 | { 95 | object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyCompanyAttribute), false); 96 | if (attributes.Length == 0) 97 | { 98 | return ""; 99 | } 100 | return ((AssemblyCompanyAttribute)attributes[0]).Company; 101 | } 102 | } 103 | #endregion 104 | } 105 | } 106 | -------------------------------------------------------------------------------- /PasswordGenerator/AboutForm.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | 122 | 123 | iVBORw0KGgoAAAANSUhEUgAAAHgAAAEGCAIAAAAhWcaAAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6 124 | JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AABvkklEQVR4Xu29B1hUd9r+z3X939+7bzax 125 | RQWmnZmhS++9i4KCXRRRsKGoiKKIKIJKlSrSpTdpioWmYm9gLzEao4kliTGmZ3ez6767yb7/+3u+M8fD 126 | DBiTTVE33+u5cKSe85n73M/9nJk5oyEsE4rKRaIKkbhKLKmVMPUM08hIW6Ty3XL5PrlOl45Ot47uEV3d 127 | 47p6J/X0TrGFG8f09I7o6Xbr6u7X1W3X1d2nq7NbR2enjk6zjk6jjk69jk6djixDxsxhRJailJSUy5cv 128 | f/vtt3/729/+/ve//+///u8//vGPf/7zn999993333//L3b936u+WNBlInG5WFIhkVRKmCpGWiOV1kpl 129 | O2TyJrm8RS5vlevs1dHt1NU9oAuy4Esoo46yrA+xn8dX29RY1+joVOvI0mXMbEZkIUpPT7958+Zf/vKX 130 | v/71r0+ePPlPw60BylA0Bc1UMgR0lVRWLZPVyuR1cnm9XKeBBdeio9OqA+US/Xbp6h7UJYi5UrLW3aOr 131 | s6sPa3mVXF4pl6ZKJTMlQmNhYWHhhx9++B+Im4B+SrlSSblaJq+Rk6qVwwQIsh06hHiTkvheljjgwjoA 132 | HQXWuAOojbSqsa6Qy8vl0o1SyWSJUEfY0NDwpz/96T8KtwYoiysUoEFZWk1AP6Vcq/O0OOIgCI4qxEEZ 133 | hRucZeMbVFiXyeWlcmY1I/YRR0REHDlyhMP9ynu3hrhMLCmXMBWsnCtZOdcoQPehzBVwqxCHL+9mXQXW 134 | Acq0uPaIgwDfybEulcu3y+WFcmYRI7IXbdmy5c6dO3zcYK2CW7GlL/nSEBeLxaWENaFcJUPJq+WkBgLN 135 | lYqlgPguHXi0gjgKN2DZtD2qsC6Ry4vlsmSZZLpEqC9samr6+uuvgZtLJq+etDXEOWLJNglTxDAljLRM 136 | KquQySoJa3DpUyqUuepX4LAUShzGwrVH3B+1PNbFcnkRK+0oRuwpXr9+/ZUrV4D7z3/+80DGrdjkl3Np 137 | iNPF4gyxJEPC5DDSPKmsSCYrkREzLSdpAfnsuYir44ZBgy8sBaDhIVwUqevLulAuL5AjcUtmkUxSX1// 138 | 5ZdffvPNNxQ337hfdmlriFPFkjQJs4VhMhhplhQl2yqTb2MRwExBHFCApur5NK6CWylwUmDNtcdqnT6s 139 | 8+WyPBmzihF7iTds2HDjxo2vvvqKc5JXQ9oa4mSxJEXCpDFgLU2XSjOkskyZLJstEM9jD3Ae8efSOB83 140 | tW/gpkV1ja/Csvms8+SybTJpmlQSKBEaCPfs2fPFF1/06yQvqbQ1JIkSJplhUhjMFNhP2RYZZjnCmsNN 141 | ieezRMDl+QWujhuKpqy5KMJjDVHjD8lyZMwyRuQkysrK+vjjj+EkNJO87NJmQScx0mQpqRSpLE1GiuLO 142 | YHFnKXHnyMBCxVJ+QOAq3k1x0+JYVypZw6y3KVhLN0jF/mKBUNDb2/v555+rS/ulCyQaoMyBlqXIFJXK 143 | w60u8FwWN9D8NNwoyho3KGscIiqs2T/EzGaEo4QtLS2ffvrpyy5tAvqpnDnQfNwDCRx+UvBj/EQdN0RN 144 | WdPYh7sNvw2NEaxx9FDWsBFH0bZt2x4/fsyXtnrWVuzQi7o0xIvFTDxhrUqZX8/G3de+f1jdYM3H3S/r 145 | 3Kespeuk4jEkaN+6deuzzz7jAsnLZSMazs7OAgOByE0kni5mljOqiPnF95OB1P08ZsKXNj01iI/qrJUG 146 | QlinSCVTJAKJ4PTp05A2AgmytoqNvOCsNerq6vLz82NiYoKCghwdHUVWIom/hAljZBvVQNN6hrqpd2O8 147 | Biy0OHXcHGsV3FzRcaY/1ihi2YbC9vb2Tz755KWzEY2dO3e2trbuZhfSa3Z29pIlS8aMGSMyF0nGSZhF 148 | jCxRjTVKHTdHBMmERu/nNG7OSVC4MbCuUVCAyEKEARLJDx2S2ghNIy84a42Ojo7Ozs6urq79+/fjBhYk 149 | 09bWBpkvX76cELcWSSZLmEg1V+GchOIGaw53zg8ZtwprDjetZ7NeTk77FRcXP3z4EDZC00i/lq3YxRdj 150 | aRw5cuTo0aPH2IUbhw8fPnTo0MGDByl3QIfGFyxYIJQJxR5iJlTNUp5h3NRJIG32tMkPS5uPm2Y+yhpD 151 | o7Ix0sKwLnIR5eTkfPjhh8+2bMVevgBL4yy7zp07h4+YDs6cOXPq1KkTJ06AO+4DDjrC7IYNGyZOnEgE 152 | Pl0iXaMWujnc/6a0KW58fCZr6Vop7vjU1NQPPviAb9kvbHvUeOutt65fv46P165du3r16uXLly9dunT+ 153 | /HlwB3R0eUCH0kG8u7sbxHNzc0NDQ4UmQskECROl9JNnJ26+tNVdm8+aj5vPuogd0Pmss2TSOKnYW5yY 154 | mPjgwYNHjx4h+am3xxeHtcadO3feU6533333nXfeuXnzJtCD+5UrVy5evAjoUDqInzx5EjKHt4B4RUUF 155 | eiYyAIkoK1ncYP08rg1qz2kj6qwxyHCgUWAdLxX7iDdu3Hj//n2uPapHkReBtcZHygW/w2GILb537x6g 156 | 3759m4MOpUPmFy5cgMw54tA4un9kZCTBHSCRrpI+ZT2QtGkgeR4b4XDjBjejq7DGr82USRPIOJOQkIAt 157 | p+2RiyIvFGsNqAAHHTwON7CV8DtIA9wp9Lt373JKf/vttzniVONwFfj4jh07IiIihKZCyVSJdL3ytJQK 158 | a07anI30G/74oLliv6Q491TIDo3qrH3EmzZtgkSw5VwUeaFYa8DX0LKxWfiI29hEQAd6DjqUDhOkMqfE 159 | OY2jhfb09KB5QuBVVVVhYWEiWxEzh3USPmsVG6FjJOaa57FsWvh8NY81F/hY0IQ1PMRbnJycDGXwWSP2 160 | vSCsNXC3cwsJCQanAp0qncqcTxyughYKH+cEfvz48YKCghkzZoi9xMxS5lmsn23ZKpRpUdY4DnA09Msa 161 | vdFDnJGRAdZc7HtxWGvQjcBCKsJtxH4kJEDH9nHQ4XrYaCpzSpy6Chop31IgcOonSUlJxLgnS6Qb2EcS 162 | ONZ9LZs8fPOc7ZGCpmYN1jgaMMhwIYRjHSMVOYvy8vLef//9F421Bv4wXdgIrH6hQ+l84pzGqY9D4Ldu 163 | 3bpx4waCCsWNXIixfunSpSInETltMjBrNLc+7ZEPGvUM1jRc01+CYkGjkDhFdqLy8vJnsP5NZhkNevfS 164 | hS3A6he6OnG4CnYDAZYKHDvG+QmHG6FbqCuUTJLAQ38G1spPEtbw92JeCFGKmrBeyojMRc3NzSqssf2/ 165 | IWsNxb/KRYljUeIUugpxzlXg41TgaJuIVnBw+IkK7q6uLkRAsQvr2j8Xa5g1WNNwzYUQjnWGjFnACA2E 166 | Bw4c4Fir55BfmbUqaP7iiFPofOJwFb7AsRvUwVVwUzNB+s7OzhaOEjJBjAK0OmvEvudhrfwMAa0eQiho 167 | yjqIEUgEuKdfENbPAs2tfomrCJzvJ3zc8G60SkyYLS0tmN3F48Qka3Ogfyxr3mcIa3wnQkiBsjHyRI0/ 168 | IZkoiYqKQrvGltDMhy2kcyM2HruAffnVWD8XaG5xxPsVOPUT7AynburdaJVIJpcvX0YKjI2NRTBgIlhp 169 | q7PmPEQlh3CK7pc1QgjXGDnW6TJpolQ8WpySkqLOGvr4lVn/ONB0cbixgJsTOB83NRN4N22VNAhS487J 170 | yRGaC5m5DAE9EGv4L0DzZ/T+QCvMWqUx0l/Iilq6RiqyJyEEdzYmANz36Cj03BNljY0Ha7pHit37ZdZP 171 | Ac0tDjffTzjc1LuxY0gmCILYT+okmHHq6upIGgmUPAXNZ50nU+Tr5xC1gjXfrHmiRjHhjNBI2NHRgb+O 172 | uxypFAoAazQYbCq2GVuOXXihQdPFqqGPn1Dc1LtpMsExiz2EcSN0U2l3dnbOmzdPMkGCA/wpawqam2XY 173 | GV0BlA+6L2sCul+zZkVNWKMxCgTwLsoadzx6CXSALfzVWP8MoOlSx821Ss644SQIAJD27du3IW0E7RUr 174 | VojHiskASUFzoqYzOsyXa4wqoFHqrPlmTX8hCxqxEk04Pj4erQImhvsbW6ISrn9ps/7ZQNNFWWNR1hQ3 175 | 30lUpI38t379erGXWBqrxnqr8jwf9+xhFdAojrV6su4ravx+kYOorKwMdzD+NKwMW8IFvl+hMf7MoOlS 176 | kTbnJNgrOAkOW07aOJahssTERLGrmIlmFKwpaI41/HcgUaOUrAloLllTA6G/TSlqZjEj1BceOnQIAZ8L 177 | 1/wQgq3FNr9MoLGwuSq4qZOgBUHa1LVp/sOxjD1PT08nsW81y5oTNQohhG/W3KMBaqAVrKmB5PMMhIqa 178 | Pd8imSbBmIpcj4OJH0J+hcb4S4Gmi8OtLm3q2jSQUBvB9EhOQoE1QKuYNVhXsAYCsj/ImqY9voEoRS3d 179 | LBW7i5Ev0Y25EMI1xl/UrH9Z0HRR1nxpU9fm2wgGCkRdwhq6hofwRa1iIBS0Cm6ONcxa3UB4omaWkbTX 180 | 1tZ2/fp19GSVxsiZ9UsJGosIu6+0qY1g92iHpHMNVJaZmSl2E0vXSZ+CRvGnGGB9JmuFgaCL8hOIUtSy 181 | NPJSsCVLlmB0oo2xX7P+2UX9K4Gmi7LmpA0bgYiojcArcRSDNVSWmppKckg8jzUMhCZrGAhogi997kd/ 182 | oBWsYSBIIHSEAWjKmhW1dJMUvXfr1q0YnWBZOJhg1r/0FPOrgsZSYc23EewqTX5ojxs3bhT7ismTiTnW 183 | XNqjBsI9p6lf1pyBYIShP04NhAUNUZNxUU948OBB5Ev+FPPLGcivDRoLW09x822Es2yuPUZHR0smSp6C 184 | huEqDYR0RSrqgVkrDIQ7B8J1RRY0MZAJktWrV1+8eJFOMVyy/oUM5DcATRdlDdVwrGnyo+0Ruw2thYeH 185 | S2byWEPUynGR0ARi+gRUvocoQStYw9ZVuqJS1GSEsRZVVlZiNKfJGn3il0t7vxloLI419gesueRHUzZY 186 | nz59WqgrZBYwCtBU1DAQ2hUBl3uyb3+sFaKG29BYrSZqZjYze/bsc+fOIVkj83Bp75cwkN8SNBafNfZK 187 | nTVymNBCSJ51RllTUXNdEZTpqwWeYSAqXZGKmj4VIlmGWI1ZCQaCtPeLGshvDBrrB1lXVFSIXEWKEMKJ 188 | msZq8KUvzlBhrQT9tCvyZ0VO1KnsXC4jcznSnoqB/LwjzG8PGgv7gMWxxu6psE5OThb7ixWg1UXNveKo 189 | P9YKA0FX7FfUqTLEm/Xr1/MNBA2ZP8Jgq/59A3khQGNR1hBOv6yx80uXLoWlElLgxT1ZkoqagqasBzIQ 190 | Oiv2K+pI8tKY1tZWlQRCR5ifqyu+KKCxnsEaOeTkyZNCYyGzgiGgqXtw8QOIm9iCjTxb1PQESF/QshSZ 191 | JECycuXKnp4eJBB6vok7BwJRcwbyioDGUmHN+TXN17W1tWQ6xxSTy7oHN5RDyPTFz882EBr1+KKm7pEi 192 | k66SCk3IlZ7Onz9PzzfRcyBcV/z3Rf1igcbqlzXN11BZQkKCZJqEgMZETgfFSjbnATH/Zc9qoElXhKhL 193 | lPOLuqgnSZYtW3bmzJlnd8VXBzQWZc31RrDGBEFn9Bs3bpBkHcEoQLOnqglHmAYotyhZ/6CoaabmgZZG 194 | E1HX19efPXv2GV3xJ4v6RQSNxWeNPeRmdEisubkZaQ9oFKC5lgjEO1nW9LoJHGiONSdqdadmX4mDiR+i 195 | xpREuyJ3Yo/Oiv+mqF9Q0FjYH8hHhTWSAPY8Pj6emcEQ0LBpuAfXEvnXXunPQFRFzeU8FjRxaiNhY2Nj 196 | b28vPbGnPiv+ZFG/uKCxONaQEnYSu4odRoNCNgARHOwENLIH3KOaJQvEu5Ss+00gVNT8TE1bIuseRNT+ 197 | 5Flkp06dunDhAn9WpKKmUe+nifqFBo3FZ42Dl7KGxDAuiseIiagBmjv1QUG3sqxVDERF1PT0KUD3FTWz 198 | nBHqCPfu3ase9f5NUb/ooLEoa+yeSmMMDw9nwhkCGjaN7AGa1D12s6y5C2X9oKh5oFHi0eK4uDjEdhr1 199 | fi5RvwSgsfisObPu7OwUOYlAioCmNg27YEE/vdjeQKLGj9CzH1xLVLoHE8aMGzfu6NGjiHo/o6hfDtBY 200 | 2CuuMVIDQfCC9JgQhlgBQMOmafag1++kF5F8hqiL2PPUai0RhfsvMzPz5xX1ywSab9Z0ikHmFVmKMCsS 201 | cJxN08sv04ujPkPU2/sOLzzQTBAza9asn1fULw1oLMpaxaxTU1MlMyVPQbM2TUCzF0d9KmoKWsmagC5X 202 | 5jw195CuI8NLVVUVFbV6/PgJmfplAo3FsYamYNbQFw5tobFQmiQloMGRgqYXW0bBQAYSdSU7vAzQEiXj 203 | Sc6DqBE/uEzNDYr8sx+KLfuh9ZKBxgJrFQOBn0pmSBSg2VkcfAnljh8SNcyd3xL57hFOnunb3d1NMzU3 204 | KPLPfvwo93gpQfMNBAkEhzaOdGAiEOnYgn4I0F0s64FEzbVEgEZL7OseKJEDuZrksWPH6KBIz36onNJ7 205 | fvd4+UBj8Q2EJhA4NTObISg50PBoepH2NqWoOdBK1kTUaIncqY++oCXTJHPnzj106BA9+3Hjxg16Sg8R 206 | np6n/lEt8aUEjYV94xvIpUuXED/kW9m3fgBoBA8Kmr7LAxV1vzkPLZGbElXcI4o8nNja2nr8+HHEG/pU 207 | mwcPHqAl8h98eU5Rv8SgOQOhIwzJ1IsYolwKGsEDoOm7PLSzosZ9oC5qtERMiZx78ECjxC7kigmHDx+G 208 | qOl56oFynmKzBl4vK2gsFVEfOXJE5CwiLZEPupt99xLcgKibBmiJpbxA3dc9mBlMcHDwwYMHT5w4oT68 209 | /KiW+HKD5kRNu2JYWBgTw6iCPszqGk7dMnBL5AJ135BHTpzKhDt37lTPeT+2Jb7EoLE41rQrNjQ0SAIk 210 | xCUoaLjzIfJWSIR1F/vuMAO1ROoeajaNwjgO90BLRM7jWiJ99umPco+XGzQW9pAaCESN/RfqCuG2itMd 211 | FPRR8oZTRNrI1LQlqoOGe9DJhZ734IFG9ggNDT1w4AC/JVL3QEt8/inxpQetImqojwljyMBCrQOgj+np 212 | nWDf1quTbYl896CsqXtwk4uKTS8nk0tHRwdaIn3ott8p8dUHjYU95EQN3Yldxbot7LkODvQpwpo4NVpi 213 | v+6B7EEnl37dw0qUm5uLKfHkyZPclNhvoFZsUH/rFQHNF/WsWbNkybKnoI/r6Z1mC6JGzhvIPTC50LOm 214 | aqAl4yTLly/fv38/nRKvXr3KD9Sce2AbniHqVwE0Fl/U+fn5TAhDhu/9CtD6p/UNTxsSUe9XugcHmrKG 215 | e5SxF4vsz6aZuUxAQEBnZycXqLkTp8/vHuRSP4qbL/PiixpHt8hBRIIHRhWAPqFncNrA+IwxcOO/A7qH 216 | Ssjj2bQ0ViqUk0fH/x33eEVAY2FHsKtQFvSFKQOHPzHlwwQ05GzWYwbWUPez3IMLeX1Bo3DPpaWlUfeg 217 | z7D5se6h8Yw74eVaVNTYW+wzehezgCFyPkI6IRBb9lpa9FgQUVP34INmWStC3kA2HSAJDw+n7qGePZ5n 218 | ciGgXxlRY1+oe8BJxW5i8satCNEsaKteK9uztiZnTBTu0e95j3KeTfcFzcwnj9i2tbXx3aPfyWVA0D8Y 219 | AF+ihR3hWuL48eMRJGjkgG+AsuM5R+AmLRHj+EAhj2/TPNDSGKmAEbS0tNDJ5dy5c2+99dbt27f55z2e 220 | bdMaz7bwl2sBNCfquLg40KGd0LzH3OGcg+t5V7CGX5NxXMWmWdaqNs0DjUKazs7OhnscOXIE7qH+UADu 221 | 3WfYtMazLfylW5yooT5Mz/ANkIVBO5138rzo6XHBA9DhHuRZH2qgSchDmh6gH4pHi1etWtXe3k4fClA/ 222 | a/psmyagXzH3gG6wUziuRZYivQPEoK17rSHn0ZdG+1zygbRJ9tjL2rQKaIgaaXpr//2QCWSCgoJg09xZ 223 | 0+vXr/cb8voHzTnLK8Oac4+pU6fql+jDoO3O2kHL4y6NC7gcgBskeyDkDZSm6Uv11UGHM56ennv37uVC 224 | 3rVr11Rsmjs9rdgU3tKgzvJKtsT4+Hi9dXrUNyDniVcmTr061feSL9CTkAeb5oNmWRObpv1QLXhI15N+ 225 | 2NTUxIU8+tya57Rpcv3oZ7fLl25hJ7Ev2GFAkQfJkTfgG+ALyjPfmjn5ymS4B7HpgdL0M/qhOXl7tJ9m 226 | 0xrPeU7k5VrYF0gHwYBxYoAVdjH+8vjAa4Eh10PAGv+FTZMnjP1gP+wLGtkcYYZv0/xZ/NlpWoO7H/r9 227 | 8ku6sCOQFQ5kgUjgsMfB+6I3fGP29dkLbyyc+/ZcmDUyH3kcQP3sEu2HmA/7A435MCwsbN++fZxNP3+a 228 | 1kC75H/51WBNQUM9oaGhdoV2IDv92vT5N+Yve2fZkneWTLs6jYS8TrYf8kGzrNEPSfAAaPTDvgmPmc1M 229 | mTJlz549NE3TRxHVT3r0D5rv4q9SS6TusXnzZus4a8g5+Hpw+Dvhq99djQp9O5TY9IEB+iHmQwQPmvBU 230 | QC9h3N3dd+/e3dHRwdm0ysO1A/VDDfUTfa+MqLE7dXV15nPNIed5b89bcWvF+jvr496Lg6i9LnrpHdEj 231 | j4s/I3ioJTzpWqmZmdmuXbtg09zDteiHd+/e/cF+qEE1/+qJGnuBfQELo7FGkPOim4tibsckvp+YfDc5 232 | +t1oBGpM52Q+7Bc0fVhLLeHJkmVCXWFlZeVAYwvXD/sB/fDhw3/n+dUv7MIuYEfQpuTm8rnX5i5/Zzm0 233 | nH4vPft+dsJ7CUgg6If9Bw+wpglPHTSb8HJyclT64Z07d/hPNKUYVUH3+2QybKLi6y/zwl5ghx0dHUMO 234 | h0DF0PK2B9uKPihKv5++4MYCMrYgeKiAZlk/TXjqoJ1EGzduRD/s6uqiz6qhDwJwwWOgfqjBXYzslRQ1 235 | 9mXy5MkhLSHx78VDy2UflVV9XFX4QWHkO5GYy8kgrpLwKOjSgaO0tzgqKgr9kD8fcqfxqF65uUSxHezS 236 | 4NIJv2m+Gqyx/Tg6lyxZMqt4Vtq9tOIPi3c82rHz8c7qj6vj7sRhbCGDeL8JD1F6ANA0Sre2tvLnQ5VH 237 | W7jgodgOdmnQpklFTTM1vUNega5IQeNID0wNzH2QC767H+/u/Kxz1+Nd4I6hXLd74Cg90MwSKJk5cyYN 238 | HvTRlucMHhrcFfZ+3stTvCALu1BYWDhpzaTSj0qbP2k+8PmBo18e7fqsK+9B3pSrU0jCQ5TuFzSdWdRA 239 | MyHkqQc7d+7kggf/YS0uVvQDGsrnnsv+M16e4gVZAN3U1DQ+bHztx7Xtn7Uf/+r42W/O4mPlw0pM5OSM 240 | R7+gq9gn8vYLOowZPXo0QCN4cA9rPc+JafKes7/E5SlekIWNh+68Z3jDLg5/cRiUaUHdYTfC9E6xM4sK 241 | aPY9nMmjtP2CjmCcnZ1bWlr4J6afJ+FpZGdn08tTcE+x5ke9l501thyKcxnnArvo+bqHAw11I3gYnjYk 242 | J0v7A02e84gpXA20NEpqbW3d3NzMJTz6JLF+Ty31Ac0w5rh/+K8PfZW6IrYc+2XraktNgys4deztWJMz 243 | JmQ4VANNTpYOBHqt1NTUlILmP1D7g6eWNMzMloSGhuJugf7pd9OuSLvni2Yg2IwfXIpvZRf+C6GZWZvx 244 | KaOg7s3vb7bosSDPTlehjALoQuV5JRXQcVIDAwOA7jdKPwu0q2u9kVFgbGws7Yowdf71bX5RA8GhgzaC 245 | bW1sbMzPz9+0adOKFStwr2PEQMNxcnKysLAwNDSUyWQSiUTILtzAf/FJfAnf4O3tPWnSJPxIZGQkYty2 246 | bdt27NiBeIsohV3ANmPhrxiMMuj9updfYI1x3KrXikzhKpRR6IcDgJZtlMnlcjTYfs/hqT+mpdhVFvQO 247 | R8c8Pb3RGOFxCHAGgqSiYiD4sZ/MGr8HbQCRKC8vb/Xq1YGBgcBkbjxqrIdryNSJq8Pmpq1ZuT1lY0t+ 248 | dnd1ydld9Tf2775/vOvx2aN/unz6ydvn//HOpe/fvYzCDfwXn8SX8A032prO1pV0F6S3JK/bHr0kNSx4 249 | VWDAHB+3sbaW5ga6GL7xh5YvX/7m8DczdmTUnak78uGRni97SH3Vk3Mvx67HjiiaPb9B6nlAJ8oYhgHo 250 | gWaWZ4FG2dhslkqt6+rq6EMG1EBUEsiPMmv8FP489JWQkICEr6cjH+PuGh48Y0tMVMPW9FNNVcD0j3cu 251 | /uv2lX+3bvT+6/Kx73u7vj/e+v2hhu87Kr9vLfy+IevvFZvvpq84GRNaP39ilLPxPDdzD1M5I9bynuw9 252 | d83cjds3xrTF2B2zk+9krz+B4nCjYB0FA4BOlolEIoBWP1kKgT5jOAToBrZ2WFquEov14Tt8A6EJ5DlH 253 | GNyZyJXQ7KJFi3Tl8gAf7zWL5pelbj7RUPXxmUOqgH7GunXxX9dO/evCoe9Pt31/uPn7rqrvdxPW31Ul 254 | fVca911B9KN1M55smfckefa9NRO753sVTrKLdBvlbSIaqvWHQT6DhgcPF6wVMAUMCRts6VSxoGm8S2aL 255 | xxoOBq9THw77fZRWgYYF3eTq2khxm5qGzZs3D+5ODYTO5c82a9zGn9m+fXt4eLiJkeGsiQHQbHtZwb1j 256 | Xao4ftF699K/rvf869KR73s6ibQP1H6/t+T75q3f1aZ9V77x0aa5T3LCWdbBTzZO/9uGSX+L9f/zau/z 257 | c83K/WVRjlrehoNHav73IM9BI0JHCBOE9NmO0gypNFUqS1KyVhYFTYdD7jmPUGe/U7gCE0C7uTXzWY8a 258 | FYyOxM3lOBa4sZJv1qCPv5GcnIy/OsHHe/PKZftKtj04cUB1/3/NeufCv946rWS9i7BuK/1+V/73OzIf 259 | pUc8KV79JHfZk4yFT1LnPNk042/xU/4cM/bxSodHS60eLTJ7tND47Az9ojHixTYj7HRe/6+h/9+w8cO0 260 | FmhJNpD3TCOVRIpATyLWAUtEJqZT+LNBc6IkoHmsG52cyg0Np6xfv54bYbi0B9YQOH57XFyckYH+3OmT 261 | ixI3XNjToLrDv34BMeR89SQo/+vcwe/PdCj8urPq+7bt3+3M+yQ35kll/JPtMU/yVjzJXkyknTTr2/hJ 262 | j6PdH0XaP1rCsl4w6sP5RvfnGb0fatjkL13rqOmjP3jY8P8e4j5Ec7amZJ1Eii4G4hulaIb19fUAzU3h 263 | 9HkH/NMd/YJu4bEmuB0dCw0M/BMTE+E71KzBGlEGbc1AX2/e9KllqZve7tr93S2SBFT3+WcvNEyi06MK 264 | gif3ErUeaf7+UCOp7h3fd9d/f7CO6Be1v+b7rmqWb/n3+7Z/v7vo+10F/2zKebwt5knN5ifl65+URD/J 265 | X0FsJH3+t0lBn8aNeQTWK5weLbV5tMgcuias5xrdCTF8d47hO8EGe/xl6x21xugNHjbsv4d6DdWap4Uc 266 | jXxZW1uLfoiZhZvC6emOZ5xX0nB3363Gusnefque3pj09HRMmUlJSVpaWlN8x2Stj0bw+utbZ/9+A3nr 267 | 4j+VkUsVzU+oqydJHwM10GnK/q46mTSxwujvtkZ+l7Xku/Sw71Lnf5cc+l1SyHeJs0ltDmZvzPkuOeS7 268 | lLnfpc0n35Ox+LvsZeRHtq38Ln8V+fGitd+VrPtHUezjlEUEcdHqJwVRT/Iin+QufZK16Nu0kE83BXyy 269 | Hqw9CesIu0fhlo8WmjycPwq6fi/E8FawwY1ZBteD9K/O1G/wY1bajnSSv/Ffb/x/mpqaW7ZsaWhoQMKj 270 | wyEd97jTHfS8kipoT8+Oflmbm6doatrpSqWRc2c3b8t8eKr707NHv7p44s9Xz/zt+rn//TdYkygG0dWn 271 | f1cU8136ou82Bf1z3aR/Ro39Z6T3/y7z+HaJ+5/C3b5c7Pr5YtfHi1wfh7k8Wujy8UKXhwtdPlpACjfw 272 | X9QnYS746meLXL9Y7Pp1uBt+6q9L3f++zP2fER7/XOFNfuEaf/zmJ2snfxrh82RT4JPEoCcpc56khTxJ 273 | C0V9mzLr8Sb/T+J8P4n1eRTt8Wil86Pl9oT1ItOPF4x6EGp0d46C9VtB+ldm6l+coX8hUD/fUzhHb7iV 274 | WDMgIACHOBeluSkcRz93uqMPaG/vQyzrPZS1i0ujrW21qWmJqUmRqXGCTOKSFbvq1sE9SBFg/dm5Y19f 275 | OvmXaz0ca2ogz2ZN1Lozj+grZS7L1Ac4wAWMwOuDBc735zm/P9fpTqjTu6FO74Q63QxxuhHi9HaI4/U5 276 | jm/NcbzWX+Hz+Cq+B4Vvxk+h8OPvzXW6O8/p/nxn/Fr8ctwTn8xzuBto/M0Sx78uc/pbhOvfVnr9LXrM 277 | 39aO/3PsuE/Wejxa40kUvdr9UZQr0TVYE8s2fzTf+MO5hPWd2YZU12AN0Oem6p3z1z800SzJWW+8gdDL 278 | yysmJgZ9i5/w6MxCswMX0gD6KMu608Vll41NtZFRgYV5qb1tpatjHcrOKkVX6p4ZE/Vu9977x/d/fJqw 279 | /ubSqR9gjc8caviuctN3aQsI2eVef1niTrECAZhSoADER3l19s9Q3D1B7wbcZ9dmWp+baPROqO2deXZ3 280 | 59t9sMD+UZjDZ4scvwi3e7TIGPolKoZHwzpo4TbRNWH9Ueio+yFGYA2/VrCepndhgsH1mVbXZlhemWFV 281 | 5GUUYs7oCTTXrFmDxgj3+Oijj2DTcA/0Q+6MB1gD9HEPj257+z2mpjU2VjWOdrVuTjuUVY+ys0rTl3ul 282 | rlp+u3vfgxP7H5059Pn545Q1pmE+6+9O7CH2mjofx+w/lnngcMZRzyeLPf95sT5PnZtmcWKC4aVga9SV 283 | 2TbX5ti8HWJzM9T2Zqjl5Tn61+cYvDPH8L1QQ/gyHAP98FGYKaEcZv5ogemjecYfzyWs359NbOTtWQZX 284 | p+tfnWx0c6bV24S11dWZ1pdnWNX5miy10bWUCmNjY48ePYpBD/MhHT64oVrD0XG/lWWrg91ed5cOT9d9 285 | Hi673JwaVFg72GQa6PgmRCy6c6gNrD/pOcxn/fe9pX/PXfG/66f8Y7kn4MI6AReH8C3WBDi4Kvv/q1XP 286 | ZLMTE0ddmGVN62IwKUA/F2x2fKbuqUDdnhl652bqXZqlfy3Y4Ca8IsTw3lwj+MbDuaNAGUV1fXe24buw 287 | kUCDG1OMb8+yfifI+u0gaxwuV2aAtfWlmTY7/c2jHPTtdMTwbrRHbtADa3iIhqN9p6fbodGeh709ur3c 288 | 93u5tXm4tLo7N/bFvcPRLs9Qb2L0gpCrbc2U9Wf12V+lhH2zatyfwl0J3HmA60jg8pSrss+/SZ2eaHJq 289 | sgkHmqszQaaHZ+gcmqZzZJrO0Wk6J6brnmahXwjSvxSkf32W/s1gA5gG+IIy6t4cwvr2DMM7gab3Z1u/ 290 | F2zzbrDNjSCb60HWV2faXJ5pc3Gm7YWZtq0TLKMcDe11Jampqch8MGskEODWGO15jK2joz2PeHsc8nI/ 291 | 4OXW7um6x925SYW1s0OZscHMReO9T6wIvLd0zAfznO7MdbgZYv/2bPtrsx2ukb1yuELKEaWyt79hnQwY 292 | dWaqqQpl1KmZJoem6xyaqqxpOodZ4sen6Z6crntmmt65QD0kDWQ7OAZ8A9BJBRren2n2YYjN/Tk278+2 293 | BetbwTZvz7K5FmR7JciWsA6yOxdk1xJgudzBwEIuLigoQOaDtDnQlPVRsPb2OOjlBhsB6xaWNYvbsc7N 294 | psLNcrspM104aHjl6FGnA23OBNr2zLDtnWl7Nsjuwiz7C7McLgU7XCb1ArE+Nt6wZ7q5CmXUyZnGfUDz 295 | 6vBUnaNTdI5N0T05RfcMYsZ0PeQNEEc/vDHV4P5M84chNh+F2H4QYndvju17c2zfnW17M9juerDdlVl2 296 | F4PszgfZnZ1p1xtkVzPOYoGNgT4jQujmg+Zww0YOerl3sZbd6u5Q52Zd7mZR7Gpe5GJe5GxWZCqbLxoq 297 | S3TSOTjF+uh0mxOBNqcJbvwBsLZXZ001zhX7VVL4zouzSJ2f5XAuyP5skH3PTFKnUTPsUKdm2J0MtDvB 298 | K/wXhc/Tb8B34vt72Z/Fb8A9jd+GX6vcBnJ4HfbVOzvD8vwsaxQf9ImZRv2DnqLTPZnUock6hycT4sf5 299 | xCfqvTvD/P5smwdzbD8MsfsgxPZ+iN3dELs7c+xvzWYP7mD7S7PsLpBNsqP7kudjNs1cF6CPs3zpR441 300 | bKTby2mfp22jh1WNq0W5s3mJs1mxk1kRLQu9KOkIqwgLSeckq8NTbY5Ptzk1A+q2OzeTsKbSvhTseFmJ 301 | lTLF54GD/nnAOh5odyTQ9tB02wPTbDqn2HSw1T7Fml9tk1VL5RvoT+HH90+16Z5GftvRQFvcJbgbyN02 302 | w6ZzjE7PTKveIKuzQVbn2KLQj84w7J6mRnmqTjcFPUlRwM0RPzFF99R4navTzNEJbwdbwzruz7F9EGL3 303 | INT+Xqj9+6EO74Y43Jjj8NZse+wyOODuP8OKBrtJQfctj2OjnfePtm/ztm31tNnpbtXgalnjYlHhbL7d 304 | 0azE0ayYrSJbo0Q97dEzDLQrfIy7p9ocg7Rn2J6ZYdcL3MSniMTOBjlAbhTrsUA7PlMwouD2KWvvJOs9 305 | bO1+jqLfiR9Bcb+Bf09Q+vsCzJu8dQ5Oszg03eJooMWJGZanZlr2BBHuhwP1Dk6VH5wi7wZctvoFzRXF 306 | fcRXfn6q+ZVAy7dmWN2cBdy278+xvRdifz/U4f5ch7tzHe+EON4Kcbg+x+EKYe1AWWP3+4IGYqcDo+3b 307 | ve3avGwh572etrvdbXa5WTe5WtW5WFY7mZc59cU9igkSDhYlOunCRo5MswbuY9NQtvh4eBrB2jXVun2y 308 | TRu78xQrBUp5tU602jXRaievWiYoqlmtuC+h+D+C34DCr+LuA45+s69xnbfO7klmqL2TzNummHdNteie 309 | ZnEk0KJtqk77ZFnnZPn+KfIDU3jEp+gc7A80qQk6h311z06zOD/N4mIgGVjeCrK+Ocv29mzb90Ls7811 310 | uDfX8d5cTKdIX45vk9BFjmOwhtSUHq2KmFabh80+D5s97ta73K13ulrtcLGsdbao5OEmxM11V0pH2Cww 311 | EdX5me2baLl7kiUiDtlt3CY7jxso61YWK0Wj4Bjws1bfO4Cirx1tUOOj3zLRbOckUrtY4qhdk0zqJjCN 312 | /szOAOnuCdK2SbL2SbKuySzxyfKDk1A6tPqADtA54qffO9UCrM9Nt7ww3fLSDKtrSHizbN8JtrsTAvcg 313 | oO/Nc8KMdpuMESTjwjbBmgVNjcJuH4fYA2VDQNPicLPSroe0n+I2J7htjdP1hBNGvvHmWjt53Tizen/z 314 | hvEWDf4Wjf4WDQGWTQGW5KO/VVMAKVVAv1Cx92WZu071WMOGCaZNqIlmqGYW+o4JhhXjJZV+kio/SfU4 315 | yY7xTLM/Ib5voqx9oqxronz/RPlBWnzi/jrHxhkQ0IS15blplucDrS7OsL4SZPPWLLsbwXa35jjcCXV8 316 | f67jXbBG/GXnYYwUYK0x2qFtNEEMlyBFEXNFKCvL3Wavu81uNyLtJhfLOmeLakfzSkfzcgezMnuzUpSJ 317 | PEI83DLQQJDpYVTua1bpZ17jZ143zqJ+vMWO8ZYN/paN/grcqlB+mcIfyrMXVfuNqvM3rQ8w3RFgCuKN 318 | LPRqf73tfpLSsZIyX0m5b1/i46W7/aV7A2TtAbKuCfIDfNzjdI77G/UBPd3qfKD1RQwsQbbXSMKzvzkH 319 | LdHxDjEQha7B+vocRw0v292etntQHqBsQ6sPayXodrYIbjebVlfrFmerRifLOkfgtqhyMK9wAHHzchvj 320 | bF3hlJFvaIebM2VjzSp8zar9zGv9LOoJbsIa9atJu97PrNCZAWV+UeJl4+VFvuLiMeKSsZLtYxXEK0Dc 321 | V1w5VlLjK2nwY3aOk+7xl7UFyDonKAR+wFd+YoJxz1QL1j0s4R4AfSHQ+sIMMhZenmV3dZYdIgeCxzsh 322 | ju+GOkLRwE1Za3jY7PSwbYUzsNWHtTtbStBt7qTa3WxQ+1yt97hY7XKxanGybHC0qHcwr3EwB25Fmemt 323 | lWq6+khHxNrrQtpVvpC2Rb/S/kVxV/uMKnGXq4CmVeQrLRgrLvQRF40hxREvGysuHyOuYKtqjKTel2ny 324 | Y3aPl+71JwLvHCM7OdHkzBRzgO6dZnl2utU5FvTFGTaXZtpeCrK7Emx/NZjMyUgdN+Y4srjJCTWUhpt1 325 | ozsynM0uD5vdHGvWJRSgSdm2Aa6bDT6CcoerotpcrPc4W+1yJrgbHS12OFrUOZjXstBr7M0qjaSLhMNM 326 | p+hpJ7sYVPqaq0sbuBv8rQrGmKd4msQ4G4XbGQZb6k001RltJHPSZ6x0GGOpWE8ikoqEYqFQKBCgcAP/ 327 | xSfxJXwDvg3fjB/BD+LH8UvwqwrHmDeyoMs99cu89FQQo2r9TQp8Jfk+4vzRpAp8nhIvQfmIS33EZT7i 328 | CtQYceUYSa2vpNGP2eUn3eslPTbR9NRk8zNTFazPBRLrgKIp6Muz7K/MskfYAOu3ZjvQ87SQ8y2ARmdD 329 | nHCzbkGvA2t3ND0FaFJEvDZ7Xa1JsbfbXG3aQdnNthPF4XaxbmVxN7ECB/F6WrYm+friWdpD5EFGwgx3 330 | I0g7y9NkrZPRQhuDiaZyF33GiBGbmJg4OTn5+fkFBgYuWLAgMjJy3bp1SUlJWVlZeXl527dvr6ioqK6u 331 | rmNXbW1tVVVVWVlZYWFhdnZ2SkpKXFxcVFTUokWLZs6cOX78eBcXF1NT01GM2NVA6iEeNsdcstZFP3u0 332 | ER905XjD/LFiDjRXwE1qtKh4tKhktHj7aIK7XIm7erSk2Ut+IMD0yESzE5PNT0+x6KGiBmj2jBIHGgn6 333 | ajBhjcjBnRbXQHJwtqhClnCzakajc7dpZVnvcVPw3UMpu7DlSlijONZdbFHi+1ysdysFDuJw8AbC3bLR 334 | 3CiDEUwd9EeBePhQzZEj3N3dp06dunjx4vXr1+fk5FRWVoJdTU0NIALlDnY1sKuxsbFJuZr7Wy3sUvyH 335 | t0pKSqKjo0dqj/Se7G3vZT9Se4SFXNvPWLLARp7gZrBtjE6/oEl5iwu8RWBd6C0q9u6L21Nc56nTOs64 336 | 3d/k4ASzo5PNTxLWVmcDrc/PsAFrgL40y56wZkFD11fZByKQOkgzxNCBfOZsUYGM7GrVCGm7Wu9ytd7N 337 | IibFClYBegDW+9mixKnAdztY7rS1aLYybzI3a7Kw2Glt3WpqmiOTBY8caTBt2rTNmzeXlpaWl5cDMdQK 338 | xPX19RxZkAK+nTt37mJXa2vrbnbtUa69AyzFl/fswTfHxsY6jXZKrU1FpVSnrExbOXvF7LGBYy2dLcWi 339 | 1+303phmNmy1g2aeGuh8LxGqgC3gLlLiLnUX13nptfiN2uVnsme8SWeA2aFJ5senWJ4mrG3OzySn7gjo 340 | YAKasGZBU9YoChqFMa/MyaLKyXKHs1UzGp2rdSt4sUVZP8WtZA0boaz3u9sdQLnZHnCy2W9n1WFl0WZl 341 | 1WZj02Fn1+no2OXsvN/JiZSz8wFr6+36+gu0tEwnTZoUHx8PIUPFVL/gC7jAClKgtm/fvra2tnZ2dXR0 342 | dLKrS7n2qy3FF7q66HfOmjUrcHFgVnNWVlNWZmNmRkNGxo6M9Pr0LXVbZLGyodOGvu78+v/o/Y+e+DUf 343 | w8HhtiMyPYUsaEKZlCcpylqhbhdx3WiDJt9RmDZ3jjNuHW+6L8D0wCTzo1MsT06z7p1hew6siajREgno 344 | K0rQtDQcTAsczAodTIvsUWYlDuaVThb1zpaNcAD4wECslbgJa1fbTkfrTnvr/dZWB2xsjjg4HHd2PuHm 345 | dtLV9TjKxeWoi8thlLMz+YhydT1ib7/DyGilWOzs4+OzatUquAcQU82CL8V64MCBgwcPdrPr0KFDhw8f 346 | PsKuo+w6prbo5+n34JsdHBxicmLy9uZt27Mtd3dubmvu1l1bs3dmR9VGCdOFWrFaWlFaWiu0hgcNH+w9 347 | +DWT1xjh/3gbDA63HpHt8RT0U9woR1Gdj9GOsaMafI2b/cDaBKz3+Jt1TrQ4NMXqxDTrHsKanC6GexBd 348 | s6fmcRtB8GTAKA170wI7kwJ700I7RRWzibgG9joA66e4naz32VnutbLYZw3Q9t0s3zNubr3u7mfZ6nVz 349 | 63FzO+3mdsrNDV8iRenjhrv7CReXAxYWKTo6U0aOZObOnUsvdgZtgizFCnwnTpw4efLkqVOnTp8+febM 350 | mZ6enl7lOstbik/19uIb8G3on9ZO1iX7S1DFXcVFnUWowo7CgraCaVXTBOkCQZxAe4229mq2orQJ8eDh 351 | gz0Gv2bwmr7gtQDDodH2mnzW+e5QtLR2jFHdGMrapNnPpGW8aau/2Z4A87YJlgenWB2bRk4XnwXrIPtL 352 | wfYIJKcnmXaP1T3mP+rMZAsNO5N8lK1JAcoO0AnrIjvTUsRh5Ae0NeBGqODjdrbeY2+5x9pij7nZbviD 353 | o+NBF5cjLi7HWIigeRqI3d3PeXhcYOs8W4Q7ysPjjLJ62Or19Dzn4FBrbLyKYdypwOmbVIEXwAHi+fPn 354 | L168eIldV65cuXr16rVr195SW/gkFr6K70Fumb5wevWJ6urj1VXHqiqPVlYcrag4UlF2qMy50lmUKRIm 355 | CIXrhYJ1AkGsQBAj0I5mcS/V0lyg+ab/m2/YvDFo2P+zl74x1/zNTHchQOe5iLa76VT7GNX4jKobO6re 356 | 17jRz6R5nOlOf7PWAPO9Eyz2TbTsmmJ1ZJoNnOTIRJPucYbdfvonJpj0TEX4c0ABdJ4tKbAmpWRNpG1v 357 | hnmvli9tJ6vdtpa7Lc13w4Lhv05OUPEhFPUE1iWAG2olrMHX0/Oip+dlL68r7EfUJRQ+6eXVp7y9L48e 358 | fcXL65yd3fZRo5ZKJE4IauhmsG9QA77r16+//fbbN2/efOedd26x6za77vAW/cy77Jo8eXJ8QXzT+abG 359 | c42NZxsbzjbU99TXnakrP1luWG0ozhGLkkSijSJRgkgYT4gL1wkF0QLtZdpaYVpa87S0QrVGBo0c6jH0 360 | NaPX9IWvTRk1LN5aq8xDr2q0Uc2YUbVjCOh6XxPCerzZLn/z1gkWcJKmMYY7vHSbPOVtvkaHJlicnmbb 361 | G2h/bob9+Rn2BLS+eLqtyTa21HE/lba9RZONebO5WYuNTZuDA/obENMioClrmC9bxBlgF2Dt6XkeZL29 362 | r3p7v+XtfX30aK7e8vG55uODj09rzJjrY8a8PXbsO6NHX3J0rDI2DpPJ3Dw9PSMiIpCajx8//t57791l 363 | 17179+6z68GDBx+oLRi6jbMN+O55a8/ua7tbr7W2Xm3ddWVXy6WWtUfXSuukkq0S8RaxOEUsThaLE8Wi 364 | zazAY4WC5QLBMoF2mLb2Am2t+Qrib45/8w3TN4Sv//d0I2Gykx6mTbCuG0tAQ9o1ow2qvPTK3WSVbrI6 365 | L/3msca7/a3aJ1p3T7Y5NtX21HS7nkD7syxrjWH/85qOwM/KaEt/uIm0rU2KLUzKTIyrrKxaHBzanJxI 366 | inB2PsgWAe3iwikadcTN7aib2zHWhU/BHOAMlPXo0W/7+NwcM+bWmDHv0ho7ltYttnDjtq/vHT8/1Ht+ 367 | fnd9fC6gXFx2WFltNDAIkkis/P39YSzIhbDvDz/88OHDhx+z69GjR5988gn9iJWZmRkSGdJ5u7Pjdkf7 368 | u+2kbrXvu7lv3419k7snM7WMJF8iyZJIMiWSDIlki0SSJhEniUVxIuEqoXC5ULBEIFgsECxiiS/U1p6v 369 | rTlGE1OVl5eXrtbwyfqCBFtmu5u82JkpdJRsd5VVeurX+Rg3jbNsGWe509+q1d9qT4DVvgDr/ZNsj0yx 370 | PTnN7kygPaStkeJqMF5HkxnpbKYXq2StwG1lnG82Kt/IMN/MrMzGptbOrtnBodXREaxhGoS1i0s3S5nK 371 | mVP0UXf3Y2wdd3c/6el52sur19v7AswBsoVgKVBf3/dBEzVu3D227rP1gK0Pxo37cOzYG2PH3vTzu+Xn 372 | d3vcuPd8fa+5u++0t081M5uvq+umrS1EgIMXY3RE/4SxfM6uL774AiNiRn1G973u7vvd+Hjw7kHU/vf2 373 | d93pst1vK62RMkUMk8cwuQyzlSHEsyTiNLFog0i0RiSKEokiRcAtXCYULhFqL9IeOX/kEKshBgYGGDhf 374 | f/31YcOGCwa9PkFHM8lBp3q0ce0Y03pfs3pf80Y/C8J6vNUuBWvrvRNsOifaHp5iewKsp9tp5HmZ5HiO 375 | mmkoFAwdNUq2mIK2Nt5mZpRrZJhralpsZVVua1vNVo2dXYODQ4uj414npw5n5y4XF7A+5OqKIpTd3Kic 376 | FaA9PI6jPD0p6x5v73PwhDFjroKgr++7fn7vs2Q/HD/+o/HjH44f/8jf/1FAAOqTgIDHKEp//PgPAgI+ 377 | mDDhg0mTPpoy5aPAwIdBQQ+Dgz+eNq3H37/J23uLo+MSc3N/XV0LOzu7gICAiRMnWmPKurGn672u/Xf3 378 | H7x3kOBGPejOuJ4h65IBtLREKi2UMvmMJE8izhULs4SCFIHmOs2Rq0YOXz58WPiwIWFD3pj3xushr/9x 379 | 9h9fn/3G/4j+aGnpNG7czFmzli1ZEh8aGuXpGWAk0JpjKsvzgIeY7fAz3+Fn0TjOonm8FVjvBO4A6z0T 380 | COv2iTbdk21hIxpFo03zvAnrxeaM5iCBnmi6mdHWUYZbTU0LLC2329hAy+U2NpUoJe46e/tmR8dWJ6c2 381 | lvUBV9duN7fDbAExLQVlCtrLC3XKy+uMt3evj8/5MWMujx37lq/vO7AI0Bw//kMW8eMJEz6bMOGLiRO/ 382 | mDTpi8mT8fHjyZMfTZ36ybRpnwQGPp458/GsWZ/OmfPp3Lmfzp//aVjYZ0uXfhYZ+fnq1Z/Hxn4eF/d4 383 | zZprkZEH7e2D5kaHtd/uarvdue9W+9532nbf2NP6duuu67vGdI15o+KN17Nefz3t9deTSb2R9MagpEGD 384 | Ng0avG7I4KjBgyOHDl325rBlw99cPnJEhObICG2t5cKRMwXDho2IiEhYtmxTRMTmyMjkqKjU1avTw8LW 385 | entPsJOKIqz1a30J6IZxYG0J1s3+Vjv9rcF6N4u7bYLNgUm2GmVjTYt9COutnsazTZk//Nd/aWqOHjUq 386 | ydq6FKUETVjb2lbZ2VXb2UHXtfb29Y6OLU5Oe1xcOlxdD7i5dbu7H3Z3P+LhcdTDA5SPeXoC8QlaLOiT 387 | 3t6nvL1Pe3v3jB59dsyYC8Dt6/uWn987sAV///v+/g9Z1gTx1KlfBgZ+OWPGpzNnfhocDLifhYR8Nm/e 388 | 5wsXfrFo0RdLl34REfHFihVfRkd/uW7dlwkJXyYmfrVly9fZ2V9nZn4oYnSL91ceeXj6yEenjjw8dfTj 389 | U0cfnTrGlvVxO6ZFLqmQS0rlkhJS4iKZuFAmypWKUqXCjYwwTiJcKxHESARrJILVYpT2KvFIH21XVz/A 390 | XbkybdWqtDVrstauzV63buuGDQWbNhUvXrze3X28r4F0k/OohnGWKMLa3xrFsW7xs2oaba1R4WsG1uke 391 | xtPN5HpCLRjchAkTBAI7Q8OV1tZltADa1halYG1vX2NvX+vgANaNzs6tLi5tbm5d7u4HwRqgPT0p5eNe 392 | XkDMp0xq9OjTbPX4+JxVqvuan9/NcePujB9/PyDg4YQJn06a9CVYz5jx+ezZn4eEfDl//pdhYV8tXvxV 393 | RMRXUVHfREd/Exv7TVzcN5s2/Skl5U8ZGX/euvXPhYV/KSv7duXKxolzAo89OnPskzPHH5858bjn5Kc9 394 | J/HxcU/SrTTpIR2mQQkatZ1lXSgT58pEKVLRZkYYzwjXM8J1jDCW4YgPt9QKDFy8Zk1GTExWbOzW9evz 395 | 4uMLN20qSU4uT0urycioz85unD8/Wl8oDLHQK/Exaxxv2QQD8bfe4WtV621V42lV7WFZ62GhUe1nvtrR 396 | 0E1PguwZFxeXlpaWnJw8b9684cOlOjozLS23saJWsLazq7Szq7K3J6xZ0KgdTk7Nrq573Nw63N0PeHgc 397 | 8vQ84uV1zMuLgPb2BmJafUD7+Jxhi+AeM+bc2LEXx4694uf39rhx744ff9ff/8MJEz6BgUyf/uWsWV+F 398 | hn4dFvZ1ePg3K1b8KTr6T+vW/Sk+/k+JiX/esuXPOTl/KSj4trT026qqvzY2/s3PLzy5MuPkp70nP+s9 399 | 9fnZ02ydwu3PeidemCpt12HqdZgqHaacrTI5iog6h4KWijYoK05BXLBYMlyoBTmvW7ctLi4/IQEqLklM 400 | rEhLq87M3JGT07xtW2t+/t6iorbU1Mrp0xe660qjbUdVeVlWuJMqd7eocDOvckeZacy21NUTC1esWJGb 401 | m7t161Zko4yMjC1btqCh+/r6isUexsZrbW3LWEUDdAVY29tXOThUY5xzdKxzcgLoBmfnRheXXW5u+9zd 402 | Oz08Dnp5HfbyOurtfdzbm7IGX1pUzk9LSRzeDeLnx4695Ot7lRL3978bEPARBD55MtT9VUgIwR0R8c2q 403 | VYQ15JyaSkAXFX1bXv7Xurq/pqaedBnjvf/9I4TyZwrKtNo/6TI5ZSFt1WFqWdAVbBHWOpIiuThTJk6R 404 | ihOlogS24tliiWtPFHt4+G/YkA8Vb9xYvHlzWWpqVXp6XXZ2U15ea2FhGyJPWdnBlJQDS5d2Tp3aaWWV 405 | POIN7ck68kwHkzJXs3I3RVUCdFBQUFZWVlFREYaC/Pz8vLw8EMfKzs7G5+fPn6+pqaenN9vaOs/ODqDL 406 | 7e0ButLBocrRscbRsdbJibBmQaOaXF13ubu3eXh0eXp2e3kd8fY+Nnr0idGjT7I1IG5UX40T4kqN34LG 407 | AwKg8cewlMBAIvBFi75ZvvybNWuItIF769a/FBd/O2VK/Mq02BOPe0/0VTQq8sYq6SFdpkmHqdZhKtli 408 | WRMDyZeLtwC0TJwoE2+k9ZS4pp1w9uxIVsWlyckQck1mZn1OTkt29p74+PYlS7oCAw/4+cEzD8A/nZx2 409 | 4fgGKIaZaactWm1mUOZqWu5mWuZGPmqUsQtTAAIpVgm7itkF+lhJSUnITAzjYWoaY29f4eAAyqQcHavB 410 | 2tm51tm5ztkZrBvYF9CBdbObG8Xd6eXVzb6iQB23Kmh+KYn3wlWUMoeP3+DJ/DGVOaAvXkwsZdGiy6Ms 411 | 7Wp7Wo9+3HvsUe+xT3qPc8Q/O+vS6yFt02F2qIFGS8yVi9NZ0Jtl4k282igTLmVGigToe/HxpdHRFUuX 412 | Vs2ZUz1lSr2fX4uHx26kAGfnvc7OuIEAhlzQAMpwVPagL9XXjxQP0QrWl4MyLY0KdtGHOaqrq+nHmpoa 413 | 7iMWPrl69WptbR19/Rk2NpmYj1FOTtVsEdYuLnUuLvUuLg3QtZJ1i7v7Lg+PfZ6enZ6exExY4seVrFXh 414 | 9ls8mT+FrlT6O+PHk7gSEPAx7MXMLDVk1fIDD3oPPujt/qC3+8PeQx/1Hn7Ye+Rhb9LNLNFBPcEOHUGF 415 | XFgmF5aSEuFjiUyYLxNskQlSZILNMkGCVDuelNYGqWacdOR66dAxIgODSe7uBc7ORXZ2SLq0iIXCPMEU 416 | LYrappOTovAZOCq+ikPf1DRJIPAbyzBpdqMIaAqUPozU0NBAHzfiP8CBhdtY5eXlCxYsYBh7E5Mljo7l 417 | Tk5Vzs6gzBXB7epaz76Kn7w2lL7My81tp7v7Hk/Pdi+vA97eh/rifl7itPjclQ6DLnrZw+OAVM+0sLOu 418 | 697prntn9pPqUdT9Ho9jE99skr9ZKnuzQPZmnuzNfNnwPFJv5siGpcmGJkiHxkmHxkiHrpEOiWZ4JXlN 419 | X0tHJ9zcPNXcPI2tDEvLLGvrbba2Rba2pax5AjT4tjg773R23sV+RDVB2g4OmDYQ0rZLpbNttYQx5gYa 420 | QLxjx47Gxsbm5mb66EZbW1tHR0cX+ygGPfuOj1j4b2dnJxrmtGnTdHXHWlrGOjtXs1Xj4gLKtIi0WdYK 421 | J1HipgJvg8C9vA56e/8UgasXRW9ktHrmsrCuuye77p5S1D1F5d2oEnUYDatihhYyQ7cxQ3OZoVtJDcmR 422 | DEmXDN4kHhwnHrxWPHg1LRFXbwQK/vCHEcbGG0xM4k1NN5qZJVpYpFlaZlpZ5draltjZlTk41Dg5NYEv 423 | rMPVda+r6z5kAfYG8u5OfIlVN8aOcn39ZTpDtTQ4xHv37m1vbwfNQ4cOHT169AS7zpw5c/r06Z6eHnrq 424 | HZ85fvw4vpqYmCgS6RgaTrWxSaK4XVyAeyDi5IWLPOK7WeJdrIOThvnvEMd+MromeW1VLGjV8jseOLRZ 425 | MnS7eGieeOg28dBc8dCtpIZkiYakiAbHCQfHCgevEQ5erVp/dNASCscbG69Xgk42N99iZZVtY5MPC2Z9 426 | Y4eLSwuba9sxRrCTRCebcTvc3PYig7HSxrRRgSNg1KjVGvAEqmJo9vDhw8eOHQPQs2fPXrhw4dKlS5cv 427 | X77GnmXHxytXruC/58+f7+3txR0Aya9du1YiMRk1KtjOLl2pbg66Cm7qJxxuSpxYCo/4T9G4gcHK4MjF 428 | fLhcVd7aKe00GVojGVrEglZSHpojHpIuGrKJBb1WFTFq0CLBHwQjdHXDjY3jTEwSTE03m5mlWFhAzvCN 429 | YogUudbZucXFZTcou7sDMQaIg2wdYEFD3dA1LBtWXmJjk2ttnaGxb98+GEJ3dzd0CtkCMfgC640bN27d 430 | uvXuu+/euXPnPXbhBj6Dz4M7oFPicHBkcIaxMDaeY2eX4ewM46b1o4i38lyF83EElR/wcchKz9Sq+EC9 431 | CmJaU06GDNvJDC0TD81Xk3OqaPAGVs4xqpRRr4/VHjHC1dh4HawDcjY1TYScWYPOg+2i16EH8uaGA8iy 432 | +MhWp7s7DASujVGuwtER3wxDz7OxydGAMOEV8AT4w8WLF69evQqU4Pv+++8/ePCAnvbF+uijj3D7gw8+ 433 | uH//PiX+9ttvQ+AQPn4QXXTZsmUMYzlq1Bxb2y083D9MnO8q6JweHnt5MlexclXourqLF65bqcKXVs27 434 | rfIus6G1kqHF/cl584ByRv2PwUipNFjpG5uUvpFjY1PAujNGB2x2KyIsTbEs37301ccuLki60Du8BSEY 435 | JoPEAtDZGrCLkydPUiGDHRDfvXsXiAH3k08++eyzz+h5XroeP3788ccfgzhwQ+McbqgbZlJfX8/iNjUy 436 | QgpM7IubloqVD9Q51aGrKJ1wx1Fs7eZe27NbBTEtIuddA8g5TTQ4Xjh4Xf9yfmOKYOhQaypnExPIGb6R 437 | amGRwbZBUCN5A3MDpjN2QINNNyt3ATLH5+uxm4hkjo64S0rs7QsB2s4uVwOODEywgps3b0KqIEgRA+tX 438 | X331zTff/OlPf/ozu3Dj66+//vLLL0Ef3wCNU3W/8847MBPcT7i38NvQXaOiosRifUPDiZaWa9VYczWQ 439 | zNWhE+6svSCVP+UukUxfnbVRhS+tsneaiDv3K+cM0ZBEpZyjVSmjXrPSFIkmsXKOMzWFogE6CZHDyirT 440 | xmarrS2aYREIgiPMgc21ZOOVO4L/wlgqnJzw1VKUknW+Bo59ODJgQaFwhkePHoEjEAPrX/7yl7/+9a9/ 441 | U64nT57gv5Q4cH/66af4ZvzIvXv3cBzgfoLtwHxg3PB6ZJi4uLhx48bp6nqZmS1xcMjtS1mlVKCrKl2d 442 | +6hR0WOmT26/fbTz7gmuuhSFsDF92E7JkNIfL+dZ2n8YMhyBDDkBf2LUqBhj41gTk/VmZvEWFpssLdNs 443 | bLKgUBgCyxpdsdLJqZK3I7hNimWNrxLcDg7bHRyKNSBGOADsAoZAhQzZgiaY/v3vf6cvr8XCDbo43Pi2 444 | L774gpoJrAaeTp0EBwc1bjgSGmxmZuasWbNg30ZGgVZWcbxtGqj6sRcVvWM/RTL9tB3bOu8eV6+st4pE 445 | 7QZDq0VDioVDtgmHbFXU4Gzh4HTh4EThoDjBoFjBoGjBoNW0tAetUtQfHUdoaXkYGCwxMFhmaLjcyGgl 446 | cJuYrDUz22BuvtnSMgX5wdY2x94erAtZ1qUQL7CyfLld4FgrpA3W5ELdcAD4AJDRS/pAyNAvmIIvfXE+ 447 | 1nfswn8pdHzDt99+i2+G9nHfcE6CwwIHx/Xr1znjprgxxMNPBAKhjo67icl8W9tU3mY9u1R6KUEvkwWF 448 | rl7SefdYv+V22Hdoo3BIqWBIvmBIrmDIVsGQHFKDswSDUwSDNmgPWqc9aM1TuFy9Ear1h5HD8Mv19ReD 449 | taEhWK8YNSrKxGSNmdl6c/ONFhZJ1tZb0Nns7LaxoLezoCllPmgU/cxTaWuADiQJH6B2AbVCsxQxyNJL 450 | IPyf8lqV+C/HGnqn0oaPc05C+yRn3Cq4ESKzsrLmzp2LYUdPz8fUdLFaRPnhMjGJcfTxrjvb2vn+MfVa 451 | c2HjiH3M0CrhkELBkG18ytqDt2gP3qw9aL3WoLVag1ZrDVqlWq+5DB850klPb6G+fhhlbWQUwYKOMTUl 452 | oKFoGxsoeqvSPQBaXc78UrC2sUnVAGWYMt8u1Clzi7LmS7tfJ6HGrYKbjpfHjh1DmsQgmpycHBwcDOK6 453 | ut7QuI3NZrWt7KewhyMF0oTSLSp8uTI74DB0h2BIiWBIXl85Z2gPTtYeFKc1KFZr0BpVxKg35mn+QXso 454 | w0zT01ugpwfQ4VC0kVGksfEqU1NYBzw60cqKejTkXADbZeVc/gzQ2CnsGroUdlODM2UVu2AV3IcyXfTz 455 | fNy4bzgnwa/iUiAfN8yEejdaJZIJ5njEyoMHD2IuBfHQ0FC4ikzmCB+3sFhlb5+jssVc4bieHbVIBS5X 456 | M0/PH7ZbOLSCNQ2+nDNZOW96ppxdh48Y4airC8oL9PUXsdYBOa+Eb5iarmPlnGxtnQ6DZuVMfYOT81PQ 457 | 2HjsAnYEu4OdCgwMjImJKSwsJO+VxTflfoWsvlRYU9yQNn7VM3DTVolkQoMgpiT4CQSO6b+joyM3N3f5 458 | 8uUBAQFisR6sfNSoWZaWq+3ts7l9gLjcxvkOZBrbrpcyHUZD6wRDivvKOVswOF17cJKScr9yDlWR82JW 459 | zstZOcegE1pYbGblnIlEbGfHyVkBGhuJTcUGY7Ox8WPHjl2wYMHmzZu5c861tbUaUCIOf1AeyC4GWkTY 460 | ak7yDNy0VdIhHoESuZvzEypwODg9QYgknpaWFh4ejnQoEjEymQMiuYHBTKmeQWpdjgpfrlwOjxnaLBhS 461 | ptYDIedU7UEJWoPWaQ2KUUVM6zUnuLMzT87wDch5hbFxNCvnBFbOW2xtFW3Q1jbTwmKticlCQ8MJ2Dxs 462 | pI+PD45LJNqioiL+mWcMcfTkqOIdOn8sZW71i5satwpurlUiCNLcTc+ZUIHThgkH5xNva2traWnJzs5e 463 | uXKlsbHxssRlbbfb2u50tN/pan/vQMd73R3vHep4/0jn+0cX9EYM2ysaWikYUsSaBkBzPRBy5npgtCpi 464 | 1OvBI/8wYqhMNoOTs4HBUipn2gZNTVeNGhU+alSInt5kudxLIrEQChlXV9epU6cuWbIkKSmpvLxchSyF 465 | y3/1Anlz359MmVvPgxutEsmEBkHkbs5POIFzDs4nDlcBcUz2syNnH/vkGOrIx0cOfXTo4IOD++/v77zb 466 | 2f5ee961fFm7zqCaoYOKhg7KfXNQzvDBOSMGZ49EDUofOShZc9AGzUGxmoNiNPsixn9J/Y/N0BEj7KTS 467 | iQwznmHGSCToXS5CoZ1AYKGtbaCpKdHT07OxsYFmZ86cGRERAU+AbKktAC5HlnvYhIPLvXoBiiHvCw46 468 | lJQC209d9Jc8Gzed4Pl+QgVOHRyzJSXOaRyukpKS4jvNt+Viy4lPT5x4TOr44+NP65PjY3rGCNoEmrWa 469 | I7aPGF44/M28N4fmDh26dejgzMGDUge9kfDG67Gv/3HNH/8Y9cc/ruhbK//42qTX/t8b/08ikejq6uKg 470 | sbKycnR09PLyQqtAKIJ9rVu3Lj09HUdVfn5+cXExfd0N9EsfkKJn8zmyu3bt4l63ALjt7e1QCY5OtH0N 471 | KmQsBa1/e9HfpoKbSyY0d9Mxh/rJw4cPOQdXJw7V2LrYFrYXnvz0JIqw5oqFvvjaYvFhsWinSFgjFFYI 472 | hWVCYalQuF0oKBYICgSCbIF2irZ2orb2Rm3teFJa8VpPK05ruN1wPz+/xYsXg+nSpUvRjWFT0dHR4JuQ 473 | kIBElJGRgS5dUFBQVlZWWVkJxBAvlS3VLJ8sFn1dCIWLPo/jEkcn2r4G5aKA9PMt+mv5uLEobggcuFUE 474 | DuKcpXDEsZV6hnrJFcmnPj916jNSJz87SYqFjtp6Z6vxcWPxHrGoXiSqEonKRU9BFwkEuQLtNG0CerOC 475 | skqNnDoSngCfhTUB8YoVK1atWoU0tn79+o0bN4JyZmYmKMMoIGTc5RQx+AIuyGJRzdKH/ShZLO5FIbBB 476 | HJc4OtH2CWgFm19gqeDmBE79hAocxCFwODhnKZQ4vBsIojOjT39xmtTnpwluWiz0A58ccOlxkXRKxE1i 477 | cbVYXCkGaFGZSFQqEpYIhflC8jTRVIEgSSDYJBAkqJZ2pPZwk+Gw3cjISKgYiNesWRMbGxsfH5+YmIjY 478 | w72iFEKGEUPC0C+FC7JoHmghVLMIqZQsfcAPUYrCxUGJYQ0dCGOEhgLJL7k43HyBc37COTi1FI74hg0b 479 | lsQtOfPlGVJfkFIQZ6GjplycIj0kZXYxkjqJpEoirhCLy8XiMrFou0hUJBJtFQnThMJkoXCzULhRKNgo 480 | UJQStOYYTfqSGRgF1tq1a/EXN23ahJYAU+aEDC+Giili8IVsqRugeaCFUM1yZOlrbRClEKhggPS1ILdv 481 | 38Yx+muA5hZHXEXg6sShppDIkIP3Dire++DLHgVxJfSIGxE6J3Ske6RMA8NUM0wVI6mQSMolkjKJuEQs 482 | zhOLMkSiNJEoSSTcJCS1sU9pz9MewYyAXUDCsGPkXzgygtqWLVtycnLQ9yBkeAXaHfobfcya8oVmKVb0 483 | D4oVmkVHAVnIlpKF71G4sEH0HnQgHKO/Kmi6ONx8gfOJYycDwwL3vb2v96teVM9X5E0mSCmhp72fZnrK 484 | VNYukzZJpXVSCpqpIAXQkkKJJEciTheLUxUvURFt6lPCdUItB61Zs2bBJcAXKgbi1NRU3Lvbtm1DtKio 485 | qIBXwIvR3IAYngvxgi91A4qVEyxGMJBFVAXZu3fvgix8j8KFDSLO4ujEMfobgOYWRxy4OeLYw0lzJiHM 486 | PX3bFBY3B732Ya3DWQd5l1y2UyarZ5/BXyWVVpJiyhimhGG2MeTFKWkSSbIEoElt7lPak7R9fX0BF+0O 487 | fKFiIKZegWiBaAw7RvgFYpgvJHzu3DnwBVy0Dc4KkEopVqpZzGKULLo6yFK4SFbo9uj5OEZ/S9Dc4ojD 488 | DQOCAnac2XH267Oop6yVdfiLw6MvjNY5rCNvlcsaZbJamaxGJqsiJa2QSkul0gIpk8Uw6YwkVSJJ7KdE 489 | i0Ra+lpwDBgxQgWMgqY3HEYIyPAK2DEiGowCKgZiGC7EC77QLOBSrGCKVEqxUs1iFuPIotMALjwQC90e 490 | PR+u+EKApgs68p/hX3eqjlJWKQp68pXJusd0dfbqyJvk8nq5vFYur5HLq+WEdZlMWiRlchgmk2G2MEwK 491 | wySplmSDROAiCAsLA18sGEVhYWFJSQm8ggoZHQ9ChhfDKKiK4Qzgy7cCjikWWjfFyieLTkPhwgaRr+CH 492 | cMUXBTRGLGi57nQd93ZWiuKxnnN9ju5JXZ12HXlLH8rkXfEqZLISmWybTJollaaTt/WQJvcpJpmAFk0S 493 | TZkyBaENiyKGV0DICMjUkREqIGT0OhgxjAIWAcOFeKkVcFhhBRzWgchi0d7Ddv1/vhCgsauTQyYTx1Ch 494 | zKvFNxcbnDbQ7dAlb4y3Q/l+3uwbAZH3pt8ul+XLZNnsm6ekqVKmJVkoEegKEJDhxRQxFTJNb5g7YBdw 495 | ZMQJCBlGjMwAFUO/1BAAF0wBlDLlY+2XLBYaD9vyyez924PGbs9YNKPlUosKWX6tvLVy1JlRul0s5Ubl 496 | m3lzlMvk5I2ABng7XlrSNVKhvXD16tVAXFpaCsRIb2i8oIwxj6OMxIaUBsoQMvwXlKFfqlmKlQLFokzp 497 | 4rByZLFo48Giu/lbgsYOoCOFrgxtu9mmQpZfMbdjyHt479clbyCmTrmcfWP6HJnira1SVRHTEvmK5s2b 498 | B8T0lAWEDLtoYd9oE2MIAhzmDlBG30PTo08IgFFAxdAvRcwBpWsgrFiK3eu7fjPQaC+YFJYlLDv04JAK 499 | WX6tu7NOlTJMg1Kukssr5ORd6bcS0+j3jelpSWZIBAIBcgV9yn1NTQ3SBVrfHvZdNkEZAx4cA5Q5LYMy 500 | LBj+AFugiClWBUvlUuzMc6zfBjQaupGpUWxOrApWlQJl8x5z3QPPpLyNpQzTGIAys4gRGgkRlrkzyJQy 501 | HAMx7hD79m2cL4My1TIoQ8iwCCCmfBWb/lPXbwAau+fk5ZRem66CVaUUjgHKu3V0mpSU6ZsNUsol7Fvw 502 | PtuaV0lFdqK1a9fS147Qk5yUMgbr7u7uEydOICwjYyDGISMjwKH1US1TI4aQ/33KWL8qaKgDvWhC8ISy 503 | g2UqWFUK3e+pY/SlTN5sEJS3y+V5P9QAE6Rib/HixYs5yrT77WLfIe/AgQM0L1++fBnDNMIyzRjofmh9 504 | nCn/LHLG+vVAo8msX79+YczCfdf3qWBVqfCb4SRjqPgyR5kNc+TNdyll9fd2VJYkgLwrPaUM06irq0Na 505 | R16m5+GoNXMNED0DYRkxDi365zUNun4l0Bi3bJxsEgoTMN2pYFWpkOshhqcNSZL79ygzMxiBRIDZmm/N 506 | iBlogAhzsGYMJufPn7/W3xsK/rymQdcvDhpbj2EX88j2/dtVmKrUkS+PkLf5P6WnmEqeTbnf9ylVFhPK 507 | CA0UDRCLhjm+NR8/fhzj3xX2PXbv3r2L2Q+D3y9kGnT9sqBxeCJdrExe2XWnSwWrStU/qve55KN3XE+3 508 | vS9lNmP0T3mAyMyEMyIzUXx8PL8BqlgzUjOSDx2ykZphGpitfyHToEtje1HiL1HpqdHTpoz1muCRVpdy 509 | 9OPDz65NN+ItjpkJ27UEDVra1ZraZZrapZraJZraxaS0Ckdq5Y3U2jpSa8tIzaQRmptHaG4coblhhGZc 510 | PzViwZvDjAf7+DiHzJ4UOmfS3NAp8+dODVswfdHCGUvDgyIj5kStmBezeuG6teEJG5YlblyRlrw6c8ua 511 | 7MzYbTlx+dviC/MSivI3FhdsKincrLJH/2b9IopubW01tzFflbrqB4WMQsCw6LHQPairu0dXp1ntPAZN 512 | cs+nZRLmnETLly/ntMw1QEyA1JqRmmHNSM3UmmmeoxMgnU24wUSxMz/T6qPo0uIkWmUlycpKKd+OSkVV 513 | lKLSKsrSKsu2oKrK0xVVkVFNKrOmMjM+LsLX121SyIRtu7cee3REtT7pU10POyac9ZccFglbBcJ6bWG1 514 | trBcW1imLSzVFm4nJSjWEhRoCXK1BBla2ila2kla2pu1tBO0tOO1BLQSnpZ2pOYI++Hj/EZHrVy8Kip8 515 | 9aqlMdERsWsjN8RFbUxYk5y4Lj0tPic7qSA/vbQkp7oyv2HH9p3NFXt313a0NR7o2nmoe/eRw3uPH207 516 | cbzz1InOM6f2nzl1oOf0wZ4zB3vPdPf2HDrbe/gc6uyR82ePXjh37ML5YxfPH7944cSliycvXzx1+dKp 517 | K5dPX7185uqVnmtXet662vvWtbPXr527/ta5t6+ff/v6hZ9N0Qj8qampPpN8UqpSznxxRkW26lX0QZHX 518 | Ra9+TFlFy5j9uKlk4O4nXScVe4kXLFjAhTluAkTM4Bpgb28vl5r7teafN2nw18+g6KyM9cFBE8xsTZYn 519 | Ltt5pVlVxfxSannRlYVGRw2EbdrCJm1BjbagUilkTstFWoJ8LcFWLe10Te0UTYWW458WX9HaqzRHuAz3 520 | 9naLWrEoagXkvCR69bK1ayLi1q2M3xCduGltWmpcZsbmvG0pxYWZFWW5dTVFTQ2lu3dV79tT19XRdHD/ 521 | zsOcnI91nDzRefpk14ul6AcPHhQVFVnaWy7fvLz5QrOKZvut5k+aJ16ZqHdajyRlzNZqpkwCBrRcxp6T 522 | o2eLBp79UNL1UvFocUhISEVFBadlGubQKlRiBp1N+Cc0uNNGv5A1c+snKjotOXrWzABDU/15q0PLDm1X 523 | Ve4AFXktwuy4iahDIGzWFtRqCSq1BGXaglJtAatiUiXagkItQZ6WIEtLO5XVcqKm9iZNvpZpUUVrRxEt 524 | e3k6r4gMW7liMdyZWPOaZetiYc2rNiXEpCSvz0jfmJuTVJifXrY9uwrWXF/SQqy5pn3fjv2dzd0HdkHO 525 | Rw/vPXYMcm6HO5862fVCKPrcuXNJSUn2rvYrklY09jaqCHagQkyGkPVP62OwVqSLhgFMGQGDnsVHDXzm 526 | EyWNIb4cGhpKtYzFaZlGZvpMAXoKlB8zfunZpN/1vIrOz01YtmS2l6ej02iHFSnL63trjz06rCxV5arU 527 | /MtziSO3s46sELKWoFRLsF1LAAmjqCkjYGzVEqQjYMCUNbU3a2pvhJZpqSpae5nmCLs3fXzcVywPo3Je 528 | HbVkTfTStTHLYc2bEDOSYrekxudkJeZtS91enFlZvq2+trCpoax1J7HmzvaGg/tbug/sPHKIyBnufPxY 529 | 28njHb+lopE6MzMz9Q31Zyyakbkj8+hHR1XU+ozacm8LiRYn+zpyXyH3MeVcXsAYICyjmOUM8nJ4eDg/ 530 | Y/DHv66uLvrQFDb+6tWrdM7+iH2JHz9m/ArWzK0BFb0pYTmGKycHS0cv+yXxi0oOFh19dJhfz1Z04Xv5 531 | vj1jmENi4R5tYSOihZaggidkomVS2lxSVjVllXqqZa25I4ebDvP391kesRByZmPG4jWrl8TGLF+/bkVC 532 | /OrEzYgZG7IyN27bipiRUV62tbamAKl5V0vFntaajrYGNmm0HDrYCjkfO7L32JF9cOcTx9t/VUVfvHgR 533 | QQLG5+ztHL4uvGBfwcnHJ1V0+uza/Xj37OuzySMjh3R125QZmUYLdSGXk6SsOLOMqe+ZpoxiQsl5jOjo 534 | aBUtc77MaZmezoeWucj8JftyVf6jU7+Olukiik5NXrU0PMh/vKe5maGDh+3cVSEZDVs6brcpzkX0FTJX 535 | 6opu+aAp+EIQ7JjkihZtQb2WoEpLUM53ZKWQizS1CzW1t2lpZ/cV8lNTVimiZc2JI95khs4InLA8YkHk 536 | 8oWw5qiVi6JXLVkbs4xoecOqpM0xqcnrMzM25m5NLirYUsZOgDvqiluaylt3VbfthTVjCGxGcD50cNfR 537 | w3tQx4/uY+PzL6/owMBASwfLwIWBcXlxNSdqfvB8cb+179N9C28stDlro3eUPcnZytoxP1dwQuY9EKU4 538 | fUFNeeCkjJImSCUBEoFEsGXLFv55DDr70byMjDGQltUfaf01tUyXxrbdW9tu7eVOpPVTalqmReVc+n7J 539 | 1HOTjY4YCDu0hTu1iIqr+6pYRcgFELKmdramFl/ICSr67VNaSzVHOL3p4my3aGEwq+UFKyPDVhEth69d 540 | s2x9LLQclbiJajlhKyJzQVppSXZVxbZ6MgGWwZqVqZnIGUnjcDfnzsgbv5aiVbT5/JV9P3vylcnkkT14 541 | cfsPqLiPIz+3kFHMIkZkJ+Ie96Narq+vb2xspA+X0Nnv6NGjyMtcxlDRMndmjjub8SvLGUtDVb/q1VfI 542 | ux60hF9eZH/SVtQtEOzREjRqCWo1BVWaRMWchHkqJkKGHUPIuZraWRDySK3kkVqJmlo/JGTUSJiybOjk 543 | Sb4RS+dFLJun0HLUoujVS9auiVgfG0m0vDEmNUWp5fy07cVZVRW5dTWFjQ3bdzaV724l1tzV0bC/E0lD 544 | IWcU3PnFVXTG/YxpV6dZ9lrqHSO5mAx4LcpE0a+KqR1XKjMyfQIGosVzCJlMfb5igeCpKfPDMj2/3NHR 545 | 0d3dTc9jICzRZ35yeZlmjBdBy3T9sKIzb6VPPz/V/Jip8KA2kXCTlnatpnY1JKwpKNUUbGerBNVXxTRX 546 | 5Glq52hqZ2gSFSdByCO1No3UShiptUETpY1SUzFKc/aI4ebDvD2dwxeHRCydq9DyioVEy4qMEZkQv4r4 547 | csq6zPQE9lRGamkJtLy1trqgkZxoLt+9q6ptT11H2w7I+UAXDc4kbMCd2WnwxVD0ia9OZN3PQhx2OudE 548 | zrR181xYXcJ9VfzUjpErCthnxVE7xrD3zIyMIuliikSoL4yNjeWEzDfl3bt304BBH8bu7e2l5+ToeQz6 549 | /FrMfioZ47fVMl19FF30XsGSK4u9T3sYHtEXHlDqt05Tu0pTu0L5UN529tE8ImG2ipU3IORi1o7zWTvO 550 | 5Ox4pNbmkVoboWJ+9aNozXkjhtu+6exsGxoyfemSkGVLQpcTLc9fuSJs9crFa6Ix+0VsWL9iY/yqpMS1 551 | W1LXZ2Vg9ksszN9Suj2rkvgytIzIXAYt79tT276vrpPIGUmjqfsAOa1xuHsXzRu/jaKLPyyOuhWF/OBw 552 | zoE8AfmwLvHffexEN5B+n6Hi7XJ5ofI8Mp30YMcDn7WgRYQ8TSI0EkZFRfHTBZeUMfXtU14IEabMBYyb 553 | N2/S54o/Yq+5RZ9iq56Xf1st06UhPKAl2KslQARuUIq3nCdepX77FPvgNNEybhSNVHjxVtaLVVQcryJk 554 | rp4qWjNkxHCbYY4O1rNnTVkSPgdahi8vj5i3MnIBO/iFx6xZuj52+Ya4lZs3Ricnrd2SFpeduSkvl539 555 | tmdWlSu03NxY2rqTROa2vbWw5s72HQc6m9g5sJm682+s6H6Uqy5eWnwJ8xMFjcbUi59bxShEC8x7Qj3h 556 | Kvad9tSFjHRBH/FDUj7CvgbtLHshxOvXr8OU7927x4Xlb/pe3uU3mf2evTQGlC2/WAkrisSJkdr5I7Vz 557 | R2pnk+daEAmjIGGaKAZUMa/iNEdOGf7mqKFurvZzQ6YTIYfPYU157gqYciQJGGtWh8euXRbHBoykzWtS 558 | kxEw4rdmb87fllxcmF62neTl+tqCxnr4cunuXdBy9b499IQGGQJRB4mc4c6KvPFbK1pFtvwaSMKIE5wR 559 | c4nih6IxVxj2xO7igICAhIQElWihLuTDhw+fUF43lbsQIkz54+e4stkLtTRUxYvi65c+UahgpFY++1yh 560 | rJFaaSO0ktn6YSNWLc2wEcPdhw3TGuLn67F4UXD44tnQ8jKY8rK5kcvmrVi+YNXKsOjVi2Njlq6LXR4P 561 | U94UnZK4Np2YcgIbMDD4pVeUZVdXbSNaJhmjtJWcZa5ktQxrJnKmwZlk5xdU0er6RVXI5aVkriOnjDkX 562 | 5iT8HEZMS7qKtWNDYVhYWGFhIWfHdNhDRqbRAvOeupBpurijvG7qs035BdQyXRp99FukqRAvfa5b5kjN 563 | LSM0k0eQZ7wljtDaPEJr0withBFa8SO04kaoqHWg0lw2YsTYN4fpDHFxsZ01a+LiMAg5eMni2UuXzIlg 564 | kzJMOWrlwuhVi9ZGL1m3NiI+bsXmjUjKa7akrsvM2LA1exNrymmlJGBg8MvbUVfQ1FCysxkZA+NfJay5 565 | bW8NtNzRVt/ZXs+e1iDZ+cVTtIp4ESHgv/SxO06/NEj80FynUkTFEyVCE2FwcHBaWhpVMT1lQe2YnrWg 566 | wx4y8sGDB2m0UBcyPX3xed/rpr7gpqyyNLRyR2ohPGSM1ExjlcuKlzxjkz5pM2GEZrziiZpExfxSEy9X 567 | IxcMH+41bJh0iJOjdeD08YsWBi0OmxW+KHgphBwesmwpmy4i56+CkFcvXrtmybpYCDlyU0JU8uaYtJTY 568 | zPS4nOyNeblJRQUppcXp5WVZNZVba2vyGuoKqZZ3tZTDl6k1t+/FEFgLLbPuTAz6BVW0QrkoKJczX4j3 569 | uf2XX0wYIx4tFuoI586dm5mZ2a+KW1paWvu+dwMd9mhGfuuttxAtBhIy0oXKo9cvvpbp0iCy5ZSrFG+/ 570 | 9QxFa64YMWLim8MshhgZ6Xp7Os2ZNTls4UxOyHDkZXDkpaErls9duWLBqqiFayDkmKVxEPKGFZsSWEdO 571 | WZuRFrc1a+O23M2F+SklRWnlMOWKnJoqhOX8xvqi5saSnU3QchkiM9UykfO+2o59cGeEjRdf0T9JuVwx 572 | 4YxkPDHiiRMnxsTEcBKmAx6XKODFnIq72HcVOHr0KLXjCxcu0Es10OsI0IxMo4W6kF/8dDHQ0lCR7TOK 573 | L+eRi4cPHzdsmNmQIUMGubrYTp82buG8GWHzZ4QtCFoUFhS+aBaixdLw2cuWzomMmLsyct6qFQtXRy1a 574 | uyZ83dqlG9ZHJGwg0SIlMXpLKufImwvykkuKtpRtz6gsz66u3FoPU64vbNpBtbydaHknsea9u2lqrkG9 575 | VIpWE+kzCkGCmcGIXcRCGbmObFxcHH+0oxLmjBi5mD6m19HRQb2YqvjMmTPnz5+/fPky344//PBD+iJ3 576 | 7joCNFq87ELm1nMpeuSCN4l+LYYM1RxsbWXiO8ZtTvCkBfMCF8wPXDg/kNhx2EyoeGk4UXHEspDIiNAV 577 | kfOiVixYHRUWE70oNmbJhnVsQE6IStq8OjU5Jj11XVbGhtychLxczHsQclrZ9i0VpVnVFTl1Ndsa6vIb 578 | dxRAyy1NVMul0PLuXeV7iZyr9u1BvUKKlsZKmbmMZJxEZCUSCAT0OshF7DU5IV6qXwQJzoU5Ce9TXhmO 579 | Xrns+PHjSBS9vb3Ui69fv05VfO/evQ8++IDaMc0V9CE+DHvqGfnlFTK3+ih6ZMTwETOHDfceCvMdqjXY 580 | 2FjPxdlmQoD3vNCp8+dOWzBv2oL50xcuCFyklPCSxUTFMOLlS6Fi1otXLohetTAmevG6tUviYpex6XhF 581 | 0uZVKUmY9GKz0tfnZMXn5mws2JZYVJBcWgwhp1eWZVVX5tRWs6bMarm5Ab5cvLOpBFpuhZx3le8hSaPi 582 | 5VY0YgMTSMIvUS4j+MHrIMN/aYrg9EvnOrhwd3c3lfAp9uJwMGLk4mvKd4N677334MXqKv4L+yYkfDt+ 583 | lYTMLQ19XamVpbGHu92EAK+Q4Enz2BfmKcRLCvqdAf0uDpu5ZHHQEjZLREDCy0IQiqNWQMLzWQmTRLE+ 584 | lk0U8cs3b1wJFacSFa/NSl+XnRnH2vHmovykksKU7cWp5SRaZLJCzq2vQVLOa6xHWC6ElluaiJZ3NpdA 585 | y607kTQQnF8JRUOwfM1i0dhAlQvnpREY4kUKhnjhv9DvAfbKnNAvhjoECc6FOQlzRoxcjAGPXlyLRmNO 586 | xfx0/EqqmL80FsyfBuWGLUAR8S5eSMQbvgjiZf13CfQ7m9Vv6MrIuatWzotetWDNKpolwuNil8SvXwYJ 587 | w4gTN0WlJK1OS1mTnrY2M319dlZcbnZCfu6mwnzYcdL2otTSEuSKjKpyOHJ2bRUx5R2123bAlOvzmxqg 588 | ZSJnquVdzUga2181RVO3hWZ3P991kCFeBOFz585R/V69ehVDHfT77rvvci788OFDhGJqxF+xb7iFXMwl 589 | iv8cFfOXxtLwWcuWoIKXL5sdGYFBLmRlZGjUirmrqP+S8xJha9dAv4vj1i3ZsH5p/IaITfGRiRtXJpMs 590 | sSotJXoLJLwlNjsDEt6wbWtC/raNBXmbiwqh4pRSYsdbKsvI62qrK7Ig5LrqrXU1udByQz3ryyRjFDY3 591 | FrWQUrjzq6loCBZuSzX7PNdBvnnzJiLE7du332evH0ktmAYJ7hJ8cGEqYRUj/k9TMX9prI5CbJi/ZvWC 592 | mOiFsWvC1q1dtH6tUrxxyzbGR27eGJm4aUXy5qhU6DcZ+o3J2EKyRA5x4bhtOfF5ucjFmwrzEoupikuI 593 | iivIq2vhyBk1lVk1ldl11TlIFztqiZZ31G1jtZzfhPGPuvN/gqJhtRd/zHWQIV5ECL5+YcFckFBx4f9k 594 | CassjY0blm1KiNicsDxxY2TSJkxxMF9WvDDf1DXpqTGZ6WuzMmJzMtdtzVrPuvCG/NyEgm0bi/I3Fxcg 595 | FydtL04pK0GlkdfVlqZXlqdXwZErM2urkC6IllFUyw11qDylO/+HKRpW+6Oug8z3X75+qYSh398l3O/S 596 | SE+NzkiLztiyJnPLmqz0tdkZyA+xrHjhv8SCqX4L8jYVF0DCiSXkFYlJpcXkRbVlxI5TWTveAjumV+1Q 597 | aLlaoeX6mq2o3xVN3v0Ni7otNEsnNypb2C6nXIQHFfFy/vu7fp9naeQS2cblbd2Ays+NL9iWUMBeV4gt 598 | ouKSQhTiBH2BeErZ9hTWixVX7SBa5l2BhmSMKuTl3xWtpmi+YKlmVWSLpaJcLMXd9Pt67qVRmLcRRSXM 599 | ipcU73XhimscoJ7nmkq/K3pARbMxQSFYLIVi2aW4L35fP8fS4CSscnUDZfV/BZrfFf2jFa0A/vv6hdfP 600 | cJWw3xX9u6JfoPW7on9X9Ku1flf074p+tdbviv5d0a/S+r//+/8BPTxUq6Ub7iwAAAAASUVORK5CYII= 601 | 602 | 603 | -------------------------------------------------------------------------------- /PasswordGenerator/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | True 15 | 16 | 17 | True 18 | 19 | 20 | True 21 | 22 | 23 | False 24 | 25 | 26 | 8 27 | 28 | 29 | ~!@#$%^&*()_-+={}[]|\\<>/? 30 | 31 | 32 | True 33 | 34 | 35 | False 36 | 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /PasswordGenerator/Form1.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace PasswordGenerator 2 | { 3 | partial class Form1 4 | { 5 | /// 6 | /// 必需的设计器变量。 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// 清理所有正在使用的资源。 12 | /// 13 | /// 如果应释放托管资源,为 true;否则为 false。 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Windows 窗体设计器生成的代码 24 | 25 | /// 26 | /// 设计器支持所需的方法 - 不要修改 27 | /// 使用代码编辑器修改此方法的内容。 28 | /// 29 | private void InitializeComponent() 30 | { 31 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1)); 32 | this.includeNums = new System.Windows.Forms.CheckBox(); 33 | this.groupBox1 = new System.Windows.Forms.GroupBox(); 34 | this.generateGUID = new System.Windows.Forms.CheckBox(); 35 | this.charProbEqualButton = new System.Windows.Forms.RadioButton(); 36 | this.charTypeProbEqualButton = new System.Windows.Forms.RadioButton(); 37 | this.restoreDefault = new System.Windows.Forms.Button(); 38 | this.specCharacters = new System.Windows.Forms.TextBox(); 39 | this.passwordLengthBox = new System.Windows.Forms.TextBox(); 40 | this.label1 = new System.Windows.Forms.Label(); 41 | this.includeLowercase = new System.Windows.Forms.CheckBox(); 42 | this.includeCaptial = new System.Windows.Forms.CheckBox(); 43 | this.includeSpecCharctor = new System.Windows.Forms.CheckBox(); 44 | this.GenerateButton = new System.Windows.Forms.Button(); 45 | this.passwordBox = new System.Windows.Forms.TextBox(); 46 | this.CopyButton = new System.Windows.Forms.Button(); 47 | this.aboutButton = new System.Windows.Forms.Button(); 48 | this.exitButton = new System.Windows.Forms.Button(); 49 | this.savePasswordButton = new System.Windows.Forms.Button(); 50 | this.groupBox1.SuspendLayout(); 51 | this.SuspendLayout(); 52 | // 53 | // includeNums 54 | // 55 | this.includeNums.AutoSize = true; 56 | this.includeNums.Location = new System.Drawing.Point(15, 29); 57 | this.includeNums.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4); 58 | this.includeNums.Name = "includeNums"; 59 | this.includeNums.Size = new System.Drawing.Size(91, 24); 60 | this.includeNums.TabIndex = 0; 61 | this.includeNums.Text = "包含数字"; 62 | this.includeNums.UseVisualStyleBackColor = true; 63 | // 64 | // groupBox1 65 | // 66 | this.groupBox1.Controls.Add(this.generateGUID); 67 | this.groupBox1.Controls.Add(this.charProbEqualButton); 68 | this.groupBox1.Controls.Add(this.charTypeProbEqualButton); 69 | this.groupBox1.Controls.Add(this.restoreDefault); 70 | this.groupBox1.Controls.Add(this.specCharacters); 71 | this.groupBox1.Controls.Add(this.passwordLengthBox); 72 | this.groupBox1.Controls.Add(this.label1); 73 | this.groupBox1.Controls.Add(this.includeLowercase); 74 | this.groupBox1.Controls.Add(this.includeCaptial); 75 | this.groupBox1.Controls.Add(this.includeSpecCharctor); 76 | this.groupBox1.Controls.Add(this.includeNums); 77 | this.groupBox1.Location = new System.Drawing.Point(10, 10); 78 | this.groupBox1.Margin = new System.Windows.Forms.Padding(2); 79 | this.groupBox1.Name = "groupBox1"; 80 | this.groupBox1.Padding = new System.Windows.Forms.Padding(2); 81 | this.groupBox1.Size = new System.Drawing.Size(414, 226); 82 | this.groupBox1.TabIndex = 1; 83 | this.groupBox1.TabStop = false; 84 | this.groupBox1.Text = "选项"; 85 | // 86 | // generateGUID 87 | // 88 | this.generateGUID.AutoSize = true; 89 | this.generateGUID.Location = new System.Drawing.Point(15, 193); 90 | this.generateGUID.Name = "generateGUID"; 91 | this.generateGUID.Size = new System.Drawing.Size(98, 24); 92 | this.generateGUID.TabIndex = 7; 93 | this.generateGUID.Text = "生成GUID"; 94 | this.generateGUID.UseVisualStyleBackColor = true; 95 | this.generateGUID.CheckedChanged += new System.EventHandler(this.generateGUID_CheckedChanged); 96 | // 97 | // charProbEqualButton 98 | // 99 | this.charProbEqualButton.AutoSize = true; 100 | this.charProbEqualButton.Location = new System.Drawing.Point(15, 164); 101 | this.charProbEqualButton.Margin = new System.Windows.Forms.Padding(2); 102 | this.charProbEqualButton.Name = "charProbEqualButton"; 103 | this.charProbEqualButton.Size = new System.Drawing.Size(195, 24); 104 | this.charProbEqualButton.TabIndex = 6; 105 | this.charProbEqualButton.TabStop = true; 106 | this.charProbEqualButton.Text = "每个字符出现的概率均等"; 107 | this.charProbEqualButton.UseVisualStyleBackColor = true; 108 | // 109 | // charTypeProbEqualButton 110 | // 111 | this.charTypeProbEqualButton.AutoSize = true; 112 | this.charTypeProbEqualButton.Location = new System.Drawing.Point(15, 137); 113 | this.charTypeProbEqualButton.Margin = new System.Windows.Forms.Padding(2); 114 | this.charTypeProbEqualButton.Name = "charTypeProbEqualButton"; 115 | this.charTypeProbEqualButton.Size = new System.Drawing.Size(210, 24); 116 | this.charTypeProbEqualButton.TabIndex = 6; 117 | this.charTypeProbEqualButton.TabStop = true; 118 | this.charTypeProbEqualButton.Text = "每一种字符出现的概率均等"; 119 | this.charTypeProbEqualButton.UseVisualStyleBackColor = true; 120 | // 121 | // restoreDefault 122 | // 123 | this.restoreDefault.Location = new System.Drawing.Point(296, 59); 124 | this.restoreDefault.Margin = new System.Windows.Forms.Padding(2); 125 | this.restoreDefault.Name = "restoreDefault"; 126 | this.restoreDefault.Size = new System.Drawing.Size(109, 34); 127 | this.restoreDefault.TabIndex = 5; 128 | this.restoreDefault.Text = "恢复默认(&D)"; 129 | this.restoreDefault.UseVisualStyleBackColor = true; 130 | this.restoreDefault.Click += new System.EventHandler(this.restoreDefault_Click); 131 | // 132 | // specCharacters 133 | // 134 | this.specCharacters.Location = new System.Drawing.Point(139, 63); 135 | this.specCharacters.Margin = new System.Windows.Forms.Padding(2); 136 | this.specCharacters.Name = "specCharacters"; 137 | this.specCharacters.Size = new System.Drawing.Size(148, 27); 138 | this.specCharacters.TabIndex = 4; 139 | // 140 | // passwordLengthBox 141 | // 142 | this.passwordLengthBox.Location = new System.Drawing.Point(100, 101); 143 | this.passwordLengthBox.Margin = new System.Windows.Forms.Padding(2); 144 | this.passwordLengthBox.MaxLength = 3; 145 | this.passwordLengthBox.Name = "passwordLengthBox"; 146 | this.passwordLengthBox.Size = new System.Drawing.Size(91, 27); 147 | this.passwordLengthBox.TabIndex = 3; 148 | // 149 | // label1 150 | // 151 | this.label1.AutoSize = true; 152 | this.label1.Location = new System.Drawing.Point(11, 105); 153 | this.label1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); 154 | this.label1.Name = "label1"; 155 | this.label1.Size = new System.Drawing.Size(84, 20); 156 | this.label1.TabIndex = 2; 157 | this.label1.Text = "密码位数:"; 158 | // 159 | // includeLowercase 160 | // 161 | this.includeLowercase.AutoSize = true; 162 | this.includeLowercase.Location = new System.Drawing.Point(265, 29); 163 | this.includeLowercase.Margin = new System.Windows.Forms.Padding(2); 164 | this.includeLowercase.Name = "includeLowercase"; 165 | this.includeLowercase.Size = new System.Drawing.Size(121, 24); 166 | this.includeLowercase.TabIndex = 1; 167 | this.includeLowercase.Text = "包含小写字母"; 168 | this.includeLowercase.UseVisualStyleBackColor = true; 169 | // 170 | // includeCaptial 171 | // 172 | this.includeCaptial.AutoSize = true; 173 | this.includeCaptial.Location = new System.Drawing.Point(125, 29); 174 | this.includeCaptial.Margin = new System.Windows.Forms.Padding(2); 175 | this.includeCaptial.Name = "includeCaptial"; 176 | this.includeCaptial.Size = new System.Drawing.Size(121, 24); 177 | this.includeCaptial.TabIndex = 1; 178 | this.includeCaptial.Text = "包含大写字母"; 179 | this.includeCaptial.UseVisualStyleBackColor = true; 180 | // 181 | // includeSpecCharctor 182 | // 183 | this.includeSpecCharctor.AutoSize = true; 184 | this.includeSpecCharctor.Location = new System.Drawing.Point(15, 64); 185 | this.includeSpecCharctor.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4); 186 | this.includeSpecCharctor.Name = "includeSpecCharctor"; 187 | this.includeSpecCharctor.Size = new System.Drawing.Size(121, 24); 188 | this.includeSpecCharctor.TabIndex = 0; 189 | this.includeSpecCharctor.Text = "包含特殊符号"; 190 | this.includeSpecCharctor.UseVisualStyleBackColor = true; 191 | this.includeSpecCharctor.CheckedChanged += new System.EventHandler(this.includeSpecCharctor_CheckedChanged); 192 | // 193 | // GenerateButton 194 | // 195 | this.GenerateButton.Location = new System.Drawing.Point(138, 256); 196 | this.GenerateButton.Margin = new System.Windows.Forms.Padding(2); 197 | this.GenerateButton.Name = "GenerateButton"; 198 | this.GenerateButton.Size = new System.Drawing.Size(159, 34); 199 | this.GenerateButton.TabIndex = 2; 200 | this.GenerateButton.Text = "生成(&G)"; 201 | this.GenerateButton.UseVisualStyleBackColor = true; 202 | this.GenerateButton.Click += new System.EventHandler(this.GenerateButton_Click); 203 | // 204 | // passwordBox 205 | // 206 | this.passwordBox.Location = new System.Drawing.Point(11, 305); 207 | this.passwordBox.Margin = new System.Windows.Forms.Padding(2); 208 | this.passwordBox.Name = "passwordBox"; 209 | this.passwordBox.ReadOnly = true; 210 | this.passwordBox.Size = new System.Drawing.Size(412, 27); 211 | this.passwordBox.TabIndex = 3; 212 | // 213 | // CopyButton 214 | // 215 | this.CopyButton.Location = new System.Drawing.Point(59, 346); 216 | this.CopyButton.Margin = new System.Windows.Forms.Padding(2); 217 | this.CopyButton.Name = "CopyButton"; 218 | this.CopyButton.Size = new System.Drawing.Size(131, 34); 219 | this.CopyButton.TabIndex = 4; 220 | this.CopyButton.Text = "复制到剪贴板(&C)"; 221 | this.CopyButton.UseVisualStyleBackColor = true; 222 | this.CopyButton.Click += new System.EventHandler(this.CopyButton_Click); 223 | // 224 | // aboutButton 225 | // 226 | this.aboutButton.Location = new System.Drawing.Point(185, 401); 227 | this.aboutButton.Margin = new System.Windows.Forms.Padding(2); 228 | this.aboutButton.Name = "aboutButton"; 229 | this.aboutButton.Size = new System.Drawing.Size(109, 34); 230 | this.aboutButton.TabIndex = 5; 231 | this.aboutButton.Text = "关于(&A)..."; 232 | this.aboutButton.UseVisualStyleBackColor = true; 233 | this.aboutButton.Click += new System.EventHandler(this.aboutButton_Click); 234 | // 235 | // exitButton 236 | // 237 | this.exitButton.Location = new System.Drawing.Point(305, 401); 238 | this.exitButton.Margin = new System.Windows.Forms.Padding(2); 239 | this.exitButton.Name = "exitButton"; 240 | this.exitButton.Size = new System.Drawing.Size(109, 34); 241 | this.exitButton.TabIndex = 5; 242 | this.exitButton.Text = "退出(&X)"; 243 | this.exitButton.UseVisualStyleBackColor = true; 244 | this.exitButton.Click += new System.EventHandler(this.exitButton_Click); 245 | // 246 | // savePasswordButton 247 | // 248 | this.savePasswordButton.Location = new System.Drawing.Point(214, 346); 249 | this.savePasswordButton.Margin = new System.Windows.Forms.Padding(2); 250 | this.savePasswordButton.Name = "savePasswordButton"; 251 | this.savePasswordButton.Size = new System.Drawing.Size(154, 34); 252 | this.savePasswordButton.TabIndex = 6; 253 | this.savePasswordButton.Text = "保存密码到文件(&S)"; 254 | this.savePasswordButton.UseVisualStyleBackColor = true; 255 | this.savePasswordButton.Click += new System.EventHandler(this.savePasswordButton_Click); 256 | // 257 | // Form1 258 | // 259 | this.AutoScaleDimensions = new System.Drawing.SizeF(120F, 120F); 260 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; 261 | this.ClientSize = new System.Drawing.Size(434, 448); 262 | this.Controls.Add(this.savePasswordButton); 263 | this.Controls.Add(this.exitButton); 264 | this.Controls.Add(this.aboutButton); 265 | this.Controls.Add(this.CopyButton); 266 | this.Controls.Add(this.passwordBox); 267 | this.Controls.Add(this.GenerateButton); 268 | this.Controls.Add(this.groupBox1); 269 | this.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); 270 | this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; 271 | this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); 272 | this.KeyPreview = true; 273 | this.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4); 274 | this.MaximizeBox = false; 275 | this.Name = "Form1"; 276 | this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; 277 | this.Text = "随机密码生成器"; 278 | this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.onFormClosing); 279 | this.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.onKeyPress); 280 | this.groupBox1.ResumeLayout(false); 281 | this.groupBox1.PerformLayout(); 282 | this.ResumeLayout(false); 283 | this.PerformLayout(); 284 | 285 | } 286 | 287 | #endregion 288 | 289 | private System.Windows.Forms.CheckBox includeNums; 290 | private System.Windows.Forms.GroupBox groupBox1; 291 | private System.Windows.Forms.TextBox passwordLengthBox; 292 | private System.Windows.Forms.Label label1; 293 | private System.Windows.Forms.CheckBox includeLowercase; 294 | private System.Windows.Forms.CheckBox includeCaptial; 295 | private System.Windows.Forms.CheckBox includeSpecCharctor; 296 | private System.Windows.Forms.Button GenerateButton; 297 | private System.Windows.Forms.TextBox passwordBox; 298 | private System.Windows.Forms.Button CopyButton; 299 | private System.Windows.Forms.Button aboutButton; 300 | private System.Windows.Forms.Button exitButton; 301 | private System.Windows.Forms.Button savePasswordButton; 302 | private System.Windows.Forms.TextBox specCharacters; 303 | private System.Windows.Forms.Button restoreDefault; 304 | private System.Windows.Forms.RadioButton charProbEqualButton; 305 | private System.Windows.Forms.RadioButton charTypeProbEqualButton; 306 | private System.Windows.Forms.CheckBox generateGUID; 307 | } 308 | } 309 | 310 | -------------------------------------------------------------------------------- /PasswordGenerator/Form1.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.IO; 7 | using System.Linq; 8 | using System.Text; 9 | using System.Threading.Tasks; 10 | using System.Windows.Forms; 11 | 12 | namespace PasswordGenerator 13 | { 14 | //用于表示字符类型的枚举 15 | enum CharType 16 | { 17 | CK_NUMBERS, //数字 18 | CK_CAPTIAL, //大写字母 19 | CK_LOWERCASE, //小写字母 20 | CK_SPECALCHAR //特殊字符 21 | } 22 | 23 | public partial class Form1 : Form 24 | { 25 | //私有的字段 26 | List m_optionCheck = new List(); //储存生成的密码的字符类型 27 | Random m_randon = new Random(); //用于生成随机数 28 | //string m_specalChar; //特殊字符 29 | string m_lastPassword = ""; //上一次保存过的密码 30 | 31 | //方法 32 | 33 | public Form1(bool isDll = false) 34 | { 35 | InitializeComponent(); 36 | //设置控件的初始状态(从设置中读取状态) 37 | includeNums.Checked = Properties.Settings.Default.IncludeNum; 38 | includeCaptial.Checked = Properties.Settings.Default.IncludeCapital; 39 | includeLowercase.Checked = Properties.Settings.Default.IncludeLowercase; 40 | includeSpecCharctor.Checked = Properties.Settings.Default.IncludeSpecCharator; 41 | passwordLengthBox.Text = Properties.Settings.Default.PasswordLength; 42 | specCharacters.Text = Properties.Settings.Default.SpecCharacters; 43 | charTypeProbEqualButton.Checked = Properties.Settings.Default.CharTypeProbEqual; 44 | charProbEqualButton.Checked = !Properties.Settings.Default.CharTypeProbEqual; 45 | generateGUID.Checked = Properties.Settings.Default.GenerateGUID; 46 | //初始化控件的启用或禁用状态 47 | SetControlEnableState(); 48 | 49 | if (isDll) 50 | { 51 | aboutButton.Visible = false; 52 | exitButton.Visible = false; 53 | } 54 | } 55 | 56 | //获取选项复选框的状态 57 | private void GetOptionState() 58 | { 59 | m_optionCheck.Clear(); 60 | if (includeNums.Checked) 61 | m_optionCheck.Add(CharType.CK_NUMBERS); 62 | if (includeCaptial.Checked) 63 | m_optionCheck.Add(CharType.CK_CAPTIAL); 64 | if (includeLowercase.Checked) 65 | m_optionCheck.Add(CharType.CK_LOWERCASE); 66 | if (includeSpecCharctor.Checked) 67 | m_optionCheck.Add(CharType.CK_SPECALCHAR); 68 | } 69 | 70 | private void SetControlEnableState() 71 | { 72 | specCharacters.Enabled = includeSpecCharctor.Checked && !generateGUID.Checked; 73 | restoreDefault.Enabled = includeSpecCharctor.Checked && !generateGUID.Checked; 74 | 75 | includeNums.Enabled = !generateGUID.Checked; 76 | includeCaptial.Enabled = !generateGUID.Checked; 77 | includeLowercase.Enabled = !generateGUID.Checked; 78 | includeSpecCharctor.Enabled = !generateGUID.Checked; 79 | label1.Enabled = !generateGUID.Checked; 80 | passwordLengthBox.Enabled = !generateGUID.Checked; 81 | charTypeProbEqualButton.Enabled = !generateGUID.Checked; 82 | charProbEqualButton.Enabled = !generateGUID.Checked; 83 | } 84 | 85 | public void GenerateButton_Click(object sender, EventArgs e) 86 | { 87 | if (generateGUID.Checked) 88 | { 89 | string newGuid = Guid.NewGuid().ToString(); 90 | passwordBox.Text = newGuid; 91 | return; 92 | } 93 | 94 | GetOptionState(); 95 | passwordBox.Text = ""; 96 | if (passwordLengthBox.Text.Length == 0) //如果密码长度文本框没有输入字符 97 | { 98 | MessageBox.Show("请输入要生成的密码长度!", "警告", MessageBoxButtons.OK, MessageBoxIcon.Warning); 99 | return; 100 | } 101 | if(m_optionCheck.Count == 0) //如果没有选中任何一个复选框 102 | { 103 | MessageBox.Show("请选择一种要包含的字符类型!", "警告", MessageBoxButtons.OK, MessageBoxIcon.Warning); 104 | return; 105 | } 106 | 107 | int passwordLength = 0; //保存输入的密码的长度 108 | try 109 | { 110 | passwordLength = int.Parse(passwordLengthBox.Text); 111 | } 112 | catch(FormatException) 113 | { 114 | MessageBox.Show("你只能在“密码位数”文本框中输入数字!", "警告", MessageBoxButtons.OK, MessageBoxIcon.Warning); 115 | return; 116 | } 117 | if(passwordLength == 0) //如果密码长度设置为0 118 | { 119 | MessageBox.Show("密码长度不能为0!", "警告", MessageBoxButtons.OK, MessageBoxIcon.Warning); 120 | return; 121 | } 122 | 123 | //选中了“每一种字符出现的概率均等”时 124 | if (charTypeProbEqualButton.Checked) 125 | { 126 | for (int i = 0; i< passwordLength; i++) 127 | { 128 | int index = m_randon.Next(m_optionCheck.Count); //随机确定生成哪一种字符 129 | CharType charType = m_optionCheck[index]; 130 | char currentChar = '\0'; 131 | switch(charType) 132 | { 133 | case CharType.CK_NUMBERS: 134 | currentChar = Convert.ToChar(m_randon.Next(48, 58)); //随机生成一个0~9的数字 135 | break; 136 | case CharType.CK_CAPTIAL: 137 | currentChar = Convert.ToChar(m_randon.Next(65, 91)); //随机生成一个大写字母 138 | break; 139 | case CharType.CK_LOWERCASE: 140 | currentChar = Convert.ToChar(m_randon.Next(97, 123)); //随机生成一个小写字母 141 | break; 142 | case CharType.CK_SPECALCHAR: 143 | int randon = m_randon.Next(specCharacters.Text.Length); 144 | currentChar = specCharacters.Text[randon]; //随机生成一个特殊字符 145 | break; 146 | } 147 | passwordBox.Text += currentChar; 148 | } 149 | } 150 | //选中了“每个字符出现的概率均等”时 151 | else if (charProbEqualButton.Checked) 152 | { 153 | string characters = ""; //所有可能的字符 154 | if (includeNums.Checked) 155 | characters += "0123456789"; 156 | if (includeCaptial.Checked) 157 | characters += "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; 158 | if (includeLowercase.Checked) 159 | characters += "abcdefghijklmnopqrstuvwxyz"; 160 | if (includeSpecCharctor.Checked) 161 | characters += specCharacters.Text; 162 | for (int i = 0; i < passwordLength; i++) 163 | { 164 | int index = m_randon.Next(characters.Length); 165 | char currentChar = characters[index]; 166 | passwordBox.Text += currentChar; 167 | } 168 | } 169 | } 170 | 171 | public void CopyButton_Click(object sender, EventArgs e) 172 | { 173 | if(passwordBox.TextLength > 0) 174 | { 175 | passwordBox.SelectAll(); 176 | passwordBox.Copy(); 177 | MessageBox.Show("密码已复制到剪贴板。", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information); 178 | } 179 | } 180 | 181 | private void onKeyPress(object sender, KeyPressEventArgs e) 182 | { 183 | if (e.KeyChar == '\r') //按回车键执行生成随机密码操作 184 | GenerateButton_Click(new object(), new EventArgs()); 185 | } 186 | 187 | public void aboutButton_Click(object sender, EventArgs e) 188 | { 189 | //弹出“关于”对话框 190 | (new AboutForm()).ShowDialog(); 191 | } 192 | 193 | private void exitButton_Click(object sender, EventArgs e) 194 | { 195 | //退出程序 196 | Close(); 197 | } 198 | 199 | public void savePasswordButton_Click(object sender, EventArgs e) 200 | { 201 | //保存当前生成的密码到log文件 202 | if(passwordBox.TextLength > 0 && passwordBox.Text != m_lastPassword) //仅当已生成密码且当前生成的密码和之前保存的密码不同才保存密码 203 | { 204 | StreamWriter streamWriter = new StreamWriter(".\\password.log", true, Encoding.UTF8); 205 | streamWriter.Write(DateTime.Now.ToString()); 206 | streamWriter.Write(":"); 207 | streamWriter.WriteLine(passwordBox.Text); 208 | streamWriter.Close(); 209 | m_lastPassword = passwordBox.Text; 210 | MessageBox.Show("密码已保存到password.log中。", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information); 211 | } 212 | } 213 | 214 | private void onFormClosing(object sender, FormClosingEventArgs e) 215 | { 216 | //窗口关闭时保存设置 217 | SaveConfig(); 218 | } 219 | 220 | private void restoreDefault_Click(object sender, EventArgs e) 221 | { 222 | specCharacters.Text = "~!@#$%^&*()_-+={}[]|\\<>/?"; 223 | } 224 | 225 | private void includeSpecCharctor_CheckedChanged(object sender, EventArgs e) 226 | { 227 | SetControlEnableState(); 228 | } 229 | 230 | private void generateGUID_CheckedChanged(object sender, EventArgs e) 231 | { 232 | SetControlEnableState(); 233 | } 234 | 235 | public IntPtr GetHandle() 236 | { 237 | return Handle; 238 | } 239 | 240 | public void SetPasswordLenght(int passwordLength) 241 | { 242 | passwordLengthBox.Text = passwordLength.ToString(); 243 | } 244 | 245 | public void SaveConfig() 246 | { 247 | Properties.Settings.Default.IncludeNum = includeNums.Checked; 248 | Properties.Settings.Default.IncludeCapital = includeCaptial.Checked; 249 | Properties.Settings.Default.IncludeLowercase = includeLowercase.Checked; 250 | Properties.Settings.Default.IncludeSpecCharator = includeSpecCharctor.Checked; 251 | Properties.Settings.Default.PasswordLength = passwordLengthBox.Text; 252 | Properties.Settings.Default.SpecCharacters = specCharacters.Text; 253 | Properties.Settings.Default.CharTypeProbEqual = charTypeProbEqualButton.Checked; 254 | Properties.Settings.Default.GenerateGUID = generateGUID.Checked; 255 | Properties.Settings.Default.Save(); 256 | } 257 | } 258 | } 259 | -------------------------------------------------------------------------------- /PasswordGenerator/Form1.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | 122 | 123 | AAABAAQAMDAgAAAAAACoJQAARgAAACAgIAAAAAAAqBAAAO4lAAAYGCAAAAAAAIgJAACWNgAAEBAgAAAA 124 | AABoBAAAHkAAACgAAAAwAAAAYAAAAAEAIAAAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 125 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 126 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 127 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 128 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 129 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 130 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 131 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 132 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 133 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 134 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 135 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 136 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 137 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6OjpPb29vi25u 138 | bpdubm6Xbm5ul25ubpdubm6XbW1tlWNjY4hsbGyTbm5ul25ubpdubm6Xbm5ul25ubpdubm6Xbm5ul2Vl 139 | ZIphZGaIXmZqiF5maoheZmqIXmZqiF5maoheZmqIXmZqiF5maoheZmqIXmZqiF5maoheZmqIXmZqiF5m 140 | aoheZmqIXmZqiF5maoheZmqIXmZqiF5maoheZmuId3t9oHFwcJoAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 141 | AAB6enqmzc3N/56entienp7Ynp6e2J6entienp7Yo6Oj4MrKyv+pqannnp6e2J6entienp7Ynp6e2J6e 142 | ntienp7Ynp6e2cHExv/Wxr7/5r2m/+a+qP/mvqj/5r6o/+a+qP/mvqj/5r6o/+a+qP/mvqj/5r6o/+a+ 143 | qP/mvqj/5r6o/+a+qP/mvqj/5r6o/+a+qP/mvqj/5r6o/+a+qP/mvaX/4cu//6Cjpt8AAAAAAAAAAAAA 144 | AAAAAAAAAAAAAAAAAAB6enqokpKSyQAAAAAAAAAAAAAAAAAAAAAAAAAAExMTGb6+vv8pKSk4AAAAAAAA 145 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAJuiptzftZ///5pc//+cY///nGP//5xj//+cY///nGP//5xj//+c 146 | Y///nGP//5xj//+cY///nGP//5xj//+cY///nGP//5xj//+cY///nGP//5xj//+cY///mlv/67OT/5Kb 147 | oNIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6enqnlJSUywAAAAAAAAAAAAAAAAAAAAAAAAAAGBgYIb6+ 148 | vv8uLi4/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBApyjp93dtqH//5xj//+eaf//nmn//55p//+e 149 | af//nmn//55p//+eaf//nmn//55p//+eaf//nmn//55p//+eaf//nmn//55p//+eaf//nmn//55p//+e 150 | af//nGL/6LSX/5OboNIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6enqnlJSUywAAAAAAAAAAAAAAAAAA 151 | AAAAAAAAGRkZIr6+vv8vLy9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgICA5yjp93dtqH//5xj//+e 152 | af//nmn//55p//+eaf//nmn//55p//+eaf//nmn//55p//+eaf//nmn//55p//+eaf//nmn//55p//+e 153 | af//nmn//55p//+eaf//nGL/6LSX/5OboNIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6enqnlJSUywAA 154 | AAAAAAAAAAAAAAAAAAAAAAAAGRkZIr6+vv8vLy9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgICA5yj 155 | p93dtqH//5xj//+eaf//nmn//55p//+eaf//nmn//55p//+eaf//nmn//55p//+eaf//nmn//55p//+e 156 | af//nmn//55p//+eaf//nmn//55p//+eaf//nGL/6LSX/5OboNIAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 157 | AAB6enqnlJSUywAAAAAAAAAAAAAAAAAAAAAAAAAAGRkZIr6+vv8vLy9AAAAAAAAAAAAAAAAAAAAAAAAA 158 | AAAAAAAAAgICA5yjp93dtqH//5xj//+eaf//nmn//55p//+eaf//nmn//55p//+eaf//nmn//55p//+e 159 | af//nmn//55p//+eaf//nmn//55p//+eaf//nmn//55p//+eaf//nGL/6LSX/5OboNIAAAAAAAAAAAAA 160 | AAAAAAAAAAAAAAAAAAB6enqnlJSUywAAAAAAAAAAAAAAAAAAAAAAAAAAGRkZIr6+vv8vLy9AAAAAAAAA 161 | AAAAAAAAAAAAAAAAAAAAAAAAAgICA5yjp93dtqH//5xj//+eaf//nmn//55p//+eaf//nmn//55p//+e 162 | af//nmn//55p//+eaf//nmn//55p//+eaf//nmn//55p//+eaf//nmn//55p//+eaf//nGL/6LSX/5Ob 163 | oNIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6enqnlJSUywAAAAAAAAAAAAAAAAAAAAAAAAAAGRkZIr6+ 164 | vv8vLy9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgICA5yjp93dtqH//5xj//+eaf//nmn//55p//+e 165 | af//nmn//55p//+eaf//nmn//55p//+eaf//nmn//55p//+eaf//nmn//55p//+eaf//nmn//55p//+e 166 | af//nGL/6LSX/5OboNIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7e3uokZGRyAAAAAAAAAAAAAAAAAAA 167 | AAAAAAAAEBAQFb6+vv8nJyc1AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJqhpdvdtqH//5xj//+e 168 | af//nmn//55p//+eaf//nmn//55p//+eaf//nmn//55p//+eaf//nmn//55p//+eaf//nmn//55p//+e 169 | af//nmn//55p//+eaf//nGL/6LSX/5OboNIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB3d3ejoqKg1zEw 170 | KjwwMCo8MDAqPDAwKjwwMCo8Q0M9VsLBu/9UVE5tMDAqPDAwKjwwMCo8MDAqPDAwKjwwMCo8MjErPqKp 171 | reXbtJ///5xj//+eaf//nmn//55p//+eaf//nmn//55p//+eaf//nmn//55p//+eaf//nmn//55p//+e 172 | af//nmn//55p//+eaf//nmn//55p//+eaf//nGL/6LSX/5OboNIAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 173 | AABubm2Vx8fN/7GyyP+ys8j/srPI/7KzyP+ys8j/sbLH/6qrwf+wscb/srPI/7KzyP+ys8j/srPI/7Kz 174 | yP+yssj/srPI/7S7wv/Wr5j//5xj//+eaf//nmn//55p//+eaf//nmn//55p//+eaf//nmn//55p//+e 175 | af//nmn//55p//+eaf//nmn//55p//+eaf//nmn//55p//+eaf//nGL/6LSX/5OboNIAAAAAAAAAAAAA 176 | AAAAAAAAAAAAAAAAAAB1dWqWqavX/0RK8P9JUO3/SVDt/0lQ7f9JUO3/SVDt/0hP7P9JUO3/SVDt/0lQ 177 | 7f9JUO3/SVDt/0lQ7f9HTu7/SlHs/6Wux//as5f//5xj//+eaf//nmn//55p//+eaf//nmn//55p//+e 178 | af//nmn//55p//+eaf//nmn//55p//+eaf//nmn//55p//+eaf//nmn//55p//+eaf//nGL/6LSX/5Ob 179 | oNIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB1dWqWp6nX/z9G8f9FTO7/RUzu/0VM7v9FTO7/RUzu/0VM 180 | 7v9FTO7/RUzu/0VM7v9FTO7/RUzu/0VM7v9DSu//Rk3t/6Wux//as5f//5xj//+eaf//nmn//55p//+e 181 | af//nmn//55p//+eaf//nmn//55p//+eaf//nmn//55p//+eaf//nmn//55p//+eaf//nmn//55p//+e 182 | af//nGL/6LSX/5OboNIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB1dWqWqKrX/0FI8P9HTu3/R07t/0dO 183 | 7f9HTu3/R07t/0dO7f9HTu3/R07t/0dO7f9HTu3/R07t/0dO7f9FTO7/SE/s/6Sux//cspT//5pd//+c 184 | Y///nGP//5xj//+cY///nGP//5xj//+cY///nGP//5xj//+cY///nGP//5xj//+cY///nGP//5xj//+c 185 | Y///nGP//5xj//+cY///mlv/67OU/5KboNIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB1dWqWqKrX/0FI 186 | 8P9HTu3/R07t/0dO7f9HTu3/R07t/0dO7f9HTu3/R07t/0dO7f9HTu3/R07t/0dO7f9FTO7/SE/s/6et 187 | xf/St6L/6qaA/+qnhP/qp4T/6qeE/+qnhP/qp4T/6qeE/+qnhP/qp4T/6qeE/+qnhP/qp4T/6qeE/+qn 188 | hP/qp4T/6qeE/+qnhP/qp4T/6qeE/+qnhP/qpn//3bml/5WantIAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 189 | AAB1dWqWqKrX/0FI8P9HTu3/R07t/0dO7f9HTu3/R07t/0dO7f9HTu3/R07t/0dO7f9HTu3/R07t/0dO 190 | 7f9FTO7/SE/s/6yrwP+5v7z/q77F/6u+xf+rvsX/q77F/6u+xf+rvsX/q77F/6u+xf+rvsX/q77F/6u+ 191 | xf+rvsX/q77F/6u+xf+rvsX/q77F/6u+xf+rvsX/q77F/6u+xf+rvsb/u8XJ/5qZmNIAAAAAAAAAAAAA 192 | AAAAAAAAAAAAAAAAAAB1dWqWqKrX/0FI8P9HTu3/R07t/0dO7f9HTu3/R07t/0dO7f9HTu3/R07t/0dO 193 | 7f9HTu3/R07t/0dO7f9FTO7/SE/s/7Oqvf+Vxc3/TMzy/1TL7v9Uy+7/VMvu/1TL7v9Uy+7/VMvu/1TL 194 | 7v9Uy+7/VMvu/1TL7v9Uy+7/VMvu/1TL7v9Uy+7/VMvu/1TL7v9Uy+7/VMvu/1TL7v9LzPP/jcvf/6KY 195 | ldIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB1dWqWqKrX/0FI8P9HTu3/R07t/0dO7f9HTu3/R07t/0dO 196 | 7f9HTu3/R07t/0dO7f9HTu3/R07t/0dO7f9FTO7/SE/s/7Oqvf+Sxc7/RM32/03M8v9NzPL/Tczy/03M 197 | 8v9NzPL/Tczy/03M8v9NzPL/Tczy/03M8v9NzPL/Tczy/03M8v9NzPL/Tczy/03M8v9NzPL/Tczy/03M 198 | 8v9Dzff/iczh/6KYldIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB1dWqWqKrX/0FI8P9HTu3/R07t/0dO 199 | 7f9HTu3/R07t/0dO7f9HTu3/R07t/0dO7f9HTu3/R07t/0dO7f9FTO7/SE/s/7Oqvf+Txc7/R831/0/M 200 | 8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M 201 | 8f9PzPH/T8zx/0/M8f9Gzfb/iszg/6KYldIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB1dWqWqKrX/0FI 202 | 8P9HTu3/R07t/0dO7f9HTu3/R07t/0dO7f9HTu3/R07t/0dO7f9HTu3/R07t/0dO7f9FTO7/SE/s/7Oq 203 | vf+Txc7/R831/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M 204 | 8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9Gzfb/iszg/6KYldIAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 205 | AAB1dWqWqKrX/0FI8P9HTu3/R07t/0dO7f9HTu3/R07t/0dO7f9HTu3/R07t/0dO7f9HTu3/R07t/0dO 206 | 7f9FTO7/SE/s/7Oqvf+Txc7/R831/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M 207 | 8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9Gzfb/iszg/6KYldIAAAAAAAAAAAAA 208 | AAAAAAAAAAAAAAAAAAB1dWqWqKrX/0FI8P9HTu3/R07t/0dO7f9HTu3/R07t/0dO7f9HTu3/R07t/0dO 209 | 7f9HTu3/R07t/0dO7f9FTO7/SE/s/7Oqvf+Txc7/R831/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M 210 | 8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9Gzfb/iszg/6KY 211 | ldIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB1dWqWqKrX/0FI8P9HTu3/R07t/0dO7f9HTu3/R07t/0dO 212 | 7f9HTu3/R07t/0dO7f9HTu3/R07t/0dO7f9FTO7/SE/s/7Oqvf+Txc7/R831/0/M8f9PzPH/T8zx/0/M 213 | 8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M 214 | 8f9Gzfb/iszg/6KYldIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB1dWqWqKrX/0FI8P9HTu3/R07t/0dO 215 | 7f9HTu3/R07t/0dO7f9HTu3/R07t/0dO7f9HTu3/R07t/0dO7f9FTO7/SE/s/7Oqvf+Txc7/R831/0/M 216 | 8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M 217 | 8f9PzPH/T8zx/0/M8f9Gzfb/iszg/6KYldIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB1dWqWqKrX/0FI 218 | 8P9HTu3/R07t/0dO7f9HTu3/R07t/0dO7f9HTu3/R07t/0dO7f9HTu3/R07t/0dO7f9FTO7/SE/s/7Oq 219 | vf+Txc7/R831/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M 220 | 8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9Gzfb/iszg/6KYldIAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 221 | AAB1dWqWqKrX/0FI8P9HTu3/R07t/0dO7f9HTu3/R07t/0dO7f9HTu3/R07t/0dO7f9HTu3/R07t/0dO 222 | 7f9FTO7/SE/s/7Oqvf+Txc7/R831/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M 223 | 8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9Gzfb/iszg/6KYldIAAAAAAAAAAAAA 224 | AAAAAAAAAAAAAAAAAAB1dWqWp6nX/z1E8v9DS+7/Q0vu/0NL7v9DS+7/Q0vu/0NL7v9DS+7/Q0vu/0NL 225 | 7v9DS+7/Q0vu/0NL7v9BSe//REzt/7Kpvf+Txc7/R831/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M 226 | 8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9Gzfb/iszg/6KY 227 | ldIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0dGqWq63W/0xS6/9RWOj/UVjo/1FY6P9RWOj/UVjo/1FY 228 | 6P9RWOj/UVjo/1FY6P9RWOj/UVjo/1FY6P9QVun/Ulnn/7SrvP+Txc7/R831/0/M8f9PzPH/T8zx/0/M 229 | 8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M 230 | 8f9Gzfb/iszg/6KYldIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABtbW2VzMzO/8TEzP/ExMz/xMTM/8TE 231 | zP/ExMz/xMTM/8TEzP/ExMz/xMTM/8TEzP/ExMz/xMTM/8TEzP/ExMz/xMTL/8O6uP+PwM//R831/0/M 232 | 8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M 233 | 8f9PzPH/T8zx/0/M8f9Gzfb/iszg/6KYldIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0dHSfra2s41lZ 234 | VXZZWVV2WVlVdllZVXZZWVV2WVlVdllZVXZZWVV2WVlVdllZVXZZWVV2WVlVdllZVXZZWVV2WlpWeLWs 235 | qO2TxdT/R831/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M 236 | 8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9Gzfb/iszg/6KYldIAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 237 | AAB7e3uokJCQxwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 238 | AAAAAAAAAAAAAKeem9qXytf/R831/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M 239 | 8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9Gzfb/iszg/6KYldIAAAAAAAAAAAAA 240 | AAAAAAAAAAAAAAAAAAB6enqnlJSUywAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 241 | AAAAAAAAAAAAAAAAAAAAAAAAAgICA6mgnd2Wydf/R831/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M 242 | 8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9Gzfb/iszg/6KY 243 | ldIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6enqnlJSUywAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 244 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgICA6mgnd2Wydf/R831/0/M8f9PzPH/T8zx/0/M 245 | 8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M 246 | 8f9Gzfb/iszg/6KYldIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6enqnlJSUywAAAAAAAAAAAAAAAAAA 247 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgICA6mgnd2Wydf/R831/0/M 248 | 8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M 249 | 8f9PzPH/T8zx/0/M8f9Gzfb/iszg/6KYldIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6enqnlJSUywAA 250 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgICA6mg 251 | nd2Wydf/R831/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M 252 | 8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9Gzfb/iszg/6KYldIAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 253 | AAB6enqnlJSUywAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 254 | AAAAAAAAAgICA6mgnd2Wydf/R831/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M 255 | 8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9Gzfb/iszg/6KYldIAAAAAAAAAAAAA 256 | AAAAAAAAAAAAAAAAAAB6enqnlJSUywAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 257 | AAAAAAAAAAAAAAAAAAAAAAAAAgICA6mgnd2Wydf/R831/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M 258 | 8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9Gzfb/iszg/6KY 259 | ldIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7e3uokJCQxwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 260 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKiem9qTytn/Pc76/0bN9f9GzfX/Rs31/0bN 261 | 9f9GzfX/Rs31/0bN9f9GzfX/Rs31/0bN9f9GzfX/Rs31/0bN9f9GzfX/Rs31/0bN9f9GzfX/Rs31/0bN 262 | 9f88zvv/hc3i/6OYldIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6enqmvLy89W5ubpdubm6Xbm5ul25u 263 | bpdubm6Xbm5ul25ubpdubm6Xbm5ul25ubpdubm6Xbm5ul25ubpdubm6Xb29vmb25t/60zNL/j83g/5PN 264 | 3v+Tzd7/k83e/5PN3v+Tzd7/k83e/5PN3v+Tzd7/k83e/5PN3v+Tzd7/k83e/5PN3v+Tzd7/k83e/5PN 265 | 3v+Tzd7/k83e/5PN3v+PzeH/tNLc/6ahoN4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABTU1Nxnp6ex56e 266 | ntienp7Ynp6e2J6entienp7Ynp6e2J6entienp7Ynp6e2J6entienp7Ynp6e2J6entienp7YnZ2d2JCQ 267 | kcaRjYzDmI2Jw5eNisOXjYrDl42Kw5eNisOXjYrDl42Kw5eNisOXjYrDl42Kw5eNisOXjYrDl42Kw5eN 268 | isOXjYrDl42Kw5eNisOXjYrDl42Kw5eNisOYjYnDmpSTw3R1daEAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 269 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 270 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 271 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 272 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 273 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 274 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 275 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 276 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 277 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 278 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 279 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 280 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 281 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 282 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 283 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 284 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAIAAAAEAA 285 | AAABACAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 286 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 287 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 288 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 289 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFRUVHDMz 290 | M0A0NDRHNDQ0RzQ0NEcsLCw8Ly8vQDQ0NEc0NDRHNDQ0RzQ0NEcvLi4/IycpNSEpLjUhKS01ISktNSEp 291 | LTUhKS01ISktNSEpLTUhKS01ISktNSEpLTUhKS01ISktNSEpLTUiKi41NDY3SQgICAsAAAAAAAAAAAAA 292 | AABvb2+Xpqam1YSEhLSEhIS0hISEtKmpqeecnJzVhISEtISEhLSEhIS0hISEtJueoNjRv7T/3rKY/96z 293 | m//es5v/3rOb/96zm//es5v/3rOb/96zm//es5v/3rOb/96zm//es5v/3rOb/9+2nv/Fvbj/FRcYHwAA 294 | AAAAAAAAAAAAAHV1daFERERfAAAAAAAAAAAAAAAAcXFxm0VFRV8AAAAAAAAAAAAAAAAAAAAARU5SZ+y+ 295 | pf//m1z//51k//+dZP//nWT//51k//+dZP//nWT//51k//+dZP//nWT//51k//+dZP//nWP//6Bl/8Wv 296 | o/kRFhkdAAAAAAAAAAAAAAAAdHR0n0tLS2cAAAAAAAAAAAAAAAB0dHSfS0tLZwAAAAAAAAAAAAAAAAAA 297 | AABLU1dv572m//+cYv//nmn//55p//+eaf//nmn//55p//+eaf//nmn//55p//+eaf//nmn//55p//+e 298 | aP//oWr/w6+k+BEWGR0AAAAAAAAAAAAAAAB0dHSfS0tLZwAAAAAAAAAAAAAAAHR0dJ9LS0tnAAAAAAAA 299 | AAAAAAAAAAAAAEtTV2/nvab//5xi//+eaf//nmn//55p//+eaf//nmn//55p//+eaf//nmn//55p//+e 300 | af//nmn//55o//+hav/Dr6T4ERYZHQAAAAAAAAAAAAAAAHR0dJ9LS0tnAAAAAAAAAAAAAAAAdHR0n0tL 301 | S2cAAAAAAAAAAAAAAAAAAAAAS1NXb+e9pv//nGL//55p//+eaf//nmn//55p//+eaf//nmn//55p//+e 302 | af//nmn//55p//+eaf//nmj//6Fq/8OvpPgRFhkdAAAAAAAAAAAAAAAAdXV1oEJCQlwAAAAAAAAAAAAA 303 | AABvb2+YQ0NDXAAAAAAAAAAAAAAAAAAAAABETE9l6L6n//+cYv//nmn//55p//+eaf//nmn//55p//+e 304 | af//nmn//55p//+eaf//nmn//55p//+eaP//oWr/w6+k+BEWGR0AAAAAAAAAAAAAAABwcHCZenlwmEVF 305 | N1JFRDdSRUQ3UpSThr54d2qYRUQ3UkVEN1JFRDdSRkU3UnJ5d53ht6H//5xi//+eaf//nmn//55p//+e 306 | af//nmn//55p//+eaf//nmn//55p//+eaf//nmn//55o//+hav/Dr6T4ERYZHQAAAAAAAAAAAAAAAGtr 307 | ZY2lqOX/gITl/4WJ4/+FieP/fYHb/4CE3v+FieP/hYnj/4WJ4/+AhOX/lqDY/9yylP//nGL//55p//+e 308 | af//nmn//55p//+eaf//nmn//55p//+eaf//nmn//55p//+eaf//nmj//6Fq/8OvpPgRFhkdAAAAAAAA 309 | AAAAAAAAb29ljnV67/81Pfb/PkXx/z5F8f8+RfH/PkXx/z5F8f8+RfH/PkXx/zQ89v9ueuD/47eR//+b 310 | X///nWb//51m//+dZv//nWb//51m//+dZv//nWb//51m//+dZv//nWb//51m//+dZf//oGf/w6+j+BEW 311 | GR0AAAAAAAAAAAAAAABvb2WOe4Ds/z9G8f9HTu3/R07t/0dO7f9HTu3/R07t/0dO7f9HTu3/PkXx/3N/ 312 | 3P/guJb//Z5p//2gb//9oG///aBv//2gb//9oG///aBv//2gb//9oG///aBv//2gb//9oG///aBu//2j 313 | cP/Dr6X4ERYZHQAAAAAAAAAAAAAAAG9vZY57gOz/P0bx/0dO7f9HTu3/R07t/0dO7f9HTu3/R07t/0dO 314 | 7f8+RfH/e33W/7rEuv+kvcT/pr3D/6a9w/+mvcP/pr3D/6a9w/+mvcP/pr3D/6a9w/+mvcP/pr3D/6a9 315 | w/+lvcP/qMDG/7C1t/gWFRQdAAAAAAAAAAAAAAAAb29ljnuA7P8/RvH/R07t/0dO7f9HTu3/R07t/0dO 316 | 7f9HTu3/R07t/z5F8f+Ce9L/k8vP/0HO+P9LzfT/S830/0vN9P9LzfT/S830/0vN9P9LzfT/S830/0vN 317 | 9P9LzfT/S830/0rN9P9L0fn/nbjA+BoUEh0AAAAAAAAAAAAAAABvb2WOe4Ds/z9G8f9HTu3/R07t/0dO 318 | 7f9HTu3/R07t/0dO7f9HTu3/PkXx/4J70v+Vy87/Rc31/07M8f9OzPH/Tszx/07M8f9OzPH/Tszx/07M 319 | 8f9OzPH/Tszx/07M8f9OzPH/Tczx/07Q9v+euMD4GhQSHQAAAAAAAAAAAAAAAG9vZY57gOz/P0bx/0dO 320 | 7f9HTu3/R07t/0dO7f9HTu3/R07t/0dO7f8+RfH/gnvS/5XLzv9GzfX/T8zx/0/M8f9PzPH/T8zx/0/M 321 | 8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9OzPH/T9D2/564wPgaFBIdAAAAAAAAAAAAAAAAb29ljnuA 322 | 7P8/RvH/R07t/0dO7f9HTu3/R07t/0dO7f9HTu3/R07t/z5F8f+Ce9L/lcvO/0bN9f9PzPH/T8zx/0/M 323 | 8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/07M8f9P0Pb/nrjA+BoUEh0AAAAAAAAAAAAA 324 | AABvb2WOe4Ds/z9G8f9HTu3/R07t/0dO7f9HTu3/R07t/0dO7f9HTu3/PkXx/4J70v+Vy87/Rs31/0/M 325 | 8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/Tszx/0/Q9v+euMD4GhQSHQAA 326 | AAAAAAAAAAAAAG9vZY57gOz/P0bx/0dO7f9HTu3/R07t/0dO7f9HTu3/R07t/0dO7f8+RfH/gnvS/5XL 327 | zv9GzfX/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9OzPH/T9D2/564 328 | wPgaFBIdAAAAAAAAAAAAAAAAb29ljnd87v84QPT/QUjw/0FI8P9BSPD/QUjw/0FI8P9BSPD/QUjw/zc/ 329 | 9P9+eNP/lcvO/0bN9f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/07M 330 | 8f9P0Pb/nrjA+BoUEh0AAAAAAAAAAAAAAABtbWWNkpbr/2Jo7/9pbuz/aW7s/2lu7P9pbuz/aW7s/2lu 331 | 7P9pbuz/Ymfv/5WN0v+SyM7/Rs31/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M 332 | 8f9PzPH/Tszx/0/Q9v+euMD4GhQSHQAAAAAAAAAAAAAAAGpqa5Gxsa7fl5aSypaWksqWlpLKlpaSypaW 333 | ksqWlpLKlpaSypaWksqXlpLKr6Wf4Y/F1f9GzfX/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M 334 | 8f9PzPH/T8zx/0/M8f9OzPH/T9D2/564wPgaFBIdAAAAAAAAAAAAAAAAdHR0n0hIR2MAAAAAAAAAAAAA 335 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABWTElrm9Hh/0bN9f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M 336 | 8f9PzPH/T8zx/0/M8f9PzPH/T8zx/07M8f9P0Pb/nrjA+BoUEh0AAAAAAAAAAAAAAAB0dHSfSkpKZgAA 337 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFhOS26b0eH/Rs31/0/M8f9PzPH/T8zx/0/M 338 | 8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/Tszx/0/Q9v+euMD4GhQSHQAAAAAAAAAAAAAAAHR0 339 | dJ9LS0tnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWU9Mb5vR4f9GzfX/T8zx/0/M 340 | 8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9OzPH/T9D2/564wPgaFBIdAAAAAAAA 341 | AAAAAAAAdHR0n0tLS2cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZT0xvm9Hh/0bN 342 | 9f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/0/M8f9PzPH/T8zx/07M8f9P0Pb/nrjA+BoU 343 | Eh0AAAAAAAAAAAAAAAB1dXWgREREXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFRJ 344 | RmeZ0uP/QM74/0nN9P9JzfT/Sc30/0nN9P9JzfT/Sc30/0nN9P9JzfT/Sc30/0nN9P9JzfT/SM30/0nR 345 | +f+duMD4GhQSHQAAAAAAAAAAAAAAAHl5eaVzc3OZNDQ0RzQ0NEc0NDRHNDQ0RzQ0NEc0NDRHNDQ0RzQ0 346 | NEc0NDRHenJwn67Z5v9r1vb/ctXy/3LV8v9y1fL/ctXy/3LV8v9y1fL/ctXy/3LV8v9y1fL/ctXy/3LV 347 | 8v9y1fL/c9n3/6/Eyv8aFhQfAAAAAAAAAAAAAAAARkZGYIyMjLKEhIS0hISEtISEhLSEhIS0hISEtISE 348 | hLSEhIS0hISEtISEhLSBgYGxf359rYJ+fa2Bfn2tgX59rYF+fa2Bfn2tgX59rYF+fa2Bfn2tgX59rYF+ 349 | fa2Bfn2tgX59rYF+fa2EgH+tfHt7qQ4ODhQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 350 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 351 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 352 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 353 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 354 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 355 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAABgA 356 | AAAwAAAAAQAgAAAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 357 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 358 | AAAAAAAAAAAAAAAAAAAAAAAAExMTGhwcHCYcHBwmFxcXHxYWFh4cHBwmHBwcJhwcHCYSEhIZCA8TEwgQ 359 | ExMIEBMTCBATEwgQExMIEBMTCBATEwgQExMIEBMTCBATEwwTFRUQEREWAAAAAAAAAAAXFxcgjo6Owm9v 360 | b5RsbGyUhYWFt4iIiLtsbGyUbGxslGxsbJScmpnUzaiS786iie/OoorvzqKK786iiu/OoorvzqKK786i 361 | iu/OoorvzqKJ79WwmvF8eXenAAAAAAAAAAAiIiIwaGhokAAAAAAAAAAAQkJCW0tLS2cAAAAAAAAAAAAA 362 | AACGgX+0/7B8//+fZP//oGf//6Bn//+gZ///oGf//6Bn//+gZ///oGf//59l//+vef+DfHetAAAAAAAA 363 | AAAhISEuaWlpkQAAAAAAAAAARkZGYE5OTmsAAAAAAAAAAAAAAACFgX+z/619//+dZv//nmn//55p//+e 364 | af//nmn//55p//+eaf//nmn//51n//+te/+BenaqAAAAAAAAAAAhISEuaGhokAAAAAAAAAAARUVFXk1N 365 | TWkAAAAAAAAAAAAAAACEgH6y/619//+dZv//nmn//55p//+eaf//nmn//55p//+eaf//nmn//51n//+t 366 | e/+BenaqAAAAAAAAAAAhISEua2tnkAAAAAAAAAAATUxBXlVUSWoAAAAAAAAAAAAAAACHg32y/qx9//+d 367 | Zv//nmn//55p//+eaf//nmn//55p//+eaf//nmn//51n//+te/+BenaqAAAAAAAAAAAXFxQdmZms5Hl7 368 | rtN4eqnThIa15IWHt+Z4eqnTeHqp03V5rNOpprLy+6Vy//+dZv//nmn//55p//+eaf//nmn//55p//+e 369 | af//nmn//51n//+te/+BenaqAAAAAAAAAAAZGQ4Zh4nL+UNL//9JUPj/RU31/0VM9f9JUPj/SVD4/0BK 370 | /v+cmcn//6Zm//+aX///m2L//5ti//+bYv//m2L//5ti//+bYv//m2L//5pg//+rdP+BenWqAAAAAAAA 371 | AAAaGg8ahojH9UJJ9f9HTu3/R07t/0dO7f9HTu3/R07t/z9I8f+amcf/6rKK/+eohv/nqYj/56mI/+ep 372 | iP/nqYj/56mI/+epiP/nqYj/56iH/+y3mP9/e3iqAAAAAAAAAAAaGg8ahojH9UJJ9f9HTu3/R07t/0dO 373 | 7f9HTu3/R07t/0JH7/+Um8v/dNDi/2LK6/9kyur/ZMrq/2TK6v9kyur/ZMrq/2TK6v9kyur/Ysrq/3fW 374 | 9P91fX+qAAAAAAAAAAAaGg8ahojH9UJJ9f9HTu3/R07t/0dO7f9HTu3/R07t/0JH7/+Tm8z/W9Pr/0XO 375 | 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 415 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 416 | 417 | 418 | -------------------------------------------------------------------------------- /PasswordGenerator/PasswordGenerator.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {B0A5FC75-B8E5-4DCD-81B7-6CBF013F8FC5} 8 | WinExe 9 | Properties 10 | PasswordGenerator 11 | PasswordGenerator 12 | v4.6.1 13 | 512 14 | true 15 | false 16 | publish\ 17 | true 18 | Disk 19 | false 20 | Foreground 21 | 7 22 | Days 23 | false 24 | false 25 | true 26 | 0 27 | 1.0.1.%2a 28 | false 29 | true 30 | true 31 | 32 | 33 | 34 | AnyCPU 35 | true 36 | full 37 | false 38 | bin\Debug\ 39 | DEBUG;TRACE 40 | prompt 41 | 4 42 | 43 | 44 | AnyCPU 45 | pdbonly 46 | true 47 | bin\Release\ 48 | TRACE 49 | prompt 50 | 4 51 | true 52 | 53 | 54 | 55 | 56 | 57 | 58 | A6D24E215D56BA31AA7F992C4FB66588225D8F00 59 | 60 | 61 | PasswordGenerator_TemporaryKey.pfx 62 | 63 | 64 | true 65 | 66 | 67 | LocalIntranet 68 | 69 | 70 | 71 | false 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | ico.ico 81 | 82 | 83 | true 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | Form 101 | 102 | 103 | AboutForm.cs 104 | 105 | 106 | Form 107 | 108 | 109 | Form1.cs 110 | 111 | 112 | 113 | 114 | 115 | AboutForm.cs 116 | 117 | 118 | Form1.cs 119 | 120 | 121 | ResXFileCodeGenerator 122 | Resources.Designer.cs 123 | Designer 124 | 125 | 126 | True 127 | Resources.resx 128 | True 129 | 130 | 131 | 132 | Designer 133 | 134 | 135 | SettingsSingleFileGenerator 136 | Settings.Designer.cs 137 | 138 | 139 | True 140 | Settings.settings 141 | True 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | False 150 | Microsoft .NET Framework 4.5.2 %28x86 和 x64%29 151 | true 152 | 153 | 154 | False 155 | .NET Framework 3.5 SP1 156 | false 157 | 158 | 159 | 160 | 161 | 162 | 163 | 170 | -------------------------------------------------------------------------------- /PasswordGenerator/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using System.Windows.Forms; 6 | 7 | namespace PasswordGenerator 8 | { 9 | public static class Program 10 | { 11 | static private Form1 form = null; 12 | 13 | static public Form1 GetForm(bool isDll) 14 | { 15 | if (form == null) 16 | form = new Form1(isDll); 17 | return form; 18 | } 19 | 20 | [STAThread] 21 | [System.Runtime.InteropServices.DllImport("user32.dll")] 22 | private static extern void SetProcessDPIAware(); //声明Windows API函数 23 | /// 24 | /// 应用程序的主入口点。 25 | /// 26 | static void Main() 27 | { 28 | SetProcessDPIAware(); //防止高DPI时界面模糊 29 | Application.EnableVisualStyles(); 30 | Application.SetCompatibleTextRenderingDefault(false); 31 | Application.Run(GetForm(false)); 32 | } 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /PasswordGenerator/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // 有关程序集的一般信息由以下 6 | // 控制。更改这些特性值可修改 7 | // 与程序集关联的信息。 8 | [assembly: AssemblyTitle("随机密码生成器")] 9 | [assembly: AssemblyDescription("这是一款用于生成随机密码的程序。")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("By ZhongYang")] 12 | [assembly: AssemblyProduct("PasswordGenerator")] 13 | [assembly: AssemblyCopyright("Copyright © By ZhongYang 2017-2020")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | //将 ComVisible 设置为 false 将使此程序集中的类型 18 | //对 COM 组件不可见。 如果需要从 COM 访问此程序集中的类型, 19 | //请将此类型的 ComVisible 特性设置为 true。 20 | [assembly: ComVisible(false)] 21 | 22 | // 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID 23 | [assembly: Guid("b0a5fc75-b8e5-4dcd-81b7-6cbf013f8fc5")] 24 | 25 | // 程序集的版本信息由下列四个值组成: 26 | // 27 | // 主版本 28 | // 次版本 29 | // 生成号 30 | // 修订号 31 | // 32 | //可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值, 33 | // 方法是按如下所示使用“*”: : 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.2.0")] 36 | [assembly: AssemblyFileVersion("1.0.2.0")] 37 | -------------------------------------------------------------------------------- /PasswordGenerator/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // 此代码由工具生成。 4 | // 运行时版本:4.0.30319.42000 5 | // 6 | // 对此文件的更改可能会导致不正确的行为,并且如果 7 | // 重新生成代码,这些更改将会丢失。 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace PasswordGenerator.Properties { 12 | using System; 13 | 14 | 15 | /// 16 | /// 一个强类型的资源类,用于查找本地化的字符串等。 17 | /// 18 | // 此类是由 StronglyTypedResourceBuilder 19 | // 类通过类似于 ResGen 或 Visual Studio 的工具自动生成的。 20 | // 若要添加或移除成员,请编辑 .ResX 文件,然后重新运行 ResGen 21 | // (以 /str 作为命令选项),或重新生成 VS 项目。 22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | internal class Resources { 26 | 27 | private static global::System.Resources.ResourceManager resourceMan; 28 | 29 | private static global::System.Globalization.CultureInfo resourceCulture; 30 | 31 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 32 | internal Resources() { 33 | } 34 | 35 | /// 36 | /// 返回此类使用的缓存的 ResourceManager 实例。 37 | /// 38 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 39 | internal static global::System.Resources.ResourceManager ResourceManager { 40 | get { 41 | if (object.ReferenceEquals(resourceMan, null)) { 42 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("PasswordGenerator.Properties.Resources", typeof(Resources).Assembly); 43 | resourceMan = temp; 44 | } 45 | return resourceMan; 46 | } 47 | } 48 | 49 | /// 50 | /// 使用此强类型资源类,为所有资源查找 51 | /// 重写当前线程的 CurrentUICulture 属性。 52 | /// 53 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 54 | internal static global::System.Globalization.CultureInfo Culture { 55 | get { 56 | return resourceCulture; 57 | } 58 | set { 59 | resourceCulture = value; 60 | } 61 | } 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /PasswordGenerator/Properties/Resources.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | text/microsoft-resx 107 | 108 | 109 | 2.0 110 | 111 | 112 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 113 | 114 | 115 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | -------------------------------------------------------------------------------- /PasswordGenerator/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // 此代码由工具生成。 4 | // 运行时版本:4.0.30319.42000 5 | // 6 | // 对此文件的更改可能会导致不正确的行为,并且如果 7 | // 重新生成代码,这些更改将会丢失。 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace PasswordGenerator.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "15.9.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | 26 | [global::System.Configuration.UserScopedSettingAttribute()] 27 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 28 | [global::System.Configuration.DefaultSettingValueAttribute("True")] 29 | public bool IncludeNum { 30 | get { 31 | return ((bool)(this["IncludeNum"])); 32 | } 33 | set { 34 | this["IncludeNum"] = value; 35 | } 36 | } 37 | 38 | [global::System.Configuration.UserScopedSettingAttribute()] 39 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 40 | [global::System.Configuration.DefaultSettingValueAttribute("True")] 41 | public bool IncludeCapital { 42 | get { 43 | return ((bool)(this["IncludeCapital"])); 44 | } 45 | set { 46 | this["IncludeCapital"] = value; 47 | } 48 | } 49 | 50 | [global::System.Configuration.UserScopedSettingAttribute()] 51 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 52 | [global::System.Configuration.DefaultSettingValueAttribute("True")] 53 | public bool IncludeLowercase { 54 | get { 55 | return ((bool)(this["IncludeLowercase"])); 56 | } 57 | set { 58 | this["IncludeLowercase"] = value; 59 | } 60 | } 61 | 62 | [global::System.Configuration.UserScopedSettingAttribute()] 63 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 64 | [global::System.Configuration.DefaultSettingValueAttribute("False")] 65 | public bool IncludeSpecCharator { 66 | get { 67 | return ((bool)(this["IncludeSpecCharator"])); 68 | } 69 | set { 70 | this["IncludeSpecCharator"] = value; 71 | } 72 | } 73 | 74 | [global::System.Configuration.UserScopedSettingAttribute()] 75 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 76 | [global::System.Configuration.DefaultSettingValueAttribute("8")] 77 | public string PasswordLength { 78 | get { 79 | return ((string)(this["PasswordLength"])); 80 | } 81 | set { 82 | this["PasswordLength"] = value; 83 | } 84 | } 85 | 86 | [global::System.Configuration.UserScopedSettingAttribute()] 87 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 88 | [global::System.Configuration.DefaultSettingValueAttribute("~!@#$%^&*()_-+={}[]|\\\\<>/?")] 89 | public string SpecCharacters { 90 | get { 91 | return ((string)(this["SpecCharacters"])); 92 | } 93 | set { 94 | this["SpecCharacters"] = value; 95 | } 96 | } 97 | 98 | [global::System.Configuration.UserScopedSettingAttribute()] 99 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 100 | [global::System.Configuration.DefaultSettingValueAttribute("True")] 101 | public bool CharTypeProbEqual { 102 | get { 103 | return ((bool)(this["CharTypeProbEqual"])); 104 | } 105 | set { 106 | this["CharTypeProbEqual"] = value; 107 | } 108 | } 109 | 110 | [global::System.Configuration.UserScopedSettingAttribute()] 111 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 112 | [global::System.Configuration.DefaultSettingValueAttribute("False")] 113 | public bool GenerateGUID { 114 | get { 115 | return ((bool)(this["GenerateGUID"])); 116 | } 117 | set { 118 | this["GenerateGUID"] = value; 119 | } 120 | } 121 | } 122 | } 123 | -------------------------------------------------------------------------------- /PasswordGenerator/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | True 7 | 8 | 9 | True 10 | 11 | 12 | True 13 | 14 | 15 | False 16 | 17 | 18 | 8 19 | 20 | 21 | ~!@#$%^&*()_-+={}[]|\\<>/? 22 | 23 | 24 | True 25 | 26 | 27 | False 28 | 29 | 30 | -------------------------------------------------------------------------------- /PasswordGenerator/Properties/app.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 47 | 54 | 55 | 69 | -------------------------------------------------------------------------------- /PasswordGenerator/Settings.cs: -------------------------------------------------------------------------------- 1 | namespace PasswordGenerator.Properties { 2 | 3 | 4 | // 通过此类可以处理设置类的特定事件: 5 | // 在更改某个设置的值之前将引发 SettingChanging 事件。 6 | // 在更改某个设置的值之后将引发 PropertyChanged 事件。 7 | // 在加载设置值之后将引发 SettingsLoaded 事件。 8 | // 在保存设置值之前将引发 SettingsSaving 事件。 9 | internal sealed partial class Settings { 10 | 11 | public Settings() { 12 | // // 若要为保存和更改设置添加事件处理程序,请取消注释下列行: 13 | // 14 | // this.SettingChanging += this.SettingChangingEventHandler; 15 | // 16 | // this.SettingsSaving += this.SettingsSavingEventHandler; 17 | // 18 | } 19 | 20 | private void SettingChangingEventHandler(object sender, System.Configuration.SettingChangingEventArgs e) { 21 | // 在此处添加用于处理 SettingChangingEvent 事件的代码。 22 | } 23 | 24 | private void SettingsSavingEventHandler(object sender, System.ComponentModel.CancelEventArgs e) { 25 | // 在此处添加用于处理 SettingsSaving 事件的代码。 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /PasswordGenerator/ico.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/PasswordGenerator/2412e2a2fbb198ef340c47ddaf2a68a2e8eb732b/PasswordGenerator/ico.ico -------------------------------------------------------------------------------- /PasswordGenerator/ico_s.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/PasswordGenerator/2412e2a2fbb198ef340c47ddaf2a68a2e8eb732b/PasswordGenerator/ico_s.ico -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # PasswordGenerator 2 | 这是一个用于生成一个随机字符串的小工具。 3 | 4 | ## 截图 5 | 6 | 主界面 -------------------------------------------------------------------------------- /screenshots/main_window.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/PasswordGenerator/2412e2a2fbb198ef340c47ddaf2a68a2e8eb732b/screenshots/main_window.jpg --------------------------------------------------------------------------------