From ee06a6dcd64342d3bf451ef00c04524f3e344409 Mon Sep 17 00:00:00 2001 From: PD-Team <8293321+bauthard@users.noreply.github.com> Date: Wed, 27 Jan 2021 14:53:05 +0530 Subject: [PATCH 1/2] short flag updates --- v2/cmd/nuclei/main.go | 34 +++++++++++++++++----------------- v2/go.mod | 3 +++ v2/go.sum | 10 ++++++++++ 3 files changed, 30 insertions(+), 17 deletions(-) diff --git a/v2/cmd/nuclei/main.go b/v2/cmd/nuclei/main.go index ecb65595..f3aae549 100644 --- a/v2/cmd/nuclei/main.go +++ b/v2/cmd/nuclei/main.go @@ -39,41 +39,41 @@ based on templates offering massive extensibility and ease of use.`) set.StringVar(&cfgFile, "config", "", "Nuclei configuration file") set.BoolVar(&options.Metrics, "metrics", false, "Expose nuclei metrics on a port") set.IntVar(&options.MetricsPort, "metrics-port", 9092, "Port to expose nuclei metrics on") - set.StringVar(&options.Target, "target", "", "Target is a single target to scan using template") - set.StringSliceVarP(&options.Templates, "templates", "t", []string{}, "Template input dir/file/files to run on host. Can be used multiple times. Supports globbing.") - set.StringSliceVar(&options.ExcludedTemplates, "exclude", []string{}, "Template input dir/file/files to exclude. Can be used multiple times. Supports globbing.") - set.StringSliceVar(&options.Severity, "severity", []string{}, "Filter templates based on their severity and only run the matching ones. Comma-separated values can be used to specify multiple severities.") + set.StringVarP(&options.Target, "target", "u", "", "Single target to scan") + set.StringSliceVarP(&options.Templates, "templates", "t", []string{}, "Templates to run, supports single and multiple templates using directory.") + set.StringSliceVar(&options.ExcludedTemplates, "exclude", []string{}, "Templates to exclude, supports single and multiple templates using directory.") + set.StringSliceVar(&options.Severity, "severity", []string{}, "Templates to run based on severity, supports single and multiple severity.") set.StringVarP(&options.Targets, "list", "l", "", "List of URLs to run templates on") set.StringVarP(&options.Output, "output", "o", "", "File to write output to (optional)") set.StringVar(&options.ProxyURL, "proxy-url", "", "URL of the proxy server") set.StringVar(&options.ProxySocksURL, "proxy-socks-url", "", "URL of the proxy socks server") set.BoolVar(&options.Silent, "silent", false, "Show only results in output") set.BoolVar(&options.Version, "version", false, "Show version of nuclei") - set.BoolVarP(&options.Verbose, "verbose", "v", false, "Show Verbose output") + set.BoolVarP(&options.Verbose, "verbose", "v", false, "Show verbose output") set.BoolVar(&options.NoColor, "no-color", false, "Disable colors in output") set.IntVar(&options.Timeout, "timeout", 5, "Time to wait in seconds before timeout") set.IntVar(&options.Retries, "retries", 1, "Number of times to retry a failed request") - set.BoolVar(&options.RandomAgent, "random-agent", false, "Use randomly selected HTTP User-Agent header value") + set.BoolVarP(&options.RandomAgent, "random-agent", "ra", false, "Use randomly selected HTTP User-Agent header value") set.StringSliceVarP(&options.CustomHeaders, "header", "H", []string{}, "Custom Header.") - set.BoolVar(&options.Debug, "debug", false, "Allow debugging of request/responses") - set.BoolVar(&options.DebugRequests, "debug-req", false, "Allow debugging of request") - set.BoolVar(&options.DebugResponse, "debug-resp", false, "Allow debugging of response") - set.BoolVar(&options.UpdateTemplates, "update-templates", false, "Update Templates updates the installed templates (optional)") + set.BoolVar(&options.Debug, "debug", false, "Debugging request and responses") + set.BoolVar(&options.DebugRequests, "debug-req", false, "Debugging request") + set.BoolVar(&options.DebugResponse, "debug-resp", false, "Debugging response") + set.BoolVarP(&options.UpdateTemplates, "update-templates", "ut", false, "Download / updates nuclei community templates") set.StringVar(&options.TraceLogFile, "trace-log", "", "File to write sent requests trace log") - set.StringVar(&options.TemplatesDirectory, "update-directory", templatesDirectory, "Directory to use for storing nuclei-templates") + set.StringVarP(&options.TemplatesDirectory, "update-directory", "ud", templatesDirectory, "Directory storing nuclei-templates") set.BoolVar(&options.JSON, "json", false, "Write json output to files") set.BoolVar(&options.JSONRequests, "include-rr", false, "Write requests/responses for matches in JSON output") set.BoolVar(&options.EnableProgressBar, "stats", false, "Display stats of the running scan") set.BoolVar(&options.TemplateList, "tl", false, "List available templates") - set.IntVar(&options.RateLimit, "rate-limit", 150, "Rate-Limit (maximum requests/second") - set.BoolVar(&options.StopAtFirstMatch, "stop-at-first-match", false, "Stop processing http requests at first match (this may break template/workflow logic)") - set.IntVar(&options.BulkSize, "bulk-size", 25, "Maximum Number of hosts analyzed in parallel per template") + set.IntVarP(&options.RateLimit, "rate-limit", "rl", 150, "Maximum requests to send per second") + set.BoolVarP(&options.StopAtFirstMatch, "stop-at-first-path", "spm", false, "Stop processing http requests at first match (this may break template/workflow logic)") + set.IntVarP(&options.BulkSize, "bulk-size", "bs", 25, "Maximum Number of hosts analyzed in parallel per template") set.IntVarP(&options.TemplateThreads, "concurrency", "c", 10, "Maximum Number of templates executed in parallel") set.BoolVar(&options.Project, "project", false, "Use a project folder to avoid sending same request multiple times") set.StringVar(&options.ProjectPath, "project-path", "", "Use a user defined project folder, temporary folder is used if not specified but enabled") - set.BoolVar(&options.NoMeta, "no-meta", false, "Don't display metadata for the matches") - set.BoolVar(&options.TemplatesVersion, "templates-version", false, "Shows the installed nuclei-templates version") - set.StringVar(&options.BurpCollaboratorBiid, "burp-collaborator-biid", "", "Burp Collaborator BIID") + set.BoolVarP(&options.NoMeta, "no-meta", "nm", false, "Don't display metadata for the matches") + set.BoolVarP(&options.TemplatesVersion, "templates-version", "tv", false, "Shows the installed nuclei-templates version") + set.StringVarP(&options.BurpCollaboratorBiid, "burp-collaborator-biid", "biid", "", "Burp Collaborator BIID") set.Parse() if cfgFile != "" { diff --git a/v2/go.mod b/v2/go.mod index e4084070..33fdbffb 100644 --- a/v2/go.mod +++ b/v2/go.mod @@ -15,16 +15,19 @@ require ( github.com/miekg/dns v1.1.35 github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect github.com/modern-go/reflect2 v1.0.1 // indirect + github.com/olekukonko/tablewriter v0.0.4 github.com/pkg/errors v0.9.1 github.com/projectdiscovery/clistats v0.0.7 github.com/projectdiscovery/collaborator v0.0.2 github.com/projectdiscovery/fastdialer v0.0.2 + github.com/projectdiscovery/goflags v0.0.2 github.com/projectdiscovery/gologger v1.1.3 github.com/projectdiscovery/hmap v0.0.1 github.com/projectdiscovery/rawhttp v0.0.4 github.com/projectdiscovery/retryabledns v1.0.5 github.com/projectdiscovery/retryablehttp-go v1.0.1 github.com/remeh/sizedwaitgroup v1.0.0 + github.com/rs/xid v1.2.1 github.com/spaolacci/murmur3 v1.1.0 github.com/spf13/cast v1.3.1 github.com/stretchr/testify v1.6.1 diff --git a/v2/go.sum b/v2/go.sum index 0225d7a0..d4d7e867 100644 --- a/v2/go.sum +++ b/v2/go.sum @@ -5,6 +5,8 @@ github.com/Masterminds/semver v1.4.2/go.mod h1:MB6lktGJrhw8PrUyiEoblNEGEQ+RzHPF0 github.com/Masterminds/vcs v1.13.0/go.mod h1:N09YCmOQr6RLxC6UNHzuVwAdodYbbnycGHSmwVJjcKA= github.com/blang/semver v3.5.1+incompatible h1:cQNTCjp13qL8KC3Nbxr/y2Bqb63oX6wdnnjpJbkM4JQ= github.com/blang/semver v3.5.1+incompatible/go.mod h1:kRBLl5iJ+tD4TcOOxsy/0fnwebNt5EWlYSAyrTnjyyk= +github.com/cnf/structhash v0.0.0-20201127153200-e1b16c1ebc08 h1:ox2F0PSMlrAAiAdknSRMDrAr8mfxPCfSZolH+/qQnyQ= +github.com/cnf/structhash v0.0.0-20201127153200-e1b16c1ebc08/go.mod h1:pCxVEbcm3AMg7ejXyorUXi6HQCzOIBf7zEDVPtw0/U4= github.com/codegangsta/cli v1.20.0/go.mod h1:/qJNoX69yVSKu5o4jLyXAENLRyk1uhi7zkbQ3slBdOA= github.com/corpix/uarand v0.1.1 h1:RMr1TWc9F4n5jiPDzFHtmaUXLKLNUFK0SgCLo4BhX/U= github.com/corpix/uarand v0.1.1/go.mod h1:SFKZvkcRoLqVRFZ4u25xPmp6m9ktANfbpXZ7SJ0/FNU= @@ -53,6 +55,8 @@ github.com/mattn/go-colorable v0.1.8 h1:c1ghPdyEDarC70ftn0y+A/Ee++9zz8ljHG1b13eJ github.com/mattn/go-colorable v0.1.8/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc= github.com/mattn/go-isatty v0.0.12 h1:wuysRhFDzyxgEmMf5xjvJ2M9dZoWAXNNr5LSBS7uHXY= github.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU= +github.com/mattn/go-runewidth v0.0.7 h1:Ei8KR0497xHyKJPAv59M1dkC+rOZCMBJ+t3fZ+twI54= +github.com/mattn/go-runewidth v0.0.7/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI= github.com/miekg/dns v1.1.29/go.mod h1:KNUDUusw/aVsxyTYZM1oqvCicbwhgbNgztCETuNZ7xM= github.com/miekg/dns v1.1.35 h1:oTfOaDH+mZkdcgdIjH6yBajRGtIwcwcaR+rt23ZSrJs= github.com/miekg/dns v1.1.35/go.mod h1:KNUDUusw/aVsxyTYZM1oqvCicbwhgbNgztCETuNZ7xM= @@ -66,6 +70,8 @@ github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742/go.mod h1:bx2lN github.com/modern-go/reflect2 v1.0.1 h1:9f412s+6RmYXLWZSEzVVgPGK7C2PphHj5RJrvfx9AWI= github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= github.com/ngdinhtoan/glide-cleanup v0.2.0/go.mod h1:UQzsmiDOb8YV3nOsCxK/c9zPpCZVNoHScRE3EO9pVMM= +github.com/olekukonko/tablewriter v0.0.4 h1:vHD/YYe1Wolo78koG299f7V/VAS08c6IpCLn+Ejf/w8= +github.com/olekukonko/tablewriter v0.0.4/go.mod h1:zq6QwlOf5SlnkVbMSr5EoBv3636FWnp+qbPhuoO21uA= github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= github.com/onsi/ginkgo v1.7.0 h1:WSHQ+IS43OoUrWtD1/bbclrwK8TTH5hzp+umCiuxHgs= github.com/onsi/ginkgo v1.7.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= @@ -81,6 +87,8 @@ github.com/projectdiscovery/collaborator v0.0.2 h1:BSiMlWM3NvuKbpedn6fIjjEo5b7q5 github.com/projectdiscovery/collaborator v0.0.2/go.mod h1:J1z0fC7Svutz3LJqoRyTHA3F0Suh4livmkYv8MnKw20= github.com/projectdiscovery/fastdialer v0.0.2 h1:0VUoHhtUt/HThHUUwbWBxTnFI+tM13RN+TmcybEvbRc= github.com/projectdiscovery/fastdialer v0.0.2/go.mod h1:wjSQICydWE54N49Lcx9nnh5OmtsRwIcLgiVT3GT2zgA= +github.com/projectdiscovery/goflags v0.0.2 h1:FJwQOmSt7gUTld7YOMHT9knJfecE1VoquaieNwpp5+E= +github.com/projectdiscovery/goflags v0.0.2/go.mod h1:oTj/2fnlF29vQCTgRTa6+oK3OHJqylwGuKfb0y5Gd3A= github.com/projectdiscovery/gologger v1.1.3 h1:rKWZW2QUigRV1jnlWwWJbJRvz8b+T/+bB5qemDGGBJU= github.com/projectdiscovery/gologger v1.1.3/go.mod h1:jdXflz3TLB8bcVNzb0v26TztI9KPz8Lr4BVdUhNUs6E= github.com/projectdiscovery/hmap v0.0.1 h1:VAONbJw5jP+syI5smhsfkrq9XPGn4aiYy5pR6KR1wog= @@ -93,6 +101,8 @@ github.com/projectdiscovery/retryablehttp-go v1.0.1 h1:V7wUvsZNq1Rcz7+IlcyoyQlNw github.com/projectdiscovery/retryablehttp-go v1.0.1/go.mod h1:SrN6iLZilNG1X4neq1D+SBxoqfAF4nyzvmevkTkWsek= github.com/remeh/sizedwaitgroup v1.0.0 h1:VNGGFwNo/R5+MJBf6yrsr110p0m4/OX4S3DCy7Kyl5E= github.com/remeh/sizedwaitgroup v1.0.0/go.mod h1:3j2R4OIe/SeS6YDhICBy22RWjJC5eNCJ1V+9+NVNYlo= +github.com/rs/xid v1.2.1 h1:mhH9Nq+C1fY2l1XIpgxIiUOfNpRBYH1kKcr+qfKgjRc= +github.com/rs/xid v1.2.1/go.mod h1:+uKXf+4Djp6Md1KODXJxgGQPKngRmWyn10oCKFzNHOQ= github.com/spaolacci/murmur3 v1.1.0 h1:7c1g84S4BPRrfL5Xrdp6fOJ206sU9y293DDHaoy0bLI= github.com/spaolacci/murmur3 v1.1.0/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= github.com/spf13/cast v1.3.1 h1:nFm6S0SMdyzrzcmThSipiEubIDy8WEXKNZ0UOgiRpng= From 978383a01b0ce5b20af9e5f4c8c88f13f2dbb369 Mon Sep 17 00:00:00 2001 From: PD-Team <8293321+bauthard@users.noreply.github.com> Date: Sat, 30 Jan 2021 12:12:19 +0530 Subject: [PATCH 2/2] master changes to dev (#507) --- CODE_OF_CONDUCT.md | 76 ++++++ LICENSE.md | 2 +- README.md | 349 +++++++++----------------- README_CN.md | 253 +++++++++++++++++++ static/Join-Discord.png | Bin 0 -> 95194 bytes static/check-nuclei-documentation.png | Bin 0 -> 49412 bytes static/download-templates-button.png | Bin 14754 -> 0 bytes static/learn-more-button.png | Bin 0 -> 44133 bytes static/nuclei-flow.jpg | Bin 0 -> 1224331 bytes static/nuclei-run.png | Bin 1215790 -> 0 bytes static/read-the-docs-button.png | Bin 14907 -> 0 bytes static/regression-cycle.md | 1 + static/regression-with-nuclei.jpg | Bin 0 -> 429674 bytes 13 files changed, 455 insertions(+), 226 deletions(-) create mode 100644 CODE_OF_CONDUCT.md create mode 100644 README_CN.md create mode 100644 static/Join-Discord.png create mode 100644 static/check-nuclei-documentation.png delete mode 100644 static/download-templates-button.png create mode 100644 static/learn-more-button.png create mode 100644 static/nuclei-flow.jpg delete mode 100644 static/nuclei-run.png delete mode 100644 static/read-the-docs-button.png create mode 100644 static/regression-cycle.md create mode 100644 static/regression-with-nuclei.jpg diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 00000000..7ff48c18 --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1,76 @@ +# Contributor Covenant Code of Conduct + +## Our Pledge + +In the interest of fostering an open and welcoming environment, we as +contributors and maintainers pledge to making participation in our project and +our community a harassment-free experience for everyone, regardless of age, body +size, disability, ethnicity, sex characteristics, gender identity and expression, +level of experience, education, socio-economic status, nationality, personal +appearance, race, religion, or sexual identity and orientation. + +## Our Standards + +Examples of behavior that contributes to creating a positive environment +include: + +* Using welcoming and inclusive language +* Being respectful of differing viewpoints and experiences +* Gracefully accepting constructive criticism +* Focusing on what is best for the community +* Showing empathy towards other community members + +Examples of unacceptable behavior by participants include: + +* The use of sexualized language or imagery and unwelcome sexual attention or + advances +* Trolling, insulting/derogatory comments, and personal or political attacks +* Public or private harassment +* Publishing others' private information, such as a physical or electronic + address, without explicit permission +* Other conduct which could reasonably be considered inappropriate in a + professional setting + +## Our Responsibilities + +Project maintainers are responsible for clarifying the standards of acceptable +behavior and are expected to take appropriate and fair corrective action in +response to any instances of unacceptable behavior. + +Project maintainers have the right and responsibility to remove, edit, or +reject comments, commits, code, wiki edits, issues, and other contributions +that are not aligned to this Code of Conduct, or to ban temporarily or +permanently any contributor for other behaviors that they deem inappropriate, +threatening, offensive, or harmful. + +## Scope + +This Code of Conduct applies both within project spaces and in public spaces +when an individual is representing the project or its community. Examples of +representing a project or community include using an official project e-mail +address, posting via an official social media account, or acting as an appointed +representative at an online or offline event. Representation of a project may be +further defined and clarified by project maintainers. + +## Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be +reported by contacting the project team at contact@projectdiscovery.io. All +complaints will be reviewed and investigated and will result in a response that +is deemed necessary and appropriate to the circumstances. The project team is +obligated to maintain confidentiality with regard to the reporter of an incident. +Further details of specific enforcement policies may be posted separately. + +Project maintainers who do not follow or enforce the Code of Conduct in good +faith may face temporary or permanent repercussions as determined by other +members of the project's leadership. + +## Attribution + +This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, +available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html + +[homepage]: https://www.contributor-covenant.org + +For answers to common questions about this code of conduct, see +https://www.contributor-covenant.org/faq diff --git a/LICENSE.md b/LICENSE.md index ae18f3e8..f65b0137 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020 Exposed Atoms +Copyright (c) 2020 ProjectDiscovery, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 8eabaaf7..fa86ac15 100644 --- a/README.md +++ b/README.md @@ -1,268 +1,167 @@
+ How • + Install • + For Security Engineers • + For Developers • + Wiki • + Credits • + License • + Join Discord
+--- -Nuclei is a fast tool for configurable targeted scanning based on templates offering massive extensibility and ease of use. +Nuclei is used to send requests across targets based on a template leading to zero false positives and providing fast scanning on large number of hosts. Nuclei offers scanning for a variety of protocols including TCP, DNS, HTTP, File, etc. With powerful and flexible templating, all kinds of security checks can be modelled with Nuclei. -Nuclei is used to send requests across targets based on a template leading to zero false positives and providing effective scanning for known paths. Main use cases for nuclei are during initial reconnaissance phase to quickly check for low hanging fruits or CVEs across targets that are known and easily detectable. It uses [retryablehttp-go library](https://github.com/projectdiscovery/retryablehttp-go) designed to handle various errors and retries in case of blocking by WAFs, this is also one of our core modules from custom-queries. - -We have also [open-sourced a template repository](https://github.com/projectdiscovery/nuclei-templates) to maintain various type of templates, we hope that you will contribute there too. Templates are provided in hopes that these will be useful and will allow everyone to build their own templates for the scanner. Checkout the templating guide at [**nuclei.projectdiscovery.io**](https://nuclei.projectdiscovery.io/templating-guide/) for a primer on nuclei templates. - -## Resources - -- [Features](#features) -- [Installation Instructions](#installation-instructions) - - [From Binary](#from-binary) - - [From Source](#from-source) - - [From Github](#from-github) -- [Nuclei templates](#nuclei-templates) -- [Usage](#usage) -- [Running nuclei](#running-nuclei) - - [Running with a single template.](#running-with-single-template) - - [Running with multiple templates.](#running-with-multiple-templates) - - [Running with subfinder](#running-with-subfinder) - - [Running in Docker](#running-in-docker-container) -- [Rate Limits](#rate-limits) -- [Template exclusion](#template-exclusion) -- [Thanks](#thanks) +We have a [dedicated repository](https://github.com/projectdiscovery/nuclei-templates) that houses various type of vulnerability templates contributed by **more than 100** security researchers and engineers. It is preloaded with ready to use templates using `-update-templates` flag. -## Features + +## How it works + + ++ +### Download Templates + +You can download and update the nuclei templates using *update-templates* flag of nuclei that downloads all the available **nuclei-templates** from [Github project](https://github.com/projectdiscovery/nuclei-templates), a community curated list of templates that are ready to use. + +`▶ nuclei -update-templates` + +Nuclei is designed to used with custom templates according to the target and workflow, you can write your own checks for your specific workflow and needs, please refer to nuclei **[templating guide](https://nuclei.projectdiscovery.io/templating-guide/)** to write your own custom templates. + + | +
-## Usage +**For bugbounty hunters:** -```sh -nuclei -h -``` +Nuclei allows you to customise your testing approach with your own suite of checks and easily run across your bug bounty programs. Moroever, Nuclei can be easily integrated into any continuous scanning workflow. -This will display help for the tool. Here are all the switches it supports. +- Designed to be easily integrated into other tool workflow. +- Can process thousands of hosts in few minutes. +- Easily automate your custom testing approach with our simple YAML DSL. -| Flag | Description | Example | -| ---------------------- | --------------------------------------------------------- | ----------------------------------------------- | -| bulk-size | Max hosts analyzed in parallel per template ( default 25) | nuclei -bulk-size 25 | -| burp-collaborator-biid | Burp Collaborator BIID | nuclei -burp-collaborator-biid XXXX | -| c | Max templates processed in parallel (default 10) | nuclei -c 10 | -| l | List of urls to run templates | nuclei -l urls.txt | -| target | Target to scan using Templates | nuclei -target hxxps://example.com | -| t | Templates input file/files to check across hosts | nuclei -t git-core.yaml -t cves/ | -| no-color | Don't Use colors in output | nuclei -no-color | -| no-meta | Don't display metadata for the matches | nuclei -no-meta | -| json | Prints and write output in json format | nuclei -json | -| include-rr | Inlcude req/resp of matched output in JSON output | nuclei -json -include-rr | -| o | File to save output result (optional) | nuclei -o output.txt | -| project | Project flag to avoid sending same requests | nuclei -project | -| project-path | Use a user defined project folder | nuclei -project -project-path test | -| stats | Enable the progress bar (optional) | nuclei -stats | -| silent | Show only found results in output | nuclei -silent | -| retries | Number of times to retry a failed request | nuclei -retries 1 | -| timeout | Seconds to wait before timeout (default 5) | nuclei -timeout 5 | -| trace-log | File to write sent requests trace log | nuclei -trace-log logs | -| rate-limit | Maximum requests/second (default 150) | nuclei -rate-limit 150 | -| severity | Run templates based on severity | nuclei -severity critical,high | -| stop-at-first-match | Stop processing http requests at first match | nuclei -stop-at-first-match | -| exclude | Template input dir/file/files to exclude | nuclei -exclude panels -exclude tokens | -| debug | Allow debugging of request/responses. | nuclei -debug | -| update-templates | Download and updates nuclei templates | nuclei -update-templates | -| update-directory | Directory for storing nuclei-templates(optional) | nuclei -update-directory templates | -| tl | List available templates | nuclei -tl | -| templates-version | Shows the installed nuclei-templates version | nuclei -templates-version | -| v | Shows verbose output of all sent requests | nuclei -v | -| version | Show version of nuclei | nuclei -version | -| proxy-url | Proxy URL | nuclei -proxy-url hxxp://127.0.0.1:8080 | -| proxy-socks-url | Socks proxyURL | nuclei -proxy-socks-url socks5://127.0.0.1:8080 | -| random-agent | Use random User-Agents | nuclei -random-agent | -| H | Custom Header | nuclei -H "x-bug-bounty: hacker" | +Please check our other open-source projects that might fit into your bug bounty workflow: [github.com/projectdiscovery](http://github.com/projectdiscovery), we also host daily [refresh of DNS data at Chaos](http://chaos.projectdiscovery.io). -## Installation Instructions + | +
+ +**For pentesters:** -The installation is easy. You can download the pre-built binaries for your platform from the [Releases](https://github.com/projectdiscovery/nuclei/releases/) page. Extract them using tar, move it to your `$PATH`and you're ready to go. +Nuclei immensely improve how you approach security assessment by augmenting the manual repetitve processes. Consultancies are already converting their manual assessment steps with Nuclei, it allows them to run set of their custom assessment approach across thousands of hosts in an automated manner. -```sh -Download latest binary from https://github.com/projectdiscovery/nuclei/releases +Pen-testers get the full power of our public templates and customization capabilities to speed-up their assessment process, and specifically with the regression cycle where you can easily verify the fix. -▶ tar -xzvf nuclei-linux-amd64.tar.gz -▶ mv nuclei /usr/local/bin/ -▶ nuclei -version -``` +- Easily create your compliance, standards suite (e.g. OWASP Top 10) checklist. +- With capabilities like [fuzz](https://nuclei.projectdiscovery.io/templating-guide/#advance-fuzzing) and [workflows](https://nuclei.projectdiscovery.io/templating-guide/#workflows), complex manual steps and repetitive assessment can be easily automated with Nuclei. +- Easy to re-test vulnerability-fix by just re-running the template. -### From Source + | +
|uWgHSlXYz%e`bJ%OTR#s?;Ns`SMjjqds_Nkla>m*6O zmZa}aEVLc9HT6pA^~BrsPxp&`^5J*C((fO*^yCkSgZ`oUZh30Xe9E4Gny&w7joe1x z&Ntb@mAU2z{tBQ!;kquC=hexjqf59#*-VU(!9UVEGKUe3^wZ}xZFuZ0>0`&>>O7dX zjgs!Gc`6cG>>ISwd9#2E#3@wd*>=F0msW2F#O@8AVBrdBpL_^Sq|SZC^1ZV%LZ@Q- zWZGeDO-)?!qM5Hh)sBcKSd;_|-7-gKx-eG5 z!zlLg0yGV^WWoU6pQ%DYJ!I6E@>-oOk_?+{x}{|&X_7i8Qt z9fZWoia#U<5aguniWu&s2CP9ca?IFC4pQKWLmA5@%J%3HjyVqki(iE>uUYiGe5wR; zz2vMDsGpvn=~o2B{wHeh5uxL9^WU;eO8cVQ%Y0tzNayL|AVbS?;Kd*e74N5}aSC`# zar4(zByazeX-NjpSFSiyb915Q3u|jhOQsgCb6I`}4fVa7A%v1)5_Ryj)``_&R%30e zsCFm9)zaFB2lY>>`nL^3KDlsDw#h}iM*EosRbg;HxC`+4IZIUnmrUBe{(!agecR{7 zZCjt&dOa13k2i7T=id05CFOP}BsBrIkawii5U_5FBK%v*jx<}^(JI!79!0`lfnIp1 z;)wc2+szfKk{3Cu;$)DBaX#FV+=h5MDNMgs--h@l55cDqBH5z3pU;&U5Ja98+69R_ zh`SXAWOMrsQg(RsL<#n{*jF!3PB{}*El1_Doa^GUXCLrw(apU2#0p4fGcQUs$cv*6 zT;rpS1N}kJ&t#dsIToe}iXk+2B56#HAua}lM4dJcBUJlKRt-O{6%_Ln5Yaa>VR~oQ zB)t=+A20SM(wFgI Wttz_^z-;0zAB&Drtjv#r-&WYaIfCt>=~3~1P6t)- zwG)N@erhwpswB;|w(@zAM58q&N8|=|Aioc^B*4C7roD!$AIdrrgo)G{)QMvQtitqP z6kubmoBAL<=zx8mKHnDo)vSJ7^y|*O%lcB&h%`<1EvF?ID{ _D*Eyj#pq`G zP30q#1f+EI
;-nK}q=-^R+ARHqnaVx9sz^3> zYtahzezvxT(V?LS|Fo{-Of1tag44zH^=H&;8uSKvK~C@S!%3-4*u^PZY8UbTJD+|T zX^3YQekZc4u(VZ-q?P~mBUWM(fGO<1qd|Y5>BAXEh6ikXK@xVYs`62&`8k~FQIJ4( z)1wqaUapw> x5z{_0he7ti$pNC=z#On6dPjtZIs!G+TZ%!5$uk0VR^4r4(78d$rzAz-B@3 z&-_U{;I`%rim_)!u?p9ctPzI?`*tiy9&5 4op%FAZX7l&i|NK#>tmH4ackL)k0uq1)U5eF28qH&7tNlt5jFel5);So!y*Xsa z9D^!qWFEp4Ha!-G>!Kus+E%lppIDd&n&bAgRBX|lFE0~J2~I9My>Q*ydmx+3`b3u+ zVoVxBQo-r^*45Uj)aE2Ej%0*#v ~}$~F;JsPIPtYSHW#m6(8_ztopeX+qSy7?+=y z7l(-4Zb3Vk%WKQ5$IL%=UC1~Ee~lNz-FTLacdIN-t@^HhBPHLf1IDIHdIr=hxi43~ z!}>06mHAtIIEw?fdccvBLZKi}#tUDLd&NwcB3#?+PU2hg6x5OeBv(%K>M%C<@!wh+ zB`hqsZ0jp<6DUS!a;clbRdzaqKiEJ;eJ}cip-Tt4?^B)1MR`mVqr^$)p)xqA SVUs;MCSbjXRm_wjqq;!m+0 zXSw|mud@vTM4S5@uyEH*7$HcFw?iHsoLL~5^4N^_UdU4DdoOZ96+tOb;{XOR@-<5_ z@S2E%6wMzPpRQ!aGBeF2XUbkSI%jm5M4eoiIw3tg$=)Ukdce*7!26~;3SVKoqcbFO z7MU9zXwqoZ3r+j!IcNGd9x=pE9X1(T5nU$|gRnAh3lk-l*IBK9Jm2b}y&!f)(MR(~ z<$suj|4S;6PpLh3UlGTbjFIHtoyv`E+*4sE^qUoD@|lb2wy0o>o(d_cnqYlT_d>*( zXt)k?@<-9jckIJP(*okT1DgAcoYy}uLb@<+xbHMUILfa?D|z#`=5OQq`ct$HWZE`h z@s-|%q=M(HxH4FL0J==G|8Z5EUUH^OW5y0zZfVe%+c|oDqZa3}G!LWV?}-?GY!LD* z?#=XZac@GjeWJf{`nr$-;`lePFGTNKqaSz>$k?4dr1GWZAK#F5hELusKq-D3fC_Wl zdiD({UbNGO2$O`kJ!>@za=OIy%lJpnBA$g{+m~f|9*c%+sC(K6sqS${$IQo3T|>tP zx0d2@8HrV37ad~2bvunrZP~QRune2wZP>4$rGeiz7N4lM@+#mGX>!(_&0DRUgIps$ zKK?SpiEOTUnf?s^P7~|?UK{M#Q@zICCimNc`Zd1h)uh>S^yw~}G|5dpaz8_G7myZq zw~2HJmJ%B>4kdw!lD&n04GX84)ue~{Ttyag4se@VGIL0QxQNgj)|n!Yc5X#2ugP|; zj$LRGDS_YPimFgnaaRk$$1{J^g0&d^Fu3Gqv~QP6C+48p@0TQ*xZPgy=DQ>;{0mWo zU)V1GWNR8m@7}KTc8<$%@I3l^XGI3Wl&E52iuX|Y`R5(Gf!+>A#$f60;wO(j#9R9H zQ@X}$h3#Jo8Xs$CY2OgN8}ds9hd5pptblci_eWP2Ty7sdqNNB38nhOZO7$n=sh2hO zIg^PBH5dh9fbx7U5Vb5Tee~jhzJQdw6J2O4XJX`7e~DUU-1^boS1{Sx?;p+*aq!?r ztP2b$#i#^s$>0j7#A)bX69Q7wH2D>#AHs=r&Nbf~>8yum4RP~p-z+X>Rqd1nVw@ia zrJTu_uV}xRH))EF ?DBBw_xJ@b+)?E+RV+vfgeEXB0ddA#8= zTi3`$ml}qczh8?ccL`pRQ=p9#T}(SR9ONch@Pb0Ab8v8Q%}TB+%_mTD_Onc8OgJfK zv|&Lz?8M SYJFheLc(f!m`FYjbY${eA{N3|Qt%1MO0w1zx`lMTOU2KQ>&+;kF<+&wX%_ zb&=^88YZqv?GJo98#rPgq|Y}kb|}qf7X5?Ik9x71)os{&F7d^=Oz&WxZ?PPw0Ao`r zw>#gzZL)n$vFy7)8MOceP1b1a+B)fLone5SZz E#-WKyRSx&9fOl=q*OX%WjbU8+B zz}u9;d@p YrQT~Y|P5xz_*B z$u2P5i0O)A+Vf?$XXFN?8-~5cL91u0c%CenjfX*2LfAY&^%Hx0d;U}seoY26QKD61 zJV~z@>$yO>Xk5dG#r*0}*#qr5T+dkc2G7I=+2rCX=2ck!C_!#Jkx`&iI`&41Xl7k| zicGXIjhCx!jqRelS!)b_Bk?IlD{B_hDJdY%Z^E2=$wx4@qNJ5C+MiaRdg}6PMyt2g z)w=LmOrt$cWVW|hTYH6O(xf@&oh?Q)leP4dxXa0zn66v@7b^afE${$oH1 IybCnySrZ?GnSoSi?`^{u5?5!3{K3n#M1MuNc^PuMi&)M4YaB+3WHvEV_&} zdc@gA-FOz2^7uE#`Ef1<8}|cpAvDHkz$A N6~!TXrdZz*W{A`GkB8#f;;-TlGr z?9ws_*F6vw47^oWfYOGh%~#lLu3i{YL%pB~w~SBNgBTk2ex5B9|Hk@04d9nl-T7XQ zn-cHK>Li-}$V2=T^?Tk(jotgC$V{;3o{nvqa3F}oTOMP~>M{Jni|&~D9M{bFXM807 zNt2%&7=sXVRh-;$L8SqA)Aq##4Sqf{5bOdqC$Fk$18^_eZmaV#V!s|jS*6h{BB##( z;g{9z#N(4>eU?l)CS{v=8iT;JLnzYj+}uNE=)~N$a+ta~L1iIGkezsyK)cS1Nbv+u zkI+b~Cnc;^JU4ep{doR5m$%<|T0M2{WLf~>8oZ-=I`!swLPeS 3l%zdO*AeVF6lP8damNZhw65i7c>D*S_VZ*JOnVXq%?Le@$h2>t zrJ9Uy0KI}$1e6-)ARR@KHjIKeLx-(%6n%`Z;p$|Z<<=u$O{PjQ?ToD7+D2M2ZLE=Y zypn-?uLhs$fG2WFr<3H0zp z?8_MG!QU{EBP}Dp( |UITF~{yr*KUX4`TI)E7o>u|^hEDeH+mg=SyJ)Y =MvpfGJ&g?3MN=H;SOyWL S7eW#>A5^<#Q`lr*98*P^W)|a2!q1)-? zOtwEh=s0I{JjLJy)3VU in>#`ZA oD2Nh({}Ewu*WP=TG(uEiHv^s=X$m zjRBHNUad^8Fr;H}qy1XhymMKxjrjY)cdi>=fgAEp1hAAdOY(N;v?+MzL8_; pbLD*>N%x@Ko0R^!sf8Bg%1F3|> YT_yy+Hiw=L*8cLo85ulzH{l z1S2;d^yN `~^ddh2bYo>>bZgH<*;IrA=JIQ0lqkHOa8tW7&q(Ocdo0-D3uz0EEY z0r{>g$L$n`ZemZWDr|*3TRm5G9{}3Cz>DwrH(O3Sm{V93t&0WOZ;8vM!SeFK>^z^^ zPwuG6xLvjEu t;DvOGKo^>U+GFCm>sYRmKHm=*sf0_BH_wnZbSMqOlQUOoS&Q9pj q(b8+nDz@TX8rPsCL!~~ORuiIzqha{xn&{t-fRy&gAwK%sX!2S z+IZTbt-L+Oro+L)t~WtB)V u8?`ArTrePa>2XK?13r@L0e?j0rV zf32K~a)anWsyF`!^~gke6laL)S^W%uIWF$7yB;4tg(pe< vYS*NYBxD70 zfF#uStb&`h2~lxF7Qr=vsFiEjmQl|tGq1~L>(sP#1T9v47oCrWVZ1bCkdn!W4C)F# zyMl^R!p2*mWRA?;IG%XO(knh;Upvu_XZr&>@=9bZzdpy_x?&nztV$0ihp5M{#>{z` zf-b1nt+H7TL30#9qKHJI)}?MyqSls99#@FPdXnp2TV5;a29Q7X6b9(#%;)dO&c9jD zHS~UAUHn{}|8d{~%XND#O9}9tsa {q{|?%x1|jUBMXvu; z@*iv%hK?hDd0!SJZz3XpK~!>;#wU=$7b_jVo(9!;S%+OzZ_ncXBU;IPXt{bW-vl2I zCLE|D&GwO3n%%w=wru?trGnIYCq}y7|190dZ9(G;A@0B$Q5rAzI{@T&iW*>r2mw2( zejO|wNp_?5^87m6xkOXhFvI_Up(t_xEfk*muE*60L-rk_Rj}X>KPoj-t0s-Gv)1RJ z0?y_Zvn$aS1*k5So`}Gb;Hw)g4kR&)>shlT*=aQFQ9zRZep^y|ymHYAnRU*%`MHg3 z^=n80x-10jkWcjd8p6%K11QYa#O|R5hRypIC*LSET~*{z>U1WL*qlgRYEF2(! ?CB)2bv8|ja~Kzc*HEXZF;|i8Zhg)vTT$^g zYxji*+04dF>tTIzT=VkYiG%eVCuh!cJ~)=D^LDXO`Y8I~dXmUWJ#T)jav=LJdLB4Y znr6=@->cF{C8J5rw}tzjr=YQm7IpB-i)j*n1J6O?hv?GjxW^>ARe`$IC<>h<{gX2` z+c);3Ivzxgt;)|{Rm5$r2D{94-5S43ZJUSSu+$Q%*nGLB zDBQhsyeq_X4%tk_L)Him0i#vZPv4ge%sq&DHws}uU4UNMrM)ioQj+@&1M;KV{?~|+ zYs3lh0F=l@N|}R?ymoh%-d+pWGfZpg-)^9sVDW=}@)1x7&~v>Fn&gV{((e~>el|H$ zb$|B_Pg ?RGJGpVvJ5hO5536tZ 9H>=2@VBYu2V Igm&KzGv!1dtL?S8N4Zj=4h-k0iP@f8rq zjY{tnb}dUZ*qA
n*2tAtq2j>sbA?7Y%l&R? qfQaTOUMe!S(*9Q>sDIXIWL_P8j2IIJb zs)7#>9`}pGb&}?DAd+DUMjOnBKaKYz>mo1?ffH^@t@)oj<*3_J6rTi6{i0^ &xa(R}h?(5}BDw*RtM7R7~r+(?l;09cug8r0dTt7}P|IrPJ7OM@b@@bbMYj+of zDuxNG=$db}JtaX>FA(=kmB3Wj-%mfKqKUHx&!XrH22`U4!p#zFpc=k**MndR3c(FG zc6;T+ooSOS0#=(pcKQa& )v!4w}p; +NkW94+ON~^ub;Q}cl!xC$VR96_tvHa7o7rsH{6V81@p)}6nT1|u#Z{?Q zpIig!e3KNHK5mCn;kI8xw;*dU{C1|ZaoPupn$(vLWEjKCiF`+W{VP%K3Uj5?aO_e3 zlE9BdSrkI0ZPr7AbUjIKYbe@6 s_KtQPvjtUyzZvo3VV0X&|tms zS?N&arssf6OxC-$^c>^y5H3SsLiKMa5Q)!%Wn2rqM?h?h(bhhxG|HbEFGF>1-=VZ1 zaVj{kyzTk)ANAjb$~Y}uswi_;_`Q`*Up|(5`gB)LR>E;}W(^PNj6pY!-uoBVuu;G; zL~Qut3(IIAZG(%;Kc^GQDTopts_LH1XVx3ce9rCxxzr8g_QcD3-R@-msh6=nO}Q7b z5_MU4{>x4cG4Fm2&{exk*=M)3pKA#6^SUA7SJBC-OAmmG*4cws|MuZ8; 2NYPs^R>AYzP( f)h#&shWMfk#8 z*FHaP;>C0t2iJ3C0q?&*iim=s^#yVg#2bR^E7fr0w1I-nC81EtS1HBGLFx%&fzL@H zY(=CnCJ!F?eDQvEFIzox@XBdZ?w~f^8B(!Z@H58R?4X9=#r{VQX18@Mo@4HTe(+#f z_zKYXi6ai>TT^4_(E#5-G U^ulvyEXKA+&mDe zKu4U5Eh%8&=iXWQNE!6x;wryia^C#B=^ic~vSL!(do!sTvz!w+4+Q(?m$6BNHoomL zo-OBtMg0)=KE_hMV|N-+#P++7QGEMBriK(c)RlX#ndh`KiXf0e+?-Sp3MJ~3=CXFP zmX$Vg3=N&&8Nx4Z4EUqJ0ufO<5Oja*bXVrGvpN~Vaw0XM#tVK4cY_ymk1z@Q2QVYn zSK ~s;DM(xR_6}?&b#_7jog2cm@%38Ch?ccd?{}A zI}lD-xN93GWCIeqGV6Ly!L3FMf>wSsH>)Cof`V$$1C(ra&4dSEz`X7 BQd%bpbMsA~k7OHil!}V^fX>EBJ4QP)#j< z!>&>6^PZ|` _*v U}i+f?+~JFc1e#V*Pf+xs8_JDgyz3X1dqj z;-QiVtFZ}t?{>AO+ zSiVsEJtT>h(m$`(xcQRBIAhQ ;$;|LAZk-FF#Vd|7b-Nq{6by$fp>i6C)Yq7;{!COpgu z9?Jj49;(@=;Zj=;4Q?jv(FPWs1Evc`z!%bSiyTkLV*&C$6sSyhtom~)WR1yC&lv>m zp2K&{$BJuC)zuV2k|UsUh*}y}pr9j#n02m3C=sqTt$(Dro 8coY)QS(@JE1Pu1 z`59ZMN*EC^WQ#f&Cw#G%st@oD?U%rV^~%`?|BE+(Il4E1Px;%7P}6%llDXh8Eh?R% zo1RPXJrSew6%`MK@hIBtUP#M{9)F2qw%~k>?`C|f*+ZfjoAOBmD$D$FJ_V4cV6rC% zL!F9eZF#vPiX>2#w(Iyq2EhJVI{lE;yyb-o@}1O;!A{(08#v{9Y@S9DOyHHyS7zbz zztRoc&r(8!wNHI)A8}Q244Zkkf5D>ZhHLUVV(Zl;kW!@brBm!n&?CtAi4(~~rym68 z4oE(-4}M*W`lt{)bqDWJ?%e5-2p(T+-@#c-O6MT;Xc;ZrK_Ll=;#fIjg+4$b8aRSi zS{DH_a$0w$I!IPYV%k8e-`j37lJsn}6QJPGUVE_vhRJ 8>lqY9?tbXJnkE&Qr z+L?LER!yu2Etxu>&}UgQJB8s@nxsJ62 wrG9C)1B-7Y9uGN1vpmaYe#@Lvr+Rxa*vh9sz=vRcmT^+5Y~91-naaQ{D!6=!5* z)5B@g8lSRtdQtfY&{9fF6YN*(fByV=$Gt_k+Pi8eQ;(xQm95h_Al9ri_tk 13oEBrxD! z14o(LSgrXbMn=YdZcp#bA5zn2|LU;xGSH(H6lgm>$y!72yLb8#hs&SyL#O^dCRUqT z#aE5uOXv*7U8Sjs+naAw;PG>}Fnbr3nW+x5@peWETFmw+Fm6raho8X-369J&Qj*Ti zKsr}-;ur77gLy@0K&QLbSBgIz1sxzn@j^%+cQnht>;7Zm{&rMcBC{AM{fnN$(kG!3 zg_7+0(=X$n`wX{m+_>l7aB}4)*wN+X>cz(VS!MU}r{Eq^h%mUR56~-+#sL4P5TI3` zcXs!WKoSUk=|&(kdHvav*n2`pp-|*L2&w=bBCwF$mJFfnfrneZO}Zrd$>@rm_h{Mo z2yZ!@dWm-YY%ZnClNI<5DY5CZ^Ik?orm?R$QQ&_CH^`|OusCT zzkUBAhE%qVy|f8T2 xu@@LsHX2Ma`mrmPz5c=z zJ?u1>Puz6voJVUZQtp)Rxtft17F`zD++1$O-+mQGRvL36*&!-3sPb-Q`VaYZTux>S zRqMZ_R}wwPTy@_aka()n5hD&`zoR+mw#6u{@XjCfe%a(DZ>yoc%*rr2`}@_SgUjLb za958JUH;CBa-Q*57mY&L6O|Xx gJtU~_O5$+ROSWJqEJXz9DL{!A_W@rxoglT z_}bw@`AZ6&Vc3|DLW{9N5SD+Sl3qU4)P*syb0jmb`mt i}d~`3)zLOT+7a0vRw~^Dg1o zOuRb}5<+Wi9d^TI?GB-(RW}0*9GZ#C_eVq6pkJeZKXV;OOG%MzV&w_IORiK9e>aBr z=PT7!R{A#xZ<}6ta)m#EN7`ofW*`vi)Y6KD&)Yp|pHJk7xc`HdKV`$rVm7tflu;{4 zX>HD XAk&h2ijH9>(i*DPmh*<|DEd+hz;m@{+s%WB2DKA1G!0YB6Wav zZf@o5!%lLC9j69CCBN~SP12uqaHqX3;61|?F5jT9w4t{~u$~MbxO%oBWG_#7 pwqHm;RQ9`h*66O;<9k3uE|j#iO1)GA-Iyq8<~f~>-_A$n)S56=Tl!LIH! zRL9^;)JqPTht{uuVp(s;u+94IOPz=iu4KBaB0U!>E1MoMxSGpRnLc8{<|R~MPCZp( z)AzVfYFaGw4$!+J-l 7xIgR)F1+;hdh5B>n4Cc(d(ACNK{Hna@J=dM0hX=25dwjiq_>pLcPNGU{#uvkl z4bjqy-fRkaMmNwVH#hM6wfT#@d7RGH?4}nh;+)ikINNi(xrRQ8Ln+$F zb-=sbec1}3>3GI%2SEU~N*v|Ldv%o5XLUlNe?&%yD&KGhXoG)+BEL50` 84p&n}nyM=&O(ca~LfA`%pT`vJ|!`cD`Sy>Y`5{^op z(xXYOk?~-`y~8;UhOZFXqum_*^4 BJGXRPJMI-+%fh#c7cU?j}<1z;`Vlxn62~f^V#nK&FL1r&kVVS zn0S!Q4zkBGWZ;x%w`JZ0KWEN2RT*Fi=*tUB-K+&-yMpgHnv^iM`Ni6%)zj)XJMyea zbFt7|89JGI+!+LKAr1trhIls3 NAH&*5Wk@+<0lX #Sr1Poq9$Whzr882Nmuo>v5yx(=T*LF@r1gl>&wB z?muAY zl10j` |CWe zrMW~+5Q*-PTTDHMkRZ(3)H(3K2_jn>MUalA*>A-4?WSBwmp(2yL0YOmt;jG0ZnrEW z_3yU8hH1aX&e2TAvc5<;DoyF6Pa`1|PMAq=b9_fV_Y2Md73o=%mCx_jSxJvrY|7O! zFNCGc5Hl4hb42QTxY&rNJiLRYfm>SL6Rr9tYT0>EXT$$dHF%=Yn v(HvC!;okG7XWdw{Hy*4Io{eCKP{;)bIc@pEi)iF5=u@$shwcAVV|7>J|>kK6M zmzkURUjdQQXwwkwLpG_sPksY~ttD4d`aKb&* M$&N+`NX>yZaH^HthR~oshM~&pG<|my-k`gO!Dth88r_2+A!!^Vm<`_LS z5b)_tF+%cAHbo#kSLbmSnB0zHu(s5giKqK!DM;x%lX?Bici>7|<+!CgIDt1WIfYO5 z{`)O}XR7X>OY>LjlV}OBrJNdAuSx&83GN2#i|=F6(N=V0oycgLfM<%s%dEwx5-)iP z+N( AE|f*F0JUjvM<8q)}~qh2O`Y z8%X&eaZwb!`ax|Ck(Yxu{FJd?Ik>Pl|2ZYQ_r%yjSQDRG#@WLGp_aE5ze>$|<#94A z=R{?bSGgLvaHLlfuf$j{@fM&J`(Ox^L>2LV=3Z6Ph~^G3N-7h0+AUf?#QX+N`%z|p zOf7$-6jGD!+aocTi)s9@1bJDuZXVG6rsxM|t-aNOKTub|*BcPrI9Qq6s6qAlUty5= z-!$ua72%>%h@ian+Q Z~njB$FG|3RhJr=^5 z#tX;x%6y8s7m^wpzi_M#N&uQCa 13XA z`Ex`9ju6nlh^~N3ulw7V<2LJS#X{CU8@DBx>u}D4wQP;9*4kuV1qK8Q!`_&geW;)t z&<@#F{w6m8_W%wQO|#fjN#y%?>N=Wtr0hBeN^TJt(82d8cS!I8s$;u?m868PSa2ke z`x(|8>}#y|O?elBcw#8k9ZB0d^y;0;%FJWqm2=K2^gU3$N*9OIUeDb2zl=|9{5))T z%eC?Wk@&gAoe9m17S#t66u?=H!-Bs9wqL;BTv*mtMwS8qiXj~%>Je|M0(Un{q~+gw z P 2PPSE1vCl?NmyW3!)ya}dR{}H1tD^nYb zMeTRLMAYxz@;|+w>ddhUt$lD2A><-0^>=E^3x4_KOuMNz=Syj`bws{SqUeK@Got>@ zaPqPV;H()e1}x;*ljmpH$XIJdb+E6#9#$;?y_glzZA9M sDrdI_^0rOJfUHl|JQ_W1IBdK&xPkHd(CO_ke=!_tiMKnj@{_!=WoRAd z*yG^f(0|x69rVPwZPfe=#i*d3Gg;de*oO0$(+>i!+{{06qhfw+qaVmSiiWW3tq(ri zbcXw#9@n`RX!`oxB8<9o)nS^QQby@c+TIV~kQs>dtUqItpPSnPJhK^p>d)w=so>x_ z u)vnjJY6H5BYD$(fW6tx3RWImAtA_BY>}d@eFqPRP zoJYzmKV*582zx=&w*1xi#AT_@hB+Jb$5_rvfz15?Y-pyxYF>Yw;k5#<>BFlU9 3)CO#jt6natkU?t4il&Bb3`n-(vVJOySiYeEUbxoSsSH?C^*yX*{~x{1TTi zV1#3L^2AbPWpN7Zpmsfi;QHI(VTkckRoSD_%Am_WH8dQ>KsyMR;Wm8SDd@o@#gYMO zt7Beq6TIdQpSbe2Lx=Vyg?t#~^e~DYx=-_X94t&I)(+E7;8*L7T0}U0edS$%NM27K zXgG1WB4ZO^aB{{yXF=-cG>n=xk^+%{9kOS)0qC2wG~x9M8hYz^D)pTY6oI@eQpZo| z$?1$2l5#=&63pbRwKo^-?{mrJZ5sx{CMQc!4+EnGFgCl7+*~#qVeiGI;4@WeUr($L zu{$ZPNh|bIoY=dG<(9Kqw?jhwF*G-NPEkj_RO}Pq|Ln|C2$TH)3+L=$RoJXCretwr zI=&sZX~$vT#XCuKOSh#Pb&tX=HT}27?Ez|<>GZrUfh@yPs7%3Npf1ii@#!hCSCP;_ z)Y~UITassoAkKd$x^BGnZ>01 G`@ W>GDwv)MYyajO&!;l3}oHuxAWd_DkTI??de!PeqaDV`x^M^(oLyg-=bB!0eh z9{oou`b`==56*uFoIq3|_=Gv4{j^TL`&GP~@s47Y-)x>N@dR$?&5fnXsF3F!p^kY* zMn;u#V{_7}{km#@s`Be!31zWX_O4Y$eOtN1hueKH!2P%nvIP?jzbsn4eeNDOZ7SSr zp*Gj20$rL19M%kM;HVCbuQoWuG&8N9fN})v{75s;qeS~jdIW^%_%r6ky~SRDh?K2= zJhRg#FQD+!9hjb)-sjwMGXFVB3 {cI_qK@@zC#}WR*^TU|7^zu zb|GE52lOW%Bv{jz&HU12q~0BPN2OI20m%=5aU%Cf*ZneW#g_&)8AZPFH>LIr0KYGw z#JPT{&EJ8IRvOPJF&D_yzhQMTeK-AK$}#O@Q^5>%w@Zm{&B=S!NLo}EL-L+MDdcPf z Jf%_ouLHZXb?E# zmV-5fe*GjcTtZ7VjA9yqonlg7i25>8WnX*FW{6l)^@qQ~;9`7{RB5*Jf}I$AVS0Lc z&2Ts>8S>O-*Lq=ZVa$m>YyRo0Uv A0yVC+&Bs4bNi*02gdWroa!KG#n2qN8N#uIL1YhyK6j$%{P!3WoTrJ2D)_ zO#mp=epk>?3WXvTSj}iXsOpOaH`ycAtMs5B<{3|-f0pG9bp+VERNrIT99(6!@cbFK zp+Nxx4hBe?&Dxst 9UX_Ra@St=I1^WsMvQV=u0d|uuC1)G2G*GP_@8{i=- z8g|n
P8FsYpZ~|!dxyjMZSTWONQme`qC^X#_g+RPq9uB7(SnHRz4s^~ zdJiEw(Yr86qW9hz-C)!i<$av*Ip-ti{r%?}7c;Z>+H2kG-uJqnKD;(ss$q6%tD^&@ z0i|h`r}q*osYSR4yzu?JBzHNzO=b&ZsCMX2^M|ACa3-!}E#}w6ehNiw>i5p`bSnX> z75?GF^uI|r0sk&X{J&Wb>WWg;A;4Uu5bZFV8Fe|I`e$8t+MleIi$9((_GdpR8sVj2 zXqz4t)bn)+nf-R-%D1c6mIWn;HIt-uap-mEPYlrB9f4@wAsWC9U#{L6Wkl)XXta zugA(O3T?^mw)f5aCu*n&ddbYY5dr8-X#LK;=CJQ|MvW)lsdyf=6|j5o1tA{sE({EO zT$;XNTO#4cP1&i5N&88y53a-A>f3(&!uC7GSzDfyeP` }?L8xP)!G`~sb &8(ZUN?1entTURz7`CZUg3vz 48bYwF&nmT4KePVx^Ysu(5C^E^ zjWj2OZb0d`*7B!hVCW}Gn~xqU_pzpb|7G?<=h3&+OPr4ot0E}5|IyBb64Z2pVyCpM zN 8aeg6jB e`jl8h{h|mL%i~O e?rJ&~G&y>mcqxLRf?&w`V z9N3hUj{B80!7uVbZ>-+pZ;rUDC&zh=bxa|Dlx*?_I(L)lVL-=>ctzM}3H=Z>4~#@! z)I?Vc=k C|m8~#=ApCkf`#H_#6y#!M+fMt^rO*fMR zl>W6v+v`urB93mFsj*eglXRaha2~u14N`mTsd!~Dp2RT#+tjQC&uJN0W}-3qd%#Su zH%?|SiZO-+vuu96|JWQ=IyuGz=ka%z1Kdbj^*L+XNnd5h=mc&F_c(ho&elF0vZHzS zH~k?;>vyUTPNyiPz3XvB<&R0Q)b u!r6${?Uzh)G-|GFyp_g<@l%Dvd#hAiw9|5?8!2*%p7SZC1|AsLjg zGhExx81Hj5NJG_aB|sF%`03C589PXrXe!w{9sb)Qx{M(@*w}P%Dd-I%5-*f8%X7bB zJz8~!8a8DUa@}&i5;++_(j* 22vK&0V|%p z{Pq5tA!2V+9J6?fP_Q*rK$0C!@k(IAtAM>ZBn?9f@$4|uQ+A(n=N$MRnOOhhX$V++ zoa5D=t8>4Nti4-n{o|?e9LiLFf+}+;RPHY&-ovzv0Pt0!#v{X$Q(P0wpIDJ$L8TiH zU~>`ot7d<+dZdZbm(@d9FhwN%kdHeU9myR?hEtr5Dtj;*d`Dameo-g}@R;GY8Tzx3 zpgHbey)A(!$((um0REJ>`aAXD1FT>lsRa9Oz}+*Subho5;gB&@!REXDNb3X)vf3@; zGVAY6Z`U-ztR!*31X~o)ZslAlWR27vW2Rjm`<8g^O&(&tT`;8;0fyxkgK{=bg}Am< zf<7X;L<-t;a#L=0wl|sE%IZp9&3uh1>E-Aqn3X_nRDziOwbe^*XvA4M#91}}5;OcK zr*8(e7lp25sEd46pdm1}$%_=6G TI{gI7j5`3_oMjDrzxoul0b*y{147puT zI%PgTvM$ai{|0}+QL(=S_s{rAlW$~`K?+|Ln~jnDsETBF4oVA|(W}2Rj3~iUprTmG z@zf`cyT4d^i%~*=j(6{!d`fDaO6rYf%o9l=hpfhYHzguN<2j;9v#Rfs1i~?^W-g{b zn()Dvb!Hj&jy=-^@!o$aDBZQ~ws2)IpF4R(-N}Z=MVXS-r{@B$f~Pn^_t{ROa#*~9 zi=rk&<`VqwINmofSWo?fVS4WXQEzKl2#za2CH2uG?^1fGm@JqqVr?uP2j%euZT}pN zc58wq)C+P@Kzq^D$rLSLw~N8e fxbkdw& zgARs-%`DC5Rqsl_DcibH3jt$fEQf%{*DKCQt}xw`)V$FUO^_WZC8lqXNqpm3%{#-| zohP%L-WDQ3C1ex#t!+nobSZU;k7IbrQByrZ)Mxk6H|cP0{@cg@t64CkKDgMRG~0^4 zx`SMksr(ruaFC{DG}1~iy~X^UiEtsu6$&x$DrI4*DGf7;U4=Z{FwZb0?aTfKAxh1D z|FOt*UCHfFbXh#+1dK^GFUg({(W`EdSwqcDqh}`-4+YGYUs0k(6Y9|B#Z+pJ(DR)I zoazER>B^_7!MiwG;5EqW%;)gp_us2(E8!P vI@orKbkhawJW?v^e$+ z;G1SX`BY2V%u6XXBMA*sfnkcD$2f{(qP7#D7sNC&-T%9Waj~q&4Dbv{vC)Q73&RVp zXZD0zQ!PHZW1;Rq_vf2>Po#v(OH?k*N+@UEVvkaKeP%~BCdyuY3g~n1e3B1NAQkWr z0gt5JJ5+=pnyeDlSE(A_d5sNx$uRsU@`If1d@GI=zR8o#jQQL+m%Rczhd?qpA^#4i z-a2)2WF_{0s7Jf*m~JD;C%;4wN^yLZ<9N8eamzNeVB&vqEO>nM&Zaw&{X<2jTY_j$ z5TLU0;tXzW7rT)KG{Pe+PAqrVELp&RJv4t5Q6k_FGv)nHUi4=KWHtO>FdW{22HC{Q zKG~!S&Ga;l3D^F3`pOm&3ZvzbvF#{JC2SxjLrwJ%7-$$PP5=~BTxWQ~I|H*C@DE8I zJ=%O`f3$Zv-SKk(t=~>jnK?qn2rq9d33U9#GT!?RhKg<1$7F$Qbmc}iL@zkpJ)yUr zrYJNb)iJJRA3D)79${cjg;7 ~omP>J#UGlo!prTJA`-rLq2QA%tFp z&OZt**(_|J*@G-iOFcg8qOLL^JoByXrvzt+ck*O(Csk99yOcx+=LD&p1%EZjNhIg* zaWPq`c9OEFZX%aEwmrscXl_f3(cUhCAe9>LTK@dT*>p#dd@-D9l5Ul-`EPsPWz*k$ zdNcV@_rVy000(6F@JHB>3)4R9n9D<0Ik#+guT2krRydmBZzX{V#8(4EN0MWr>BSHJ z|CyC|&Ord$_k9*lyBqS~07~XSedaSrcQE8@_0vSzORGQEjKgR=#%vv1bTOJ&d6t45 z6>SQ!y?1z8J)60{kajp}c7*3k7-Cppjr*$2Fd_Qy5)9nq`nRtfPCsch`O6)KgAwF@ zzUW#&>jpWUUwE<|Y8Pd;8Sfq2K8NvPun_-eLUMD%;jeT2m7U^WzZuBWBHK_!>z;18 z{Z-%p;Sp}5AIP!QzLE7R)ItHWL;}k9*Rbyuf}G5KI?XcyY%fF=>xr9)#4TTh5{*rx z&r1--7lCj%s6K!LFw1E+_>(C`+=k`=`rv@yY$yo VoC}USon-KB>wK9i4~6&M;p;}u?)rMpmD2a9=LG1CXXiiy0K*5 zBXA$oFt{eBzV`&-+9w9oOx)d|fq{c0LyxWS#o%W@06QhAky_S&PTK7nS%9w5j{85c z+?8qgqoYDp4BJw*B+pRI6E*{<0G4`&Trb0J0RNI!tS7p3@l@{C((-izQW DFzHf=X`94KA?Z1(ByNZCg zwF^3+s{0wOmOhrf*_g1d)r}r~IWA);42~8ZL-aU1Mh2K2zLVUj{0o2+Z0Y*|Va)=) zTO^Dr{BzKUF(h^n+@Y5_DTDrnW?$Ns(2k(N+AtXv!bpt%_f`U;w~}7&)XQc@v+qbC zJ&ay+{>|hH5THUV!P3t#Tl??u5Q=dqrjk*QzS{Ux-$X^zX`;T^pvScDRn}@XNo!^; zu1E%?u~ex0!r_kfu-!l`Ho!SWG(yV}&h#E_Yp(OO&^O8E|E2Ks1?2Zuf62S#jk*1A z1xV0hktSyUFx~`*BbU D6nQqG;ZRMg7J!6De(fD6d1M`Hj)pmcgz4f2{ zj^I&YEPt(;4M^ij%fK%6a&+gjY+XR!S;378lbNMmt;@#GHtA-wqS?A^8s12<2Aa{c zc)GtA92J8_4D0FN0ZV})tq7=tS|VulpYLn@gs_uFz#*K|-k46xRA(9QgzeWLOhMy& zvvp*E$lVfj#xZjF?6@-&*OQ_W {$_E=#JI^rD41fv;SI!AYb7wU+6v}8=9KyT}nCLF2?Nz)Cr%mwC?6~aS#Q8 z+vT#QA?^<$h^5AzgT+lhR1nKyR??f(>$14_~qG8 zbyU(HAsHCW+Zuy>uKO*u?(n3xCU>}&mjN8X?_&-}H#+a`s(X>HEbLGI{h&8ei_r@j ztipGL7`*v@;d_1VYkge~zRpS;^g^%`m+QDyZ~7x6?|%&J|4-aj@cIXzms~gVvSQtd zw!So!uc)6V3+d-;V(~tIwcC&t^Wxqw6D%+U>ihwZe+hWs8KbbQt>9^C@9!4m<)v4{ zJ)!c&0ei_#uA7jOVzVqSqE7Gc{l}@6_Ve#smul?awL)8NDlQQAh!2hqXT1HrS)P{* z=P5KPeHDupn_F#%_C8YZg|nN`{_#MPG~YwtOJ(?>(N%dW_$KMb6TZ2;{ FkEeRlUkW!N9=b%OzD%33zhJ=kfGKpEp@$ zieGHju@CS2Rs~cKZpuM6Op#HMn^b-tBc$u~Yq+b}`FwxNM%#DytzoII4a|Y)B%^D6 zN969;i=wtef2bV{(bRu~n7uK8gRkK?wHIq`2rvmhX`3R4MAD4;U%Bp|>xW0m#?dQP z9g|C=efQ}O(EKq5%eojUcAeT=ggM)=qkzn?Sr!O#nv_;4X|>FB*MN7|H5XshUAM&W z+23sA@@XYy8AJ>+@byh&Gnm3XTMwI3*}Z2yQ+=-iN0ZCto72N!`*Mq(4%Ghy9|sp` zw?f-1clz!j1m>btj9*CPvx?Nk)WHs`6*QM4GdJ9Hb1UiylKD`jM@m}6T=$jJMi2`d z asS9t|xUGrBOuHeN+=VEH;_?&@njy$S|>rLNk zL{}Z<^$c(_E?mVf Jk50i K|EWKvi-w{L(JJ} z<2-}DKgkly=dV}zn@in~5B%ko(^1OTd`_ol`xlX}H&xJnqeI@_N%r*fSc?C;pXAal zoo);_c1Qnb9e_>x6emvfHiXzL m#tUW0nG{4%W;_x>8Oj+UST9dpjqD&4M=6#kN7=#+l0 zQNVPTkBf-eG 1J5q;;cyh_U3+)J4v0;uY-R_Gv|1Km2uMVU%BZnW@_6)H-*h6% zSvAIxb~OIC%FsEOdUEYayX_y*QLih0@A`&%_@ya?eb8bI=a>i-^Gwug0qGAjY<}l2 zX#5XG>LhfVzQLh**2sD%$0;U?yP$M)#inNNw#!Z&N_8cF#_rjdH-3XgBh+)Wy%&m0 z$wq4p*m=?LZ8* D9eAz#0L*wZlmf5t<=V#%QJ)xpN}{A9;nVmCkE}0}KiP1xBy+ z(w@)ggkP-U+$D1HbxPnM#lQ6}#)@d?91Z8ud&!M&jqa8*4qXs_s+rvEaJVbWiX$X> zDjc_W|JCj15Hq`=*aU7ncmTt5EYTghHYZ0vhUvZZ#ei;EKl+>44^!iz)w?yh&krWb zJ&b@Hwf_QXQ4m7gj*To{IJsW8Ar7&*!`!zAv`c!rJgDaWo4NScI{9m$(MWF)&H12O z5`CLL+D@{S2h22h=bFZk6}I%spDVr0wr)Kx^|d)v`aBqJ3Pnr4XLOq2>nZVbUXDBK zA Syn`rvV_V0$6L&o-)==z!Esy6=eI>?2Ma+r%kV~%m7VoBy@jn zuLVwPOLfM3KHuPI`8z=?U2aV!$rT?-lr5#y^!xzPcIxs{-dJL39onGf>)?2H!ES4K zK9=?BpPuEBg7Klb-e3170P{bL7bZaXsz)A1)BVYU188vw8QL4A{OD! )P|4_3TsX14TG`x%a3TiN`zhVrzG-|B&UU6Ngo+cHlw!FNc+~ z@uqtoTBZz!*Qa}MLdu-Z+2Hn+wg;_PY`y;p(jiRLHOo42*MJd)yYVta=r0&Cgl|#- z;I^f6w0c}>5qQz&?R373nhT63^M|ro%;M E=uO98=O*l%F z%m-PKb?3P}OmZ?8T09GmC=`l;rm;Mf7OYa8FDL$sEOWb5|0&k7?edr`hMRR$H@m*^ z(PN@_MqA|pvnf0;8blxdJxMRUPg%4NdRY7`@x{sMKKTBDNjiSQP|DmPCT)6fE;BZG z#m-W9Q6~ Ln(gpaatfJi=e`PubbolgdR3LYNTc#jjC4 zD4xRa{%c?!67K+Y;Q!~m4GhWD9+aGW-Q!TPS6cFhc^bh*7vZA(i8lo|$60)oH|IU} zEc^wa6D+E{3sEb`>j?(bUi+sE8JFfEzI+6JMCII}i?<^*l1|cI+FGZ@Om6^>!mj`E zD3nKgc9S{xnY8W>R{d8eN{0Eu*bcJ#TNI;t&(7XP?C5jMoZC9=asURnXk l%NuC0{) z5SO>5@px;E2J$>};5&IZnsN-v*|)hgyv&{GO^l*Xx)L7zi=EM04pn5NpDAmXo6G3Y zH=W=9kK{30N*o;_FlYDI;~&T{q;0>0218aDT$w<}OldzuUPspe1@Qygk83 zh1;)GOZDLq>bHkOc`?JGtV2$Q&m|SR$!6W9G=a(9T_vi37dwPGUsf^l@$(D4l+Vgq zOcJq{!`)Pt&axeEIz!wUTNRna>%!gsp7|$_LNOB8^c5q$&gH#COt!UN6lNg`OJ{DD zDX*8IgV(!*wM;fS{b+_~jg!1aSK~(WUeih5I`B~6^U!|S)dGx{9gy8XBSrpC=2S)3 zK2VT#HJ!ERec8-*5}$Rs#&x}JbiMAJ+6=xL1>1?86snvogo=^50i}Ml`D)MJe&INu zpV#+@!S}}{|9Mr`)vkmR4a)Op>cb(Cv=b$Sq XfNZizUFz=-;w zAZG1y1Z{=x)Yrjj(~T1i*2p{KRNV{s&^Q0rZ&Z$<;+&-lLt#kH71B=Ow%@RkitBsc zsaJy_1RoMU9Mb!&YZUfi0SxB`k9uuNQF?sE!^QU5-|#8B$e~2!K+CVU%QFQw{%vmU z7kV;#?Kw}vdR@BmO0DfguWkJD)c)pl#Ak&tOZ%GG+{n&FgWaeeIZSyq3=O2bTq4xq z$~U^~GP3o#{gxMfmSS*7gB>o7SkD^ Js9};_R4JRAY+gqQ@9iVIJ|&@? zF}R2U6}?2~T9lS5?^dEw?s^>U`n+fF>71LLyIUMRl{mbM6SVQpO+%F9e;$tnBtT+H zZLcs#eUd4}OG39r ?JY`wk}YSWs3F%E=70mM?MH@S6HxHb2p z#t2yhWo}(zKHUeOJPDyiu}{J6nN56Nfs2YZEFJVFXcMwlCo}3jlhVsO2j3?7@Xmwi z9{Q$+df(q#$!Phd-}e2_Drxyx{o`rcmEl=87g_dhCmZ?gI9o>N!AA89Pb&&bHvU~{ zdg$BR>?zONAEZ(uD=GC_M-W;*>sqPy$XffRg;I~*>-iQ>*9$e;a-Wl8ewTG@dp9Zg zC=iSNrFyHr)?4YpX&8g!@105*fI0PHeDP1Mjg7jpKy^}xm*bgJ^g~h#_gtJs{5mWG z3ex}MoK`Q)I92;hRiG(HwabAK!= lnYiXpCi943XkPrlGIy<3Aj|~ z)q2S+xwtF1?+Z+_Sp$^# SDoKdt$u}Wp+eqHjO(j-TIWxDS9WpRZb$NuzZKTw%M;?P@|g*N>;<2kJDuq)jcsiXXgDjMrVo88%vlF zO7V-@Q`9%q=#sD;{;d{f4e_o3baizIPU1#Y>zNNyZ5P2}ELTZIEQBF17rWpY8uT15 zE_PuFyr@siwhUdEZfU9;Xty}qR~Cf#@9*w KK3 zcm&k>IOE|%)L=hJaq4V5jK^q2>V=Y&UI+d|VLpdlB#eTB)3h4*Dsvc?yh|CZ@(OAv z<0s_xKQUIAu=Vh{@W(~^7NGtHb)cV2%5NHXb+qZdc}ZD =g`Q`5IBm)rF_k1zfIYM4EoS9TL_(yBPZ&ytTg9!y{W4YhsWrn3ItLQq zWy84g1aNBg_Nyqp)7)6q*~r($1>Oea6gJMxy%3X?;nHfC>AJ))ohBc>cS9u)#>4I9 zDjjNGurvouNlJEJpcBcO_Xg{0)BRDBwoGXk>D{BLVEwi3(wF;bw1<(=goI+MB>)Fz zU>2S(%Z+Vz#M^4^S~U5caQypx024%==mZNpQoyK9m5GGlUGKA#)yAA?8JUZfXZ?e{ zU*j20hd lOW4WBLB-BTT0 #4?@oNZjx| z%JSirgpW@x)zUD-+kA#dnfo5kT^ZhgV{-o9 o}9d_4E +pT?s#`k_s zKJY$v+`zlhe5DZw4e5V}91xvYpew{lE}KE)kT9%S3VeAGxNZuFt>TaCe~Npxpe}yY ztpHC9q%_odlQBig%$!xFOcgah20cU_q|WY-F~KRR7~(64*&ucFn`wRmoh;c`6V) hfF+?6Zf$ z9&S#{Bz`aOzPb&vz|(hb(q9VEoUE*#JGX4Vf9D|smJpJHKTWNoVv>lEP&=hLJuU4> zLeuFTNr*Ao#$A)rDKcz&8s9u$pUMBQfAdN>aRfoMIGXZku;fh$gidNaRjE*}&9hLm zWkOL%%j8k6JM-YtjAmF(2$}mb&A ^)l{D4Luh9=4_bNW7;N#Tbq^VSNYcF 7ODZzLFTa`3pI1imQOH zj_C-Yz+6@$6ksUFWW?DG8pm{8z8Mn2vA-Ge-hiMO)%}-q-okRm1|Q*e;R#N+AL0>c zb5uM#AV{{NKlo4HqXmIYED3S5dxobl8X55iFmL==-cUY09eRJBQa*<&_&pR>UMmgV zVUz4nu|pWI=}D;m3{~$|JfO}Au*5?#(Mf#ShoxKajcCWpaCW%i&B&}uc-4Mo*f-~r zac#9~pZND<-v%jc-w7t1?rBS=O ;ICW;+OQyZYY$cI~FYe*I>CRjO z`vWmQxi3lhBzfwWhgA&mOX5z@?6srUY}LIZLTPtfeY+yvT+SL3E|1AX^y-h-Jzp{s zm{Q7-!=!w$m-E`iwVExpkDqoy3oaV!@GEQmG0Q<8USp7Uc3Z#0@8#gcbzGzR!Tj-x zlpofwyESVy{`IBPhchPD)OF;qqsp;{!Hlt@PL7B|Z7D0^Sz>H)i?S?r {